ETH Price: $3,014.66 (+4.64%)
Gas: 2 Gwei

Token

Dogemigos (DGMGS)
 

Overview

Max Total Supply

1,770 DGMGS

Holders

903

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DGMGS
0x6ae1798089095453897b0609858310fd6c089991
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:
DOGEMIGOS

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-03
*/

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: DogemigosFreePaid.sol










pragma solidity ^0.8.17;

contract DOGEMIGOS is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint public cost = 0.003 ether;
  uint public maxSupply = 3888;
  uint public freeSupply = 3888;
  uint public maxPerWallet = 5;
  uint public maxMintAmountPerTx = 5;

  bool public paused = true;
  bool public revealed = true;

  mapping(address => bool) public freeMintClaimed;


  constructor() ERC721A("Dogemigos", "DGMGS") {
  }

  modifier mintCompliance(uint _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(_mintAmount + balanceOf(_msgSender()) <= maxPerWallet, "Only five allowed per wallet!");
    require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

  modifier mintPriceCompliance(uint _mintAmount) {
    if (freeMintClaimed[_msgSender()] || totalSupply() >= freeSupply) {
      require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    }
    _;
  }

   function mint(uint256 amount) external payable {
        require(!paused, "Contract is Paused");

        require(totalSupply() + amount <= maxSupply, "max supply would be exceeded");
        uint minted = _numberMinted(msg.sender);
        require(msg.sender == tx.origin, "Contract minting not allowed");
        require(minted + amount <= maxPerWallet, "max mint per wallet would be exceeded");

        if (minted == 0) {
            require(msg.value >= cost * (amount - 1), "value not met");
        } else {
            require(msg.value >= cost * amount, "value not met");
        }
        _safeMint(msg.sender, amount);
    }
  
  function mintForAddress(uint _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

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

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

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

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

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

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

  function setCost(uint _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxMintAmountPerTx(uint _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

   function setMaxPerWallet(uint _maxPerWallet) public onlyOwner {
    maxPerWallet = _maxPerWallet;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

    function setValues(uint256 _newAmount) external onlyOwner {
    maxSupply = _newAmount;
}

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function setFreeSupply(uint _freeQty) public onlyOwner {
    freeSupply = _freeQty;
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeQty","type":"uint256"}],"name":"setFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setValues","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600a9081620000249190620004f8565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90816200006b9190620004f8565b50660aa87bee538000600d55610f30600e55610f30600f55600560105560056011556001601260006101000a81548160ff0219169083151502179055506001601260016101000a81548160ff021916908315150217905550348015620000d057600080fd5b506040518060400160405280600981526020017f446f67656d69676f7300000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f44474d475300000000000000000000000000000000000000000000000000000081525081600290816200014e9190620004f8565b508060039081620001609190620004f8565b5062000171620001a760201b60201c565b6000819055505050620001996200018d620001b060201b60201c565b620001b860201b60201c565b6001600981905550620005df565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200030057607f821691505b602082108103620003165762000315620002b8565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000341565b6200038c868362000341565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003d9620003d3620003cd84620003a4565b620003ae565b620003a4565b9050919050565b6000819050919050565b620003f583620003b8565b6200040d6200040482620003e0565b8484546200034e565b825550505050565b600090565b6200042462000415565b62000431818484620003ea565b505050565b5b8181101562000459576200044d6000826200041a565b60018101905062000437565b5050565b601f821115620004a85762000472816200031c565b6200047d8462000331565b810160208510156200048d578190505b620004a56200049c8562000331565b83018262000436565b50505b505050565b600082821c905092915050565b6000620004cd60001984600802620004ad565b1980831691505092915050565b6000620004e88383620004ba565b9150826002028217905092915050565b62000503826200027e565b67ffffffffffffffff8111156200051f576200051e62000289565b5b6200052b8254620002e7565b620005388282856200045d565b600060209050601f8311600181146200057057600084156200055b578287015190505b620005678582620004da565b865550620005d7565b601f19841662000580866200031c565b60005b82811015620005aa5784890151825560018201915060208501945060208101905062000583565b86831015620005ca5784890151620005c6601f891682620004ba565b8355505b6001600288020188555050505b505050505050565b61393680620005ef6000396000f3fe6080604052600436106102465760003560e01c806370a0823111610139578063b88d4fde116100b6578063e268e4d31161007a578063e268e4d314610815578063e26d14741461083e578063e985e9c514610867578063efbd73f4146108a4578063f2fde38b146108cd578063f676308a146108f657610246565b8063b88d4fde1461072b578063c87b56dd14610747578063d5abeb0114610784578063e0a80853146107af578063e0ec7c36146107d857610246565b806395d89b41116100fd57806395d89b4114610667578063a0712d6814610692578063a22cb465146106ae578063a45ba8e7146106d7578063b071401b1461070257610246565b806370a0823114610594578063715018a6146105d15780637ec4a659146105e85780638da5cb5b1461061157806394354fd01461063c57610246565b80633ccfd60b116101c7578063518302271161018b57806351830227146104ab5780635503a0e8146104d65780635c975abb1461050157806362b99ad41461052c5780636352211e1461055757610246565b80633ccfd60b146103fb57806342842e0e1461041257806344a0d68a1461042e578063453c2310146104575780634fdd43cb1461048257610246565b806316ba10e01161020e57806316ba10e01461033757806316c38b3c1461036057806318160ddd1461038957806323b872dd146103b457806324a6ab0c146103d057610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806313faede61461030c575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906126da565b61091f565b60405161027f9190612722565b60405180910390f35b34801561029457600080fd5b5061029d6109b1565b6040516102aa91906127cd565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190612825565b610a43565b6040516102e79190612893565b60405180910390f35b61030a600480360381019061030591906128da565b610ac2565b005b34801561031857600080fd5b50610321610c06565b60405161032e9190612929565b60405180910390f35b34801561034357600080fd5b5061035e60048036038101906103599190612a79565b610c0c565b005b34801561036c57600080fd5b5061038760048036038101906103829190612aee565b610c27565b005b34801561039557600080fd5b5061039e610c4c565b6040516103ab9190612929565b60405180910390f35b6103ce60048036038101906103c99190612b1b565b610c63565b005b3480156103dc57600080fd5b506103e5610f85565b6040516103f29190612929565b60405180910390f35b34801561040757600080fd5b50610410610f8b565b005b61042c60048036038101906104279190612b1b565b611023565b005b34801561043a57600080fd5b5061045560048036038101906104509190612825565b611043565b005b34801561046357600080fd5b5061046c611055565b6040516104799190612929565b60405180910390f35b34801561048e57600080fd5b506104a960048036038101906104a49190612a79565b61105b565b005b3480156104b757600080fd5b506104c0611076565b6040516104cd9190612722565b60405180910390f35b3480156104e257600080fd5b506104eb611089565b6040516104f891906127cd565b60405180910390f35b34801561050d57600080fd5b50610516611117565b6040516105239190612722565b60405180910390f35b34801561053857600080fd5b5061054161112a565b60405161054e91906127cd565b60405180910390f35b34801561056357600080fd5b5061057e60048036038101906105799190612825565b6111b8565b60405161058b9190612893565b60405180910390f35b3480156105a057600080fd5b506105bb60048036038101906105b69190612b6e565b6111ca565b6040516105c89190612929565b60405180910390f35b3480156105dd57600080fd5b506105e6611282565b005b3480156105f457600080fd5b5061060f600480360381019061060a9190612a79565b611296565b005b34801561061d57600080fd5b506106266112b1565b6040516106339190612893565b60405180910390f35b34801561064857600080fd5b506106516112db565b60405161065e9190612929565b60405180910390f35b34801561067357600080fd5b5061067c6112e1565b60405161068991906127cd565b60405180910390f35b6106ac60048036038101906106a79190612825565b611373565b005b3480156106ba57600080fd5b506106d560048036038101906106d09190612b9b565b6115ad565b005b3480156106e357600080fd5b506106ec6116b8565b6040516106f991906127cd565b60405180910390f35b34801561070e57600080fd5b5061072960048036038101906107249190612825565b611746565b005b61074560048036038101906107409190612c7c565b611758565b005b34801561075357600080fd5b5061076e60048036038101906107699190612825565b6117cb565b60405161077b91906127cd565b60405180910390f35b34801561079057600080fd5b50610799611923565b6040516107a69190612929565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d19190612aee565b611929565b005b3480156107e457600080fd5b506107ff60048036038101906107fa9190612b6e565b61194e565b60405161080c9190612722565b60405180910390f35b34801561082157600080fd5b5061083c60048036038101906108379190612825565b61196e565b005b34801561084a57600080fd5b5061086560048036038101906108609190612825565b611980565b005b34801561087357600080fd5b5061088e60048036038101906108899190612cff565b611992565b60405161089b9190612722565b60405180910390f35b3480156108b057600080fd5b506108cb60048036038101906108c69190612d3f565b611a26565b005b3480156108d957600080fd5b506108f460048036038101906108ef9190612b6e565b611b45565b005b34801561090257600080fd5b5061091d60048036038101906109189190612825565b611bc8565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109aa5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109c090612dae565b80601f01602080910402602001604051908101604052809291908181526020018280546109ec90612dae565b8015610a395780601f10610a0e57610100808354040283529160200191610a39565b820191906000526020600020905b815481529060010190602001808311610a1c57829003601f168201915b5050505050905090565b6000610a4e82611bda565b610a84576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610acd826111b8565b90508073ffffffffffffffffffffffffffffffffffffffff16610aee611c39565b73ffffffffffffffffffffffffffffffffffffffff1614610b5157610b1a81610b15611c39565b611992565b610b50576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610c14611c41565b80600b9081610c239190612f8b565b5050565b610c2f611c41565b80601260006101000a81548160ff02191690831515021790555050565b6000610c56611cbf565b6001546000540303905090565b6000610c6e82611cc8565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610cd5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ce184611d94565b91509150610cf78187610cf2611c39565b611dbb565b610d4357610d0c86610d07611c39565b611992565b610d42576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610da9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610db68686866001611dff565b8015610dc157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e8f85610e6b888887611e05565b7c020000000000000000000000000000000000000000000000000000000017611e2d565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610f155760006001850190506000600460008381526020019081526020016000205403610f13576000548114610f12578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f7d8686866001611e58565b505050505050565b600f5481565b610f93611c41565b610f9b611e5e565b6000610fa56112b1565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fc89061308e565b60006040518083038185875af1925050503d8060008114611005576040519150601f19603f3d011682016040523d82523d6000602084013e61100a565b606091505b505090508061101857600080fd5b50611021611ead565b565b61103e83838360405180602001604052806000815250611758565b505050565b61104b611c41565b80600d8190555050565b60105481565b611063611c41565b80600c90816110729190612f8b565b5050565b601260019054906101000a900460ff1681565b600b805461109690612dae565b80601f01602080910402602001604051908101604052809291908181526020018280546110c290612dae565b801561110f5780601f106110e45761010080835404028352916020019161110f565b820191906000526020600020905b8154815290600101906020018083116110f257829003601f168201915b505050505081565b601260009054906101000a900460ff1681565b600a805461113790612dae565b80601f016020809104026020016040519081016040528092919081815260200182805461116390612dae565b80156111b05780601f10611185576101008083540402835291602001916111b0565b820191906000526020600020905b81548152906001019060200180831161119357829003601f168201915b505050505081565b60006111c382611cc8565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611231576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61128a611c41565b6112946000611eb7565b565b61129e611c41565b80600a90816112ad9190612f8b565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b6060600380546112f090612dae565b80601f016020809104026020016040519081016040528092919081815260200182805461131c90612dae565b80156113695780601f1061133e57610100808354040283529160200191611369565b820191906000526020600020905b81548152906001019060200180831161134c57829003601f168201915b5050505050905090565b601260009054906101000a900460ff16156113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba906130ef565b60405180910390fd5b600e54816113cf610c4c565b6113d9919061313e565b111561141a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611411906131be565b60405180910390fd5b600061142533611f7d565b90503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148c9061322a565b60405180910390fd5b60105482826114a4919061313e565b11156114e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dc906132bc565b60405180910390fd5b6000810361154e576001826114fa91906132dc565b600d546115079190613310565b341015611549576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115409061339e565b60405180910390fd5b61159f565b81600d5461155c9190613310565b34101561159e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115959061339e565b60405180910390fd5b5b6115a93383611fd4565b5050565b80600760006115ba611c39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611667611c39565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116ac9190612722565b60405180910390a35050565b600c80546116c590612dae565b80601f01602080910402602001604051908101604052809291908181526020018280546116f190612dae565b801561173e5780601f106117135761010080835404028352916020019161173e565b820191906000526020600020905b81548152906001019060200180831161172157829003601f168201915b505050505081565b61174e611c41565b8060118190555050565b611763848484610c63565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117c55761178e84848484611ff2565b6117c4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606117d682611bda565b611815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180c90613430565b60405180910390fd5b60001515601260019054906101000a900460ff161515036118c257600c805461183d90612dae565b80601f016020809104026020016040519081016040528092919081815260200182805461186990612dae565b80156118b65780601f1061188b576101008083540402835291602001916118b6565b820191906000526020600020905b81548152906001019060200180831161189957829003601f168201915b5050505050905061191e565b60006118cc612142565b905060008151116118ec576040518060200160405280600081525061191a565b806118f6846121d4565b600b60405160200161190a9392919061350f565b6040516020818303038152906040525b9150505b919050565b600e5481565b611931611c41565b80601260016101000a81548160ff02191690831515021790555050565b60136020528060005260406000206000915054906101000a900460ff1681565b611976611c41565b8060108190555050565b611988611c41565b80600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611a3957506011548111155b611a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6f9061358c565b60405180910390fd5b601054611a8b611a866122a2565b6111ca565b82611a96919061313e565b1115611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace906135f8565b60405180910390fd5b600e5481611ae3610c4c565b611aed919061313e565b1115611b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2590613664565b60405180910390fd5b611b36611c41565b611b408284611fd4565b505050565b611b4d611c41565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb3906136f6565b60405180910390fd5b611bc581611eb7565b50565b611bd0611c41565b80600f8190555050565b600081611be5611cbf565b11158015611bf4575060005482105b8015611c32575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611c496122a2565b73ffffffffffffffffffffffffffffffffffffffff16611c676112b1565b73ffffffffffffffffffffffffffffffffffffffff1614611cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb490613762565b60405180910390fd5b565b60006001905090565b60008082905080611cd7611cbf565b11611d5d57600054811015611d5c5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611d5a575b60008103611d50576004600083600190039350838152602001908152602001600020549050611d26565b8092505050611d8f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e1c8686846122aa565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600260095403611ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9a906137ce565b60405180910390fd5b6002600981905550565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b611fee8282604051806020016040528060008152506122b3565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612018611c39565b8786866040518563ffffffff1660e01b815260040161203a9493929190613843565b6020604051808303816000875af192505050801561207657506040513d601f19601f8201168201806040525081019061207391906138a4565b60015b6120ef573d80600081146120a6576040519150601f19603f3d011682016040523d82523d6000602084013e6120ab565b606091505b5060008151036120e7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461215190612dae565b80601f016020809104026020016040519081016040528092919081815260200182805461217d90612dae565b80156121ca5780601f1061219f576101008083540402835291602001916121ca565b820191906000526020600020905b8154815290600101906020018083116121ad57829003601f168201915b5050505050905090565b6060600060016121e384612350565b01905060008167ffffffffffffffff8111156122025761220161294e565b5b6040519080825280601f01601f1916602001820160405280156122345781602001600182028036833780820191505090505b509050600082602001820190505b600115612297578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161228b5761228a6138d1565b5b04945060008503612242575b819350505050919050565b600033905090565b60009392505050565b6122bd83836124a3565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461234b57600080549050600083820390505b6122fd6000868380600101945086611ff2565b612333576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106122ea57816000541461234857600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106123ae577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816123a4576123a36138d1565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106123eb576d04ee2d6d415b85acef810000000083816123e1576123e06138d1565b5b0492506020810190505b662386f26fc10000831061241a57662386f26fc1000083816124105761240f6138d1565b5b0492506010810190505b6305f5e1008310612443576305f5e1008381612439576124386138d1565b5b0492506008810190505b612710831061246857612710838161245e5761245d6138d1565b5b0492506004810190505b6064831061248b5760648381612481576124806138d1565b5b0492506002810190505b600a831061249a576001810190505b80915050919050565b600080549050600082036124e3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124f06000848385611dff565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612567836125586000866000611e05565b6125618561265e565b17611e2d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461260857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506125cd565b5060008203612643576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126596000848385611e58565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126b781612682565b81146126c257600080fd5b50565b6000813590506126d4816126ae565b92915050565b6000602082840312156126f0576126ef612678565b5b60006126fe848285016126c5565b91505092915050565b60008115159050919050565b61271c81612707565b82525050565b60006020820190506127376000830184612713565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561277757808201518184015260208101905061275c565b60008484015250505050565b6000601f19601f8301169050919050565b600061279f8261273d565b6127a98185612748565b93506127b9818560208601612759565b6127c281612783565b840191505092915050565b600060208201905081810360008301526127e78184612794565b905092915050565b6000819050919050565b612802816127ef565b811461280d57600080fd5b50565b60008135905061281f816127f9565b92915050565b60006020828403121561283b5761283a612678565b5b600061284984828501612810565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061287d82612852565b9050919050565b61288d81612872565b82525050565b60006020820190506128a86000830184612884565b92915050565b6128b781612872565b81146128c257600080fd5b50565b6000813590506128d4816128ae565b92915050565b600080604083850312156128f1576128f0612678565b5b60006128ff858286016128c5565b925050602061291085828601612810565b9150509250929050565b612923816127ef565b82525050565b600060208201905061293e600083018461291a565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61298682612783565b810181811067ffffffffffffffff821117156129a5576129a461294e565b5b80604052505050565b60006129b861266e565b90506129c4828261297d565b919050565b600067ffffffffffffffff8211156129e4576129e361294e565b5b6129ed82612783565b9050602081019050919050565b82818337600083830152505050565b6000612a1c612a17846129c9565b6129ae565b905082815260208101848484011115612a3857612a37612949565b5b612a438482856129fa565b509392505050565b600082601f830112612a6057612a5f612944565b5b8135612a70848260208601612a09565b91505092915050565b600060208284031215612a8f57612a8e612678565b5b600082013567ffffffffffffffff811115612aad57612aac61267d565b5b612ab984828501612a4b565b91505092915050565b612acb81612707565b8114612ad657600080fd5b50565b600081359050612ae881612ac2565b92915050565b600060208284031215612b0457612b03612678565b5b6000612b1284828501612ad9565b91505092915050565b600080600060608486031215612b3457612b33612678565b5b6000612b42868287016128c5565b9350506020612b53868287016128c5565b9250506040612b6486828701612810565b9150509250925092565b600060208284031215612b8457612b83612678565b5b6000612b92848285016128c5565b91505092915050565b60008060408385031215612bb257612bb1612678565b5b6000612bc0858286016128c5565b9250506020612bd185828601612ad9565b9150509250929050565b600067ffffffffffffffff821115612bf657612bf561294e565b5b612bff82612783565b9050602081019050919050565b6000612c1f612c1a84612bdb565b6129ae565b905082815260208101848484011115612c3b57612c3a612949565b5b612c468482856129fa565b509392505050565b600082601f830112612c6357612c62612944565b5b8135612c73848260208601612c0c565b91505092915050565b60008060008060808587031215612c9657612c95612678565b5b6000612ca4878288016128c5565b9450506020612cb5878288016128c5565b9350506040612cc687828801612810565b925050606085013567ffffffffffffffff811115612ce757612ce661267d565b5b612cf387828801612c4e565b91505092959194509250565b60008060408385031215612d1657612d15612678565b5b6000612d24858286016128c5565b9250506020612d35858286016128c5565b9150509250929050565b60008060408385031215612d5657612d55612678565b5b6000612d6485828601612810565b9250506020612d75858286016128c5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612dc657607f821691505b602082108103612dd957612dd8612d7f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612e417fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612e04565b612e4b8683612e04565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612e88612e83612e7e846127ef565b612e63565b6127ef565b9050919050565b6000819050919050565b612ea283612e6d565b612eb6612eae82612e8f565b848454612e11565b825550505050565b600090565b612ecb612ebe565b612ed6818484612e99565b505050565b5b81811015612efa57612eef600082612ec3565b600181019050612edc565b5050565b601f821115612f3f57612f1081612ddf565b612f1984612df4565b81016020851015612f28578190505b612f3c612f3485612df4565b830182612edb565b50505b505050565b600082821c905092915050565b6000612f6260001984600802612f44565b1980831691505092915050565b6000612f7b8383612f51565b9150826002028217905092915050565b612f948261273d565b67ffffffffffffffff811115612fad57612fac61294e565b5b612fb78254612dae565b612fc2828285612efe565b600060209050601f831160018114612ff55760008415612fe3578287015190505b612fed8582612f6f565b865550613055565b601f19841661300386612ddf565b60005b8281101561302b57848901518255600182019150602085019450602081019050613006565b868310156130485784890151613044601f891682612f51565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b50565b600061307860008361305d565b915061308382613068565b600082019050919050565b60006130998261306b565b9150819050919050565b7f436f6e7472616374206973205061757365640000000000000000000000000000600082015250565b60006130d9601283612748565b91506130e4826130a3565b602082019050919050565b60006020820190508181036000830152613108816130cc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613149826127ef565b9150613154836127ef565b925082820190508082111561316c5761316b61310f565b5b92915050565b7f6d617820737570706c7920776f756c6420626520657863656564656400000000600082015250565b60006131a8601c83612748565b91506131b382613172565b602082019050919050565b600060208201905081810360008301526131d78161319b565b9050919050565b7f436f6e7472616374206d696e74696e67206e6f7420616c6c6f77656400000000600082015250565b6000613214601c83612748565b915061321f826131de565b602082019050919050565b6000602082019050818103600083015261324381613207565b9050919050565b7f6d6178206d696e74207065722077616c6c657420776f756c642062652065786360008201527f6565646564000000000000000000000000000000000000000000000000000000602082015250565b60006132a6602583612748565b91506132b18261324a565b604082019050919050565b600060208201905081810360008301526132d581613299565b9050919050565b60006132e7826127ef565b91506132f2836127ef565b925082820390508181111561330a5761330961310f565b5b92915050565b600061331b826127ef565b9150613326836127ef565b9250828202613334816127ef565b9150828204841483151761334b5761334a61310f565b5b5092915050565b7f76616c7565206e6f74206d657400000000000000000000000000000000000000600082015250565b6000613388600d83612748565b915061339382613352565b602082019050919050565b600060208201905081810360008301526133b78161337b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061341a602f83612748565b9150613425826133be565b604082019050919050565b600060208201905081810360008301526134498161340d565b9050919050565b600081905092915050565b60006134668261273d565b6134708185613450565b9350613480818560208601612759565b80840191505092915050565b6000815461349981612dae565b6134a38186613450565b945060018216600081146134be57600181146134d357613506565b60ff1983168652811515820286019350613506565b6134dc85612ddf565b60005b838110156134fe578154818901526001820191506020810190506134df565b838801955050505b50505092915050565b600061351b828661345b565b9150613527828561345b565b9150613533828461348c565b9150819050949350505050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613576601483612748565b915061358182613540565b602082019050919050565b600060208201905081810360008301526135a581613569565b9050919050565b7f4f6e6c79206669766520616c6c6f776564207065722077616c6c657421000000600082015250565b60006135e2601d83612748565b91506135ed826135ac565b602082019050919050565b60006020820190508181036000830152613611816135d5565b9050919050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b600061364e601483612748565b915061365982613618565b602082019050919050565b6000602082019050818103600083015261367d81613641565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136e0602683612748565b91506136eb82613684565b604082019050919050565b6000602082019050818103600083015261370f816136d3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061374c602083612748565b915061375782613716565b602082019050919050565b6000602082019050818103600083015261377b8161373f565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006137b8601f83612748565b91506137c382613782565b602082019050919050565b600060208201905081810360008301526137e7816137ab565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613815826137ee565b61381f81856137f9565b935061382f818560208601612759565b61383881612783565b840191505092915050565b60006080820190506138586000830187612884565b6138656020830186612884565b613872604083018561291a565b8181036060830152613884818461380a565b905095945050505050565b60008151905061389e816126ae565b92915050565b6000602082840312156138ba576138b9612678565b5b60006138c88482850161388f565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea26469706673582212203abd1fa0f77668f02b332347b97bebc518fc61f16ddd5509d96fe7d284490a6764736f6c63430008120033

Deployed Bytecode

0x6080604052600436106102465760003560e01c806370a0823111610139578063b88d4fde116100b6578063e268e4d31161007a578063e268e4d314610815578063e26d14741461083e578063e985e9c514610867578063efbd73f4146108a4578063f2fde38b146108cd578063f676308a146108f657610246565b8063b88d4fde1461072b578063c87b56dd14610747578063d5abeb0114610784578063e0a80853146107af578063e0ec7c36146107d857610246565b806395d89b41116100fd57806395d89b4114610667578063a0712d6814610692578063a22cb465146106ae578063a45ba8e7146106d7578063b071401b1461070257610246565b806370a0823114610594578063715018a6146105d15780637ec4a659146105e85780638da5cb5b1461061157806394354fd01461063c57610246565b80633ccfd60b116101c7578063518302271161018b57806351830227146104ab5780635503a0e8146104d65780635c975abb1461050157806362b99ad41461052c5780636352211e1461055757610246565b80633ccfd60b146103fb57806342842e0e1461041257806344a0d68a1461042e578063453c2310146104575780634fdd43cb1461048257610246565b806316ba10e01161020e57806316ba10e01461033757806316c38b3c1461036057806318160ddd1461038957806323b872dd146103b457806324a6ab0c146103d057610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806313faede61461030c575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906126da565b61091f565b60405161027f9190612722565b60405180910390f35b34801561029457600080fd5b5061029d6109b1565b6040516102aa91906127cd565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190612825565b610a43565b6040516102e79190612893565b60405180910390f35b61030a600480360381019061030591906128da565b610ac2565b005b34801561031857600080fd5b50610321610c06565b60405161032e9190612929565b60405180910390f35b34801561034357600080fd5b5061035e60048036038101906103599190612a79565b610c0c565b005b34801561036c57600080fd5b5061038760048036038101906103829190612aee565b610c27565b005b34801561039557600080fd5b5061039e610c4c565b6040516103ab9190612929565b60405180910390f35b6103ce60048036038101906103c99190612b1b565b610c63565b005b3480156103dc57600080fd5b506103e5610f85565b6040516103f29190612929565b60405180910390f35b34801561040757600080fd5b50610410610f8b565b005b61042c60048036038101906104279190612b1b565b611023565b005b34801561043a57600080fd5b5061045560048036038101906104509190612825565b611043565b005b34801561046357600080fd5b5061046c611055565b6040516104799190612929565b60405180910390f35b34801561048e57600080fd5b506104a960048036038101906104a49190612a79565b61105b565b005b3480156104b757600080fd5b506104c0611076565b6040516104cd9190612722565b60405180910390f35b3480156104e257600080fd5b506104eb611089565b6040516104f891906127cd565b60405180910390f35b34801561050d57600080fd5b50610516611117565b6040516105239190612722565b60405180910390f35b34801561053857600080fd5b5061054161112a565b60405161054e91906127cd565b60405180910390f35b34801561056357600080fd5b5061057e60048036038101906105799190612825565b6111b8565b60405161058b9190612893565b60405180910390f35b3480156105a057600080fd5b506105bb60048036038101906105b69190612b6e565b6111ca565b6040516105c89190612929565b60405180910390f35b3480156105dd57600080fd5b506105e6611282565b005b3480156105f457600080fd5b5061060f600480360381019061060a9190612a79565b611296565b005b34801561061d57600080fd5b506106266112b1565b6040516106339190612893565b60405180910390f35b34801561064857600080fd5b506106516112db565b60405161065e9190612929565b60405180910390f35b34801561067357600080fd5b5061067c6112e1565b60405161068991906127cd565b60405180910390f35b6106ac60048036038101906106a79190612825565b611373565b005b3480156106ba57600080fd5b506106d560048036038101906106d09190612b9b565b6115ad565b005b3480156106e357600080fd5b506106ec6116b8565b6040516106f991906127cd565b60405180910390f35b34801561070e57600080fd5b5061072960048036038101906107249190612825565b611746565b005b61074560048036038101906107409190612c7c565b611758565b005b34801561075357600080fd5b5061076e60048036038101906107699190612825565b6117cb565b60405161077b91906127cd565b60405180910390f35b34801561079057600080fd5b50610799611923565b6040516107a69190612929565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d19190612aee565b611929565b005b3480156107e457600080fd5b506107ff60048036038101906107fa9190612b6e565b61194e565b60405161080c9190612722565b60405180910390f35b34801561082157600080fd5b5061083c60048036038101906108379190612825565b61196e565b005b34801561084a57600080fd5b5061086560048036038101906108609190612825565b611980565b005b34801561087357600080fd5b5061088e60048036038101906108899190612cff565b611992565b60405161089b9190612722565b60405180910390f35b3480156108b057600080fd5b506108cb60048036038101906108c69190612d3f565b611a26565b005b3480156108d957600080fd5b506108f460048036038101906108ef9190612b6e565b611b45565b005b34801561090257600080fd5b5061091d60048036038101906109189190612825565b611bc8565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109aa5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109c090612dae565b80601f01602080910402602001604051908101604052809291908181526020018280546109ec90612dae565b8015610a395780601f10610a0e57610100808354040283529160200191610a39565b820191906000526020600020905b815481529060010190602001808311610a1c57829003601f168201915b5050505050905090565b6000610a4e82611bda565b610a84576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610acd826111b8565b90508073ffffffffffffffffffffffffffffffffffffffff16610aee611c39565b73ffffffffffffffffffffffffffffffffffffffff1614610b5157610b1a81610b15611c39565b611992565b610b50576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610c14611c41565b80600b9081610c239190612f8b565b5050565b610c2f611c41565b80601260006101000a81548160ff02191690831515021790555050565b6000610c56611cbf565b6001546000540303905090565b6000610c6e82611cc8565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610cd5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ce184611d94565b91509150610cf78187610cf2611c39565b611dbb565b610d4357610d0c86610d07611c39565b611992565b610d42576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610da9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610db68686866001611dff565b8015610dc157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e8f85610e6b888887611e05565b7c020000000000000000000000000000000000000000000000000000000017611e2d565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610f155760006001850190506000600460008381526020019081526020016000205403610f13576000548114610f12578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f7d8686866001611e58565b505050505050565b600f5481565b610f93611c41565b610f9b611e5e565b6000610fa56112b1565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fc89061308e565b60006040518083038185875af1925050503d8060008114611005576040519150601f19603f3d011682016040523d82523d6000602084013e61100a565b606091505b505090508061101857600080fd5b50611021611ead565b565b61103e83838360405180602001604052806000815250611758565b505050565b61104b611c41565b80600d8190555050565b60105481565b611063611c41565b80600c90816110729190612f8b565b5050565b601260019054906101000a900460ff1681565b600b805461109690612dae565b80601f01602080910402602001604051908101604052809291908181526020018280546110c290612dae565b801561110f5780601f106110e45761010080835404028352916020019161110f565b820191906000526020600020905b8154815290600101906020018083116110f257829003601f168201915b505050505081565b601260009054906101000a900460ff1681565b600a805461113790612dae565b80601f016020809104026020016040519081016040528092919081815260200182805461116390612dae565b80156111b05780601f10611185576101008083540402835291602001916111b0565b820191906000526020600020905b81548152906001019060200180831161119357829003601f168201915b505050505081565b60006111c382611cc8565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611231576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61128a611c41565b6112946000611eb7565b565b61129e611c41565b80600a90816112ad9190612f8b565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b6060600380546112f090612dae565b80601f016020809104026020016040519081016040528092919081815260200182805461131c90612dae565b80156113695780601f1061133e57610100808354040283529160200191611369565b820191906000526020600020905b81548152906001019060200180831161134c57829003601f168201915b5050505050905090565b601260009054906101000a900460ff16156113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba906130ef565b60405180910390fd5b600e54816113cf610c4c565b6113d9919061313e565b111561141a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611411906131be565b60405180910390fd5b600061142533611f7d565b90503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148c9061322a565b60405180910390fd5b60105482826114a4919061313e565b11156114e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dc906132bc565b60405180910390fd5b6000810361154e576001826114fa91906132dc565b600d546115079190613310565b341015611549576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115409061339e565b60405180910390fd5b61159f565b81600d5461155c9190613310565b34101561159e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115959061339e565b60405180910390fd5b5b6115a93383611fd4565b5050565b80600760006115ba611c39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611667611c39565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116ac9190612722565b60405180910390a35050565b600c80546116c590612dae565b80601f01602080910402602001604051908101604052809291908181526020018280546116f190612dae565b801561173e5780601f106117135761010080835404028352916020019161173e565b820191906000526020600020905b81548152906001019060200180831161172157829003601f168201915b505050505081565b61174e611c41565b8060118190555050565b611763848484610c63565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117c55761178e84848484611ff2565b6117c4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606117d682611bda565b611815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180c90613430565b60405180910390fd5b60001515601260019054906101000a900460ff161515036118c257600c805461183d90612dae565b80601f016020809104026020016040519081016040528092919081815260200182805461186990612dae565b80156118b65780601f1061188b576101008083540402835291602001916118b6565b820191906000526020600020905b81548152906001019060200180831161189957829003601f168201915b5050505050905061191e565b60006118cc612142565b905060008151116118ec576040518060200160405280600081525061191a565b806118f6846121d4565b600b60405160200161190a9392919061350f565b6040516020818303038152906040525b9150505b919050565b600e5481565b611931611c41565b80601260016101000a81548160ff02191690831515021790555050565b60136020528060005260406000206000915054906101000a900460ff1681565b611976611c41565b8060108190555050565b611988611c41565b80600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611a3957506011548111155b611a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6f9061358c565b60405180910390fd5b601054611a8b611a866122a2565b6111ca565b82611a96919061313e565b1115611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace906135f8565b60405180910390fd5b600e5481611ae3610c4c565b611aed919061313e565b1115611b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2590613664565b60405180910390fd5b611b36611c41565b611b408284611fd4565b505050565b611b4d611c41565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb3906136f6565b60405180910390fd5b611bc581611eb7565b50565b611bd0611c41565b80600f8190555050565b600081611be5611cbf565b11158015611bf4575060005482105b8015611c32575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611c496122a2565b73ffffffffffffffffffffffffffffffffffffffff16611c676112b1565b73ffffffffffffffffffffffffffffffffffffffff1614611cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb490613762565b60405180910390fd5b565b60006001905090565b60008082905080611cd7611cbf565b11611d5d57600054811015611d5c5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611d5a575b60008103611d50576004600083600190039350838152602001908152602001600020549050611d26565b8092505050611d8f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e1c8686846122aa565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600260095403611ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9a906137ce565b60405180910390fd5b6002600981905550565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b611fee8282604051806020016040528060008152506122b3565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612018611c39565b8786866040518563ffffffff1660e01b815260040161203a9493929190613843565b6020604051808303816000875af192505050801561207657506040513d601f19601f8201168201806040525081019061207391906138a4565b60015b6120ef573d80600081146120a6576040519150601f19603f3d011682016040523d82523d6000602084013e6120ab565b606091505b5060008151036120e7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461215190612dae565b80601f016020809104026020016040519081016040528092919081815260200182805461217d90612dae565b80156121ca5780601f1061219f576101008083540402835291602001916121ca565b820191906000526020600020905b8154815290600101906020018083116121ad57829003601f168201915b5050505050905090565b6060600060016121e384612350565b01905060008167ffffffffffffffff8111156122025761220161294e565b5b6040519080825280601f01601f1916602001820160405280156122345781602001600182028036833780820191505090505b509050600082602001820190505b600115612297578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161228b5761228a6138d1565b5b04945060008503612242575b819350505050919050565b600033905090565b60009392505050565b6122bd83836124a3565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461234b57600080549050600083820390505b6122fd6000868380600101945086611ff2565b612333576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106122ea57816000541461234857600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106123ae577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816123a4576123a36138d1565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106123eb576d04ee2d6d415b85acef810000000083816123e1576123e06138d1565b5b0492506020810190505b662386f26fc10000831061241a57662386f26fc1000083816124105761240f6138d1565b5b0492506010810190505b6305f5e1008310612443576305f5e1008381612439576124386138d1565b5b0492506008810190505b612710831061246857612710838161245e5761245d6138d1565b5b0492506004810190505b6064831061248b5760648381612481576124806138d1565b5b0492506002810190505b600a831061249a576001810190505b80915050919050565b600080549050600082036124e3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124f06000848385611dff565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612567836125586000866000611e05565b6125618561265e565b17611e2d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461260857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506125cd565b5060008203612643576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126596000848385611e58565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126b781612682565b81146126c257600080fd5b50565b6000813590506126d4816126ae565b92915050565b6000602082840312156126f0576126ef612678565b5b60006126fe848285016126c5565b91505092915050565b60008115159050919050565b61271c81612707565b82525050565b60006020820190506127376000830184612713565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561277757808201518184015260208101905061275c565b60008484015250505050565b6000601f19601f8301169050919050565b600061279f8261273d565b6127a98185612748565b93506127b9818560208601612759565b6127c281612783565b840191505092915050565b600060208201905081810360008301526127e78184612794565b905092915050565b6000819050919050565b612802816127ef565b811461280d57600080fd5b50565b60008135905061281f816127f9565b92915050565b60006020828403121561283b5761283a612678565b5b600061284984828501612810565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061287d82612852565b9050919050565b61288d81612872565b82525050565b60006020820190506128a86000830184612884565b92915050565b6128b781612872565b81146128c257600080fd5b50565b6000813590506128d4816128ae565b92915050565b600080604083850312156128f1576128f0612678565b5b60006128ff858286016128c5565b925050602061291085828601612810565b9150509250929050565b612923816127ef565b82525050565b600060208201905061293e600083018461291a565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61298682612783565b810181811067ffffffffffffffff821117156129a5576129a461294e565b5b80604052505050565b60006129b861266e565b90506129c4828261297d565b919050565b600067ffffffffffffffff8211156129e4576129e361294e565b5b6129ed82612783565b9050602081019050919050565b82818337600083830152505050565b6000612a1c612a17846129c9565b6129ae565b905082815260208101848484011115612a3857612a37612949565b5b612a438482856129fa565b509392505050565b600082601f830112612a6057612a5f612944565b5b8135612a70848260208601612a09565b91505092915050565b600060208284031215612a8f57612a8e612678565b5b600082013567ffffffffffffffff811115612aad57612aac61267d565b5b612ab984828501612a4b565b91505092915050565b612acb81612707565b8114612ad657600080fd5b50565b600081359050612ae881612ac2565b92915050565b600060208284031215612b0457612b03612678565b5b6000612b1284828501612ad9565b91505092915050565b600080600060608486031215612b3457612b33612678565b5b6000612b42868287016128c5565b9350506020612b53868287016128c5565b9250506040612b6486828701612810565b9150509250925092565b600060208284031215612b8457612b83612678565b5b6000612b92848285016128c5565b91505092915050565b60008060408385031215612bb257612bb1612678565b5b6000612bc0858286016128c5565b9250506020612bd185828601612ad9565b9150509250929050565b600067ffffffffffffffff821115612bf657612bf561294e565b5b612bff82612783565b9050602081019050919050565b6000612c1f612c1a84612bdb565b6129ae565b905082815260208101848484011115612c3b57612c3a612949565b5b612c468482856129fa565b509392505050565b600082601f830112612c6357612c62612944565b5b8135612c73848260208601612c0c565b91505092915050565b60008060008060808587031215612c9657612c95612678565b5b6000612ca4878288016128c5565b9450506020612cb5878288016128c5565b9350506040612cc687828801612810565b925050606085013567ffffffffffffffff811115612ce757612ce661267d565b5b612cf387828801612c4e565b91505092959194509250565b60008060408385031215612d1657612d15612678565b5b6000612d24858286016128c5565b9250506020612d35858286016128c5565b9150509250929050565b60008060408385031215612d5657612d55612678565b5b6000612d6485828601612810565b9250506020612d75858286016128c5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612dc657607f821691505b602082108103612dd957612dd8612d7f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612e417fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612e04565b612e4b8683612e04565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612e88612e83612e7e846127ef565b612e63565b6127ef565b9050919050565b6000819050919050565b612ea283612e6d565b612eb6612eae82612e8f565b848454612e11565b825550505050565b600090565b612ecb612ebe565b612ed6818484612e99565b505050565b5b81811015612efa57612eef600082612ec3565b600181019050612edc565b5050565b601f821115612f3f57612f1081612ddf565b612f1984612df4565b81016020851015612f28578190505b612f3c612f3485612df4565b830182612edb565b50505b505050565b600082821c905092915050565b6000612f6260001984600802612f44565b1980831691505092915050565b6000612f7b8383612f51565b9150826002028217905092915050565b612f948261273d565b67ffffffffffffffff811115612fad57612fac61294e565b5b612fb78254612dae565b612fc2828285612efe565b600060209050601f831160018114612ff55760008415612fe3578287015190505b612fed8582612f6f565b865550613055565b601f19841661300386612ddf565b60005b8281101561302b57848901518255600182019150602085019450602081019050613006565b868310156130485784890151613044601f891682612f51565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b50565b600061307860008361305d565b915061308382613068565b600082019050919050565b60006130998261306b565b9150819050919050565b7f436f6e7472616374206973205061757365640000000000000000000000000000600082015250565b60006130d9601283612748565b91506130e4826130a3565b602082019050919050565b60006020820190508181036000830152613108816130cc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613149826127ef565b9150613154836127ef565b925082820190508082111561316c5761316b61310f565b5b92915050565b7f6d617820737570706c7920776f756c6420626520657863656564656400000000600082015250565b60006131a8601c83612748565b91506131b382613172565b602082019050919050565b600060208201905081810360008301526131d78161319b565b9050919050565b7f436f6e7472616374206d696e74696e67206e6f7420616c6c6f77656400000000600082015250565b6000613214601c83612748565b915061321f826131de565b602082019050919050565b6000602082019050818103600083015261324381613207565b9050919050565b7f6d6178206d696e74207065722077616c6c657420776f756c642062652065786360008201527f6565646564000000000000000000000000000000000000000000000000000000602082015250565b60006132a6602583612748565b91506132b18261324a565b604082019050919050565b600060208201905081810360008301526132d581613299565b9050919050565b60006132e7826127ef565b91506132f2836127ef565b925082820390508181111561330a5761330961310f565b5b92915050565b600061331b826127ef565b9150613326836127ef565b9250828202613334816127ef565b9150828204841483151761334b5761334a61310f565b5b5092915050565b7f76616c7565206e6f74206d657400000000000000000000000000000000000000600082015250565b6000613388600d83612748565b915061339382613352565b602082019050919050565b600060208201905081810360008301526133b78161337b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061341a602f83612748565b9150613425826133be565b604082019050919050565b600060208201905081810360008301526134498161340d565b9050919050565b600081905092915050565b60006134668261273d565b6134708185613450565b9350613480818560208601612759565b80840191505092915050565b6000815461349981612dae565b6134a38186613450565b945060018216600081146134be57600181146134d357613506565b60ff1983168652811515820286019350613506565b6134dc85612ddf565b60005b838110156134fe578154818901526001820191506020810190506134df565b838801955050505b50505092915050565b600061351b828661345b565b9150613527828561345b565b9150613533828461348c565b9150819050949350505050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613576601483612748565b915061358182613540565b602082019050919050565b600060208201905081810360008301526135a581613569565b9050919050565b7f4f6e6c79206669766520616c6c6f776564207065722077616c6c657421000000600082015250565b60006135e2601d83612748565b91506135ed826135ac565b602082019050919050565b60006020820190508181036000830152613611816135d5565b9050919050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b600061364e601483612748565b915061365982613618565b602082019050919050565b6000602082019050818103600083015261367d81613641565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136e0602683612748565b91506136eb82613684565b604082019050919050565b6000602082019050818103600083015261370f816136d3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061374c602083612748565b915061375782613716565b602082019050919050565b6000602082019050818103600083015261377b8161373f565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006137b8601f83612748565b91506137c382613782565b602082019050919050565b600060208201905081810360008301526137e7816137ab565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613815826137ee565b61381f81856137f9565b935061382f818560208601612759565b61383881612783565b840191505092915050565b60006080820190506138586000830187612884565b6138656020830186612884565b613872604083018561291a565b8181036060830152613884818461380a565b905095945050505050565b60008151905061389e816126ae565b92915050565b6000602082840312156138ba576138b9612678565b5b60006138c88482850161388f565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea26469706673582212203abd1fa0f77668f02b332347b97bebc518fc61f16ddd5509d96fe7d284490a6764736f6c63430008120033

Deployed Bytecode Sourcemap

79307:3766:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46196:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47098:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53589:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53022:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79510:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82537:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82742:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42849:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57228:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79578:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82920:150;;;;;;;;;;;;;:::i;:::-;;60149:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81973:71;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79612:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82293:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79716:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79432:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79686:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79399:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48491:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44033:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26975:103;;;;;;;;;;;;;:::i;:::-;;82431:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26327:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79645:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47274:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80418:649;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54147:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79470:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82050:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60940:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81438:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79545:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81886:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79750:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82184:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82645:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54538:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81075:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27233:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82825:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46196:639;46281:4;46620:10;46605:25;;:11;:25;;;;:102;;;;46697:10;46682:25;;:11;:25;;;;46605:102;:179;;;;46774:10;46759:25;;:11;:25;;;;46605:179;46585:199;;46196:639;;;:::o;47098:100::-;47152:13;47185:5;47178:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47098:100;:::o;53589:218::-;53665:7;53690:16;53698:7;53690;:16::i;:::-;53685:64;;53715:34;;;;;;;;;;;;;;53685:64;53769:15;:24;53785:7;53769:24;;;;;;;;;;;:30;;;;;;;;;;;;53762:37;;53589:218;;;:::o;53022:408::-;53111:13;53127:16;53135:7;53127;:16::i;:::-;53111:32;;53183:5;53160:28;;:19;:17;:19::i;:::-;:28;;;53156:175;;53208:44;53225:5;53232:19;:17;:19::i;:::-;53208:16;:44::i;:::-;53203:128;;53280:35;;;;;;;;;;;;;;53203:128;53156:175;53376:2;53343:15;:24;53359:7;53343:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;53414:7;53410:2;53394:28;;53403:5;53394:28;;;;;;;;;;;;53100:330;53022:408;;:::o;79510:30::-;;;;:::o;82537:100::-;26213:13;:11;:13::i;:::-;82621:10:::1;82609:9;:22;;;;;;:::i;:::-;;82537:100:::0;:::o;82742:77::-;26213:13;:11;:13::i;:::-;82807:6:::1;82798;;:15;;;;;;;;;;;;;;;;;;82742:77:::0;:::o;42849:323::-;42910:7;43138:15;:13;:15::i;:::-;43123:12;;43107:13;;:28;:46;43100:53;;42849:323;:::o;57228:2825::-;57370:27;57400;57419:7;57400:18;:27::i;:::-;57370:57;;57485:4;57444:45;;57460:19;57444:45;;;57440:86;;57498:28;;;;;;;;;;;;;;57440:86;57540:27;57569:23;57596:35;57623:7;57596:26;:35::i;:::-;57539:92;;;;57731:68;57756:15;57773:4;57779:19;:17;:19::i;:::-;57731:24;:68::i;:::-;57726:180;;57819:43;57836:4;57842:19;:17;:19::i;:::-;57819:16;:43::i;:::-;57814:92;;57871:35;;;;;;;;;;;;;;57814:92;57726:180;57937:1;57923:16;;:2;:16;;;57919:52;;57948:23;;;;;;;;;;;;;;57919:52;57984:43;58006:4;58012:2;58016:7;58025:1;57984:21;:43::i;:::-;58120:15;58117:160;;;58260:1;58239:19;58232:30;58117:160;58657:18;:24;58676:4;58657:24;;;;;;;;;;;;;;;;58655:26;;;;;;;;;;;;58726:18;:22;58745:2;58726:22;;;;;;;;;;;;;;;;58724:24;;;;;;;;;;;59048:146;59085:2;59134:45;59149:4;59155:2;59159:19;59134:14;:45::i;:::-;39248:8;59106:73;59048:18;:146::i;:::-;59019:17;:26;59037:7;59019:26;;;;;;;;;;;:175;;;;59365:1;39248:8;59314:19;:47;:52;59310:627;;59387:19;59419:1;59409:7;:11;59387:33;;59576:1;59542:17;:30;59560:11;59542:30;;;;;;;;;;;;:35;59538:384;;59680:13;;59665:11;:28;59661:242;;59860:19;59827:17;:30;59845:11;59827:30;;;;;;;;;;;:52;;;;59661:242;59538:384;59368:569;59310:627;59984:7;59980:2;59965:27;;59974:4;59965:27;;;;;;;;;;;;60003:42;60024:4;60030:2;60034:7;60043:1;60003:20;:42::i;:::-;57359:2694;;;57228:2825;;;:::o;79578:29::-;;;;:::o;82920:150::-;26213:13;:11;:13::i;:::-;8399:21:::1;:19;:21::i;:::-;82978:7:::2;82999;:5;:7::i;:::-;82991:21;;83020;82991:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82977:69;;;83061:2;83053:11;;;::::0;::::2;;82970:100;8443:20:::1;:18;:20::i;:::-;82920:150::o:0;60149:193::-;60295:39;60312:4;60318:2;60322:7;60295:39;;;;;;;;;;;;:16;:39::i;:::-;60149:193;;;:::o;81973:71::-;26213:13;:11;:13::i;:::-;82033:5:::1;82026:4;:12;;;;81973:71:::0;:::o;79612:28::-;;;;:::o;82293:132::-;26213:13;:11;:13::i;:::-;82401:18:::1;82381:17;:38;;;;;;:::i;:::-;;82293:132:::0;:::o;79716:27::-;;;;;;;;;;;;;:::o;79432:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;79686:25::-;;;;;;;;;;;;;:::o;79399:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48491:152::-;48563:7;48606:27;48625:7;48606:18;:27::i;:::-;48583:52;;48491:152;;;:::o;44033:233::-;44105:7;44146:1;44129:19;;:5;:19;;;44125:60;;44157:28;;;;;;;;;;;;;;44125:60;38192:13;44203:18;:25;44222:5;44203:25;;;;;;;;;;;;;;;;:55;44196:62;;44033:233;;;:::o;26975:103::-;26213:13;:11;:13::i;:::-;27040:30:::1;27067:1;27040:18;:30::i;:::-;26975:103::o:0;82431:100::-;26213:13;:11;:13::i;:::-;82515:10:::1;82503:9;:22;;;;;;:::i;:::-;;82431:100:::0;:::o;26327:87::-;26373:7;26400:6;;;;;;;;;;;26393:13;;26327:87;:::o;79645:34::-;;;;:::o;47274:104::-;47330:13;47363:7;47356:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47274:104;:::o;80418:649::-;80485:6;;;;;;;;;;;80484:7;80476:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;80561:9;;80551:6;80535:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;80527:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;80614:11;80628:25;80642:10;80628:13;:25::i;:::-;80614:39;;80686:9;80672:23;;:10;:23;;;80664:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;80766:12;;80756:6;80747;:15;;;;:::i;:::-;:31;;80739:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;80847:1;80837:6;:11;80833:187;;80903:1;80894:6;:10;;;;:::i;:::-;80886:4;;:19;;;;:::i;:::-;80873:9;:32;;80865:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;80833:187;;;80984:6;80977:4;;:13;;;;:::i;:::-;80964:9;:26;;80956:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;80833:187;81030:29;81040:10;81052:6;81030:9;:29::i;:::-;80465:602;80418:649;:::o;54147:234::-;54294:8;54242:18;:39;54261:19;:17;:19::i;:::-;54242:39;;;;;;;;;;;;;;;:49;54282:8;54242:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;54354:8;54318:55;;54333:19;:17;:19::i;:::-;54318:55;;;54364:8;54318:55;;;;;;:::i;:::-;;;;;;;;54147:234;;:::o;79470:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;82050:127::-;26213:13;:11;:13::i;:::-;82152:19:::1;82131:18;:40;;;;82050:127:::0;:::o;60940:407::-;61115:31;61128:4;61134:2;61138:7;61115:12;:31::i;:::-;61179:1;61161:2;:14;;;:19;61157:183;;61200:56;61231:4;61237:2;61241:7;61250:5;61200:30;:56::i;:::-;61195:145;;61284:40;;;;;;;;;;;;;;61195:145;61157:183;60940:407;;;;:::o;81438:442::-;81509:13;81539:17;81547:8;81539:7;:17::i;:::-;81531:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;81633:5;81621:17;;:8;;;;;;;;;;;:17;;;81617:64;;81656:17;81649:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81617:64;81689:28;81720:10;:8;:10::i;:::-;81689:41;;81775:1;81750:14;81744:28;:32;:130;;;;;;;;;;;;;;;;;81812:14;81828:19;:8;:17;:19::i;:::-;81849:9;81795:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;81744:130;81737:137;;;81438:442;;;;:::o;79545:28::-;;;;:::o;81886:81::-;26213:13;:11;:13::i;:::-;81955:6:::1;81944:8;;:17;;;;;;;;;;;;;;;;;;81886:81:::0;:::o;79750:47::-;;;;;;;;;;;;;;;;;;;;;;:::o;82184:103::-;26213:13;:11;:13::i;:::-;82268::::1;82253:12;:28;;;;82184:103:::0;:::o;82645:91::-;26213:13;:11;:13::i;:::-;82722:10:::1;82710:9;:22;;;;82645:91:::0;:::o;54538:164::-;54635:4;54659:18;:25;54678:5;54659:25;;;;;;;;;;;;;;;:35;54685:8;54659:35;;;;;;;;;;;;;;;;;;;;;;;;;54652:42;;54538:164;;;;:::o;81075:152::-;81158:11;79933:1;79919:11;:15;:52;;;;;79953:18;;79938:11;:33;;79919:52;79911:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;80052:12;;80025:23;80035:12;:10;:12::i;:::-;80025:9;:23::i;:::-;80011:11;:37;;;;:::i;:::-;:53;;80003:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;80144:9;;80129:11;80113:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;80105:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26213:13:::1;:11;:13::i;:::-;81188:33:::2;81198:9;81209:11;81188:9;:33::i;:::-;81075:152:::0;;;:::o;27233:201::-;26213:13;:11;:13::i;:::-;27342:1:::1;27322:22;;:8;:22;;::::0;27314:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;27398:28;27417:8;27398:18;:28::i;:::-;27233:201:::0;:::o;82825:89::-;26213:13;:11;:13::i;:::-;82900:8:::1;82887:10;:21;;;;82825:89:::0;:::o;54960:282::-;55025:4;55081:7;55062:15;:13;:15::i;:::-;:26;;:66;;;;;55115:13;;55105:7;:23;55062:66;:153;;;;;55214:1;38968:8;55166:17;:26;55184:7;55166:26;;;;;;;;;;;;:44;:49;55062:153;55042:173;;54960:282;;;:::o;77268:105::-;77328:7;77355:10;77348:17;;77268:105;:::o;26492:132::-;26567:12;:10;:12::i;:::-;26556:23;;:7;:5;:7::i;:::-;:23;;;26548:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26492:132::o;81233:87::-;81298:7;81316:1;81309:8;;81233:87;:::o;49646:1275::-;49713:7;49733:12;49748:7;49733:22;;49816:4;49797:15;:13;:15::i;:::-;:23;49793:1061;;49850:13;;49843:4;:20;49839:1015;;;49888:14;49905:17;:23;49923:4;49905:23;;;;;;;;;;;;49888:40;;50022:1;38968:8;49994:6;:24;:29;49990:845;;50659:113;50676:1;50666:6;:11;50659:113;;50719:17;:25;50737:6;;;;;;;50719:25;;;;;;;;;;;;50710:34;;50659:113;;;50805:6;50798:13;;;;;;49990:845;49865:989;49839:1015;49793:1061;50882:31;;;;;;;;;;;;;;49646:1275;;;;:::o;56123:485::-;56225:27;56254:23;56295:38;56336:15;:24;56352:7;56336:24;;;;;;;;;;;56295:65;;56513:18;56490:41;;56570:19;56564:26;56545:45;;56475:126;56123:485;;;:::o;55351:659::-;55500:11;55665:16;55658:5;55654:28;55645:37;;55825:16;55814:9;55810:32;55797:45;;55975:15;55964:9;55961:30;55953:5;55942:9;55939:20;55936:56;55926:66;;55351:659;;;;;:::o;62009:159::-;;;;;:::o;76577:311::-;76712:7;76732:16;39372:3;76758:19;:41;;76732:68;;39372:3;76826:31;76837:4;76843:2;76847:9;76826:10;:31::i;:::-;76818:40;;:62;;76811:69;;;76577:311;;;;;:::o;51469:450::-;51549:14;51717:16;51710:5;51706:28;51697:37;;51894:5;51880:11;51855:23;51851:41;51848:52;51841:5;51838:63;51828:73;;51469:450;;;;:::o;62833:158::-;;;;;:::o;8479:293::-;7881:1;8613:7;;:19;8605:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;7881:1;8746:7;:18;;;;8479:293::o;8780:213::-;7837:1;8963:7;:22;;;;8780:213::o;27594:191::-;27668:16;27687:6;;;;;;;;;;;27668:25;;27713:8;27704:6;;:17;;;;;;;;;;;;;;;;;;27768:8;27737:40;;27758:8;27737:40;;;;;;;;;;;;27657:128;27594:191;:::o;44348:178::-;44409:7;38192:13;38330:2;44437:18;:25;44456:5;44437:25;;;;;;;;;;;;;;;;:50;;44436:82;44429:89;;44348:178;;;:::o;71100:112::-;71177:27;71187:2;71191:8;71177:27;;;;;;;;;;;;:9;:27::i;:::-;71100:112;;:::o;63431:716::-;63594:4;63640:2;63615:45;;;63661:19;:17;:19::i;:::-;63682:4;63688:7;63697:5;63615:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;63611:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63915:1;63898:6;:13;:18;63894:235;;63944:40;;;;;;;;;;;;;;63894:235;64087:6;64081:13;64072:6;64068:2;64064:15;64057:38;63611:529;63784:54;;;63774:64;;;:6;:64;;;;63767:71;;;63431:716;;;;;;:::o;81328:104::-;81388:13;81417:9;81410:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81328:104;:::o;22305:716::-;22361:13;22412:14;22449:1;22429:17;22440:5;22429:10;:17::i;:::-;:21;22412:38;;22465:20;22499:6;22488:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22465:41;;22521:11;22650:6;22646:2;22642:15;22634:6;22630:28;22623:35;;22687:288;22694:4;22687:288;;;22719:5;;;;;;;;22861:8;22856:2;22849:5;22845:14;22840:30;22835:3;22827:44;22917:2;22908:11;;;;;;:::i;:::-;;;;;22951:1;22942:5;:10;22687:288;22938:21;22687:288;22996:6;22989:13;;;;;22305:716;;;:::o;24878:98::-;24931:7;24958:10;24951:17;;24878:98;:::o;76278:147::-;76415:6;76278:147;;;;;:::o;70327:689::-;70458:19;70464:2;70468:8;70458:5;:19::i;:::-;70537:1;70519:2;:14;;;:19;70515:483;;70559:11;70573:13;;70559:27;;70605:13;70627:8;70621:3;:14;70605:30;;70654:233;70685:62;70724:1;70728:2;70732:7;;;;;;70741:5;70685:30;:62::i;:::-;70680:167;;70783:40;;;;;;;;;;;;;;70680:167;70882:3;70874:5;:11;70654:233;;70969:3;70952:13;;:20;70948:34;;70974:8;;;70948:34;70540:458;;70515:483;70327:689;;;:::o;19171:922::-;19224:7;19244:14;19261:1;19244:18;;19311:6;19302:5;:15;19298:102;;19347:6;19338:15;;;;;;:::i;:::-;;;;;19382:2;19372:12;;;;19298:102;19427:6;19418:5;:15;19414:102;;19463:6;19454:15;;;;;;:::i;:::-;;;;;19498:2;19488:12;;;;19414:102;19543:6;19534:5;:15;19530:102;;19579:6;19570:15;;;;;;:::i;:::-;;;;;19614:2;19604:12;;;;19530:102;19659:5;19650;:14;19646:99;;19694:5;19685:14;;;;;;:::i;:::-;;;;;19728:1;19718:11;;;;19646:99;19772:5;19763;:14;19759:99;;19807:5;19798:14;;;;;;:::i;:::-;;;;;19841:1;19831:11;;;;19759:99;19885:5;19876;:14;19872:99;;19920:5;19911:14;;;;;;:::i;:::-;;;;;19954:1;19944:11;;;;19872:99;19998:5;19989;:14;19985:66;;20034:1;20024:11;;;;19985:66;20079:6;20072:13;;;19171:922;;;:::o;64609:2966::-;64682:20;64705:13;;64682:36;;64745:1;64733:8;:13;64729:44;;64755:18;;;;;;;;;;;;;;64729:44;64786:61;64816:1;64820:2;64824:12;64838:8;64786:21;:61::i;:::-;65330:1;38330:2;65300:1;:26;;65299:32;65287:8;:45;65261:18;:22;65280:2;65261:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;65609:139;65646:2;65700:33;65723:1;65727:2;65731:1;65700:14;:33::i;:::-;65667:30;65688:8;65667:20;:30::i;:::-;:66;65609:18;:139::i;:::-;65575:17;:31;65593:12;65575:31;;;;;;;;;;;:173;;;;65765:16;65796:11;65825:8;65810:12;:23;65796:37;;66346:16;66342:2;66338:25;66326:37;;66718:12;66678:8;66637:1;66575:25;66516:1;66455;66428:335;67089:1;67075:12;67071:20;67029:346;67130:3;67121:7;67118:16;67029:346;;67348:7;67338:8;67335:1;67308:25;67305:1;67302;67297:59;67183:1;67174:7;67170:15;67159:26;;67029:346;;;67033:77;67420:1;67408:8;:13;67404:45;;67430:19;;;;;;;;;;;;;;67404:45;67482:3;67466:13;:19;;;;65035:2462;;67507:60;67536:1;67540:2;67544:12;67558:8;67507:20;:60::i;:::-;64671:2904;64609:2966;;:::o;52021:324::-;52091:14;52324:1;52314:8;52311:15;52285:24;52281:46;52271:56;;52021: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:117::-;5351:1;5348;5341:12;5365:117;5474:1;5471;5464:12;5488:180;5536:77;5533:1;5526:88;5633:4;5630:1;5623:15;5657:4;5654:1;5647:15;5674:281;5757:27;5779:4;5757:27;:::i;:::-;5749:6;5745:40;5887:6;5875:10;5872:22;5851:18;5839:10;5836:34;5833:62;5830:88;;;5898:18;;:::i;:::-;5830:88;5938:10;5934:2;5927:22;5717:238;5674:281;;:::o;5961:129::-;5995:6;6022:20;;:::i;:::-;6012:30;;6051:33;6079:4;6071:6;6051:33;:::i;:::-;5961:129;;;:::o;6096:308::-;6158:4;6248:18;6240:6;6237:30;6234:56;;;6270:18;;:::i;:::-;6234:56;6308:29;6330:6;6308:29;:::i;:::-;6300:37;;6392:4;6386;6382:15;6374:23;;6096:308;;;:::o;6410:146::-;6507:6;6502:3;6497;6484:30;6548:1;6539:6;6534:3;6530:16;6523:27;6410:146;;;:::o;6562:425::-;6640:5;6665:66;6681:49;6723:6;6681:49;:::i;:::-;6665:66;:::i;:::-;6656:75;;6754:6;6747:5;6740:21;6792:4;6785:5;6781:16;6830:3;6821:6;6816:3;6812:16;6809:25;6806:112;;;6837:79;;:::i;:::-;6806:112;6927:54;6974:6;6969:3;6964;6927:54;:::i;:::-;6646:341;6562:425;;;;;:::o;7007:340::-;7063:5;7112:3;7105:4;7097:6;7093:17;7089:27;7079:122;;7120:79;;:::i;:::-;7079:122;7237:6;7224:20;7262:79;7337:3;7329:6;7322:4;7314:6;7310:17;7262:79;:::i;:::-;7253:88;;7069:278;7007:340;;;;:::o;7353:509::-;7422:6;7471:2;7459:9;7450:7;7446:23;7442:32;7439:119;;;7477:79;;:::i;:::-;7439:119;7625:1;7614:9;7610:17;7597:31;7655:18;7647:6;7644:30;7641:117;;;7677:79;;:::i;:::-;7641:117;7782:63;7837:7;7828:6;7817:9;7813:22;7782:63;:::i;:::-;7772:73;;7568:287;7353:509;;;;:::o;7868:116::-;7938:21;7953:5;7938:21;:::i;:::-;7931:5;7928:32;7918:60;;7974:1;7971;7964:12;7918:60;7868:116;:::o;7990:133::-;8033:5;8071:6;8058:20;8049:29;;8087:30;8111:5;8087:30;:::i;:::-;7990:133;;;;:::o;8129:323::-;8185:6;8234:2;8222:9;8213:7;8209:23;8205:32;8202:119;;;8240:79;;:::i;:::-;8202:119;8360:1;8385:50;8427:7;8418:6;8407:9;8403:22;8385:50;:::i;:::-;8375:60;;8331:114;8129:323;;;;:::o;8458:619::-;8535:6;8543;8551;8600:2;8588:9;8579:7;8575:23;8571:32;8568:119;;;8606:79;;:::i;:::-;8568:119;8726:1;8751:53;8796:7;8787:6;8776:9;8772:22;8751:53;:::i;:::-;8741:63;;8697:117;8853:2;8879:53;8924:7;8915:6;8904:9;8900:22;8879:53;:::i;:::-;8869:63;;8824:118;8981:2;9007:53;9052:7;9043:6;9032:9;9028:22;9007:53;:::i;:::-;8997:63;;8952:118;8458:619;;;;;:::o;9083:329::-;9142:6;9191:2;9179:9;9170:7;9166:23;9162:32;9159:119;;;9197:79;;:::i;:::-;9159:119;9317:1;9342:53;9387:7;9378:6;9367:9;9363:22;9342:53;:::i;:::-;9332:63;;9288:117;9083:329;;;;:::o;9418:468::-;9483:6;9491;9540:2;9528:9;9519:7;9515:23;9511:32;9508:119;;;9546:79;;:::i;:::-;9508:119;9666:1;9691:53;9736:7;9727:6;9716:9;9712:22;9691:53;:::i;:::-;9681:63;;9637:117;9793:2;9819:50;9861:7;9852:6;9841:9;9837:22;9819:50;:::i;:::-;9809:60;;9764:115;9418:468;;;;;:::o;9892:307::-;9953:4;10043:18;10035:6;10032:30;10029:56;;;10065:18;;:::i;:::-;10029:56;10103:29;10125:6;10103:29;:::i;:::-;10095:37;;10187:4;10181;10177:15;10169:23;;9892:307;;;:::o;10205:423::-;10282:5;10307:65;10323:48;10364:6;10323:48;:::i;:::-;10307:65;:::i;:::-;10298:74;;10395:6;10388:5;10381:21;10433:4;10426:5;10422:16;10471:3;10462:6;10457:3;10453:16;10450:25;10447:112;;;10478:79;;:::i;:::-;10447:112;10568:54;10615:6;10610:3;10605;10568:54;:::i;:::-;10288:340;10205:423;;;;;:::o;10647:338::-;10702:5;10751:3;10744:4;10736:6;10732:17;10728:27;10718:122;;10759:79;;:::i;:::-;10718:122;10876:6;10863:20;10901:78;10975:3;10967:6;10960:4;10952:6;10948:17;10901:78;:::i;:::-;10892:87;;10708:277;10647:338;;;;:::o;10991:943::-;11086:6;11094;11102;11110;11159:3;11147:9;11138:7;11134:23;11130:33;11127:120;;;11166:79;;:::i;:::-;11127:120;11286:1;11311:53;11356:7;11347:6;11336:9;11332:22;11311:53;:::i;:::-;11301:63;;11257:117;11413:2;11439:53;11484:7;11475:6;11464:9;11460:22;11439:53;:::i;:::-;11429:63;;11384:118;11541:2;11567:53;11612:7;11603:6;11592:9;11588:22;11567:53;:::i;:::-;11557:63;;11512:118;11697:2;11686:9;11682:18;11669:32;11728:18;11720:6;11717:30;11714:117;;;11750:79;;:::i;:::-;11714:117;11855:62;11909:7;11900:6;11889:9;11885:22;11855:62;:::i;:::-;11845:72;;11640:287;10991:943;;;;;;;:::o;11940:474::-;12008:6;12016;12065:2;12053:9;12044:7;12040:23;12036:32;12033:119;;;12071:79;;:::i;:::-;12033:119;12191:1;12216:53;12261:7;12252:6;12241:9;12237:22;12216:53;:::i;:::-;12206:63;;12162:117;12318:2;12344:53;12389:7;12380:6;12369:9;12365:22;12344:53;:::i;:::-;12334:63;;12289:118;11940:474;;;;;:::o;12420:::-;12488:6;12496;12545:2;12533:9;12524:7;12520:23;12516:32;12513:119;;;12551:79;;:::i;:::-;12513:119;12671:1;12696:53;12741:7;12732:6;12721:9;12717:22;12696:53;:::i;:::-;12686:63;;12642:117;12798:2;12824:53;12869:7;12860:6;12849:9;12845:22;12824:53;:::i;:::-;12814:63;;12769:118;12420:474;;;;;:::o;12900:180::-;12948:77;12945:1;12938:88;13045:4;13042:1;13035:15;13069:4;13066:1;13059:15;13086:320;13130:6;13167:1;13161:4;13157:12;13147:22;;13214:1;13208:4;13204:12;13235:18;13225:81;;13291:4;13283:6;13279:17;13269:27;;13225:81;13353:2;13345:6;13342:14;13322:18;13319:38;13316:84;;13372:18;;:::i;:::-;13316:84;13137:269;13086:320;;;:::o;13412:141::-;13461:4;13484:3;13476:11;;13507:3;13504:1;13497:14;13541:4;13538:1;13528:18;13520:26;;13412:141;;;:::o;13559:93::-;13596:6;13643:2;13638;13631:5;13627:14;13623:23;13613:33;;13559:93;;;:::o;13658:107::-;13702:8;13752:5;13746:4;13742:16;13721:37;;13658:107;;;;:::o;13771:393::-;13840:6;13890:1;13878:10;13874:18;13913:97;13943:66;13932:9;13913:97;:::i;:::-;14031:39;14061:8;14050:9;14031:39;:::i;:::-;14019:51;;14103:4;14099:9;14092:5;14088:21;14079:30;;14152:4;14142:8;14138:19;14131:5;14128:30;14118:40;;13847:317;;13771:393;;;;;:::o;14170:60::-;14198:3;14219:5;14212:12;;14170:60;;;:::o;14236:142::-;14286:9;14319:53;14337:34;14346:24;14364:5;14346:24;:::i;:::-;14337:34;:::i;:::-;14319:53;:::i;:::-;14306:66;;14236:142;;;:::o;14384:75::-;14427:3;14448:5;14441:12;;14384:75;;;:::o;14465:269::-;14575:39;14606:7;14575:39;:::i;:::-;14636:91;14685:41;14709:16;14685:41;:::i;:::-;14677:6;14670:4;14664:11;14636:91;:::i;:::-;14630:4;14623:105;14541:193;14465:269;;;:::o;14740:73::-;14785:3;14740:73;:::o;14819:189::-;14896:32;;:::i;:::-;14937:65;14995:6;14987;14981:4;14937:65;:::i;:::-;14872:136;14819:189;;:::o;15014:186::-;15074:120;15091:3;15084:5;15081:14;15074:120;;;15145:39;15182:1;15175:5;15145:39;:::i;:::-;15118:1;15111:5;15107:13;15098:22;;15074:120;;;15014:186;;:::o;15206:543::-;15307:2;15302:3;15299:11;15296:446;;;15341:38;15373:5;15341:38;:::i;:::-;15425:29;15443:10;15425:29;:::i;:::-;15415:8;15411:44;15608:2;15596:10;15593:18;15590:49;;;15629:8;15614:23;;15590:49;15652:80;15708:22;15726:3;15708:22;:::i;:::-;15698:8;15694:37;15681:11;15652:80;:::i;:::-;15311:431;;15296:446;15206:543;;;:::o;15755:117::-;15809:8;15859:5;15853:4;15849:16;15828:37;;15755:117;;;;:::o;15878:169::-;15922:6;15955:51;16003:1;15999:6;15991:5;15988:1;15984:13;15955:51;:::i;:::-;15951:56;16036:4;16030;16026:15;16016:25;;15929:118;15878:169;;;;:::o;16052:295::-;16128:4;16274:29;16299:3;16293:4;16274:29;:::i;:::-;16266:37;;16336:3;16333:1;16329:11;16323:4;16320:21;16312:29;;16052:295;;;;:::o;16352:1395::-;16469:37;16502:3;16469:37;:::i;:::-;16571:18;16563:6;16560:30;16557:56;;;16593:18;;:::i;:::-;16557:56;16637:38;16669:4;16663:11;16637:38;:::i;:::-;16722:67;16782:6;16774;16768:4;16722:67;:::i;:::-;16816:1;16840:4;16827:17;;16872:2;16864:6;16861:14;16889:1;16884:618;;;;17546:1;17563:6;17560:77;;;17612:9;17607:3;17603:19;17597:26;17588:35;;17560:77;17663:67;17723:6;17716:5;17663:67;:::i;:::-;17657:4;17650:81;17519:222;16854:887;;16884:618;16936:4;16932:9;16924:6;16920:22;16970:37;17002:4;16970:37;:::i;:::-;17029:1;17043:208;17057:7;17054:1;17051:14;17043:208;;;17136:9;17131:3;17127:19;17121:26;17113:6;17106:42;17187:1;17179:6;17175:14;17165:24;;17234:2;17223:9;17219:18;17206:31;;17080:4;17077:1;17073:12;17068:17;;17043:208;;;17279:6;17270:7;17267:19;17264:179;;;17337:9;17332:3;17328:19;17322:26;17380:48;17422:4;17414:6;17410:17;17399:9;17380:48;:::i;:::-;17372:6;17365:64;17287:156;17264:179;17489:1;17485;17477:6;17473:14;17469:22;17463:4;17456:36;16891:611;;;16854:887;;16444:1303;;;16352:1395;;:::o;17753:147::-;17854:11;17891:3;17876:18;;17753:147;;;;:::o;17906:114::-;;:::o;18026:398::-;18185:3;18206:83;18287:1;18282:3;18206:83;:::i;:::-;18199:90;;18298:93;18387:3;18298:93;:::i;:::-;18416:1;18411:3;18407:11;18400:18;;18026:398;;;:::o;18430:379::-;18614:3;18636:147;18779:3;18636:147;:::i;:::-;18629:154;;18800:3;18793:10;;18430:379;;;:::o;18815:168::-;18955:20;18951:1;18943:6;18939:14;18932:44;18815:168;:::o;18989:366::-;19131:3;19152:67;19216:2;19211:3;19152:67;:::i;:::-;19145:74;;19228:93;19317:3;19228:93;:::i;:::-;19346:2;19341:3;19337:12;19330:19;;18989:366;;;:::o;19361:419::-;19527:4;19565:2;19554:9;19550:18;19542:26;;19614:9;19608:4;19604:20;19600:1;19589:9;19585:17;19578:47;19642:131;19768:4;19642:131;:::i;:::-;19634:139;;19361:419;;;:::o;19786:180::-;19834:77;19831:1;19824:88;19931:4;19928:1;19921:15;19955:4;19952:1;19945:15;19972:191;20012:3;20031:20;20049:1;20031:20;:::i;:::-;20026:25;;20065:20;20083:1;20065:20;:::i;:::-;20060:25;;20108:1;20105;20101:9;20094:16;;20129:3;20126:1;20123:10;20120:36;;;20136:18;;:::i;:::-;20120:36;19972:191;;;;:::o;20169:178::-;20309:30;20305:1;20297:6;20293:14;20286:54;20169:178;:::o;20353:366::-;20495:3;20516:67;20580:2;20575:3;20516:67;:::i;:::-;20509:74;;20592:93;20681:3;20592:93;:::i;:::-;20710:2;20705:3;20701:12;20694:19;;20353:366;;;:::o;20725:419::-;20891:4;20929:2;20918:9;20914:18;20906:26;;20978:9;20972:4;20968:20;20964:1;20953:9;20949:17;20942:47;21006:131;21132:4;21006:131;:::i;:::-;20998:139;;20725:419;;;:::o;21150:178::-;21290:30;21286:1;21278:6;21274:14;21267:54;21150:178;:::o;21334:366::-;21476:3;21497:67;21561:2;21556:3;21497:67;:::i;:::-;21490:74;;21573:93;21662:3;21573:93;:::i;:::-;21691:2;21686:3;21682:12;21675:19;;21334:366;;;:::o;21706:419::-;21872:4;21910:2;21899:9;21895:18;21887:26;;21959:9;21953:4;21949:20;21945:1;21934:9;21930:17;21923:47;21987:131;22113:4;21987:131;:::i;:::-;21979:139;;21706:419;;;:::o;22131:224::-;22271:34;22267:1;22259:6;22255:14;22248:58;22340:7;22335:2;22327:6;22323:15;22316:32;22131:224;:::o;22361:366::-;22503:3;22524:67;22588:2;22583:3;22524:67;:::i;:::-;22517:74;;22600:93;22689:3;22600:93;:::i;:::-;22718:2;22713:3;22709:12;22702:19;;22361:366;;;:::o;22733:419::-;22899:4;22937:2;22926:9;22922:18;22914:26;;22986:9;22980:4;22976:20;22972:1;22961:9;22957:17;22950:47;23014:131;23140:4;23014:131;:::i;:::-;23006:139;;22733:419;;;:::o;23158:194::-;23198:4;23218:20;23236:1;23218:20;:::i;:::-;23213:25;;23252:20;23270:1;23252:20;:::i;:::-;23247:25;;23296:1;23293;23289:9;23281:17;;23320:1;23314:4;23311:11;23308:37;;;23325:18;;:::i;:::-;23308:37;23158:194;;;;:::o;23358:410::-;23398:7;23421:20;23439:1;23421:20;:::i;:::-;23416:25;;23455:20;23473:1;23455:20;:::i;:::-;23450:25;;23510:1;23507;23503:9;23532:30;23550:11;23532:30;:::i;:::-;23521:41;;23711:1;23702:7;23698:15;23695:1;23692:22;23672:1;23665:9;23645:83;23622:139;;23741:18;;:::i;:::-;23622:139;23406:362;23358:410;;;;:::o;23774:163::-;23914:15;23910:1;23902:6;23898:14;23891:39;23774:163;:::o;23943:366::-;24085:3;24106:67;24170:2;24165:3;24106:67;:::i;:::-;24099:74;;24182:93;24271:3;24182:93;:::i;:::-;24300:2;24295:3;24291:12;24284:19;;23943:366;;;:::o;24315:419::-;24481:4;24519:2;24508:9;24504:18;24496:26;;24568:9;24562:4;24558:20;24554:1;24543:9;24539:17;24532:47;24596:131;24722:4;24596:131;:::i;:::-;24588:139;;24315:419;;;:::o;24740:234::-;24880:34;24876:1;24868:6;24864:14;24857:58;24949:17;24944:2;24936:6;24932:15;24925:42;24740:234;:::o;24980:366::-;25122:3;25143:67;25207:2;25202:3;25143:67;:::i;:::-;25136:74;;25219:93;25308:3;25219:93;:::i;:::-;25337:2;25332:3;25328:12;25321:19;;24980:366;;;:::o;25352:419::-;25518:4;25556:2;25545:9;25541:18;25533:26;;25605:9;25599:4;25595:20;25591:1;25580:9;25576:17;25569:47;25633:131;25759:4;25633:131;:::i;:::-;25625:139;;25352:419;;;:::o;25777:148::-;25879:11;25916:3;25901:18;;25777:148;;;;:::o;25931:390::-;26037:3;26065:39;26098:5;26065:39;:::i;:::-;26120:89;26202:6;26197:3;26120:89;:::i;:::-;26113:96;;26218:65;26276:6;26271:3;26264:4;26257:5;26253:16;26218:65;:::i;:::-;26308:6;26303:3;26299:16;26292:23;;26041:280;25931:390;;;;:::o;26351:874::-;26454:3;26491:5;26485:12;26520:36;26546:9;26520:36;:::i;:::-;26572:89;26654:6;26649:3;26572:89;:::i;:::-;26565:96;;26692:1;26681:9;26677:17;26708:1;26703:166;;;;26883:1;26878:341;;;;26670:549;;26703:166;26787:4;26783:9;26772;26768:25;26763:3;26756:38;26849:6;26842:14;26835:22;26827:6;26823:35;26818:3;26814:45;26807:52;;26703:166;;26878:341;26945:38;26977:5;26945:38;:::i;:::-;27005:1;27019:154;27033:6;27030:1;27027:13;27019:154;;;27107:7;27101:14;27097:1;27092:3;27088:11;27081:35;27157:1;27148:7;27144:15;27133:26;;27055:4;27052:1;27048:12;27043:17;;27019:154;;;27202:6;27197:3;27193:16;27186:23;;26885:334;;26670:549;;26458:767;;26351:874;;;;:::o;27231:589::-;27456:3;27478:95;27569:3;27560:6;27478:95;:::i;:::-;27471:102;;27590:95;27681:3;27672:6;27590:95;:::i;:::-;27583:102;;27702:92;27790:3;27781:6;27702:92;:::i;:::-;27695:99;;27811:3;27804:10;;27231:589;;;;;;:::o;27826:170::-;27966:22;27962:1;27954:6;27950:14;27943:46;27826:170;:::o;28002:366::-;28144:3;28165:67;28229:2;28224:3;28165:67;:::i;:::-;28158:74;;28241:93;28330:3;28241:93;:::i;:::-;28359:2;28354:3;28350:12;28343:19;;28002:366;;;:::o;28374:419::-;28540:4;28578:2;28567:9;28563:18;28555:26;;28627:9;28621:4;28617:20;28613:1;28602:9;28598:17;28591:47;28655:131;28781:4;28655:131;:::i;:::-;28647:139;;28374:419;;;:::o;28799:179::-;28939:31;28935:1;28927:6;28923:14;28916:55;28799:179;:::o;28984:366::-;29126:3;29147:67;29211:2;29206:3;29147:67;:::i;:::-;29140:74;;29223:93;29312:3;29223:93;:::i;:::-;29341:2;29336:3;29332:12;29325:19;;28984:366;;;:::o;29356:419::-;29522:4;29560:2;29549:9;29545:18;29537:26;;29609:9;29603:4;29599:20;29595:1;29584:9;29580:17;29573:47;29637:131;29763:4;29637:131;:::i;:::-;29629:139;;29356:419;;;:::o;29781:170::-;29921:22;29917:1;29909:6;29905:14;29898:46;29781:170;:::o;29957:366::-;30099:3;30120:67;30184:2;30179:3;30120:67;:::i;:::-;30113:74;;30196:93;30285:3;30196:93;:::i;:::-;30314:2;30309:3;30305:12;30298:19;;29957:366;;;:::o;30329:419::-;30495:4;30533:2;30522:9;30518:18;30510:26;;30582:9;30576:4;30572:20;30568:1;30557:9;30553:17;30546:47;30610:131;30736:4;30610:131;:::i;:::-;30602:139;;30329:419;;;:::o;30754:225::-;30894:34;30890:1;30882:6;30878:14;30871:58;30963:8;30958:2;30950:6;30946:15;30939:33;30754:225;:::o;30985:366::-;31127:3;31148:67;31212:2;31207:3;31148:67;:::i;:::-;31141:74;;31224:93;31313:3;31224:93;:::i;:::-;31342:2;31337:3;31333:12;31326:19;;30985:366;;;:::o;31357:419::-;31523:4;31561:2;31550:9;31546:18;31538:26;;31610:9;31604:4;31600:20;31596:1;31585:9;31581:17;31574:47;31638:131;31764:4;31638:131;:::i;:::-;31630:139;;31357:419;;;:::o;31782:182::-;31922:34;31918:1;31910:6;31906:14;31899:58;31782:182;:::o;31970:366::-;32112:3;32133:67;32197:2;32192:3;32133:67;:::i;:::-;32126:74;;32209:93;32298:3;32209:93;:::i;:::-;32327:2;32322:3;32318:12;32311:19;;31970:366;;;:::o;32342:419::-;32508:4;32546:2;32535:9;32531:18;32523:26;;32595:9;32589:4;32585:20;32581:1;32570:9;32566:17;32559:47;32623:131;32749:4;32623:131;:::i;:::-;32615:139;;32342:419;;;:::o;32767:181::-;32907:33;32903:1;32895:6;32891:14;32884:57;32767:181;:::o;32954:366::-;33096:3;33117:67;33181:2;33176:3;33117:67;:::i;:::-;33110:74;;33193:93;33282:3;33193:93;:::i;:::-;33311:2;33306:3;33302:12;33295:19;;32954:366;;;:::o;33326:419::-;33492:4;33530:2;33519:9;33515:18;33507:26;;33579:9;33573:4;33569:20;33565:1;33554:9;33550:17;33543:47;33607:131;33733:4;33607:131;:::i;:::-;33599:139;;33326:419;;;:::o;33751:98::-;33802:6;33836:5;33830:12;33820:22;;33751:98;;;:::o;33855:168::-;33938:11;33972:6;33967:3;33960:19;34012:4;34007:3;34003:14;33988:29;;33855:168;;;;:::o;34029:373::-;34115:3;34143:38;34175:5;34143:38;:::i;:::-;34197:70;34260:6;34255:3;34197:70;:::i;:::-;34190:77;;34276:65;34334:6;34329:3;34322:4;34315:5;34311:16;34276:65;:::i;:::-;34366:29;34388:6;34366:29;:::i;:::-;34361:3;34357:39;34350:46;;34119:283;34029:373;;;;:::o;34408:640::-;34603:4;34641:3;34630:9;34626:19;34618:27;;34655:71;34723:1;34712:9;34708:17;34699:6;34655:71;:::i;:::-;34736:72;34804:2;34793:9;34789:18;34780:6;34736:72;:::i;:::-;34818;34886:2;34875:9;34871:18;34862:6;34818:72;:::i;:::-;34937:9;34931:4;34927:20;34922:2;34911:9;34907:18;34900:48;34965:76;35036:4;35027:6;34965:76;:::i;:::-;34957:84;;34408:640;;;;;;;:::o;35054:141::-;35110:5;35141:6;35135:13;35126:22;;35157:32;35183:5;35157:32;:::i;:::-;35054:141;;;;:::o;35201:349::-;35270:6;35319:2;35307:9;35298:7;35294:23;35290:32;35287:119;;;35325:79;;:::i;:::-;35287:119;35445:1;35470:63;35525:7;35516:6;35505:9;35501:22;35470:63;:::i;:::-;35460:73;;35416:127;35201:349;;;;:::o;35556:180::-;35604:77;35601:1;35594:88;35701:4;35698:1;35691:15;35725:4;35722:1;35715:15

Swarm Source

ipfs://3abd1fa0f77668f02b332347b97bebc518fc61f16ddd5509d96fe7d284490a67
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.