ETH Price: $3,403.61 (+1.35%)
Gas: 7 Gwei

Token

The Doge Academy (TDA)
 

Overview

Max Total Supply

384 TDA

Holders

198

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
codiak.eth
Balance
2 TDA
0x40061b91c213c8c930a181e6768034b0f304eacb
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:
TheDogeAcademy

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-25
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev 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++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

contract TheDogeAcademy is ERC721A, Ownable {
    using Strings for uint256;
 
    string public baseURI;

    bool public freesale = false;
    bool public allowsale = false;
    bool public publicsale = false;

    uint256 public allowCost = 0.05 ether;
    uint256 public publicCost = 0.07 ether;

    bytes32 private freemintlist;
    bytes32 private allowlist;

    mapping(address => bool) private freeminting;


    constructor(string memory _baseURL) ERC721A("The Doge Academy", "TDA") {
        baseURI = _baseURL;
    }

    function updateWhitelists(bytes32 _freemintlist, bytes32 _allowlist) external onlyOwner(){
        freemintlist = _freemintlist;
        allowlist = _allowlist;
    }

    function freeSaleAction() external onlyOwner(){
        freesale = !freesale;
    }

    function allowSaleAction() external onlyOwner(){
        allowsale = !allowsale;
    }

    function publicSaleAction() external onlyOwner(){
        publicsale = !publicsale;
    }

    function allowPrice(uint256 _cost) external onlyOwner(){
        allowCost = _cost;
    } 

    function publicPrice(uint256 _cost) external onlyOwner(){
        publicCost = _cost;
    }

    function freeMint(bytes32[] calldata _data) public {
        require(freesale, "free sale has not started!");
        require(!freeminting[msg.sender], "one time mint");
        require(MerkleProof.verify(_data, freemintlist, keccak256(abi.encodePacked(msg.sender))), "Invalid user");
        _safeMint(msg.sender, 1);
        freeminting[msg.sender] = true;
    }

    function allowMint(uint256 _qty, bytes32[] calldata _data) public payable {
        require(allowsale, "Allow list sale has not started!");
        require(msg.value >= allowCost * _qty, "Insufficient funds!");
        require(MerkleProof.verify(_data, allowlist, keccak256(abi.encodePacked(msg.sender))), "Invalid user");
        _safeMint(msg.sender, _qty);
    }

    function publicMint(uint256 _qty) external payable {
        require(publicsale, "Sale has not started");
        require(msg.value >= publicCost * _qty, "Insufficient funds!");
        _safeMint(msg.sender, _qty);
    }

    function airdrop(address[] calldata to, uint256[] calldata qty) external onlyOwner{
        for (uint256 i=0; i < to.length; i++){
            _safeMint(to[i], qty[i]);
        }
    }

    function bulkairdrop(address[] calldata to, uint256 qty) external onlyOwner{
        for (uint256 i=0; i < to.length; i++){
            _safeMint(to[i], qty);
        }
    }

    function setBaseUri(string memory _uriPrefix) external onlyOwner {
        baseURI = _uriPrefix;
    }


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

    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" );
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, _tokenId.toString(), ".json")) : "";
    }

    function withdraw() public onlyOwner {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseURL","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"},{"internalType":"uint256[]","name":"qty","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_qty","type":"uint256"},{"internalType":"bytes32[]","name":"_data","type":"bytes32[]"}],"name":"allowMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"allowPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowSaleAction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowsale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"bulkairdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_data","type":"bytes32[]"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeSaleAction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freesale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"publicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"publicSaleAction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"publicsale","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_freemintlist","type":"bytes32"},{"internalType":"bytes32","name":"_allowlist","type":"bytes32"}],"name":"updateWhitelists","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055506000600a60026101000a81548160ff02191690831515021790555066b1a2bc2ec50000600b5566f8b0a10e470000600c553480156200007857600080fd5b50604051620045203803806200452083398181016040528101906200009e9190620003e9565b6040518060400160405280601081526020017f54686520446f67652041636164656d79000000000000000000000000000000008152506040518060400160405280600381526020017f544441000000000000000000000000000000000000000000000000000000000081525081600290816200011b919062000685565b5080600390816200012d919062000685565b506200013e6200017f60201b60201c565b6000819055505050620001666200015a6200018860201b60201c565b6200019060201b60201c565b806009908162000177919062000685565b50506200076c565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620002bf8262000274565b810181811067ffffffffffffffff82111715620002e157620002e062000285565b5b80604052505050565b6000620002f662000256565b9050620003048282620002b4565b919050565b600067ffffffffffffffff82111562000327576200032662000285565b5b620003328262000274565b9050602081019050919050565b60005b838110156200035f57808201518184015260208101905062000342565b60008484015250505050565b6000620003826200037c8462000309565b620002ea565b905082815260208101848484011115620003a157620003a06200026f565b5b620003ae8482856200033f565b509392505050565b600082601f830112620003ce57620003cd6200026a565b5b8151620003e08482602086016200036b565b91505092915050565b60006020828403121562000402576200040162000260565b5b600082015167ffffffffffffffff81111562000423576200042262000265565b5b6200043184828501620003b6565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200048d57607f821691505b602082108103620004a357620004a262000445565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200050d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004ce565b620005198683620004ce565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000566620005606200055a8462000531565b6200053b565b62000531565b9050919050565b6000819050919050565b620005828362000545565b6200059a62000591826200056d565b848454620004db565b825550505050565b600090565b620005b1620005a2565b620005be81848462000577565b505050565b5b81811015620005e657620005da600082620005a7565b600181019050620005c4565b5050565b601f8211156200063557620005ff81620004a9565b6200060a84620004be565b810160208510156200061a578190505b620006326200062985620004be565b830182620005c3565b50505b505050565b600082821c905092915050565b60006200065a600019846008026200063a565b1980831691505092915050565b600062000675838362000647565b9150826002028217905092915050565b62000690826200043a565b67ffffffffffffffff811115620006ac57620006ab62000285565b5b620006b8825462000474565b620006c5828285620005ea565b600060209050601f831160018114620006fd5760008415620006e8578287015190505b620006f4858262000667565b86555062000764565b601f1984166200070d86620004a9565b60005b82811015620007375784890151825560018201915060208501945060208101905062000710565b8683101562000757578489015162000753601f89168262000647565b8355505b6001600288020188555050505b505050505050565b613da4806200077c6000396000f3fe60806040526004361061020f5760003560e01c80636c0360eb11610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146106d9578063c9a141c614610716578063e985e9c51461073f578063f2fde38b1461077c578063fa845f0c146107a55761020f565b8063a22cb4651461063e578063a9d464ec14610667578063b88d4fde14610692578063b94805a2146106ae5761020f565b80638693da20116100e75780638693da201461056b57806388d15d50146105965780638da5cb5b146105bf57806395d89b41146105ea578063a0bcfc7f146106155761020f565b80636c0360eb146104c157806370a08231146104ec578063715018a6146105295780637f8218e1146105405761020f565b806336398f171161019b578063494f41a51161016a578063494f41a5146103eb5780634b518e481461041657806358e758bc1461043f5780636352211e1461045b57806367243482146104985761020f565b806336398f17146103785780633a30fb3c146103a15780633ccfd60b146103b857806342842e0e146103cf5761020f565b806318160ddd116101e257806318160ddd146102d557806323b872dd146103005780632929b4c91461031c5780632943cd43146103455780632db115441461035c5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612953565b6107bc565b604051610248919061299b565b60405180910390f35b34801561025d57600080fd5b5061026661084e565b6040516102739190612a46565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612a9e565b6108e0565b6040516102b09190612b0c565b60405180910390f35b6102d360048036038101906102ce9190612b53565b61095f565b005b3480156102e157600080fd5b506102ea610aa3565b6040516102f79190612ba2565b60405180910390f35b61031a60048036038101906103159190612bbd565b610aba565b005b34801561032857600080fd5b50610343600480360381019061033e9190612c75565b610ddc565b005b34801561035157600080fd5b5061035a610eb0565b005b61037660048036038101906103719190612a9e565b610f58565b005b34801561038457600080fd5b5061039f600480360381019061039a9190612d0b565b611004565b005b3480156103ad57600080fd5b506103b6611092565b005b3480156103c457600080fd5b506103cd61113a565b005b6103e960048036038101906103e49190612bbd565b611236565b005b3480156103f757600080fd5b50610400611256565b60405161040d919061299b565b60405180910390f35b34801561042257600080fd5b5061043d60048036038101906104389190612a9e565b611269565b005b61045960048036038101906104549190612da1565b6112ef565b005b34801561046757600080fd5b50610482600480360381019061047d9190612a9e565b611450565b60405161048f9190612b0c565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190612e57565b611462565b005b3480156104cd57600080fd5b506104d6611550565b6040516104e39190612a46565b60405180910390f35b3480156104f857600080fd5b50610513600480360381019061050e9190612ed8565b6115de565b6040516105209190612ba2565b60405180910390f35b34801561053557600080fd5b5061053e611696565b005b34801561054c57600080fd5b5061055561171e565b604051610562919061299b565b60405180910390f35b34801561057757600080fd5b50610580611731565b60405161058d9190612ba2565b60405180910390f35b3480156105a257600080fd5b506105bd60048036038101906105b89190612f05565b611737565b005b3480156105cb57600080fd5b506105d461192d565b6040516105e19190612b0c565b60405180910390f35b3480156105f657600080fd5b506105ff611957565b60405161060c9190612a46565b60405180910390f35b34801561062157600080fd5b5061063c60048036038101906106379190613082565b6119e9565b005b34801561064a57600080fd5b50610665600480360381019061066091906130f7565b611a78565b005b34801561067357600080fd5b5061067c611b83565b6040516106899190612ba2565b60405180910390f35b6106ac60048036038101906106a791906131d8565b611b89565b005b3480156106ba57600080fd5b506106c3611bfc565b6040516106d0919061299b565b60405180910390f35b3480156106e557600080fd5b5061070060048036038101906106fb9190612a9e565b611c0f565b60405161070d9190612a46565b60405180910390f35b34801561072257600080fd5b5061073d60048036038101906107389190612a9e565b611cb7565b005b34801561074b57600080fd5b506107666004803603810190610761919061325b565b611d3d565b604051610773919061299b565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e9190612ed8565b611dd1565b005b3480156107b157600080fd5b506107ba611ec8565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108475750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461085d906132ca565b80601f0160208091040260200160405190810160405280929190818152602001828054610889906132ca565b80156108d65780601f106108ab576101008083540402835291602001916108d6565b820191906000526020600020905b8154815290600101906020018083116108b957829003601f168201915b5050505050905090565b60006108eb82611f70565b610921576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096a82611450565b90508073ffffffffffffffffffffffffffffffffffffffff1661098b611fcf565b73ffffffffffffffffffffffffffffffffffffffff16146109ee576109b7816109b2611fcf565b611d3d565b6109ed576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610aad611fd7565b6001546000540303905090565b6000610ac582611fe0565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b2c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b38846120ac565b91509150610b4e8187610b49611fcf565b6120d3565b610b9a57610b6386610b5e611fcf565b611d3d565b610b99576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c00576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c0d8686866001612117565b8015610c1857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ce685610cc288888761211d565b7c020000000000000000000000000000000000000000000000000000000017612145565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610d6c5760006001850190506000600460008381526020019081526020016000205403610d6a576000548114610d69578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610dd48686866001612170565b505050505050565b610de4612176565b73ffffffffffffffffffffffffffffffffffffffff16610e0261192d565b73ffffffffffffffffffffffffffffffffffffffff1614610e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4f90613347565b60405180910390fd5b60005b83839050811015610eaa57610e97848483818110610e7c57610e7b613367565b5b9050602002016020810190610e919190612ed8565b8361217e565b8080610ea2906133c5565b915050610e5b565b50505050565b610eb8612176565b73ffffffffffffffffffffffffffffffffffffffff16610ed661192d565b73ffffffffffffffffffffffffffffffffffffffff1614610f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2390613347565b60405180910390fd5b600a60029054906101000a900460ff1615600a60026101000a81548160ff021916908315150217905550565b600a60029054906101000a900460ff16610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e90613459565b60405180910390fd5b80600c54610fb59190613479565b341015610ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fee90613507565b60405180910390fd5b611001338261217e565b50565b61100c612176565b73ffffffffffffffffffffffffffffffffffffffff1661102a61192d565b73ffffffffffffffffffffffffffffffffffffffff1614611080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107790613347565b60405180910390fd5b81600d8190555080600e819055505050565b61109a612176565b73ffffffffffffffffffffffffffffffffffffffff166110b861192d565b73ffffffffffffffffffffffffffffffffffffffff161461110e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110590613347565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b611142612176565b73ffffffffffffffffffffffffffffffffffffffff1661116061192d565b73ffffffffffffffffffffffffffffffffffffffff16146111b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ad90613347565b60405180910390fd5b60006111c061192d565b73ffffffffffffffffffffffffffffffffffffffff16476040516111e390613558565b60006040518083038185875af1925050503d8060008114611220576040519150601f19603f3d011682016040523d82523d6000602084013e611225565b606091505b505090508061123357600080fd5b50565b61125183838360405180602001604052806000815250611b89565b505050565b600a60009054906101000a900460ff1681565b611271612176565b73ffffffffffffffffffffffffffffffffffffffff1661128f61192d565b73ffffffffffffffffffffffffffffffffffffffff16146112e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dc90613347565b60405180910390fd5b80600b8190555050565b600a60019054906101000a900460ff1661133e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611335906135b9565b60405180910390fd5b82600b5461134c9190613479565b34101561138e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138590613507565b60405180910390fd5b611402828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e54336040516020016113e79190613621565b6040516020818303038152906040528051906020012061219c565b611441576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143890613688565b60405180910390fd5b61144b338461217e565b505050565b600061145b82611fe0565b9050919050565b61146a612176565b73ffffffffffffffffffffffffffffffffffffffff1661148861192d565b73ffffffffffffffffffffffffffffffffffffffff16146114de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d590613347565b60405180910390fd5b60005b848490508110156115495761153685858381811061150257611501613367565b5b90506020020160208101906115179190612ed8565b84848481811061152a57611529613367565b5b9050602002013561217e565b8080611541906133c5565b9150506114e1565b5050505050565b6009805461155d906132ca565b80601f0160208091040260200160405190810160405280929190818152602001828054611589906132ca565b80156115d65780601f106115ab576101008083540402835291602001916115d6565b820191906000526020600020905b8154815290600101906020018083116115b957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611645576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61169e612176565b73ffffffffffffffffffffffffffffffffffffffff166116bc61192d565b73ffffffffffffffffffffffffffffffffffffffff1614611712576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170990613347565b60405180910390fd5b61171c60006121b3565b565b600a60019054906101000a900460ff1681565b600c5481565b600a60009054906101000a900460ff16611786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177d906136f4565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a90613760565b60405180910390fd5b611887828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d543360405160200161186c9190613621565b6040516020818303038152906040528051906020012061219c565b6118c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bd90613688565b60405180910390fd5b6118d133600161217e565b6001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611966906132ca565b80601f0160208091040260200160405190810160405280929190818152602001828054611992906132ca565b80156119df5780601f106119b4576101008083540402835291602001916119df565b820191906000526020600020905b8154815290600101906020018083116119c257829003601f168201915b5050505050905090565b6119f1612176565b73ffffffffffffffffffffffffffffffffffffffff16611a0f61192d565b73ffffffffffffffffffffffffffffffffffffffff1614611a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5c90613347565b60405180910390fd5b8060099081611a74919061392c565b5050565b8060076000611a85611fcf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b32611fcf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b77919061299b565b60405180910390a35050565b600b5481565b611b94848484610aba565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bf657611bbf84848484612279565b611bf5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a60029054906101000a900460ff1681565b6060611c1a82611f70565b611c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5090613a70565b60405180910390fd5b600060098054611c68906132ca565b905011611c845760405180602001604052806000815250611cb0565b6009611c8f836123c9565b604051602001611ca0929190613b9b565b6040516020818303038152906040525b9050919050565b611cbf612176565b73ffffffffffffffffffffffffffffffffffffffff16611cdd61192d565b73ffffffffffffffffffffffffffffffffffffffff1614611d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2a90613347565b60405180910390fd5b80600c8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611dd9612176565b73ffffffffffffffffffffffffffffffffffffffff16611df761192d565b73ffffffffffffffffffffffffffffffffffffffff1614611e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4490613347565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb390613c3c565b60405180910390fd5b611ec5816121b3565b50565b611ed0612176565b73ffffffffffffffffffffffffffffffffffffffff16611eee61192d565b73ffffffffffffffffffffffffffffffffffffffff1614611f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3b90613347565b60405180910390fd5b600a60019054906101000a900460ff1615600a60016101000a81548160ff021916908315150217905550565b600081611f7b611fd7565b11158015611f8a575060005482105b8015611fc8575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611fef611fd7565b11612075576000548110156120745760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612072575b6000810361206857600460008360019003935083815260200190815260200160002054905061203e565b80925050506120a7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612134868684612497565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6121988282604051806020016040528060008152506124a0565b5050565b6000826121a9858461253d565b1490509392505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261229f611fcf565b8786866040518563ffffffff1660e01b81526004016122c19493929190613cb1565b6020604051808303816000875af19250505080156122fd57506040513d601f19601f820116820180604052508101906122fa9190613d12565b60015b612376573d806000811461232d576040519150601f19603f3d011682016040523d82523d6000602084013e612332565b606091505b50600081510361236e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600060016123d8846125b2565b01905060008167ffffffffffffffff8111156123f7576123f6612f57565b5b6040519080825280601f01601f1916602001820160405280156124295781602001600182028036833780820191505090505b509050600082602001820190505b60011561248c578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816124805761247f613d3f565b5b04945060008503612437575b819350505050919050565b60009392505050565b6124aa8383612705565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461253857600080549050600083820390505b6124ea6000868380600101945086612279565b612520576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106124d757816000541461253557600080fd5b50505b505050565b60008082905060005b84518110156125a757600085828151811061256457612563613367565b5b602002602001015190508083116125865761257f83826128c0565b9250612593565b61259081846128c0565b92505b50808061259f906133c5565b915050612546565b508091505092915050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612610577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161260657612605613d3f565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061264d576d04ee2d6d415b85acef8100000000838161264357612642613d3f565b5b0492506020810190505b662386f26fc10000831061267c57662386f26fc10000838161267257612671613d3f565b5b0492506010810190505b6305f5e10083106126a5576305f5e100838161269b5761269a613d3f565b5b0492506008810190505b61271083106126ca5761271083816126c0576126bf613d3f565b5b0492506004810190505b606483106126ed57606483816126e3576126e2613d3f565b5b0492506002810190505b600a83106126fc576001810190505b80915050919050565b60008054905060008203612745576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127526000848385612117565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506127c9836127ba600086600061211d565b6127c3856128d7565b17612145565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461286a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061282f565b50600082036128a5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506128bb6000848385612170565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612930816128fb565b811461293b57600080fd5b50565b60008135905061294d81612927565b92915050565b600060208284031215612969576129686128f1565b5b60006129778482850161293e565b91505092915050565b60008115159050919050565b61299581612980565b82525050565b60006020820190506129b0600083018461298c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129f05780820151818401526020810190506129d5565b60008484015250505050565b6000601f19601f8301169050919050565b6000612a18826129b6565b612a2281856129c1565b9350612a328185602086016129d2565b612a3b816129fc565b840191505092915050565b60006020820190508181036000830152612a608184612a0d565b905092915050565b6000819050919050565b612a7b81612a68565b8114612a8657600080fd5b50565b600081359050612a9881612a72565b92915050565b600060208284031215612ab457612ab36128f1565b5b6000612ac284828501612a89565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612af682612acb565b9050919050565b612b0681612aeb565b82525050565b6000602082019050612b216000830184612afd565b92915050565b612b3081612aeb565b8114612b3b57600080fd5b50565b600081359050612b4d81612b27565b92915050565b60008060408385031215612b6a57612b696128f1565b5b6000612b7885828601612b3e565b9250506020612b8985828601612a89565b9150509250929050565b612b9c81612a68565b82525050565b6000602082019050612bb76000830184612b93565b92915050565b600080600060608486031215612bd657612bd56128f1565b5b6000612be486828701612b3e565b9350506020612bf586828701612b3e565b9250506040612c0686828701612a89565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612c3557612c34612c10565b5b8235905067ffffffffffffffff811115612c5257612c51612c15565b5b602083019150836020820283011115612c6e57612c6d612c1a565b5b9250929050565b600080600060408486031215612c8e57612c8d6128f1565b5b600084013567ffffffffffffffff811115612cac57612cab6128f6565b5b612cb886828701612c1f565b93509350506020612ccb86828701612a89565b9150509250925092565b6000819050919050565b612ce881612cd5565b8114612cf357600080fd5b50565b600081359050612d0581612cdf565b92915050565b60008060408385031215612d2257612d216128f1565b5b6000612d3085828601612cf6565b9250506020612d4185828601612cf6565b9150509250929050565b60008083601f840112612d6157612d60612c10565b5b8235905067ffffffffffffffff811115612d7e57612d7d612c15565b5b602083019150836020820283011115612d9a57612d99612c1a565b5b9250929050565b600080600060408486031215612dba57612db96128f1565b5b6000612dc886828701612a89565b935050602084013567ffffffffffffffff811115612de957612de86128f6565b5b612df586828701612d4b565b92509250509250925092565b60008083601f840112612e1757612e16612c10565b5b8235905067ffffffffffffffff811115612e3457612e33612c15565b5b602083019150836020820283011115612e5057612e4f612c1a565b5b9250929050565b60008060008060408587031215612e7157612e706128f1565b5b600085013567ffffffffffffffff811115612e8f57612e8e6128f6565b5b612e9b87828801612c1f565b9450945050602085013567ffffffffffffffff811115612ebe57612ebd6128f6565b5b612eca87828801612e01565b925092505092959194509250565b600060208284031215612eee57612eed6128f1565b5b6000612efc84828501612b3e565b91505092915050565b60008060208385031215612f1c57612f1b6128f1565b5b600083013567ffffffffffffffff811115612f3a57612f396128f6565b5b612f4685828601612d4b565b92509250509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f8f826129fc565b810181811067ffffffffffffffff82111715612fae57612fad612f57565b5b80604052505050565b6000612fc16128e7565b9050612fcd8282612f86565b919050565b600067ffffffffffffffff821115612fed57612fec612f57565b5b612ff6826129fc565b9050602081019050919050565b82818337600083830152505050565b600061302561302084612fd2565b612fb7565b90508281526020810184848401111561304157613040612f52565b5b61304c848285613003565b509392505050565b600082601f83011261306957613068612c10565b5b8135613079848260208601613012565b91505092915050565b600060208284031215613098576130976128f1565b5b600082013567ffffffffffffffff8111156130b6576130b56128f6565b5b6130c284828501613054565b91505092915050565b6130d481612980565b81146130df57600080fd5b50565b6000813590506130f1816130cb565b92915050565b6000806040838503121561310e5761310d6128f1565b5b600061311c85828601612b3e565b925050602061312d858286016130e2565b9150509250929050565b600067ffffffffffffffff82111561315257613151612f57565b5b61315b826129fc565b9050602081019050919050565b600061317b61317684613137565b612fb7565b90508281526020810184848401111561319757613196612f52565b5b6131a2848285613003565b509392505050565b600082601f8301126131bf576131be612c10565b5b81356131cf848260208601613168565b91505092915050565b600080600080608085870312156131f2576131f16128f1565b5b600061320087828801612b3e565b945050602061321187828801612b3e565b935050604061322287828801612a89565b925050606085013567ffffffffffffffff811115613243576132426128f6565b5b61324f878288016131aa565b91505092959194509250565b60008060408385031215613272576132716128f1565b5b600061328085828601612b3e565b925050602061329185828601612b3e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132e257607f821691505b6020821081036132f5576132f461329b565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133316020836129c1565b915061333c826132fb565b602082019050919050565b6000602082019050818103600083015261336081613324565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006133d082612a68565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361340257613401613396565b5b600182019050919050565b7f53616c6520686173206e6f742073746172746564000000000000000000000000600082015250565b60006134436014836129c1565b915061344e8261340d565b602082019050919050565b6000602082019050818103600083015261347281613436565b9050919050565b600061348482612a68565b915061348f83612a68565b925082820261349d81612a68565b915082820484148315176134b4576134b3613396565b5b5092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006134f16013836129c1565b91506134fc826134bb565b602082019050919050565b60006020820190508181036000830152613520816134e4565b9050919050565b600081905092915050565b50565b6000613542600083613527565b915061354d82613532565b600082019050919050565b600061356382613535565b9150819050919050565b7f416c6c6f77206c6973742073616c6520686173206e6f74207374617274656421600082015250565b60006135a36020836129c1565b91506135ae8261356d565b602082019050919050565b600060208201905081810360008301526135d281613596565b9050919050565b60008160601b9050919050565b60006135f1826135d9565b9050919050565b6000613603826135e6565b9050919050565b61361b61361682612aeb565b6135f8565b82525050565b600061362d828461360a565b60148201915081905092915050565b7f496e76616c696420757365720000000000000000000000000000000000000000600082015250565b6000613672600c836129c1565b915061367d8261363c565b602082019050919050565b600060208201905081810360008301526136a181613665565b9050919050565b7f667265652073616c6520686173206e6f74207374617274656421000000000000600082015250565b60006136de601a836129c1565b91506136e9826136a8565b602082019050919050565b6000602082019050818103600083015261370d816136d1565b9050919050565b7f6f6e652074696d65206d696e7400000000000000000000000000000000000000600082015250565b600061374a600d836129c1565b915061375582613714565b602082019050919050565b600060208201905081810360008301526137798161373d565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026137e27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826137a5565b6137ec86836137a5565b95508019841693508086168417925050509392505050565b6000819050919050565b600061382961382461381f84612a68565b613804565b612a68565b9050919050565b6000819050919050565b6138438361380e565b61385761384f82613830565b8484546137b2565b825550505050565b600090565b61386c61385f565b61387781848461383a565b505050565b5b8181101561389b57613890600082613864565b60018101905061387d565b5050565b601f8211156138e0576138b181613780565b6138ba84613795565b810160208510156138c9578190505b6138dd6138d585613795565b83018261387c565b50505b505050565b600082821c905092915050565b6000613903600019846008026138e5565b1980831691505092915050565b600061391c83836138f2565b9150826002028217905092915050565b613935826129b6565b67ffffffffffffffff81111561394e5761394d612f57565b5b61395882546132ca565b61396382828561389f565b600060209050601f8311600181146139965760008415613984578287015190505b61398e8582613910565b8655506139f6565b601f1984166139a486613780565b60005b828110156139cc578489015182556001820191506020850194506020810190506139a7565b868310156139e957848901516139e5601f8916826138f2565b8355505b6001600288020188555050505b505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613a5a602f836129c1565b9150613a65826139fe565b604082019050919050565b60006020820190508181036000830152613a8981613a4d565b9050919050565b600081905092915050565b60008154613aa8816132ca565b613ab28186613a90565b94506001821660008114613acd5760018114613ae257613b15565b60ff1983168652811515820286019350613b15565b613aeb85613780565b60005b83811015613b0d57815481890152600182019150602081019050613aee565b838801955050505b50505092915050565b6000613b29826129b6565b613b338185613a90565b9350613b438185602086016129d2565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613b85600583613a90565b9150613b9082613b4f565b600582019050919050565b6000613ba78285613a9b565b9150613bb38284613b1e565b9150613bbe82613b78565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c266026836129c1565b9150613c3182613bca565b604082019050919050565b60006020820190508181036000830152613c5581613c19565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c8382613c5c565b613c8d8185613c67565b9350613c9d8185602086016129d2565b613ca6816129fc565b840191505092915050565b6000608082019050613cc66000830187612afd565b613cd36020830186612afd565b613ce06040830185612b93565b8181036060830152613cf28184613c78565b905095945050505050565b600081519050613d0c81612927565b92915050565b600060208284031215613d2857613d276128f1565b5b6000613d3684828501613cfd565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea2646970667358221220325ac2d52bde0139a2273bcf6e37289533871ebe6910589b1bdd0e1ba0198aa664736f6c634300081100330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000006468747470733a2f2f626c7573682d62726f61642d63617079626172612d3735372e6d7970696e6174612e636c6f75642f697066732f516d58656f316163437359436834367a3753454b7374326b666a46756e4a79616a363850516974326a7a4a5546702f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80636c0360eb11610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146106d9578063c9a141c614610716578063e985e9c51461073f578063f2fde38b1461077c578063fa845f0c146107a55761020f565b8063a22cb4651461063e578063a9d464ec14610667578063b88d4fde14610692578063b94805a2146106ae5761020f565b80638693da20116100e75780638693da201461056b57806388d15d50146105965780638da5cb5b146105bf57806395d89b41146105ea578063a0bcfc7f146106155761020f565b80636c0360eb146104c157806370a08231146104ec578063715018a6146105295780637f8218e1146105405761020f565b806336398f171161019b578063494f41a51161016a578063494f41a5146103eb5780634b518e481461041657806358e758bc1461043f5780636352211e1461045b57806367243482146104985761020f565b806336398f17146103785780633a30fb3c146103a15780633ccfd60b146103b857806342842e0e146103cf5761020f565b806318160ddd116101e257806318160ddd146102d557806323b872dd146103005780632929b4c91461031c5780632943cd43146103455780632db115441461035c5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612953565b6107bc565b604051610248919061299b565b60405180910390f35b34801561025d57600080fd5b5061026661084e565b6040516102739190612a46565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612a9e565b6108e0565b6040516102b09190612b0c565b60405180910390f35b6102d360048036038101906102ce9190612b53565b61095f565b005b3480156102e157600080fd5b506102ea610aa3565b6040516102f79190612ba2565b60405180910390f35b61031a60048036038101906103159190612bbd565b610aba565b005b34801561032857600080fd5b50610343600480360381019061033e9190612c75565b610ddc565b005b34801561035157600080fd5b5061035a610eb0565b005b61037660048036038101906103719190612a9e565b610f58565b005b34801561038457600080fd5b5061039f600480360381019061039a9190612d0b565b611004565b005b3480156103ad57600080fd5b506103b6611092565b005b3480156103c457600080fd5b506103cd61113a565b005b6103e960048036038101906103e49190612bbd565b611236565b005b3480156103f757600080fd5b50610400611256565b60405161040d919061299b565b60405180910390f35b34801561042257600080fd5b5061043d60048036038101906104389190612a9e565b611269565b005b61045960048036038101906104549190612da1565b6112ef565b005b34801561046757600080fd5b50610482600480360381019061047d9190612a9e565b611450565b60405161048f9190612b0c565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190612e57565b611462565b005b3480156104cd57600080fd5b506104d6611550565b6040516104e39190612a46565b60405180910390f35b3480156104f857600080fd5b50610513600480360381019061050e9190612ed8565b6115de565b6040516105209190612ba2565b60405180910390f35b34801561053557600080fd5b5061053e611696565b005b34801561054c57600080fd5b5061055561171e565b604051610562919061299b565b60405180910390f35b34801561057757600080fd5b50610580611731565b60405161058d9190612ba2565b60405180910390f35b3480156105a257600080fd5b506105bd60048036038101906105b89190612f05565b611737565b005b3480156105cb57600080fd5b506105d461192d565b6040516105e19190612b0c565b60405180910390f35b3480156105f657600080fd5b506105ff611957565b60405161060c9190612a46565b60405180910390f35b34801561062157600080fd5b5061063c60048036038101906106379190613082565b6119e9565b005b34801561064a57600080fd5b50610665600480360381019061066091906130f7565b611a78565b005b34801561067357600080fd5b5061067c611b83565b6040516106899190612ba2565b60405180910390f35b6106ac60048036038101906106a791906131d8565b611b89565b005b3480156106ba57600080fd5b506106c3611bfc565b6040516106d0919061299b565b60405180910390f35b3480156106e557600080fd5b5061070060048036038101906106fb9190612a9e565b611c0f565b60405161070d9190612a46565b60405180910390f35b34801561072257600080fd5b5061073d60048036038101906107389190612a9e565b611cb7565b005b34801561074b57600080fd5b506107666004803603810190610761919061325b565b611d3d565b604051610773919061299b565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e9190612ed8565b611dd1565b005b3480156107b157600080fd5b506107ba611ec8565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108475750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461085d906132ca565b80601f0160208091040260200160405190810160405280929190818152602001828054610889906132ca565b80156108d65780601f106108ab576101008083540402835291602001916108d6565b820191906000526020600020905b8154815290600101906020018083116108b957829003601f168201915b5050505050905090565b60006108eb82611f70565b610921576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096a82611450565b90508073ffffffffffffffffffffffffffffffffffffffff1661098b611fcf565b73ffffffffffffffffffffffffffffffffffffffff16146109ee576109b7816109b2611fcf565b611d3d565b6109ed576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610aad611fd7565b6001546000540303905090565b6000610ac582611fe0565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b2c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b38846120ac565b91509150610b4e8187610b49611fcf565b6120d3565b610b9a57610b6386610b5e611fcf565b611d3d565b610b99576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c00576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c0d8686866001612117565b8015610c1857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ce685610cc288888761211d565b7c020000000000000000000000000000000000000000000000000000000017612145565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610d6c5760006001850190506000600460008381526020019081526020016000205403610d6a576000548114610d69578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610dd48686866001612170565b505050505050565b610de4612176565b73ffffffffffffffffffffffffffffffffffffffff16610e0261192d565b73ffffffffffffffffffffffffffffffffffffffff1614610e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4f90613347565b60405180910390fd5b60005b83839050811015610eaa57610e97848483818110610e7c57610e7b613367565b5b9050602002016020810190610e919190612ed8565b8361217e565b8080610ea2906133c5565b915050610e5b565b50505050565b610eb8612176565b73ffffffffffffffffffffffffffffffffffffffff16610ed661192d565b73ffffffffffffffffffffffffffffffffffffffff1614610f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2390613347565b60405180910390fd5b600a60029054906101000a900460ff1615600a60026101000a81548160ff021916908315150217905550565b600a60029054906101000a900460ff16610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e90613459565b60405180910390fd5b80600c54610fb59190613479565b341015610ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fee90613507565b60405180910390fd5b611001338261217e565b50565b61100c612176565b73ffffffffffffffffffffffffffffffffffffffff1661102a61192d565b73ffffffffffffffffffffffffffffffffffffffff1614611080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107790613347565b60405180910390fd5b81600d8190555080600e819055505050565b61109a612176565b73ffffffffffffffffffffffffffffffffffffffff166110b861192d565b73ffffffffffffffffffffffffffffffffffffffff161461110e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110590613347565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b611142612176565b73ffffffffffffffffffffffffffffffffffffffff1661116061192d565b73ffffffffffffffffffffffffffffffffffffffff16146111b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ad90613347565b60405180910390fd5b60006111c061192d565b73ffffffffffffffffffffffffffffffffffffffff16476040516111e390613558565b60006040518083038185875af1925050503d8060008114611220576040519150601f19603f3d011682016040523d82523d6000602084013e611225565b606091505b505090508061123357600080fd5b50565b61125183838360405180602001604052806000815250611b89565b505050565b600a60009054906101000a900460ff1681565b611271612176565b73ffffffffffffffffffffffffffffffffffffffff1661128f61192d565b73ffffffffffffffffffffffffffffffffffffffff16146112e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dc90613347565b60405180910390fd5b80600b8190555050565b600a60019054906101000a900460ff1661133e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611335906135b9565b60405180910390fd5b82600b5461134c9190613479565b34101561138e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138590613507565b60405180910390fd5b611402828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e54336040516020016113e79190613621565b6040516020818303038152906040528051906020012061219c565b611441576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143890613688565b60405180910390fd5b61144b338461217e565b505050565b600061145b82611fe0565b9050919050565b61146a612176565b73ffffffffffffffffffffffffffffffffffffffff1661148861192d565b73ffffffffffffffffffffffffffffffffffffffff16146114de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d590613347565b60405180910390fd5b60005b848490508110156115495761153685858381811061150257611501613367565b5b90506020020160208101906115179190612ed8565b84848481811061152a57611529613367565b5b9050602002013561217e565b8080611541906133c5565b9150506114e1565b5050505050565b6009805461155d906132ca565b80601f0160208091040260200160405190810160405280929190818152602001828054611589906132ca565b80156115d65780601f106115ab576101008083540402835291602001916115d6565b820191906000526020600020905b8154815290600101906020018083116115b957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611645576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61169e612176565b73ffffffffffffffffffffffffffffffffffffffff166116bc61192d565b73ffffffffffffffffffffffffffffffffffffffff1614611712576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170990613347565b60405180910390fd5b61171c60006121b3565b565b600a60019054906101000a900460ff1681565b600c5481565b600a60009054906101000a900460ff16611786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177d906136f4565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a90613760565b60405180910390fd5b611887828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d543360405160200161186c9190613621565b6040516020818303038152906040528051906020012061219c565b6118c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bd90613688565b60405180910390fd5b6118d133600161217e565b6001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611966906132ca565b80601f0160208091040260200160405190810160405280929190818152602001828054611992906132ca565b80156119df5780601f106119b4576101008083540402835291602001916119df565b820191906000526020600020905b8154815290600101906020018083116119c257829003601f168201915b5050505050905090565b6119f1612176565b73ffffffffffffffffffffffffffffffffffffffff16611a0f61192d565b73ffffffffffffffffffffffffffffffffffffffff1614611a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5c90613347565b60405180910390fd5b8060099081611a74919061392c565b5050565b8060076000611a85611fcf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b32611fcf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b77919061299b565b60405180910390a35050565b600b5481565b611b94848484610aba565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bf657611bbf84848484612279565b611bf5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a60029054906101000a900460ff1681565b6060611c1a82611f70565b611c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5090613a70565b60405180910390fd5b600060098054611c68906132ca565b905011611c845760405180602001604052806000815250611cb0565b6009611c8f836123c9565b604051602001611ca0929190613b9b565b6040516020818303038152906040525b9050919050565b611cbf612176565b73ffffffffffffffffffffffffffffffffffffffff16611cdd61192d565b73ffffffffffffffffffffffffffffffffffffffff1614611d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2a90613347565b60405180910390fd5b80600c8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611dd9612176565b73ffffffffffffffffffffffffffffffffffffffff16611df761192d565b73ffffffffffffffffffffffffffffffffffffffff1614611e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4490613347565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb390613c3c565b60405180910390fd5b611ec5816121b3565b50565b611ed0612176565b73ffffffffffffffffffffffffffffffffffffffff16611eee61192d565b73ffffffffffffffffffffffffffffffffffffffff1614611f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3b90613347565b60405180910390fd5b600a60019054906101000a900460ff1615600a60016101000a81548160ff021916908315150217905550565b600081611f7b611fd7565b11158015611f8a575060005482105b8015611fc8575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611fef611fd7565b11612075576000548110156120745760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612072575b6000810361206857600460008360019003935083815260200190815260200160002054905061203e565b80925050506120a7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612134868684612497565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6121988282604051806020016040528060008152506124a0565b5050565b6000826121a9858461253d565b1490509392505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261229f611fcf565b8786866040518563ffffffff1660e01b81526004016122c19493929190613cb1565b6020604051808303816000875af19250505080156122fd57506040513d601f19601f820116820180604052508101906122fa9190613d12565b60015b612376573d806000811461232d576040519150601f19603f3d011682016040523d82523d6000602084013e612332565b606091505b50600081510361236e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600060016123d8846125b2565b01905060008167ffffffffffffffff8111156123f7576123f6612f57565b5b6040519080825280601f01601f1916602001820160405280156124295781602001600182028036833780820191505090505b509050600082602001820190505b60011561248c578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816124805761247f613d3f565b5b04945060008503612437575b819350505050919050565b60009392505050565b6124aa8383612705565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461253857600080549050600083820390505b6124ea6000868380600101945086612279565b612520576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106124d757816000541461253557600080fd5b50505b505050565b60008082905060005b84518110156125a757600085828151811061256457612563613367565b5b602002602001015190508083116125865761257f83826128c0565b9250612593565b61259081846128c0565b92505b50808061259f906133c5565b915050612546565b508091505092915050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612610577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161260657612605613d3f565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061264d576d04ee2d6d415b85acef8100000000838161264357612642613d3f565b5b0492506020810190505b662386f26fc10000831061267c57662386f26fc10000838161267257612671613d3f565b5b0492506010810190505b6305f5e10083106126a5576305f5e100838161269b5761269a613d3f565b5b0492506008810190505b61271083106126ca5761271083816126c0576126bf613d3f565b5b0492506004810190505b606483106126ed57606483816126e3576126e2613d3f565b5b0492506002810190505b600a83106126fc576001810190505b80915050919050565b60008054905060008203612745576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127526000848385612117565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506127c9836127ba600086600061211d565b6127c3856128d7565b17612145565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461286a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061282f565b50600082036128a5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506128bb6000848385612170565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612930816128fb565b811461293b57600080fd5b50565b60008135905061294d81612927565b92915050565b600060208284031215612969576129686128f1565b5b60006129778482850161293e565b91505092915050565b60008115159050919050565b61299581612980565b82525050565b60006020820190506129b0600083018461298c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129f05780820151818401526020810190506129d5565b60008484015250505050565b6000601f19601f8301169050919050565b6000612a18826129b6565b612a2281856129c1565b9350612a328185602086016129d2565b612a3b816129fc565b840191505092915050565b60006020820190508181036000830152612a608184612a0d565b905092915050565b6000819050919050565b612a7b81612a68565b8114612a8657600080fd5b50565b600081359050612a9881612a72565b92915050565b600060208284031215612ab457612ab36128f1565b5b6000612ac284828501612a89565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612af682612acb565b9050919050565b612b0681612aeb565b82525050565b6000602082019050612b216000830184612afd565b92915050565b612b3081612aeb565b8114612b3b57600080fd5b50565b600081359050612b4d81612b27565b92915050565b60008060408385031215612b6a57612b696128f1565b5b6000612b7885828601612b3e565b9250506020612b8985828601612a89565b9150509250929050565b612b9c81612a68565b82525050565b6000602082019050612bb76000830184612b93565b92915050565b600080600060608486031215612bd657612bd56128f1565b5b6000612be486828701612b3e565b9350506020612bf586828701612b3e565b9250506040612c0686828701612a89565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612c3557612c34612c10565b5b8235905067ffffffffffffffff811115612c5257612c51612c15565b5b602083019150836020820283011115612c6e57612c6d612c1a565b5b9250929050565b600080600060408486031215612c8e57612c8d6128f1565b5b600084013567ffffffffffffffff811115612cac57612cab6128f6565b5b612cb886828701612c1f565b93509350506020612ccb86828701612a89565b9150509250925092565b6000819050919050565b612ce881612cd5565b8114612cf357600080fd5b50565b600081359050612d0581612cdf565b92915050565b60008060408385031215612d2257612d216128f1565b5b6000612d3085828601612cf6565b9250506020612d4185828601612cf6565b9150509250929050565b60008083601f840112612d6157612d60612c10565b5b8235905067ffffffffffffffff811115612d7e57612d7d612c15565b5b602083019150836020820283011115612d9a57612d99612c1a565b5b9250929050565b600080600060408486031215612dba57612db96128f1565b5b6000612dc886828701612a89565b935050602084013567ffffffffffffffff811115612de957612de86128f6565b5b612df586828701612d4b565b92509250509250925092565b60008083601f840112612e1757612e16612c10565b5b8235905067ffffffffffffffff811115612e3457612e33612c15565b5b602083019150836020820283011115612e5057612e4f612c1a565b5b9250929050565b60008060008060408587031215612e7157612e706128f1565b5b600085013567ffffffffffffffff811115612e8f57612e8e6128f6565b5b612e9b87828801612c1f565b9450945050602085013567ffffffffffffffff811115612ebe57612ebd6128f6565b5b612eca87828801612e01565b925092505092959194509250565b600060208284031215612eee57612eed6128f1565b5b6000612efc84828501612b3e565b91505092915050565b60008060208385031215612f1c57612f1b6128f1565b5b600083013567ffffffffffffffff811115612f3a57612f396128f6565b5b612f4685828601612d4b565b92509250509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f8f826129fc565b810181811067ffffffffffffffff82111715612fae57612fad612f57565b5b80604052505050565b6000612fc16128e7565b9050612fcd8282612f86565b919050565b600067ffffffffffffffff821115612fed57612fec612f57565b5b612ff6826129fc565b9050602081019050919050565b82818337600083830152505050565b600061302561302084612fd2565b612fb7565b90508281526020810184848401111561304157613040612f52565b5b61304c848285613003565b509392505050565b600082601f83011261306957613068612c10565b5b8135613079848260208601613012565b91505092915050565b600060208284031215613098576130976128f1565b5b600082013567ffffffffffffffff8111156130b6576130b56128f6565b5b6130c284828501613054565b91505092915050565b6130d481612980565b81146130df57600080fd5b50565b6000813590506130f1816130cb565b92915050565b6000806040838503121561310e5761310d6128f1565b5b600061311c85828601612b3e565b925050602061312d858286016130e2565b9150509250929050565b600067ffffffffffffffff82111561315257613151612f57565b5b61315b826129fc565b9050602081019050919050565b600061317b61317684613137565b612fb7565b90508281526020810184848401111561319757613196612f52565b5b6131a2848285613003565b509392505050565b600082601f8301126131bf576131be612c10565b5b81356131cf848260208601613168565b91505092915050565b600080600080608085870312156131f2576131f16128f1565b5b600061320087828801612b3e565b945050602061321187828801612b3e565b935050604061322287828801612a89565b925050606085013567ffffffffffffffff811115613243576132426128f6565b5b61324f878288016131aa565b91505092959194509250565b60008060408385031215613272576132716128f1565b5b600061328085828601612b3e565b925050602061329185828601612b3e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132e257607f821691505b6020821081036132f5576132f461329b565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133316020836129c1565b915061333c826132fb565b602082019050919050565b6000602082019050818103600083015261336081613324565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006133d082612a68565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361340257613401613396565b5b600182019050919050565b7f53616c6520686173206e6f742073746172746564000000000000000000000000600082015250565b60006134436014836129c1565b915061344e8261340d565b602082019050919050565b6000602082019050818103600083015261347281613436565b9050919050565b600061348482612a68565b915061348f83612a68565b925082820261349d81612a68565b915082820484148315176134b4576134b3613396565b5b5092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006134f16013836129c1565b91506134fc826134bb565b602082019050919050565b60006020820190508181036000830152613520816134e4565b9050919050565b600081905092915050565b50565b6000613542600083613527565b915061354d82613532565b600082019050919050565b600061356382613535565b9150819050919050565b7f416c6c6f77206c6973742073616c6520686173206e6f74207374617274656421600082015250565b60006135a36020836129c1565b91506135ae8261356d565b602082019050919050565b600060208201905081810360008301526135d281613596565b9050919050565b60008160601b9050919050565b60006135f1826135d9565b9050919050565b6000613603826135e6565b9050919050565b61361b61361682612aeb565b6135f8565b82525050565b600061362d828461360a565b60148201915081905092915050565b7f496e76616c696420757365720000000000000000000000000000000000000000600082015250565b6000613672600c836129c1565b915061367d8261363c565b602082019050919050565b600060208201905081810360008301526136a181613665565b9050919050565b7f667265652073616c6520686173206e6f74207374617274656421000000000000600082015250565b60006136de601a836129c1565b91506136e9826136a8565b602082019050919050565b6000602082019050818103600083015261370d816136d1565b9050919050565b7f6f6e652074696d65206d696e7400000000000000000000000000000000000000600082015250565b600061374a600d836129c1565b915061375582613714565b602082019050919050565b600060208201905081810360008301526137798161373d565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026137e27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826137a5565b6137ec86836137a5565b95508019841693508086168417925050509392505050565b6000819050919050565b600061382961382461381f84612a68565b613804565b612a68565b9050919050565b6000819050919050565b6138438361380e565b61385761384f82613830565b8484546137b2565b825550505050565b600090565b61386c61385f565b61387781848461383a565b505050565b5b8181101561389b57613890600082613864565b60018101905061387d565b5050565b601f8211156138e0576138b181613780565b6138ba84613795565b810160208510156138c9578190505b6138dd6138d585613795565b83018261387c565b50505b505050565b600082821c905092915050565b6000613903600019846008026138e5565b1980831691505092915050565b600061391c83836138f2565b9150826002028217905092915050565b613935826129b6565b67ffffffffffffffff81111561394e5761394d612f57565b5b61395882546132ca565b61396382828561389f565b600060209050601f8311600181146139965760008415613984578287015190505b61398e8582613910565b8655506139f6565b601f1984166139a486613780565b60005b828110156139cc578489015182556001820191506020850194506020810190506139a7565b868310156139e957848901516139e5601f8916826138f2565b8355505b6001600288020188555050505b505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613a5a602f836129c1565b9150613a65826139fe565b604082019050919050565b60006020820190508181036000830152613a8981613a4d565b9050919050565b600081905092915050565b60008154613aa8816132ca565b613ab28186613a90565b94506001821660008114613acd5760018114613ae257613b15565b60ff1983168652811515820286019350613b15565b613aeb85613780565b60005b83811015613b0d57815481890152600182019150602081019050613aee565b838801955050505b50505092915050565b6000613b29826129b6565b613b338185613a90565b9350613b438185602086016129d2565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613b85600583613a90565b9150613b9082613b4f565b600582019050919050565b6000613ba78285613a9b565b9150613bb38284613b1e565b9150613bbe82613b78565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c266026836129c1565b9150613c3182613bca565b604082019050919050565b60006020820190508181036000830152613c5581613c19565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c8382613c5c565b613c8d8185613c67565b9350613c9d8185602086016129d2565b613ca6816129fc565b840191505092915050565b6000608082019050613cc66000830187612afd565b613cd36020830186612afd565b613ce06040830185612b93565b8181036060830152613cf28184613c78565b905095945050505050565b600081519050613d0c81612927565b92915050565b600060208284031215613d2857613d276128f1565b5b6000613d3684828501613cfd565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea2646970667358221220325ac2d52bde0139a2273bcf6e37289533871ebe6910589b1bdd0e1ba0198aa664736f6c63430008110033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000006468747470733a2f2f626c7573682d62726f61642d63617079626172612d3735372e6d7970696e6174612e636c6f75642f697066732f516d58656f316163437359436834367a3753454b7374326b666a46756e4a79616a363850516974326a7a4a5546702f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseURL (string): https://blush-broad-capybara-757.mypinata.cloud/ipfs/QmXeo1acCsYCh46z7SEKst2kfjFunJyaj68PQit2jzJUFp/

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [2] : 68747470733a2f2f626c7573682d62726f61642d63617079626172612d373537
Arg [3] : 2e6d7970696e6174612e636c6f75642f697066732f516d58656f316163437359
Arg [4] : 436834367a3753454b7374326b666a46756e4a79616a363850516974326a7a4a
Arg [5] : 5546702f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

70750:3284:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35222:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36124:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42615:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42048:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31875:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46254:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73157:178;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71673:91;;;;;;;;;;;;;:::i;:::-;;72729:224;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71307:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71484:85;;;;;;;;;;;;;:::i;:::-;;73882:147;;;;;;;;;;;;;:::i;:::-;;49175:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70866:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71772:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72351:370;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37517:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72961:188;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70836:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33059:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16256:103;;;;;;;;;;;;;:::i;:::-;;70901:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71020:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71973:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15605:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36300:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73343;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43173:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70976:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49966:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70937:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73573:301;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71872:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43564:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16514:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71577:88;;;;;;;;;;;;;:::i;:::-;;35222:639;35307:4;35646:10;35631:25;;:11;:25;;;;:102;;;;35723:10;35708:25;;:11;:25;;;;35631:102;:179;;;;35800:10;35785:25;;:11;:25;;;;35631:179;35611:199;;35222:639;;;:::o;36124:100::-;36178:13;36211:5;36204:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36124:100;:::o;42615:218::-;42691:7;42716:16;42724:7;42716;:16::i;:::-;42711:64;;42741:34;;;;;;;;;;;;;;42711:64;42795:15;:24;42811:7;42795:24;;;;;;;;;;;:30;;;;;;;;;;;;42788:37;;42615:218;;;:::o;42048:408::-;42137:13;42153:16;42161:7;42153;:16::i;:::-;42137:32;;42209:5;42186:28;;:19;:17;:19::i;:::-;:28;;;42182:175;;42234:44;42251:5;42258:19;:17;:19::i;:::-;42234:16;:44::i;:::-;42229:128;;42306:35;;;;;;;;;;;;;;42229:128;42182:175;42402:2;42369:15;:24;42385:7;42369:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;42440:7;42436:2;42420:28;;42429:5;42420:28;;;;;;;;;;;;42126:330;42048:408;;:::o;31875:323::-;31936:7;32164:15;:13;:15::i;:::-;32149:12;;32133:13;;:28;:46;32126:53;;31875:323;:::o;46254:2825::-;46396:27;46426;46445:7;46426:18;:27::i;:::-;46396:57;;46511:4;46470:45;;46486:19;46470:45;;;46466:86;;46524:28;;;;;;;;;;;;;;46466:86;46566:27;46595:23;46622:35;46649:7;46622:26;:35::i;:::-;46565:92;;;;46757:68;46782:15;46799:4;46805:19;:17;:19::i;:::-;46757:24;:68::i;:::-;46752:180;;46845:43;46862:4;46868:19;:17;:19::i;:::-;46845:16;:43::i;:::-;46840:92;;46897:35;;;;;;;;;;;;;;46840:92;46752:180;46963:1;46949:16;;:2;:16;;;46945:52;;46974:23;;;;;;;;;;;;;;46945:52;47010:43;47032:4;47038:2;47042:7;47051:1;47010:21;:43::i;:::-;47146:15;47143:160;;;47286:1;47265:19;47258:30;47143:160;47683:18;:24;47702:4;47683:24;;;;;;;;;;;;;;;;47681:26;;;;;;;;;;;;47752:18;:22;47771:2;47752:22;;;;;;;;;;;;;;;;47750:24;;;;;;;;;;;48074:146;48111:2;48160:45;48175:4;48181:2;48185:19;48160:14;:45::i;:::-;28274:8;48132:73;48074:18;:146::i;:::-;48045:17;:26;48063:7;48045:26;;;;;;;;;;;:175;;;;48391:1;28274:8;48340:19;:47;:52;48336:627;;48413:19;48445:1;48435:7;:11;48413:33;;48602:1;48568:17;:30;48586:11;48568:30;;;;;;;;;;;;:35;48564:384;;48706:13;;48691:11;:28;48687:242;;48886:19;48853:17;:30;48871:11;48853:30;;;;;;;;;;;:52;;;;48687:242;48564:384;48394:569;48336:627;49010:7;49006:2;48991:27;;49000:4;48991:27;;;;;;;;;;;;49029:42;49050:4;49056:2;49060:7;49069:1;49029:20;:42::i;:::-;46385:2694;;;46254:2825;;;:::o;73157:178::-;15836:12;:10;:12::i;:::-;15825:23;;:7;:5;:7::i;:::-;:23;;;15817:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;73248:9:::1;73243:85;73265:2;;:9;;73261:1;:13;73243:85;;;73295:21;73305:2;;73308:1;73305:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;73312:3;73295:9;:21::i;:::-;73276:3;;;;;:::i;:::-;;;;73243:85;;;;73157:178:::0;;;:::o;71673:91::-;15836:12;:10;:12::i;:::-;15825:23;;:7;:5;:7::i;:::-;:23;;;15817:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71746:10:::1;;;;;;;;;;;71745:11;71732:10;;:24;;;;;;;;;;;;;;;;;;71673:91::o:0;72729:224::-;72799:10;;;;;;;;;;;72791:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;72879:4;72866:10;;:17;;;;:::i;:::-;72853:9;:30;;72845:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;72918:27;72928:10;72940:4;72918:9;:27::i;:::-;72729:224;:::o;71307:169::-;15836:12;:10;:12::i;:::-;15825:23;;:7;:5;:7::i;:::-;:23;;;15817:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71422:13:::1;71407:12;:28;;;;71458:10;71446:9;:22;;;;71307:169:::0;;:::o;71484:85::-;15836:12;:10;:12::i;:::-;15825:23;;:7;:5;:7::i;:::-;:23;;;15817:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71553:8:::1;;;;;;;;;;;71552:9;71541:8;;:20;;;;;;;;;;;;;;;;;;71484:85::o:0;73882:147::-;15836:12;:10;:12::i;:::-;15825:23;;:7;:5;:7::i;:::-;:23;;;15817:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;73931:7:::1;73952;:5;:7::i;:::-;73944:21;;73973;73944:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73930:69;;;74018:2;74010:11;;;::::0;::::1;;73919:110;73882:147::o:0;49175:193::-;49321:39;49338:4;49344:2;49348:7;49321:39;;;;;;;;;;;;:16;:39::i;:::-;49175:193;;;:::o;70866:28::-;;;;;;;;;;;;;:::o;71772:91::-;15836:12;:10;:12::i;:::-;15825:23;;:7;:5;:7::i;:::-;:23;;;15817:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71850:5:::1;71838:9;:17;;;;71772:91:::0;:::o;72351:370::-;72444:9;;;;;;;;;;;72436:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;72534:4;72522:9;;:16;;;;:::i;:::-;72509:9;:29;;72501:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;72581:77;72600:5;;72581:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72607:9;;72645:10;72628:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;72618:39;;;;;;72581:18;:77::i;:::-;72573:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;72686:27;72696:10;72708:4;72686:9;:27::i;:::-;72351:370;;;:::o;37517:152::-;37589:7;37632:27;37651:7;37632:18;:27::i;:::-;37609:52;;37517:152;;;:::o;72961:188::-;15836:12;:10;:12::i;:::-;15825:23;;:7;:5;:7::i;:::-;:23;;;15817:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;73059:9:::1;73054:88;73076:2;;:9;;73072:1;:13;73054:88;;;73106:24;73116:2;;73119:1;73116:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;73123:3;;73127:1;73123:6;;;;;;;:::i;:::-;;;;;;;;73106:9;:24::i;:::-;73087:3;;;;;:::i;:::-;;;;73054:88;;;;72961:188:::0;;;;:::o;70836:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33059:233::-;33131:7;33172:1;33155:19;;:5;:19;;;33151:60;;33183:28;;;;;;;;;;;;;;33151:60;27218:13;33229:18;:25;33248:5;33229:25;;;;;;;;;;;;;;;;:55;33222:62;;33059:233;;;:::o;16256:103::-;15836:12;:10;:12::i;:::-;15825:23;;:7;:5;:7::i;:::-;:23;;;15817:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16321:30:::1;16348:1;16321:18;:30::i;:::-;16256:103::o:0;70901:29::-;;;;;;;;;;;;;:::o;71020:38::-;;;;:::o;71973:370::-;72043:8;;;;;;;;;;;72035:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;72102:11;:23;72114:10;72102:23;;;;;;;;;;;;;;;;;;;;;;;;;72101:24;72093:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;72162:80;72181:5;;72162:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72188:12;;72229:10;72212:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;72202:39;;;;;;72162:18;:80::i;:::-;72154:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;72270:24;72280:10;72292:1;72270:9;:24::i;:::-;72331:4;72305:11;:23;72317:10;72305:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;71973:370;;:::o;15605:87::-;15651:7;15678:6;;;;;;;;;;;15671:13;;15605:87;:::o;36300:104::-;36356:13;36389:7;36382:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36300:104;:::o;73343:::-;15836:12;:10;:12::i;:::-;15825:23;;:7;:5;:7::i;:::-;:23;;;15817:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;73429:10:::1;73419:7;:20;;;;;;:::i;:::-;;73343:104:::0;:::o;43173:234::-;43320:8;43268:18;:39;43287:19;:17;:19::i;:::-;43268:39;;;;;;;;;;;;;;;:49;43308:8;43268:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;43380:8;43344:55;;43359:19;:17;:19::i;:::-;43344:55;;;43390:8;43344:55;;;;;;:::i;:::-;;;;;;;;43173:234;;:::o;70976:37::-;;;;:::o;49966:407::-;50141:31;50154:4;50160:2;50164:7;50141:12;:31::i;:::-;50205:1;50187:2;:14;;;:19;50183:183;;50226:56;50257:4;50263:2;50267:7;50276:5;50226:30;:56::i;:::-;50221:145;;50310:40;;;;;;;;;;;;;;50221:145;50183:183;49966:407;;;;:::o;70937:30::-;;;;;;;;;;;;;:::o;73573:301::-;73647:13;73682:17;73690:8;73682:7;:17::i;:::-;73673:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;73794:1;73776:7;73770:21;;;;;:::i;:::-;;;:25;:96;;;;;;;;;;;;;;;;;73822:7;73831:19;:8;:17;:19::i;:::-;73805:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;73770:96;73763:103;;73573:301;;;:::o;71872:93::-;15836:12;:10;:12::i;:::-;15825:23;;:7;:5;:7::i;:::-;:23;;;15817:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71952:5:::1;71939:10;:18;;;;71872:93:::0;:::o;43564:164::-;43661:4;43685:18;:25;43704:5;43685:25;;;;;;;;;;;;;;;:35;43711:8;43685:35;;;;;;;;;;;;;;;;;;;;;;;;;43678:42;;43564:164;;;;:::o;16514:201::-;15836:12;:10;:12::i;:::-;15825:23;;:7;:5;:7::i;:::-;:23;;;15817:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16623:1:::1;16603:22;;:8;:22;;::::0;16595:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;16679:28;16698:8;16679:18;:28::i;:::-;16514:201:::0;:::o;71577:88::-;15836:12;:10;:12::i;:::-;15825:23;;:7;:5;:7::i;:::-;:23;;;15817:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71648:9:::1;;;;;;;;;;;71647:10;71635:9;;:22;;;;;;;;;;;;;;;;;;71577:88::o:0;43986:282::-;44051:4;44107:7;44088:15;:13;:15::i;:::-;:26;;:66;;;;;44141:13;;44131:7;:23;44088:66;:153;;;;;44240:1;27994:8;44192:17;:26;44210:7;44192:26;;;;;;;;;;;;:44;:49;44088:153;44068:173;;43986:282;;;:::o;66294:105::-;66354:7;66381:10;66374:17;;66294:105;:::o;31391:92::-;31447:7;31474:1;31467:8;;31391:92;:::o;38672:1275::-;38739:7;38759:12;38774:7;38759:22;;38842:4;38823:15;:13;:15::i;:::-;:23;38819:1061;;38876:13;;38869:4;:20;38865:1015;;;38914:14;38931:17;:23;38949:4;38931:23;;;;;;;;;;;;38914:40;;39048:1;27994:8;39020:6;:24;:29;39016:845;;39685:113;39702:1;39692:6;:11;39685:113;;39745:17;:25;39763:6;;;;;;;39745:25;;;;;;;;;;;;39736:34;;39685:113;;;39831:6;39824:13;;;;;;39016:845;38891:989;38865:1015;38819:1061;39908:31;;;;;;;;;;;;;;38672:1275;;;;:::o;45149:485::-;45251:27;45280:23;45321:38;45362:15;:24;45378:7;45362:24;;;;;;;;;;;45321:65;;45539:18;45516:41;;45596:19;45590:26;45571:45;;45501:126;45149:485;;;:::o;44377:659::-;44526:11;44691:16;44684:5;44680:28;44671:37;;44851:16;44840:9;44836:32;44823:45;;45001:15;44990:9;44987:30;44979:5;44968:9;44965:20;44962:56;44952:66;;44377:659;;;;;:::o;51035:159::-;;;;;:::o;65603:311::-;65738:7;65758:16;28398:3;65784:19;:41;;65758:68;;28398:3;65852:31;65863:4;65869:2;65873:9;65852:10;:31::i;:::-;65844:40;;:62;;65837:69;;;65603:311;;;;;:::o;40495:450::-;40575:14;40743:16;40736:5;40732:28;40723:37;;40920:5;40906:11;40881:23;40877:41;40874:52;40867:5;40864:63;40854:73;;40495:450;;;;:::o;51859:158::-;;;;;:::o;14979:98::-;15032:7;15059:10;15052:17;;14979:98;:::o;60126:112::-;60203:27;60213:2;60217:8;60203:27;;;;;;;;;;;;:9;:27::i;:::-;60126:112;;:::o;69285:190::-;69410:4;69463;69434:25;69447:5;69454:4;69434:12;:25::i;:::-;:33;69427:40;;69285:190;;;;;:::o;16875:191::-;16949:16;16968:6;;;;;;;;;;;16949:25;;16994:8;16985:6;;:17;;;;;;;;;;;;;;;;;;17049:8;17018:40;;17039:8;17018:40;;;;;;;;;;;;16938:128;16875:191;:::o;52457:716::-;52620:4;52666:2;52641:45;;;52687:19;:17;:19::i;:::-;52708:4;52714:7;52723:5;52641:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;52637:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52941:1;52924:6;:13;:18;52920:235;;52970:40;;;;;;;;;;;;;;52920:235;53113:6;53107:13;53098:6;53094:2;53090:15;53083:38;52637:529;52810:54;;;52800:64;;;:6;:64;;;;52793:71;;;52457:716;;;;;;:::o;13052:::-;13108:13;13159:14;13196:1;13176:17;13187:5;13176:10;:17::i;:::-;:21;13159:38;;13212:20;13246:6;13235:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13212:41;;13268:11;13397:6;13393:2;13389:15;13381:6;13377:28;13370:35;;13434:288;13441:4;13434:288;;;13466:5;;;;;;;;13608:8;13603:2;13596:5;13592:14;13587:30;13582:3;13574:44;13664:2;13655:11;;;;;;:::i;:::-;;;;;13698:1;13689:5;:10;13434:288;13685:21;13434:288;13743:6;13736:13;;;;;13052:716;;;:::o;65304:147::-;65441:6;65304:147;;;;;:::o;59353:689::-;59484:19;59490:2;59494:8;59484:5;:19::i;:::-;59563:1;59545:2;:14;;;:19;59541:483;;59585:11;59599:13;;59585:27;;59631:13;59653:8;59647:3;:14;59631:30;;59680:233;59711:62;59750:1;59754:2;59758:7;;;;;;59767:5;59711:30;:62::i;:::-;59706:167;;59809:40;;;;;;;;;;;;;;59706:167;59908:3;59900:5;:11;59680:233;;59995:3;59978:13;;:20;59974:34;;60000:8;;;59974:34;59566:458;;59541:483;59353:689;;;:::o;69836:675::-;69919:7;69939:20;69962:4;69939:27;;69982:9;69977:497;70001:5;:12;69997:1;:16;69977:497;;;70035:20;70058:5;70064:1;70058:8;;;;;;;;:::i;:::-;;;;;;;;70035:31;;70101:12;70085;:28;70081:382;;70228:42;70243:12;70257;70228:14;:42::i;:::-;70213:57;;70081:382;;;70405:42;70420:12;70434;70405:14;:42::i;:::-;70390:57;;70081:382;70020:454;70015:3;;;;;:::i;:::-;;;;69977:497;;;;70491:12;70484:19;;;69836:675;;;;:::o;10073:922::-;10126:7;10146:14;10163:1;10146:18;;10213:6;10204:5;:15;10200:102;;10249:6;10240:15;;;;;;:::i;:::-;;;;;10284:2;10274:12;;;;10200:102;10329:6;10320:5;:15;10316:102;;10365:6;10356:15;;;;;;:::i;:::-;;;;;10400:2;10390:12;;;;10316:102;10445:6;10436:5;:15;10432:102;;10481:6;10472:15;;;;;;:::i;:::-;;;;;10516:2;10506:12;;;;10432:102;10561:5;10552;:14;10548:99;;10596:5;10587:14;;;;;;:::i;:::-;;;;;10630:1;10620:11;;;;10548:99;10674:5;10665;:14;10661:99;;10709:5;10700:14;;;;;;:::i;:::-;;;;;10743:1;10733:11;;;;10661:99;10787:5;10778;:14;10774:99;;10822:5;10813:14;;;;;;:::i;:::-;;;;;10856:1;10846:11;;;;10774:99;10900:5;10891;:14;10887:66;;10936:1;10926:11;;;;10887:66;10981:6;10974:13;;;10073:922;;;:::o;53635:2966::-;53708:20;53731:13;;53708:36;;53771:1;53759:8;:13;53755:44;;53781:18;;;;;;;;;;;;;;53755:44;53812:61;53842:1;53846:2;53850:12;53864:8;53812:21;:61::i;:::-;54356:1;27356:2;54326:1;:26;;54325:32;54313:8;:45;54287:18;:22;54306:2;54287:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;54635:139;54672:2;54726:33;54749:1;54753:2;54757:1;54726:14;:33::i;:::-;54693:30;54714:8;54693:20;:30::i;:::-;:66;54635:18;:139::i;:::-;54601:17;:31;54619:12;54601:31;;;;;;;;;;;:173;;;;54791:16;54822:11;54851:8;54836:12;:23;54822:37;;55372:16;55368:2;55364:25;55352:37;;55744:12;55704:8;55663:1;55601:25;55542:1;55481;55454:335;56115:1;56101:12;56097:20;56055:346;56156:3;56147:7;56144:16;56055:346;;56374:7;56364:8;56361:1;56334:25;56331:1;56328;56323:59;56209:1;56200:7;56196:15;56185:26;;56055:346;;;56059:77;56446:1;56434:8;:13;56430:45;;56456:19;;;;;;;;;;;;;;56430:45;56508:3;56492:13;:19;;;;54061:2462;;56533:60;56562:1;56566:2;56570:12;56584:8;56533:20;:60::i;:::-;53697:2904;53635:2966;;:::o;70519:224::-;70587:13;70650:1;70644:4;70637:15;70679:1;70673:4;70666:15;70720:4;70714;70704:21;70695:30;;70519:224;;;;:::o;41047:324::-;41117:14;41350:1;41340:8;41337:15;41311:24;41307:46;41297:56;;41047:324;;;:::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:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:117;6222:1;6219;6212:12;6253:568;6326:8;6336:6;6386:3;6379:4;6371:6;6367:17;6363:27;6353:122;;6394:79;;:::i;:::-;6353:122;6507:6;6494:20;6484:30;;6537:18;6529:6;6526:30;6523:117;;;6559:79;;:::i;:::-;6523:117;6673:4;6665:6;6661:17;6649:29;;6727:3;6719:4;6711:6;6707:17;6697:8;6693:32;6690:41;6687:128;;;6734:79;;:::i;:::-;6687:128;6253:568;;;;;:::o;6827:704::-;6922:6;6930;6938;6987:2;6975:9;6966:7;6962:23;6958:32;6955:119;;;6993:79;;:::i;:::-;6955:119;7141:1;7130:9;7126:17;7113:31;7171:18;7163:6;7160:30;7157:117;;;7193:79;;:::i;:::-;7157:117;7306:80;7378:7;7369:6;7358:9;7354:22;7306:80;:::i;:::-;7288:98;;;;7084:312;7435:2;7461:53;7506:7;7497:6;7486:9;7482:22;7461:53;:::i;:::-;7451:63;;7406:118;6827:704;;;;;:::o;7537:77::-;7574:7;7603:5;7592:16;;7537:77;;;:::o;7620:122::-;7693:24;7711:5;7693:24;:::i;:::-;7686:5;7683:35;7673:63;;7732:1;7729;7722:12;7673:63;7620:122;:::o;7748:139::-;7794:5;7832:6;7819:20;7810:29;;7848:33;7875:5;7848:33;:::i;:::-;7748:139;;;;:::o;7893:474::-;7961:6;7969;8018:2;8006:9;7997:7;7993:23;7989:32;7986:119;;;8024:79;;:::i;:::-;7986:119;8144:1;8169:53;8214:7;8205:6;8194:9;8190:22;8169:53;:::i;:::-;8159:63;;8115:117;8271:2;8297:53;8342:7;8333:6;8322:9;8318:22;8297:53;:::i;:::-;8287:63;;8242:118;7893:474;;;;;:::o;8390:568::-;8463:8;8473:6;8523:3;8516:4;8508:6;8504:17;8500:27;8490:122;;8531:79;;:::i;:::-;8490:122;8644:6;8631:20;8621:30;;8674:18;8666:6;8663:30;8660:117;;;8696:79;;:::i;:::-;8660:117;8810:4;8802:6;8798:17;8786:29;;8864:3;8856:4;8848:6;8844:17;8834:8;8830:32;8827:41;8824:128;;;8871:79;;:::i;:::-;8824:128;8390:568;;;;;:::o;8964:704::-;9059:6;9067;9075;9124:2;9112:9;9103:7;9099:23;9095:32;9092:119;;;9130:79;;:::i;:::-;9092:119;9250:1;9275:53;9320:7;9311:6;9300:9;9296:22;9275:53;:::i;:::-;9265:63;;9221:117;9405:2;9394:9;9390:18;9377:32;9436:18;9428:6;9425:30;9422:117;;;9458:79;;:::i;:::-;9422:117;9571:80;9643:7;9634:6;9623:9;9619:22;9571:80;:::i;:::-;9553:98;;;;9348:313;8964:704;;;;;:::o;9691:568::-;9764:8;9774:6;9824:3;9817:4;9809:6;9805:17;9801:27;9791:122;;9832:79;;:::i;:::-;9791:122;9945:6;9932:20;9922:30;;9975:18;9967:6;9964:30;9961:117;;;9997:79;;:::i;:::-;9961:117;10111:4;10103:6;10099:17;10087:29;;10165:3;10157:4;10149:6;10145:17;10135:8;10131:32;10128:41;10125:128;;;10172:79;;:::i;:::-;10125:128;9691:568;;;;;:::o;10265:934::-;10387:6;10395;10403;10411;10460:2;10448:9;10439:7;10435:23;10431:32;10428:119;;;10466:79;;:::i;:::-;10428:119;10614:1;10603:9;10599:17;10586:31;10644:18;10636:6;10633:30;10630:117;;;10666:79;;:::i;:::-;10630:117;10779:80;10851:7;10842:6;10831:9;10827:22;10779:80;:::i;:::-;10761:98;;;;10557:312;10936:2;10925:9;10921:18;10908:32;10967:18;10959:6;10956:30;10953:117;;;10989:79;;:::i;:::-;10953:117;11102:80;11174:7;11165:6;11154:9;11150:22;11102:80;:::i;:::-;11084:98;;;;10879:313;10265:934;;;;;;;:::o;11205:329::-;11264:6;11313:2;11301:9;11292:7;11288:23;11284:32;11281:119;;;11319:79;;:::i;:::-;11281:119;11439:1;11464:53;11509:7;11500:6;11489:9;11485:22;11464:53;:::i;:::-;11454:63;;11410:117;11205:329;;;;:::o;11540:559::-;11626:6;11634;11683:2;11671:9;11662:7;11658:23;11654:32;11651:119;;;11689:79;;:::i;:::-;11651:119;11837:1;11826:9;11822:17;11809:31;11867:18;11859:6;11856:30;11853:117;;;11889:79;;:::i;:::-;11853:117;12002:80;12074:7;12065:6;12054:9;12050:22;12002:80;:::i;:::-;11984:98;;;;11780:312;11540:559;;;;;:::o;12105:117::-;12214:1;12211;12204:12;12228:180;12276:77;12273:1;12266:88;12373:4;12370:1;12363:15;12397:4;12394:1;12387:15;12414:281;12497:27;12519:4;12497:27;:::i;:::-;12489:6;12485:40;12627:6;12615:10;12612:22;12591:18;12579:10;12576:34;12573:62;12570:88;;;12638:18;;:::i;:::-;12570:88;12678:10;12674:2;12667:22;12457:238;12414:281;;:::o;12701:129::-;12735:6;12762:20;;:::i;:::-;12752:30;;12791:33;12819:4;12811:6;12791:33;:::i;:::-;12701:129;;;:::o;12836:308::-;12898:4;12988:18;12980:6;12977:30;12974:56;;;13010:18;;:::i;:::-;12974:56;13048:29;13070:6;13048:29;:::i;:::-;13040:37;;13132:4;13126;13122:15;13114:23;;12836:308;;;:::o;13150:146::-;13247:6;13242:3;13237;13224:30;13288:1;13279:6;13274:3;13270:16;13263:27;13150:146;;;:::o;13302:425::-;13380:5;13405:66;13421:49;13463:6;13421:49;:::i;:::-;13405:66;:::i;:::-;13396:75;;13494:6;13487:5;13480:21;13532:4;13525:5;13521:16;13570:3;13561:6;13556:3;13552:16;13549:25;13546:112;;;13577:79;;:::i;:::-;13546:112;13667:54;13714:6;13709:3;13704;13667:54;:::i;:::-;13386:341;13302:425;;;;;:::o;13747:340::-;13803:5;13852:3;13845:4;13837:6;13833:17;13829:27;13819:122;;13860:79;;:::i;:::-;13819:122;13977:6;13964:20;14002:79;14077:3;14069:6;14062:4;14054:6;14050:17;14002:79;:::i;:::-;13993:88;;13809:278;13747:340;;;;:::o;14093:509::-;14162:6;14211:2;14199:9;14190:7;14186:23;14182:32;14179:119;;;14217:79;;:::i;:::-;14179:119;14365:1;14354:9;14350:17;14337:31;14395:18;14387:6;14384:30;14381:117;;;14417:79;;:::i;:::-;14381:117;14522:63;14577:7;14568:6;14557:9;14553:22;14522:63;:::i;:::-;14512:73;;14308:287;14093:509;;;;:::o;14608:116::-;14678:21;14693:5;14678:21;:::i;:::-;14671:5;14668:32;14658:60;;14714:1;14711;14704:12;14658:60;14608:116;:::o;14730:133::-;14773:5;14811:6;14798:20;14789:29;;14827:30;14851:5;14827:30;:::i;:::-;14730:133;;;;:::o;14869:468::-;14934:6;14942;14991:2;14979:9;14970:7;14966:23;14962:32;14959:119;;;14997:79;;:::i;:::-;14959:119;15117:1;15142:53;15187:7;15178:6;15167:9;15163:22;15142:53;:::i;:::-;15132:63;;15088:117;15244:2;15270:50;15312:7;15303:6;15292:9;15288:22;15270:50;:::i;:::-;15260:60;;15215:115;14869:468;;;;;:::o;15343:307::-;15404:4;15494:18;15486:6;15483:30;15480:56;;;15516:18;;:::i;:::-;15480:56;15554:29;15576:6;15554:29;:::i;:::-;15546:37;;15638:4;15632;15628:15;15620:23;;15343:307;;;:::o;15656:423::-;15733:5;15758:65;15774:48;15815:6;15774:48;:::i;:::-;15758:65;:::i;:::-;15749:74;;15846:6;15839:5;15832:21;15884:4;15877:5;15873:16;15922:3;15913:6;15908:3;15904:16;15901:25;15898:112;;;15929:79;;:::i;:::-;15898:112;16019:54;16066:6;16061:3;16056;16019:54;:::i;:::-;15739:340;15656:423;;;;;:::o;16098:338::-;16153:5;16202:3;16195:4;16187:6;16183:17;16179:27;16169:122;;16210:79;;:::i;:::-;16169:122;16327:6;16314:20;16352:78;16426:3;16418:6;16411:4;16403:6;16399:17;16352:78;:::i;:::-;16343:87;;16159:277;16098:338;;;;:::o;16442:943::-;16537:6;16545;16553;16561;16610:3;16598:9;16589:7;16585:23;16581:33;16578:120;;;16617:79;;:::i;:::-;16578:120;16737:1;16762:53;16807:7;16798:6;16787:9;16783:22;16762:53;:::i;:::-;16752:63;;16708:117;16864:2;16890:53;16935:7;16926:6;16915:9;16911:22;16890:53;:::i;:::-;16880:63;;16835:118;16992:2;17018:53;17063:7;17054:6;17043:9;17039:22;17018:53;:::i;:::-;17008:63;;16963:118;17148:2;17137:9;17133:18;17120:32;17179:18;17171:6;17168:30;17165:117;;;17201:79;;:::i;:::-;17165:117;17306:62;17360:7;17351:6;17340:9;17336:22;17306:62;:::i;:::-;17296:72;;17091:287;16442:943;;;;;;;:::o;17391:474::-;17459:6;17467;17516:2;17504:9;17495:7;17491:23;17487:32;17484:119;;;17522:79;;:::i;:::-;17484:119;17642:1;17667:53;17712:7;17703:6;17692:9;17688:22;17667:53;:::i;:::-;17657:63;;17613:117;17769:2;17795:53;17840:7;17831:6;17820:9;17816:22;17795:53;:::i;:::-;17785:63;;17740:118;17391:474;;;;;:::o;17871:180::-;17919:77;17916:1;17909:88;18016:4;18013:1;18006:15;18040:4;18037:1;18030:15;18057:320;18101:6;18138:1;18132:4;18128:12;18118:22;;18185:1;18179:4;18175:12;18206:18;18196:81;;18262:4;18254:6;18250:17;18240:27;;18196:81;18324:2;18316:6;18313:14;18293:18;18290:38;18287:84;;18343:18;;:::i;:::-;18287:84;18108:269;18057:320;;;:::o;18383:182::-;18523:34;18519:1;18511:6;18507:14;18500:58;18383:182;:::o;18571:366::-;18713:3;18734:67;18798:2;18793:3;18734:67;:::i;:::-;18727:74;;18810:93;18899:3;18810:93;:::i;:::-;18928:2;18923:3;18919:12;18912:19;;18571:366;;;:::o;18943:419::-;19109:4;19147:2;19136:9;19132:18;19124:26;;19196:9;19190:4;19186:20;19182:1;19171:9;19167:17;19160:47;19224:131;19350:4;19224:131;:::i;:::-;19216:139;;18943:419;;;:::o;19368:180::-;19416:77;19413:1;19406:88;19513:4;19510:1;19503:15;19537:4;19534:1;19527:15;19554:180;19602:77;19599:1;19592:88;19699:4;19696:1;19689:15;19723:4;19720:1;19713:15;19740:233;19779:3;19802:24;19820:5;19802:24;:::i;:::-;19793:33;;19848:66;19841:5;19838:77;19835:103;;19918:18;;:::i;:::-;19835:103;19965:1;19958:5;19954:13;19947:20;;19740:233;;;:::o;19979:170::-;20119:22;20115:1;20107:6;20103:14;20096:46;19979:170;:::o;20155:366::-;20297:3;20318:67;20382:2;20377:3;20318:67;:::i;:::-;20311:74;;20394:93;20483:3;20394:93;:::i;:::-;20512:2;20507:3;20503:12;20496:19;;20155:366;;;:::o;20527:419::-;20693:4;20731:2;20720:9;20716:18;20708:26;;20780:9;20774:4;20770:20;20766:1;20755:9;20751:17;20744:47;20808:131;20934:4;20808:131;:::i;:::-;20800:139;;20527:419;;;:::o;20952:410::-;20992:7;21015:20;21033:1;21015:20;:::i;:::-;21010:25;;21049:20;21067:1;21049:20;:::i;:::-;21044:25;;21104:1;21101;21097:9;21126:30;21144:11;21126:30;:::i;:::-;21115:41;;21305:1;21296:7;21292:15;21289:1;21286:22;21266:1;21259:9;21239:83;21216:139;;21335:18;;:::i;:::-;21216:139;21000:362;20952:410;;;;:::o;21368:169::-;21508:21;21504:1;21496:6;21492:14;21485:45;21368:169;:::o;21543:366::-;21685:3;21706:67;21770:2;21765:3;21706:67;:::i;:::-;21699:74;;21782:93;21871:3;21782:93;:::i;:::-;21900:2;21895:3;21891:12;21884:19;;21543:366;;;:::o;21915:419::-;22081:4;22119:2;22108:9;22104:18;22096:26;;22168:9;22162:4;22158:20;22154:1;22143:9;22139:17;22132:47;22196:131;22322:4;22196:131;:::i;:::-;22188:139;;21915:419;;;:::o;22340:147::-;22441:11;22478:3;22463:18;;22340:147;;;;:::o;22493:114::-;;:::o;22613:398::-;22772:3;22793:83;22874:1;22869:3;22793:83;:::i;:::-;22786:90;;22885:93;22974:3;22885:93;:::i;:::-;23003:1;22998:3;22994:11;22987:18;;22613:398;;;:::o;23017:379::-;23201:3;23223:147;23366:3;23223:147;:::i;:::-;23216:154;;23387:3;23380:10;;23017:379;;;:::o;23402:182::-;23542:34;23538:1;23530:6;23526:14;23519:58;23402:182;:::o;23590:366::-;23732:3;23753:67;23817:2;23812:3;23753:67;:::i;:::-;23746:74;;23829:93;23918:3;23829:93;:::i;:::-;23947:2;23942:3;23938:12;23931:19;;23590:366;;;:::o;23962:419::-;24128:4;24166:2;24155:9;24151:18;24143:26;;24215:9;24209:4;24205:20;24201:1;24190:9;24186:17;24179:47;24243:131;24369:4;24243:131;:::i;:::-;24235:139;;23962:419;;;:::o;24387:94::-;24420:8;24468:5;24464:2;24460:14;24439:35;;24387:94;;;:::o;24487:::-;24526:7;24555:20;24569:5;24555:20;:::i;:::-;24544:31;;24487:94;;;:::o;24587:100::-;24626:7;24655:26;24675:5;24655:26;:::i;:::-;24644:37;;24587:100;;;:::o;24693:157::-;24798:45;24818:24;24836:5;24818:24;:::i;:::-;24798:45;:::i;:::-;24793:3;24786:58;24693:157;;:::o;24856:256::-;24968:3;24983:75;25054:3;25045:6;24983:75;:::i;:::-;25083:2;25078:3;25074:12;25067:19;;25103:3;25096:10;;24856:256;;;;:::o;25118:162::-;25258:14;25254:1;25246:6;25242:14;25235:38;25118:162;:::o;25286:366::-;25428:3;25449:67;25513:2;25508:3;25449:67;:::i;:::-;25442:74;;25525:93;25614:3;25525:93;:::i;:::-;25643:2;25638:3;25634:12;25627:19;;25286:366;;;:::o;25658:419::-;25824:4;25862:2;25851:9;25847:18;25839:26;;25911:9;25905:4;25901:20;25897:1;25886:9;25882:17;25875:47;25939:131;26065:4;25939:131;:::i;:::-;25931:139;;25658:419;;;:::o;26083:176::-;26223:28;26219:1;26211:6;26207:14;26200:52;26083:176;:::o;26265:366::-;26407:3;26428:67;26492:2;26487:3;26428:67;:::i;:::-;26421:74;;26504:93;26593:3;26504:93;:::i;:::-;26622:2;26617:3;26613:12;26606:19;;26265:366;;;:::o;26637:419::-;26803:4;26841:2;26830:9;26826:18;26818:26;;26890:9;26884:4;26880:20;26876:1;26865:9;26861:17;26854:47;26918:131;27044:4;26918:131;:::i;:::-;26910:139;;26637:419;;;:::o;27062:163::-;27202:15;27198:1;27190:6;27186:14;27179:39;27062:163;:::o;27231:366::-;27373:3;27394:67;27458:2;27453:3;27394:67;:::i;:::-;27387:74;;27470:93;27559:3;27470:93;:::i;:::-;27588:2;27583:3;27579:12;27572:19;;27231:366;;;:::o;27603:419::-;27769:4;27807:2;27796:9;27792:18;27784:26;;27856:9;27850:4;27846:20;27842:1;27831:9;27827:17;27820:47;27884:131;28010:4;27884:131;:::i;:::-;27876:139;;27603:419;;;:::o;28028:141::-;28077:4;28100:3;28092:11;;28123:3;28120:1;28113:14;28157:4;28154:1;28144:18;28136:26;;28028:141;;;:::o;28175:93::-;28212:6;28259:2;28254;28247:5;28243:14;28239:23;28229:33;;28175:93;;;:::o;28274:107::-;28318:8;28368:5;28362:4;28358:16;28337:37;;28274:107;;;;:::o;28387:393::-;28456:6;28506:1;28494:10;28490:18;28529:97;28559:66;28548:9;28529:97;:::i;:::-;28647:39;28677:8;28666:9;28647:39;:::i;:::-;28635:51;;28719:4;28715:9;28708:5;28704:21;28695:30;;28768:4;28758:8;28754:19;28747:5;28744:30;28734:40;;28463:317;;28387:393;;;;;:::o;28786:60::-;28814:3;28835:5;28828:12;;28786:60;;;:::o;28852:142::-;28902:9;28935:53;28953:34;28962:24;28980:5;28962:24;:::i;:::-;28953:34;:::i;:::-;28935:53;:::i;:::-;28922:66;;28852:142;;;:::o;29000:75::-;29043:3;29064:5;29057:12;;29000:75;;;:::o;29081:269::-;29191:39;29222:7;29191:39;:::i;:::-;29252:91;29301:41;29325:16;29301:41;:::i;:::-;29293:6;29286:4;29280:11;29252:91;:::i;:::-;29246:4;29239:105;29157:193;29081:269;;;:::o;29356:73::-;29401:3;29356:73;:::o;29435:189::-;29512:32;;:::i;:::-;29553:65;29611:6;29603;29597:4;29553:65;:::i;:::-;29488:136;29435:189;;:::o;29630:186::-;29690:120;29707:3;29700:5;29697:14;29690:120;;;29761:39;29798:1;29791:5;29761:39;:::i;:::-;29734:1;29727:5;29723:13;29714:22;;29690:120;;;29630:186;;:::o;29822:543::-;29923:2;29918:3;29915:11;29912:446;;;29957:38;29989:5;29957:38;:::i;:::-;30041:29;30059:10;30041:29;:::i;:::-;30031:8;30027:44;30224:2;30212:10;30209:18;30206:49;;;30245:8;30230:23;;30206:49;30268:80;30324:22;30342:3;30324:22;:::i;:::-;30314:8;30310:37;30297:11;30268:80;:::i;:::-;29927:431;;29912:446;29822:543;;;:::o;30371:117::-;30425:8;30475:5;30469:4;30465:16;30444:37;;30371:117;;;;:::o;30494:169::-;30538:6;30571:51;30619:1;30615:6;30607:5;30604:1;30600:13;30571:51;:::i;:::-;30567:56;30652:4;30646;30642:15;30632:25;;30545:118;30494:169;;;;:::o;30668:295::-;30744:4;30890:29;30915:3;30909:4;30890:29;:::i;:::-;30882:37;;30952:3;30949:1;30945:11;30939:4;30936:21;30928:29;;30668:295;;;;:::o;30968:1395::-;31085:37;31118:3;31085:37;:::i;:::-;31187:18;31179:6;31176:30;31173:56;;;31209:18;;:::i;:::-;31173:56;31253:38;31285:4;31279:11;31253:38;:::i;:::-;31338:67;31398:6;31390;31384:4;31338:67;:::i;:::-;31432:1;31456:4;31443:17;;31488:2;31480:6;31477:14;31505:1;31500:618;;;;32162:1;32179:6;32176:77;;;32228:9;32223:3;32219:19;32213:26;32204:35;;32176:77;32279:67;32339:6;32332:5;32279:67;:::i;:::-;32273:4;32266:81;32135:222;31470:887;;31500:618;31552:4;31548:9;31540:6;31536:22;31586:37;31618:4;31586:37;:::i;:::-;31645:1;31659:208;31673:7;31670:1;31667:14;31659:208;;;31752:9;31747:3;31743:19;31737:26;31729:6;31722:42;31803:1;31795:6;31791:14;31781:24;;31850:2;31839:9;31835:18;31822:31;;31696:4;31693:1;31689:12;31684:17;;31659:208;;;31895:6;31886:7;31883:19;31880:179;;;31953:9;31948:3;31944:19;31938:26;31996:48;32038:4;32030:6;32026:17;32015:9;31996:48;:::i;:::-;31988:6;31981:64;31903:156;31880:179;32105:1;32101;32093:6;32089:14;32085:22;32079:4;32072:36;31507:611;;;31470:887;;31060:1303;;;30968:1395;;:::o;32369:234::-;32509:34;32505:1;32497:6;32493:14;32486:58;32578:17;32573:2;32565:6;32561:15;32554:42;32369:234;:::o;32609:366::-;32751:3;32772:67;32836:2;32831:3;32772:67;:::i;:::-;32765:74;;32848:93;32937:3;32848:93;:::i;:::-;32966:2;32961:3;32957:12;32950:19;;32609:366;;;:::o;32981:419::-;33147:4;33185:2;33174:9;33170:18;33162:26;;33234:9;33228:4;33224:20;33220:1;33209:9;33205:17;33198:47;33262:131;33388:4;33262:131;:::i;:::-;33254:139;;32981:419;;;:::o;33406:148::-;33508:11;33545:3;33530:18;;33406:148;;;;:::o;33584:874::-;33687:3;33724:5;33718:12;33753:36;33779:9;33753:36;:::i;:::-;33805:89;33887:6;33882:3;33805:89;:::i;:::-;33798:96;;33925:1;33914:9;33910:17;33941:1;33936:166;;;;34116:1;34111:341;;;;33903:549;;33936:166;34020:4;34016:9;34005;34001:25;33996:3;33989:38;34082:6;34075:14;34068:22;34060:6;34056:35;34051:3;34047:45;34040:52;;33936:166;;34111:341;34178:38;34210:5;34178:38;:::i;:::-;34238:1;34252:154;34266:6;34263:1;34260:13;34252:154;;;34340:7;34334:14;34330:1;34325:3;34321:11;34314:35;34390:1;34381:7;34377:15;34366:26;;34288:4;34285:1;34281:12;34276:17;;34252:154;;;34435:6;34430:3;34426:16;34419:23;;34118:334;;33903:549;;33691:767;;33584:874;;;;:::o;34464:390::-;34570:3;34598:39;34631:5;34598:39;:::i;:::-;34653:89;34735:6;34730:3;34653:89;:::i;:::-;34646:96;;34751:65;34809:6;34804:3;34797:4;34790:5;34786:16;34751:65;:::i;:::-;34841:6;34836:3;34832:16;34825:23;;34574:280;34464:390;;;;:::o;34860:155::-;35000:7;34996:1;34988:6;34984:14;34977:31;34860:155;:::o;35021:400::-;35181:3;35202:84;35284:1;35279:3;35202:84;:::i;:::-;35195:91;;35295:93;35384:3;35295:93;:::i;:::-;35413:1;35408:3;35404:11;35397:18;;35021:400;;;:::o;35427:695::-;35705:3;35727:92;35815:3;35806:6;35727:92;:::i;:::-;35720:99;;35836:95;35927:3;35918:6;35836:95;:::i;:::-;35829:102;;35948:148;36092:3;35948:148;:::i;:::-;35941:155;;36113:3;36106:10;;35427:695;;;;;:::o;36128:225::-;36268:34;36264:1;36256:6;36252:14;36245:58;36337:8;36332:2;36324:6;36320:15;36313:33;36128:225;:::o;36359:366::-;36501:3;36522:67;36586:2;36581:3;36522:67;:::i;:::-;36515:74;;36598:93;36687:3;36598:93;:::i;:::-;36716:2;36711:3;36707:12;36700:19;;36359:366;;;:::o;36731:419::-;36897:4;36935:2;36924:9;36920:18;36912:26;;36984:9;36978:4;36974:20;36970:1;36959:9;36955:17;36948:47;37012:131;37138:4;37012:131;:::i;:::-;37004:139;;36731:419;;;:::o;37156:98::-;37207:6;37241:5;37235:12;37225:22;;37156:98;;;:::o;37260:168::-;37343:11;37377:6;37372:3;37365:19;37417:4;37412:3;37408:14;37393:29;;37260:168;;;;:::o;37434:373::-;37520:3;37548:38;37580:5;37548:38;:::i;:::-;37602:70;37665:6;37660:3;37602:70;:::i;:::-;37595:77;;37681:65;37739:6;37734:3;37727:4;37720:5;37716:16;37681:65;:::i;:::-;37771:29;37793:6;37771:29;:::i;:::-;37766:3;37762:39;37755:46;;37524:283;37434:373;;;;:::o;37813:640::-;38008:4;38046:3;38035:9;38031:19;38023:27;;38060:71;38128:1;38117:9;38113:17;38104:6;38060:71;:::i;:::-;38141:72;38209:2;38198:9;38194:18;38185:6;38141:72;:::i;:::-;38223;38291:2;38280:9;38276:18;38267:6;38223:72;:::i;:::-;38342:9;38336:4;38332:20;38327:2;38316:9;38312:18;38305:48;38370:76;38441:4;38432:6;38370:76;:::i;:::-;38362:84;;37813:640;;;;;;;:::o;38459:141::-;38515:5;38546:6;38540:13;38531:22;;38562:32;38588:5;38562:32;:::i;:::-;38459:141;;;;:::o;38606:349::-;38675:6;38724:2;38712:9;38703:7;38699:23;38695:32;38692:119;;;38730:79;;:::i;:::-;38692:119;38850:1;38875:63;38930:7;38921:6;38910:9;38906:22;38875:63;:::i;:::-;38865:73;;38821:127;38606:349;;;;:::o;38961:180::-;39009:77;39006:1;38999:88;39106:4;39103:1;39096:15;39130:4;39127:1;39120:15

Swarm Source

ipfs://325ac2d52bde0139a2273bcf6e37289533871ebe6910589b1bdd0e1ba0198aa6
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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