ETH Price: $3,164.78 (+1.43%)
Gas: 1 Gwei

Token

Elite Forces (EF)
 

Overview

Max Total Supply

200 EF

Holders

123

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 EF
0x340d0db8adccd92d7be1b86608d83a5de3f9b1cf
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:
EliteForces

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 1337 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @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;
    }
}

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature)
        internal
        pure
        returns (address, RecoverError)
    {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature)
        internal
        pure
        returns (address)
    {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(
                vs,
                0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
            )
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (
            uint256(s) >
            0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0
        ) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash)
        internal
        pure
        returns (bytes32)
    {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return
            keccak256(
                abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)
            );
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", domainSeparator, structHash)
            );
    }
}

/**
 * @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() {
        _setOwner(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow
 * checks.
 *
 * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
 * easily result in undesired exploitation or bugs, since developers usually
 * assume that overflows raise errors. `SafeCast` restores this intuition by
 * reverting the transaction when such an operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 *
 * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing
 * all math on `uint256` and `int256` and then downcasting.
 */
library SafeCast {
    /**
     * @dev Returns the downcasted uint224 from uint256, reverting on
     * overflow (when the input is greater than largest uint224).
     *
     * Counterpart to Solidity's `uint224` operator.
     *
     * Requirements:
     *
     * - input must fit into 224 bits
     */
    function toUint224(uint256 value) internal pure returns (uint224) {
        require(
            value <= type(uint224).max,
            "SafeCast: value doesn't fit in 224 bits"
        );
        return uint224(value);
    }

    /**
     * @dev Returns the downcasted uint128 from uint256, reverting on
     * overflow (when the input is greater than largest uint128).
     *
     * Counterpart to Solidity's `uint128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     */
    function toUint128(uint256 value) internal pure returns (uint128) {
        require(
            value <= type(uint128).max,
            "SafeCast: value doesn't fit in 128 bits"
        );
        return uint128(value);
    }

    /**
     * @dev Returns the downcasted uint96 from uint256, reverting on
     * overflow (when the input is greater than largest uint96).
     *
     * Counterpart to Solidity's `uint96` operator.
     *
     * Requirements:
     *
     * - input must fit into 96 bits
     */
    function toUint96(uint256 value) internal pure returns (uint96) {
        require(
            value <= type(uint96).max,
            "SafeCast: value doesn't fit in 96 bits"
        );
        return uint96(value);
    }

    /**
     * @dev Returns the downcasted uint64 from uint256, reverting on
     * overflow (when the input is greater than largest uint64).
     *
     * Counterpart to Solidity's `uint64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     */
    function toUint64(uint256 value) internal pure returns (uint64) {
        require(
            value <= type(uint64).max,
            "SafeCast: value doesn't fit in 64 bits"
        );
        return uint64(value);
    }

    /**
     * @dev Returns the downcasted uint32 from uint256, reverting on
     * overflow (when the input is greater than largest uint32).
     *
     * Counterpart to Solidity's `uint32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     */
    function toUint32(uint256 value) internal pure returns (uint32) {
        require(
            value <= type(uint32).max,
            "SafeCast: value doesn't fit in 32 bits"
        );
        return uint32(value);
    }

    /**
     * @dev Returns the downcasted uint16 from uint256, reverting on
     * overflow (when the input is greater than largest uint16).
     *
     * Counterpart to Solidity's `uint16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     */
    function toUint16(uint256 value) internal pure returns (uint16) {
        require(
            value <= type(uint16).max,
            "SafeCast: value doesn't fit in 16 bits"
        );
        return uint16(value);
    }

    /**
     * @dev Returns the downcasted uint8 from uint256, reverting on
     * overflow (when the input is greater than largest uint8).
     *
     * Counterpart to Solidity's `uint8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits.
     */
    function toUint8(uint256 value) internal pure returns (uint8) {
        require(
            value <= type(uint8).max,
            "SafeCast: value doesn't fit in 8 bits"
        );
        return uint8(value);
    }

    /**
     * @dev Converts a signed int256 into an unsigned uint256.
     *
     * Requirements:
     *
     * - input must be greater than or equal to 0.
     */
    function toUint256(int256 value) internal pure returns (uint256) {
        require(value >= 0, "SafeCast: value must be positive");
        return uint256(value);
    }

    /**
     * @dev Returns the downcasted int128 from int256, reverting on
     * overflow (when the input is less than smallest int128 or
     * greater than largest int128).
     *
     * Counterpart to Solidity's `int128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     *
     * _Available since v3.1._
     */
    function toInt128(int256 value) internal pure returns (int128) {
        require(
            value >= type(int128).min && value <= type(int128).max,
            "SafeCast: value doesn't fit in 128 bits"
        );
        return int128(value);
    }

    /**
     * @dev Returns the downcasted int64 from int256, reverting on
     * overflow (when the input is less than smallest int64 or
     * greater than largest int64).
     *
     * Counterpart to Solidity's `int64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     *
     * _Available since v3.1._
     */
    function toInt64(int256 value) internal pure returns (int64) {
        require(
            value >= type(int64).min && value <= type(int64).max,
            "SafeCast: value doesn't fit in 64 bits"
        );
        return int64(value);
    }

    /**
     * @dev Returns the downcasted int32 from int256, reverting on
     * overflow (when the input is less than smallest int32 or
     * greater than largest int32).
     *
     * Counterpart to Solidity's `int32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     *
     * _Available since v3.1._
     */
    function toInt32(int256 value) internal pure returns (int32) {
        require(
            value >= type(int32).min && value <= type(int32).max,
            "SafeCast: value doesn't fit in 32 bits"
        );
        return int32(value);
    }

    /**
     * @dev Returns the downcasted int16 from int256, reverting on
     * overflow (when the input is less than smallest int16 or
     * greater than largest int16).
     *
     * Counterpart to Solidity's `int16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     *
     * _Available since v3.1._
     */
    function toInt16(int256 value) internal pure returns (int16) {
        require(
            value >= type(int16).min && value <= type(int16).max,
            "SafeCast: value doesn't fit in 16 bits"
        );
        return int16(value);
    }

    /**
     * @dev Returns the downcasted int8 from int256, reverting on
     * overflow (when the input is less than smallest int8 or
     * greater than largest int8).
     *
     * Counterpart to Solidity's `int8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits.
     *
     * _Available since v3.1._
     */
    function toInt8(int256 value) internal pure returns (int8) {
        require(
            value >= type(int8).min && value <= type(int8).max,
            "SafeCast: value doesn't fit in 8 bits"
        );
        return int8(value);
    }

    /**
     * @dev Converts an unsigned uint256 into a signed int256.
     *
     * Requirements:
     *
     * - input must be less than or equal to maxInt256.
     */
    function toInt256(uint256 value) internal pure returns (int256) {
        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
        require(
            value <= uint256(type(int256).max),
            "SafeCast: value doesn't fit in an int256"
        );
        return int256(value);
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @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] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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

/**
 * @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`, 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
    ) external;

    /**
     * @dev Transfers `tokenId` token 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;

    /**
     * @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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId)
        external
        view
        returns (address operator);

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

    /**
     * @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;
}

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

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

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

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

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

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

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

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        address owner = _owners[tokenId];
        require(
            owner != address(0),
            "ERC721: owner query for nonexistent token"
        );
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        require(
            _exists(tokenId),
            "ERC721: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        virtual
        returns (bool)
    {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(
            ERC721.ownerOf(tokenId) == from,
            "ERC721: transfer of token that is not own"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721.balanceOf(owner),
            "ERC721Enumerable: owner index out of bounds"
        );
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721Enumerable.totalSupply(),
            "ERC721Enumerable: global index out of bounds"
        );
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId)
        private
    {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

contract EliteForces is ERC721Enumerable, Ownable {
    using ECDSA for bytes32;
    using SafeCast for uint256;
    using SafeMath for uint256;

    event PresaleTokenPriceChanged(uint256 newTokenPrice);
    event SaleTokenPriceChanged(
        uint256 newTokenPrice,
        uint256 newInitTokenPrice
    );
    event PresaleConfigChanged(
        address whitelistSigner,
        uint32 startTime,
        uint32 endTime
    );
    event SaleConfigChanged(
        uint32 startTime,
        uint32 coldTime,
        uint32 initMaxCount,
        uint32 maxCountUnlockTime,
        uint32 unlockedMaxCount
    );
    event IsBurnEnabledChanged(bool newIsBurnEnabled);
    event TreasuryChanged(address newTreasury);
    event BaseURIChanged(string newBaseURI);
    event PresaleMint(address minter, uint256 count);
    event SaleMint(address minter, uint256 count);

    // Both structs fit in a single storage slot for gas optimization
    struct PresaleConfig {
        address whitelistSigner;
        uint32 startTime;
        uint32 endTime;
    }

    struct SaleConfig {
        uint32 startTime;
        uint32 coldTime;
        uint32 initMaxCount;
        uint32 maxCountUnlockTime;
        uint32 unlockedMaxCount;
    }

    uint256 public immutable maxSupply;
    uint256 public immutable reserveCount;

    uint256 public tokensReserved;
    uint256 public nextTokenId;
    bool public isBurnEnabled;
    address payable public treasury;

    PresaleConfig public presaleConfig;
    uint256 public presaleTokenPrice;
    mapping(address => uint256) public presaleBoughtCounts;

    SaleConfig public saleConfig;
    uint256 public saleInitTokenPrice;
    uint256 public saleTokenPrice;

    string public baseURI;

    bytes32 public DOMAIN_SEPARATOR;
    bytes32 public constant PRESALE_TYPEHASH =
        keccak256("Presale(address buyer,uint256 maxCount)");

    constructor(uint256 _maxSupply, uint256 _reserveCount)
        ERC721("Elite Forces", "EF")
    {
        require(
            _reserveCount <= _maxSupply,
            "Elite Forces: reserve count out of range"
        );

        maxSupply = _maxSupply;
        reserveCount = _reserveCount;

        uint256 chainId;
        assembly {
            chainId := chainid()
        }
        DOMAIN_SEPARATOR = keccak256(
            abi.encode(
                keccak256(
                    "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
                ),
                keccak256(bytes("Elite Forces")),
                keccak256(bytes("1")),
                chainId,
                address(this)
            )
        );
    }

    function reserveTokens(address recipient, uint256 count)
        external
        onlyOwner
    {
        require(
            recipient != address(0),
            "Elite Forces: zero address"
        );

        // Gas optimization
        uint256 _nextTokenId = nextTokenId;

        require(count > 0, "Elite Forces: invalid count");
        require(
            _nextTokenId + count <= maxSupply,
            "Elite Forces: max supply exceeded"
        );

        require(
            tokensReserved + count <= reserveCount,
            "Elite Forces: max reserve count exceeded"
        );
        tokensReserved += count;

        for (uint256 ind = 0; ind < count; ind++) {
            _safeMint(recipient, _nextTokenId + ind);
        }
        nextTokenId += count;
    }

    function reserveTokens(address[] memory recipients) external onlyOwner {
        // Gas optimization
        uint256 _nextTokenId = nextTokenId;

        require(recipients.length > 0, "Elite Forces: invalid count");
        require(
            _nextTokenId + recipients.length <= maxSupply,
            "Elite Forces: max supply exceeded"
        );

        require(
            tokensReserved + recipients.length <= reserveCount,
            "Elite Forces: max reserve count exceeded"
        );
        tokensReserved += recipients.length;

        for (uint256 ind = 0; ind < recipients.length; ind++) {
            require(
                recipients[ind] != address(0),
                "Elite Forces: zero address"
            );
            _safeMint(recipients[ind], _nextTokenId + ind);
        }
        nextTokenId += recipients.length;
    }

    function setPresaleTokenPrice(uint256 _presaleTokenPrice)
        external
        onlyOwner
    {
        presaleTokenPrice = _presaleTokenPrice;
        emit PresaleTokenPriceChanged(_presaleTokenPrice);
    }

    function setSaleTokenPrice(
        uint256 _saleTokenPrice,
        uint256 _saleInitTokenPrice
    ) external onlyOwner {
        saleTokenPrice = _saleTokenPrice;
        saleInitTokenPrice = _saleInitTokenPrice;
        emit SaleTokenPriceChanged(saleTokenPrice, _saleInitTokenPrice);
    }

    function setUpPresale(
        address whitelistSigner,
        uint256 startTime,
        uint256 endTime
    ) external onlyOwner {
        uint32 _startTime = startTime.toUint32();
        uint32 _endTime = endTime.toUint32();

        // Check params
        require(
            whitelistSigner != address(0),
            "Elite Forces: zero address"
        );
        require(
            _startTime > 0 && _endTime > _startTime,
            "Elite Forces: invalid time range"
        );

        presaleConfig = PresaleConfig({
            whitelistSigner: whitelistSigner,
            startTime: _startTime,
            endTime: _endTime
        });

        emit PresaleConfigChanged(whitelistSigner, _startTime, _endTime);
    }

    function setUpSale(
        uint256 startTime,
        uint256 coldTime,
        uint256 initMaxCount,
        uint256 maxCountUnlockTime,
        uint256 unlockedMaxCount
    ) external onlyOwner {
        uint32 _startTime = startTime.toUint32();
        uint32 _coldTime = coldTime.toUint32();
        uint32 _initMaxCount = initMaxCount.toUint32();
        uint32 _maxCountUnlockTime = maxCountUnlockTime.toUint32();
        uint32 _unlockedMaxCount = unlockedMaxCount.toUint32();

        require(
            _initMaxCount > 0 && _unlockedMaxCount > 0,
            "Elite Forces: zero amount"
        );
        require(
            _startTime > 0 &&
                _coldTime > _startTime &&
                _maxCountUnlockTime > _startTime,
            "Elite Forces: invalid time range"
        );

        saleConfig = SaleConfig({
            startTime: _startTime,
            coldTime: _coldTime,
            initMaxCount: _initMaxCount,
            maxCountUnlockTime: _maxCountUnlockTime,
            unlockedMaxCount: _unlockedMaxCount
        });

        emit SaleConfigChanged(
            _startTime,
            _coldTime,
            _initMaxCount,
            _maxCountUnlockTime,
            _unlockedMaxCount
        );
    }

    function setIsBurnEnabled(bool _isBurnEnabled) external onlyOwner {
        isBurnEnabled = _isBurnEnabled;
        emit IsBurnEnabledChanged(_isBurnEnabled);
    }

    function setTreasury(address payable _treasury) external onlyOwner {
        treasury = _treasury;
        emit TreasuryChanged(_treasury);
    }

    function setBaseURI(string calldata newbaseURI) external onlyOwner {
        baseURI = newbaseURI;
        emit BaseURIChanged(newbaseURI);
    }

    function mintPresaleTokens(
        uint256 count,
        uint256 maxCount,
        bytes calldata signature
    ) external payable {
        // Gas optimization
        uint256 _nextTokenId = nextTokenId;

        // Make sure presale has been set up
        PresaleConfig memory _presaleConfig = presaleConfig;
        require(
            _presaleConfig.whitelistSigner != address(0),
            "Elite Forces: presale not configured"
        );

        require(
            treasury != address(0),
            "Elite Forces: treasury not set"
        );
        require(
            presaleTokenPrice > 0,
            "Elite Forces: token price not set"
        );
        require(count > 0, "Elite Forces: invalid count");
        require(
            block.timestamp >= _presaleConfig.startTime,
            "Elite Forces: presale not started"
        );
        require(
            block.timestamp < _presaleConfig.endTime,
            "Elite Forces: presale ended"
        );

        require(
            _nextTokenId + count <= maxSupply,
            "Elite Forces: max supply exceeded"
        );
        require(
            presaleTokenPrice * count == msg.value,
            "Elite Forces: incorrect Ether value"
        );

        // Verify EIP-712 signature
        bytes32 digest = keccak256(
            abi.encodePacked(
                "\x19\x01",
                DOMAIN_SEPARATOR,
                keccak256(abi.encode(PRESALE_TYPEHASH, msg.sender, maxCount))
            )
        );
        address recoveredAddress = digest.recover(signature);
        require(
            recoveredAddress != address(0) &&
                recoveredAddress == _presaleConfig.whitelistSigner,
            "Elite Forces: invalid signature"
        );
        require(
            presaleBoughtCounts[msg.sender] + count <= maxCount,
            "Elite Forces: presale max count exceeded"
        );
        presaleBoughtCounts[msg.sender] += count;

        // The contract never holds any Ether. Everything gets redirected to treasury directly.
        treasury.transfer(msg.value);

        for (uint256 ind = 0; ind < count; ind++) {
            _safeMint(msg.sender, _nextTokenId + ind);
        }
        nextTokenId += count;

        emit PresaleMint(msg.sender, count);
    }

    function mintTokens(uint256 count) external payable {
        // Gas optimization
        uint256 _nextTokenId = nextTokenId;
        uint256 _tokenPrice = tokenPrice();
        uint256 _etherAmount = _tokenPrice * count;

        // Make sure presale has been set up
        SaleConfig memory _saleConfig = saleConfig;
        require(
            _saleConfig.startTime > 0,
            "Elite Forces: sale not configured"
        );

        require(
            treasury != address(0),
            "Elite Forces: treasury not set"
        );
        require(_tokenPrice > 0, "Elite Forces: token price not set");
        require(count > 0, "Elite Forces: invalid count");
        require(
            block.timestamp >= _saleConfig.startTime,
            "Elite Forces: sale not started"
        );

        require(
            count <=
                (
                    block.timestamp >= _saleConfig.maxCountUnlockTime
                        ? _saleConfig.unlockedMaxCount
                        : _saleConfig.initMaxCount
                ),
            "Elite Forces: max count per tx exceeded"
        );
        require(
            _nextTokenId + count <= maxSupply,
            "Elite Forces: max supply exceeded"
        );
        require(
            _etherAmount <= msg.value,
            "Elite Forces: unsufficient Ether sent"
        );

        // The contract never holds any Ether.
        // Everything gets redirected to treasury directly.
        // Also return difference to the buyer if having one.
        treasury.transfer(_etherAmount);
        if (_etherAmount > msg.value) {
            payable(msg.sender).transfer(_etherAmount - msg.value);
        }

        for (uint256 ind = 0; ind < count; ind++) {
            _safeMint(msg.sender, _nextTokenId + ind);
        }
        nextTokenId += count;

        emit SaleMint(msg.sender, count);
    }

    function tokenPrice() public view returns (uint256) {
        PresaleConfig memory _presaleConfig = presaleConfig;
        SaleConfig memory _saleConfig = saleConfig;
        if (
            _presaleConfig.startTime > 0 &&
            block.timestamp >= _presaleConfig.startTime &&
            block.timestamp < _presaleConfig.endTime
        ) {
            return presaleTokenPrice;
        }
        if (
            _saleConfig.startTime > 0 &&
            block.timestamp >= _saleConfig.startTime
        ) {
            if (block.timestamp < _saleConfig.coldTime) {
                uint256 deltaTokenPrice = saleInitTokenPrice.sub(
                    saleTokenPrice
                );
                uint256 subTokenPrice = deltaTokenPrice
                    .mul(block.timestamp - _saleConfig.startTime)
                    .div(_saleConfig.coldTime - _saleConfig.startTime);
                return saleInitTokenPrice.sub(subTokenPrice);
            }
            return saleTokenPrice;
        }
        return 0;
    }

    function burn(uint256 tokenId) external {
        require(isBurnEnabled, "Elite Forces: burning disabled");
        require(
            _isApprovedOrOwner(msg.sender, tokenId),
            "Elite Forces: burn caller is not owner nor approved"
        );
        _burn(tokenId);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_reserveCount","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"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":false,"internalType":"string","name":"newBaseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"newIsBurnEnabled","type":"bool"}],"name":"IsBurnEnabledChanged","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":false,"internalType":"address","name":"whitelistSigner","type":"address"},{"indexed":false,"internalType":"uint32","name":"startTime","type":"uint32"},{"indexed":false,"internalType":"uint32","name":"endTime","type":"uint32"}],"name":"PresaleConfigChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"count","type":"uint256"}],"name":"PresaleMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newTokenPrice","type":"uint256"}],"name":"PresaleTokenPriceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint32","name":"startTime","type":"uint32"},{"indexed":false,"internalType":"uint32","name":"coldTime","type":"uint32"},{"indexed":false,"internalType":"uint32","name":"initMaxCount","type":"uint32"},{"indexed":false,"internalType":"uint32","name":"maxCountUnlockTime","type":"uint32"},{"indexed":false,"internalType":"uint32","name":"unlockedMaxCount","type":"uint32"}],"name":"SaleConfigChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"count","type":"uint256"}],"name":"SaleMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newTokenPrice","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newInitTokenPrice","type":"uint256"}],"name":"SaleTokenPriceChanged","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newTreasury","type":"address"}],"name":"TreasuryChanged","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"isBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"uint256","name":"maxCount","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintPresaleTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleBoughtCounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleConfig","outputs":[{"internalType":"address","name":"whitelistSigner","type":"address"},{"internalType":"uint32","name":"startTime","type":"uint32"},{"internalType":"uint32","name":"endTime","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleTokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleConfig","outputs":[{"internalType":"uint32","name":"startTime","type":"uint32"},{"internalType":"uint32","name":"coldTime","type":"uint32"},{"internalType":"uint32","name":"initMaxCount","type":"uint32"},{"internalType":"uint32","name":"maxCountUnlockTime","type":"uint32"},{"internalType":"uint32","name":"unlockedMaxCount","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleInitTokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleTokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newbaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isBurnEnabled","type":"bool"}],"name":"setIsBurnEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_presaleTokenPrice","type":"uint256"}],"name":"setPresaleTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleTokenPrice","type":"uint256"},{"internalType":"uint256","name":"_saleInitTokenPrice","type":"uint256"}],"name":"setSaleTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_treasury","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"whitelistSigner","type":"address"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"}],"name":"setUpPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"coldTime","type":"uint256"},{"internalType":"uint256","name":"initMaxCount","type":"uint256"},{"internalType":"uint256","name":"maxCountUnlockTime","type":"uint256"},{"internalType":"uint256","name":"unlockedMaxCount","type":"uint256"}],"name":"setUpSale","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"tokensReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60c06040523480156200001157600080fd5b5060405162004ab338038062004ab38339810160408190526200003491620002f6565b604080518082018252600c81526b456c69746520466f7263657360a01b60208083019182528351808501909452600284526122a360f11b908401528151919291620000829160009162000250565b5080516200009890600190602084019062000250565b505050620000b5620000af620001fa60201b60201c565b620001fe565b818111156200011b5760405162461bcd60e51b815260206004820152602860248201527f456c69746520466f726365733a207265736572766520636f756e74206f7574206044820152676f662072616e676560c01b606482015260840160405180910390fd5b608091825260a0908152604080518082018252600c81526b456c69746520466f7263657360a01b6020918201528151808301835260018152603160f81b9082015281517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818301527f8ba81dc527b258b965cfc37cfebfbf3be5035c9058ec18a790225425bb04d153818401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc66060820152469481019490945230848401528151808503909301835260c09093019052805191012060155562000358565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200025e906200031b565b90600052602060002090601f016020900481019282620002825760008555620002cd565b82601f106200029d57805160ff1916838001178555620002cd565b82800160010185558215620002cd579182015b82811115620002cd578251825591602001919060010190620002b0565b50620002db929150620002df565b5090565b5b80821115620002db5760008155600101620002e0565b600080604083850312156200030a57600080fd5b505080516020909101519092909150565b600181811c908216806200033057607f821691505b602082108114156200035257634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161470b620003a86000396000818161040e01528181611c7a0152612b340152600081816108b001528181610eef01528181611bf70152818161253c0152612aae015261470b6000f3fe6080604052600436106103085760003560e01c806370a082311161019a57806397304ced116100e1578063d4ae75221161008a578063f0f4426011610064578063f0f442601461091b578063f2fde38b1461093b578063fd88fa691461095b57600080fd5b8063d4ae75221461086a578063d5abeb011461089e578063e985e9c5146108d257600080fd5b8063c87b56dd116100bb578063c87b56dd1461080a578063cc9c571d1461082a578063ced4a5f21461084a57600080fd5b806397304ced146107b7578063a22cb465146107ca578063b88d4fde146107ea57600080fd5b80637ff9b5961161014357806390e3ee6b1161011d57806390e3ee6b1461076c57806393777fb31461078c57806395d89b41146107a257600080fd5b80637ff9b596146106ac5780638da5cb5b146106c157806390aa0b0f146106df57600080fd5b806375794a3c1161017457806375794a3c1461065657806378cf19e91461066c5780637a01e6e31461068c57600080fd5b806370a08231146105f4578063715018a614610614578063725c8ee71461062957600080fd5b80633644e5151161025e578063522c698d116102075780636352211e116101e15780636352211e1461059f5780636c0360eb146105bf5780636e0e5b19146105d457600080fd5b8063522c698d1461053a57806355f804b31461055a57806361d027b31461057a57600080fd5b8063433adb0511610238578063433adb05146104ee5780634f6ccce71461050457806351d28a7e1461052457600080fd5b80633644e5151461049857806342842e0e146104ae57806342966c68146104ce57600080fd5b80630fd1417c116102c05780632164218b1161029a5780632164218b1461044557806323b872dd146104585780632f745c591461047857600080fd5b80630fd1417c146103d857806316317c21146103fc57806318160ddd1461043057600080fd5b806307ebec27116102f157806307ebec2714610364578063081812fc1461037e578063095ea7b3146103b657600080fd5b806301ffc9a71461030d57806306fdde0314610342575b600080fd5b34801561031957600080fd5b5061032d610328366004613fbb565b6109c0565b60405190151581526020015b60405180910390f35b34801561034e57600080fd5b50610357610a04565b6040516103399190614030565b34801561037057600080fd5b50600d5461032d9060ff1681565b34801561038a57600080fd5b5061039e610399366004614043565b610a96565b6040516001600160a01b039091168152602001610339565b3480156103c257600080fd5b506103d66103d1366004614071565b610b41565b005b3480156103e457600080fd5b506103ee60125481565b604051908152602001610339565b34801561040857600080fd5b506103ee7f000000000000000000000000000000000000000000000000000000000000000081565b34801561043c57600080fd5b506008546103ee565b6103d66104533660046140df565b610c73565b34801561046457600080fd5b506103d6610473366004614132565b6112c7565b34801561048457600080fd5b506103ee610493366004614071565b61134e565b3480156104a457600080fd5b506103ee60155481565b3480156104ba57600080fd5b506103d66104c9366004614132565b6113f6565b3480156104da57600080fd5b506103d66104e9366004614043565b611411565b3480156104fa57600080fd5b506103ee600b5481565b34801561051057600080fd5b506103ee61051f366004614043565b6114eb565b34801561053057600080fd5b506103ee60135481565b34801561054657600080fd5b506103d6610555366004614173565b61158f565b34801561056657600080fd5b506103d66105753660046141a8565b611796565b34801561058657600080fd5b50600d5461039e9061010090046001600160a01b031681565b3480156105ab57600080fd5b5061039e6105ba366004614043565b61183a565b3480156105cb57600080fd5b506103576118c5565b3480156105e057600080fd5b506103d66105ef3660046141ff565b611953565b34801561060057600080fd5b506103ee61060f36600461421a565b6119f5565b34801561062057600080fd5b506103d6611a8f565b34801561063557600080fd5b506103ee61064436600461421a565b60106020526000908152604090205481565b34801561066257600080fd5b506103ee600c5481565b34801561067857600080fd5b506103d6610687366004614071565b611af5565b34801561069857600080fd5b506103d66106a7366004614043565b611d66565b3480156106b857600080fd5b506103ee611df5565b3480156106cd57600080fd5b50600a546001600160a01b031661039e565b3480156106eb57600080fd5b506011546107359063ffffffff8082169164010000000081048216916801000000000000000082048116916c010000000000000000000000008104821691600160801b9091041685565b6040805163ffffffff968716815294861660208601529285169284019290925283166060830152909116608082015260a001610339565b34801561077857600080fd5b506103d6610787366004614237565b611f94565b34801561079857600080fd5b506103ee600f5481565b3480156107ae57600080fd5b5061035761225b565b6103d66107c5366004614043565b61226a565b3480156107d657600080fd5b506103d66107e5366004614272565b61272b565b3480156107f657600080fd5b506103d66108053660046142ee565b6127f0565b34801561081657600080fd5b50610357610825366004614043565b61287e565b34801561083657600080fd5b506103d66108453660046143b2565b612967565b34801561085657600080fd5b506103d66108653660046143d4565b612a01565b34801561087657600080fd5b506103ee7f46d572d4aba7cc8ab12e37a6c279cfd599f9f5b73872e95b4bff2a237dd40f0e81565b3480156108aa57600080fd5b506103ee7f000000000000000000000000000000000000000000000000000000000000000081565b3480156108de57600080fd5b5061032d6108ed366004614486565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561092757600080fd5b506103d661093636600461421a565b612cba565b34801561094757600080fd5b506103d661095636600461421a565b612d81565b34801561096757600080fd5b50600e54610994906001600160a01b0381169063ffffffff600160a01b8204811691600160c01b90041683565b604080516001600160a01b03909416845263ffffffff9283166020850152911690820152606001610339565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806109fe57506109fe82612e60565b92915050565b606060008054610a13906144bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3f906144bf565b8015610a8c5780601f10610a6157610100808354040283529160200191610a8c565b820191906000526020600020905b815481529060010190602001808311610a6f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b255760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610b4c8261183a565b9050806001600160a01b0316836001600160a01b03161415610bd65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610b1c565b336001600160a01b0382161480610bf25750610bf281336108ed565b610c645760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b1c565b610c6e8383612efb565b505050565b600c5460408051606081018252600e546001600160a01b03811680835263ffffffff600160a01b830481166020850152600160c01b9092049091169282019290925290610d275760405162461bcd60e51b8152602060048201526024808201527f456c69746520466f726365733a2070726573616c65206e6f7420636f6e66696760448201527f75726564000000000000000000000000000000000000000000000000000000006064820152608401610b1c565b600d5461010090046001600160a01b0316610d845760405162461bcd60e51b815260206004820152601e60248201527f456c69746520466f726365733a207472656173757279206e6f742073657400006044820152606401610b1c565b6000600f5411610de05760405162461bcd60e51b815260206004820152602160248201527f456c69746520466f726365733a20746f6b656e207072696365206e6f742073656044820152601d60fa1b6064820152608401610b1c565b60008611610e305760405162461bcd60e51b815260206004820152601b60248201527f456c69746520466f726365733a20696e76616c696420636f756e7400000000006044820152606401610b1c565b806020015163ffffffff16421015610e945760405162461bcd60e51b815260206004820152602160248201527f456c69746520466f726365733a2070726573616c65206e6f74207374617274656044820152601960fa1b6064820152608401610b1c565b806040015163ffffffff164210610eed5760405162461bcd60e51b815260206004820152601b60248201527f456c69746520466f726365733a2070726573616c6520656e64656400000000006044820152606401610b1c565b7f0000000000000000000000000000000000000000000000000000000000000000610f188784614510565b1115610f705760405162461bcd60e51b815260206004820152602160248201527f456c69746520466f726365733a206d617820737570706c7920657863656564656044820152601960fa1b6064820152608401610b1c565b3486600f54610f7f9190614528565b14610ff25760405162461bcd60e51b815260206004820152602360248201527f456c69746520466f726365733a20696e636f727265637420457468657220766160448201527f6c756500000000000000000000000000000000000000000000000000000000006064820152608401610b1c565b601554604080517f46d572d4aba7cc8ab12e37a6c279cfd599f9f5b73872e95b4bff2a237dd40f0e6020820152339181019190915260608101879052600091906080016040516020818303038152906040528051906020012060405160200161108d9291907f190100000000000000000000000000000000000000000000000000000000000081526002810192909252602282015260420190565b60405160208183030381529060405280519060200120905060006110e986868080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508693925050612f769050565b90506001600160a01b0381161580159061110f575082516001600160a01b038281169116145b61115b5760405162461bcd60e51b815260206004820152601f60248201527f456c69746520466f726365733a20696e76616c6964207369676e6174757265006044820152606401610b1c565b336000908152601060205260409020548790611178908a90614510565b11156111d75760405162461bcd60e51b815260206004820152602860248201527f456c69746520466f726365733a2070726573616c65206d617820636f756e7420604482015267195e18d95959195960c21b6064820152608401610b1c565b33600090815260106020526040812080548a92906111f6908490614510565b9091555050600d546040516001600160a01b0361010090920491909116903480156108fc02916000818181858888f1935050505015801561123b573d6000803e3d6000fd5b5060005b8881101561126c5761125a336112558388614510565b612f9a565b8061126481614547565b91505061123f565b5087600c600082825461127f9190614510565b909155505060408051338152602081018a90527ff5df7d07fef0d8ac7581015ebd1a3b7b7760da84b12f0c8174ae0dcd639cb6a3910160405180910390a15050505050505050565b6112d13382612fb8565b6113435760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610b1c565b610c6e8383836130c0565b6000611359836119f5565b82106113cd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610b1c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610c6e838383604051806020016040528060008152506127f0565b600d5460ff166114635760405162461bcd60e51b815260206004820152601e60248201527f456c69746520466f726365733a206275726e696e672064697361626c656400006044820152606401610b1c565b61146d3382612fb8565b6114df5760405162461bcd60e51b815260206004820152603360248201527f456c69746520466f726365733a206275726e2063616c6c6572206973206e6f7460448201527f206f776e6572206e6f7220617070726f766564000000000000000000000000006064820152608401610b1c565b6114e8816132a5565b50565b60006114f660085490565b821061156a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610b1c565b6008828154811061157d5761157d614562565b90600052602060002001549050919050565b600a546001600160a01b031633146115e95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1c565b60006115f483613359565b9050600061160183613359565b90506001600160a01b0385166116595760405162461bcd60e51b815260206004820152601a60248201527f456c69746520466f726365733a207a65726f20616464726573730000000000006044820152606401610b1c565b60008263ffffffff1611801561167a57508163ffffffff168163ffffffff16115b6116c65760405162461bcd60e51b815260206004820181905260248201527f456c69746520466f726365733a20696e76616c69642074696d652072616e67656044820152606401610b1c565b60408051606080820183526001600160a01b03881680835263ffffffff8681166020808601829052918716948601859052600e80547fffffffffffffffff000000000000000000000000000000000000000000000000168417600160a01b8302177fffffffff00000000ffffffffffffffffffffffffffffffffffffffffffffffff16600160c01b8702179055855192835290820152928301919091527f883135fc965d7f7dbcc3014a73e1da89792169e1946b4fa2b4217cef2ae0800391015b60405180910390a15050505050565b600a546001600160a01b031633146117f05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1c565b6117fc60148383613f15565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf6828260405161182e929190614578565b60405180910390a15050565b6000818152600260205260408120546001600160a01b0316806109fe5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610b1c565b601480546118d2906144bf565b80601f01602080910402602001604051908101604052809291908181526020018280546118fe906144bf565b801561194b5780601f106119205761010080835404028352916020019161194b565b820191906000526020600020905b81548152906001019060200180831161192e57829003601f168201915b505050505081565b600a546001600160a01b031633146119ad5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1c565b600d805460ff19168215159081179091556040519081527f430864ad215aa849052adf33b0cae7eb033aa8a4f9cf45fb3973699038505ff3906020015b60405180910390a150565b60006001600160a01b038216611a735760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610b1c565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314611ae95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1c565b611af360006133d9565b565b600a546001600160a01b03163314611b4f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1c565b6001600160a01b038216611ba55760405162461bcd60e51b815260206004820152601a60248201527f456c69746520466f726365733a207a65726f20616464726573730000000000006044820152606401610b1c565b600c5481611bf55760405162461bcd60e51b815260206004820152601b60248201527f456c69746520466f726365733a20696e76616c696420636f756e7400000000006044820152606401610b1c565b7f0000000000000000000000000000000000000000000000000000000000000000611c208383614510565b1115611c785760405162461bcd60e51b815260206004820152602160248201527f456c69746520466f726365733a206d617820737570706c7920657863656564656044820152601960fa1b6064820152608401610b1c565b7f000000000000000000000000000000000000000000000000000000000000000082600b54611ca79190614510565b1115611d065760405162461bcd60e51b815260206004820152602860248201527f456c69746520466f726365733a206d6178207265736572766520636f756e7420604482015267195e18d95959195960c21b6064820152608401610b1c565b81600b6000828254611d189190614510565b90915550600090505b82811015611d4957611d37846112558385614510565b80611d4181614547565b915050611d21565b5081600c6000828254611d5c9190614510565b9091555050505050565b600a546001600160a01b03163314611dc05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1c565b600f8190556040518181527fa33fd78b97b22e55db09841cc782f306d0ecc4badd64573a5ad7c52a44556b64906020016119ea565b6040805160608082018352600e546001600160a01b038116835263ffffffff600160a01b820481166020808601918252600160c01b909304821685870152855160a081018752601154808416825264010000000081048416948201949094526801000000000000000084048316968101969096526c010000000000000000000000008304821693860193909352600160801b909104811660808501529051600093911615801590611eb05750816020015163ffffffff164210155b8015611ec55750816040015163ffffffff1642105b15611ed457600f549250505090565b805163ffffffff1615801590611ef15750805163ffffffff164210155b15611f8b57806020015163ffffffff16421015611f81576000611f2160135460125461343890919063ffffffff16565b90506000611f6883600001518460200151611f3c91906145a7565b63ffffffff16611f62856000015163ffffffff1642611f5b91906145cc565b8590613444565b90613450565b601254909150611f789082613438565b94505050505090565b6013549250505090565b60009250505090565b600a546001600160a01b03163314611fee5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1c565b6000611ff986613359565b9050600061200686613359565b9050600061201386613359565b9050600061202086613359565b9050600061202d86613359565b905060008363ffffffff1611801561204b575060008163ffffffff16115b6120975760405162461bcd60e51b815260206004820152601960248201527f456c69746520466f726365733a207a65726f20616d6f756e74000000000000006044820152606401610b1c565b60008563ffffffff161180156120b857508463ffffffff168463ffffffff16115b80156120cf57508463ffffffff168263ffffffff16115b61211b5760405162461bcd60e51b815260206004820181905260248201527f456c69746520466f726365733a20696e76616c69642074696d652072616e67656044820152606401610b1c565b6040805160a0808201835263ffffffff88811680845288821660208086018290528984168688018190528985166060808901829052958a1660809889018190526011805467ffffffffffffffff191687176401000000008702177fffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff166801000000000000000085027fffffffffffffffffffffffffffffffff00000000ffffffffffffffffffffffff16176c010000000000000000000000008402177fffffffffffffffffffffffff00000000ffffffffffffffffffffffffffffffff16600160801b83021790558951958652928501939093529683019690965291810191909152918201929092527f72d8bbd85be8fdc12bd783b697026ea5bf76b28aba8d24b7b52c3f21474f271b910160405180910390a150505050505050505050565b606060018054610a13906144bf565b600c546000612277611df5565b905060006122858483614528565b6040805160a08101825260115463ffffffff8082168084526401000000008304821660208501526801000000000000000083048216948401949094526c01000000000000000000000000820481166060840152600160801b90910416608082015291925061233f5760405162461bcd60e51b815260206004820152602160248201527f456c69746520466f726365733a2073616c65206e6f7420636f6e6669677572656044820152601960fa1b6064820152608401610b1c565b600d5461010090046001600160a01b031661239c5760405162461bcd60e51b815260206004820152601e60248201527f456c69746520466f726365733a207472656173757279206e6f742073657400006044820152606401610b1c565b600083116123f65760405162461bcd60e51b815260206004820152602160248201527f456c69746520466f726365733a20746f6b656e207072696365206e6f742073656044820152601d60fa1b6064820152608401610b1c565b600085116124465760405162461bcd60e51b815260206004820152601b60248201527f456c69746520466f726365733a20696e76616c696420636f756e7400000000006044820152606401610b1c565b805163ffffffff1642101561249d5760405162461bcd60e51b815260206004820152601e60248201527f456c69746520466f726365733a2073616c65206e6f74207374617274656400006044820152606401610b1c565b806060015163ffffffff164210156124b95780604001516124bf565b80608001515b63ffffffff1685111561253a5760405162461bcd60e51b815260206004820152602760248201527f456c69746520466f726365733a206d617820636f756e7420706572207478206560448201527f78636565646564000000000000000000000000000000000000000000000000006064820152608401610b1c565b7f00000000000000000000000000000000000000000000000000000000000000006125658686614510565b11156125bd5760405162461bcd60e51b815260206004820152602160248201527f456c69746520466f726365733a206d617820737570706c7920657863656564656044820152601960fa1b6064820152608401610b1c565b348211156126335760405162461bcd60e51b815260206004820152602560248201527f456c69746520466f726365733a20756e73756666696369656e7420457468657260448201527f2073656e740000000000000000000000000000000000000000000000000000006064820152608401610b1c565b600d546040516101009091046001600160a01b0316906108fc8415029084906000818181858888f19350505050158015612671573d6000803e3d6000fd5b50348211156126b257336108fc61268834856145cc565b6040518115909202916000818181858888f193505050501580156126b0573d6000803e3d6000fd5b505b60005b858110156126dd576126cb336112558388614510565b806126d581614547565b9150506126b5565b5084600c60008282546126f09190614510565b909155505060408051338152602081018790527f35b6d348af664cd334c7ec2746e1ab49907efa953fa3f622552cd0b19a828b3f9101611787565b6001600160a01b0382163314156127845760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b1c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6127fa3383612fb8565b61286c5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610b1c565b6128788484848461345c565b50505050565b6000818152600260205260409020546060906001600160a01b031661290b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610b1c565b60006129156134e5565b905060008151116129355760405180602001604052806000815250612960565b8061293f846134f4565b6040516020016129509291906145e3565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146129c15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1c565b6013829055601281905560408051838152602081018390527f0b21f837d829aa9f787b3c1de2dec7fad365db79cca5492b3a7953fddb8136fe910161182e565b600a546001600160a01b03163314612a5b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1c565b600c548151612aac5760405162461bcd60e51b815260206004820152601b60248201527f456c69746520466f726365733a20696e76616c696420636f756e7400000000006044820152606401610b1c565b7f0000000000000000000000000000000000000000000000000000000000000000825182612ada9190614510565b1115612b325760405162461bcd60e51b815260206004820152602160248201527f456c69746520466f726365733a206d617820737570706c7920657863656564656044820152601960fa1b6064820152608401610b1c565b7f00000000000000000000000000000000000000000000000000000000000000008251600b54612b629190614510565b1115612bc15760405162461bcd60e51b815260206004820152602860248201527f456c69746520466f726365733a206d6178207265736572766520636f756e7420604482015267195e18d95959195960c21b6064820152608401610b1c565b8151600b6000828254612bd49190614510565b90915550600090505b8251811015612c9d5760006001600160a01b0316838281518110612c0357612c03614562565b60200260200101516001600160a01b03161415612c625760405162461bcd60e51b815260206004820152601a60248201527f456c69746520466f726365733a207a65726f20616464726573730000000000006044820152606401610b1c565b612c8b838281518110612c7757612c77614562565b602002602001015182846112559190614510565b80612c9581614547565b915050612bdd565b508151600c6000828254612cb19190614510565b90915550505050565b600a546001600160a01b03163314612d145760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1c565b600d80547fffffffffffffffffffffff0000000000000000000000000000000000000000ff166101006001600160a01b038416908102919091179091556040519081527fc714d22a2f08b695f81e7c707058db484aa5b4d6b4c9fd64beb10fe85832f608906020016119ea565b600a546001600160a01b03163314612ddb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1c565b6001600160a01b038116612e575760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b1c565b6114e8816133d9565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480612ec357506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806109fe57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146109fe565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190612f3d8261183a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806000612f858585613626565b91509150612f9281613696565b509392505050565b612fb4828260405180602001604052806000815250613851565b5050565b6000818152600260205260408120546001600160a01b03166130425760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610b1c565b600061304d8361183a565b9050806001600160a01b0316846001600160a01b031614806130885750836001600160a01b031661307d84610a96565b6001600160a01b0316145b806130b857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166130d38261183a565b6001600160a01b03161461314f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610b1c565b6001600160a01b0382166131ca5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610b1c565b6131d58383836138da565b6131e0600082612efb565b6001600160a01b03831660009081526003602052604081208054600192906132099084906145cc565b90915550506001600160a01b0382166000908152600360205260408120805460019290613237908490614510565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006132b08261183a565b90506132be816000846138da565b6132c9600083612efb565b6001600160a01b03811660009081526003602052604081208054600192906132f29084906145cc565b9091555050600082815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600063ffffffff8211156133d55760405162461bcd60e51b815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203360448201527f32206269747300000000000000000000000000000000000000000000000000006064820152608401610b1c565b5090565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061296082846145cc565b60006129608284614528565b60006129608284614628565b6134678484846130c0565b61347384848484613992565b6128785760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610b1c565b606060148054610a13906144bf565b60608161353457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561355e578061354881614547565b91506135579050600a83614628565b9150613538565b60008167ffffffffffffffff811115613579576135796142a7565b6040519080825280601f01601f1916602001820160405280156135a3576020820181803683370190505b5090505b84156130b8576135b86001836145cc565b91506135c5600a8661463c565b6135d0906030614510565b60f81b8183815181106135e5576135e5614562565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061361f600a86614628565b94506135a7565b60008082516041141561365d5760208301516040840151606085015160001a61365187828585613af5565b9450945050505061368f565b825160401415613687576020830151604084015161367c868383613be2565b93509350505061368f565b506000905060025b9250929050565b60008160048111156136aa576136aa614650565b14156136b35750565b60018160048111156136c7576136c7614650565b14156137155760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610b1c565b600281600481111561372957613729614650565b14156137775760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610b1c565b600381600481111561378b5761378b614650565b14156137e45760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610b1c565b60048160048111156137f8576137f8614650565b14156114e85760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610b1c565b61385b8383613c2a565b6138686000848484613992565b610c6e5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610b1c565b6001600160a01b0383166139355761393081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613958565b816001600160a01b0316836001600160a01b031614613958576139588382613d85565b6001600160a01b03821661396f57610c6e81613e22565b826001600160a01b0316826001600160a01b031614610c6e57610c6e8282613ed1565b60006001600160a01b0384163b15613aea57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906139d6903390899088908890600401614666565b602060405180830381600087803b1580156139f057600080fd5b505af1925050508015613a20575060408051601f3d908101601f19168201909252613a1d918101906146a2565b60015b613ad0573d808015613a4e576040519150601f19603f3d011682016040523d82523d6000602084013e613a53565b606091505b508051613ac85760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610b1c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506130b8565b506001949350505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115613b2c5750600090506003613bd9565b8460ff16601b14158015613b4457508460ff16601c14155b15613b555750600090506004613bd9565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015613ba9573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116613bd257600060019250925050613bd9565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b01613c1c87828885613af5565b935093505050935093915050565b6001600160a01b038216613c805760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b1c565b6000818152600260205260409020546001600160a01b031615613ce55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b1c565b613cf1600083836138da565b6001600160a01b0382166000908152600360205260408120805460019290613d1a908490614510565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001613d92846119f5565b613d9c91906145cc565b600083815260076020526040902054909150808214613def576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090613e34906001906145cc565b60008381526009602052604081205460088054939450909284908110613e5c57613e5c614562565b906000526020600020015490508060088381548110613e7d57613e7d614562565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480613eb557613eb56146bf565b6001900381819060005260206000200160009055905550505050565b6000613edc836119f5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054613f21906144bf565b90600052602060002090601f016020900481019282613f435760008555613f89565b82601f10613f5c5782800160ff19823516178555613f89565b82800160010185558215613f89579182015b82811115613f89578235825591602001919060010190613f6e565b506133d59291505b808211156133d55760008155600101613f91565b6001600160e01b0319811681146114e857600080fd5b600060208284031215613fcd57600080fd5b813561296081613fa5565b60005b83811015613ff3578181015183820152602001613fdb565b838111156128785750506000910152565b6000815180845261401c816020860160208601613fd8565b601f01601f19169290920160200192915050565b6020815260006129606020830184614004565b60006020828403121561405557600080fd5b5035919050565b6001600160a01b03811681146114e857600080fd5b6000806040838503121561408457600080fd5b823561408f8161405c565b946020939093013593505050565b60008083601f8401126140af57600080fd5b50813567ffffffffffffffff8111156140c757600080fd5b60208301915083602082850101111561368f57600080fd5b600080600080606085870312156140f557600080fd5b8435935060208501359250604085013567ffffffffffffffff81111561411a57600080fd5b6141268782880161409d565b95989497509550505050565b60008060006060848603121561414757600080fd5b83356141528161405c565b925060208401356141628161405c565b929592945050506040919091013590565b60008060006060848603121561418857600080fd5b83356141938161405c565b95602085013595506040909401359392505050565b600080602083850312156141bb57600080fd5b823567ffffffffffffffff8111156141d257600080fd5b6141de8582860161409d565b90969095509350505050565b803580151581146141fa57600080fd5b919050565b60006020828403121561421157600080fd5b612960826141ea565b60006020828403121561422c57600080fd5b81356129608161405c565b600080600080600060a0868803121561424f57600080fd5b505083359560208501359550604085013594606081013594506080013592509050565b6000806040838503121561428557600080fd5b82356142908161405c565b915061429e602084016141ea565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156142e6576142e66142a7565b604052919050565b6000806000806080858703121561430457600080fd5b843561430f8161405c565b93506020858101356143208161405c565b935060408601359250606086013567ffffffffffffffff8082111561434457600080fd5b818801915088601f83011261435857600080fd5b81358181111561436a5761436a6142a7565b61437c601f8201601f191685016142bd565b9150808252898482850101111561439257600080fd5b808484018584013760008482840101525080935050505092959194509250565b600080604083850312156143c557600080fd5b50508035926020909101359150565b600060208083850312156143e757600080fd5b823567ffffffffffffffff808211156143ff57600080fd5b818501915085601f83011261441357600080fd5b813581811115614425576144256142a7565b8060051b91506144368483016142bd565b818152918301840191848101908884111561445057600080fd5b938501935b8385101561447a578435925061446a8361405c565b8282529385019390850190614455565b98975050505050505050565b6000806040838503121561449957600080fd5b82356144a48161405c565b915060208301356144b48161405c565b809150509250929050565b600181811c908216806144d357607f821691505b602082108114156144f457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115614523576145236144fa565b500190565b6000816000190483118215151615614542576145426144fa565b500290565b600060001982141561455b5761455b6144fa565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b600063ffffffff838116908316818110156145c4576145c46144fa565b039392505050565b6000828210156145de576145de6144fa565b500390565b600083516145f5818460208801613fd8565b835190830190614609818360208801613fd8565b01949350505050565b634e487b7160e01b600052601260045260246000fd5b60008261463757614637614612565b500490565b60008261464b5761464b614612565b500690565b634e487b7160e01b600052602160045260246000fd5b60006001600160a01b038087168352808616602084015250836040830152608060608301526146986080830184614004565b9695505050505050565b6000602082840312156146b457600080fd5b815161296081613fa5565b634e487b7160e01b600052603160045260246000fdfea26469706673582212207eb1310df10217fe1666f4d32203e40cf060e833acaf0142118d622a2cda7fda64736f6c6343000809003300000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000064

Deployed Bytecode

0x6080604052600436106103085760003560e01c806370a082311161019a57806397304ced116100e1578063d4ae75221161008a578063f0f4426011610064578063f0f442601461091b578063f2fde38b1461093b578063fd88fa691461095b57600080fd5b8063d4ae75221461086a578063d5abeb011461089e578063e985e9c5146108d257600080fd5b8063c87b56dd116100bb578063c87b56dd1461080a578063cc9c571d1461082a578063ced4a5f21461084a57600080fd5b806397304ced146107b7578063a22cb465146107ca578063b88d4fde146107ea57600080fd5b80637ff9b5961161014357806390e3ee6b1161011d57806390e3ee6b1461076c57806393777fb31461078c57806395d89b41146107a257600080fd5b80637ff9b596146106ac5780638da5cb5b146106c157806390aa0b0f146106df57600080fd5b806375794a3c1161017457806375794a3c1461065657806378cf19e91461066c5780637a01e6e31461068c57600080fd5b806370a08231146105f4578063715018a614610614578063725c8ee71461062957600080fd5b80633644e5151161025e578063522c698d116102075780636352211e116101e15780636352211e1461059f5780636c0360eb146105bf5780636e0e5b19146105d457600080fd5b8063522c698d1461053a57806355f804b31461055a57806361d027b31461057a57600080fd5b8063433adb0511610238578063433adb05146104ee5780634f6ccce71461050457806351d28a7e1461052457600080fd5b80633644e5151461049857806342842e0e146104ae57806342966c68146104ce57600080fd5b80630fd1417c116102c05780632164218b1161029a5780632164218b1461044557806323b872dd146104585780632f745c591461047857600080fd5b80630fd1417c146103d857806316317c21146103fc57806318160ddd1461043057600080fd5b806307ebec27116102f157806307ebec2714610364578063081812fc1461037e578063095ea7b3146103b657600080fd5b806301ffc9a71461030d57806306fdde0314610342575b600080fd5b34801561031957600080fd5b5061032d610328366004613fbb565b6109c0565b60405190151581526020015b60405180910390f35b34801561034e57600080fd5b50610357610a04565b6040516103399190614030565b34801561037057600080fd5b50600d5461032d9060ff1681565b34801561038a57600080fd5b5061039e610399366004614043565b610a96565b6040516001600160a01b039091168152602001610339565b3480156103c257600080fd5b506103d66103d1366004614071565b610b41565b005b3480156103e457600080fd5b506103ee60125481565b604051908152602001610339565b34801561040857600080fd5b506103ee7f000000000000000000000000000000000000000000000000000000000000006481565b34801561043c57600080fd5b506008546103ee565b6103d66104533660046140df565b610c73565b34801561046457600080fd5b506103d6610473366004614132565b6112c7565b34801561048457600080fd5b506103ee610493366004614071565b61134e565b3480156104a457600080fd5b506103ee60155481565b3480156104ba57600080fd5b506103d66104c9366004614132565b6113f6565b3480156104da57600080fd5b506103d66104e9366004614043565b611411565b3480156104fa57600080fd5b506103ee600b5481565b34801561051057600080fd5b506103ee61051f366004614043565b6114eb565b34801561053057600080fd5b506103ee60135481565b34801561054657600080fd5b506103d6610555366004614173565b61158f565b34801561056657600080fd5b506103d66105753660046141a8565b611796565b34801561058657600080fd5b50600d5461039e9061010090046001600160a01b031681565b3480156105ab57600080fd5b5061039e6105ba366004614043565b61183a565b3480156105cb57600080fd5b506103576118c5565b3480156105e057600080fd5b506103d66105ef3660046141ff565b611953565b34801561060057600080fd5b506103ee61060f36600461421a565b6119f5565b34801561062057600080fd5b506103d6611a8f565b34801561063557600080fd5b506103ee61064436600461421a565b60106020526000908152604090205481565b34801561066257600080fd5b506103ee600c5481565b34801561067857600080fd5b506103d6610687366004614071565b611af5565b34801561069857600080fd5b506103d66106a7366004614043565b611d66565b3480156106b857600080fd5b506103ee611df5565b3480156106cd57600080fd5b50600a546001600160a01b031661039e565b3480156106eb57600080fd5b506011546107359063ffffffff8082169164010000000081048216916801000000000000000082048116916c010000000000000000000000008104821691600160801b9091041685565b6040805163ffffffff968716815294861660208601529285169284019290925283166060830152909116608082015260a001610339565b34801561077857600080fd5b506103d6610787366004614237565b611f94565b34801561079857600080fd5b506103ee600f5481565b3480156107ae57600080fd5b5061035761225b565b6103d66107c5366004614043565b61226a565b3480156107d657600080fd5b506103d66107e5366004614272565b61272b565b3480156107f657600080fd5b506103d66108053660046142ee565b6127f0565b34801561081657600080fd5b50610357610825366004614043565b61287e565b34801561083657600080fd5b506103d66108453660046143b2565b612967565b34801561085657600080fd5b506103d66108653660046143d4565b612a01565b34801561087657600080fd5b506103ee7f46d572d4aba7cc8ab12e37a6c279cfd599f9f5b73872e95b4bff2a237dd40f0e81565b3480156108aa57600080fd5b506103ee7f000000000000000000000000000000000000000000000000000000000000271081565b3480156108de57600080fd5b5061032d6108ed366004614486565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561092757600080fd5b506103d661093636600461421a565b612cba565b34801561094757600080fd5b506103d661095636600461421a565b612d81565b34801561096757600080fd5b50600e54610994906001600160a01b0381169063ffffffff600160a01b8204811691600160c01b90041683565b604080516001600160a01b03909416845263ffffffff9283166020850152911690820152606001610339565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806109fe57506109fe82612e60565b92915050565b606060008054610a13906144bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3f906144bf565b8015610a8c5780601f10610a6157610100808354040283529160200191610a8c565b820191906000526020600020905b815481529060010190602001808311610a6f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b255760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610b4c8261183a565b9050806001600160a01b0316836001600160a01b03161415610bd65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610b1c565b336001600160a01b0382161480610bf25750610bf281336108ed565b610c645760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b1c565b610c6e8383612efb565b505050565b600c5460408051606081018252600e546001600160a01b03811680835263ffffffff600160a01b830481166020850152600160c01b9092049091169282019290925290610d275760405162461bcd60e51b8152602060048201526024808201527f456c69746520466f726365733a2070726573616c65206e6f7420636f6e66696760448201527f75726564000000000000000000000000000000000000000000000000000000006064820152608401610b1c565b600d5461010090046001600160a01b0316610d845760405162461bcd60e51b815260206004820152601e60248201527f456c69746520466f726365733a207472656173757279206e6f742073657400006044820152606401610b1c565b6000600f5411610de05760405162461bcd60e51b815260206004820152602160248201527f456c69746520466f726365733a20746f6b656e207072696365206e6f742073656044820152601d60fa1b6064820152608401610b1c565b60008611610e305760405162461bcd60e51b815260206004820152601b60248201527f456c69746520466f726365733a20696e76616c696420636f756e7400000000006044820152606401610b1c565b806020015163ffffffff16421015610e945760405162461bcd60e51b815260206004820152602160248201527f456c69746520466f726365733a2070726573616c65206e6f74207374617274656044820152601960fa1b6064820152608401610b1c565b806040015163ffffffff164210610eed5760405162461bcd60e51b815260206004820152601b60248201527f456c69746520466f726365733a2070726573616c6520656e64656400000000006044820152606401610b1c565b7f0000000000000000000000000000000000000000000000000000000000002710610f188784614510565b1115610f705760405162461bcd60e51b815260206004820152602160248201527f456c69746520466f726365733a206d617820737570706c7920657863656564656044820152601960fa1b6064820152608401610b1c565b3486600f54610f7f9190614528565b14610ff25760405162461bcd60e51b815260206004820152602360248201527f456c69746520466f726365733a20696e636f727265637420457468657220766160448201527f6c756500000000000000000000000000000000000000000000000000000000006064820152608401610b1c565b601554604080517f46d572d4aba7cc8ab12e37a6c279cfd599f9f5b73872e95b4bff2a237dd40f0e6020820152339181019190915260608101879052600091906080016040516020818303038152906040528051906020012060405160200161108d9291907f190100000000000000000000000000000000000000000000000000000000000081526002810192909252602282015260420190565b60405160208183030381529060405280519060200120905060006110e986868080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508693925050612f769050565b90506001600160a01b0381161580159061110f575082516001600160a01b038281169116145b61115b5760405162461bcd60e51b815260206004820152601f60248201527f456c69746520466f726365733a20696e76616c6964207369676e6174757265006044820152606401610b1c565b336000908152601060205260409020548790611178908a90614510565b11156111d75760405162461bcd60e51b815260206004820152602860248201527f456c69746520466f726365733a2070726573616c65206d617820636f756e7420604482015267195e18d95959195960c21b6064820152608401610b1c565b33600090815260106020526040812080548a92906111f6908490614510565b9091555050600d546040516001600160a01b0361010090920491909116903480156108fc02916000818181858888f1935050505015801561123b573d6000803e3d6000fd5b5060005b8881101561126c5761125a336112558388614510565b612f9a565b8061126481614547565b91505061123f565b5087600c600082825461127f9190614510565b909155505060408051338152602081018a90527ff5df7d07fef0d8ac7581015ebd1a3b7b7760da84b12f0c8174ae0dcd639cb6a3910160405180910390a15050505050505050565b6112d13382612fb8565b6113435760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610b1c565b610c6e8383836130c0565b6000611359836119f5565b82106113cd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610b1c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610c6e838383604051806020016040528060008152506127f0565b600d5460ff166114635760405162461bcd60e51b815260206004820152601e60248201527f456c69746520466f726365733a206275726e696e672064697361626c656400006044820152606401610b1c565b61146d3382612fb8565b6114df5760405162461bcd60e51b815260206004820152603360248201527f456c69746520466f726365733a206275726e2063616c6c6572206973206e6f7460448201527f206f776e6572206e6f7220617070726f766564000000000000000000000000006064820152608401610b1c565b6114e8816132a5565b50565b60006114f660085490565b821061156a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610b1c565b6008828154811061157d5761157d614562565b90600052602060002001549050919050565b600a546001600160a01b031633146115e95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1c565b60006115f483613359565b9050600061160183613359565b90506001600160a01b0385166116595760405162461bcd60e51b815260206004820152601a60248201527f456c69746520466f726365733a207a65726f20616464726573730000000000006044820152606401610b1c565b60008263ffffffff1611801561167a57508163ffffffff168163ffffffff16115b6116c65760405162461bcd60e51b815260206004820181905260248201527f456c69746520466f726365733a20696e76616c69642074696d652072616e67656044820152606401610b1c565b60408051606080820183526001600160a01b03881680835263ffffffff8681166020808601829052918716948601859052600e80547fffffffffffffffff000000000000000000000000000000000000000000000000168417600160a01b8302177fffffffff00000000ffffffffffffffffffffffffffffffffffffffffffffffff16600160c01b8702179055855192835290820152928301919091527f883135fc965d7f7dbcc3014a73e1da89792169e1946b4fa2b4217cef2ae0800391015b60405180910390a15050505050565b600a546001600160a01b031633146117f05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1c565b6117fc60148383613f15565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf6828260405161182e929190614578565b60405180910390a15050565b6000818152600260205260408120546001600160a01b0316806109fe5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610b1c565b601480546118d2906144bf565b80601f01602080910402602001604051908101604052809291908181526020018280546118fe906144bf565b801561194b5780601f106119205761010080835404028352916020019161194b565b820191906000526020600020905b81548152906001019060200180831161192e57829003601f168201915b505050505081565b600a546001600160a01b031633146119ad5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1c565b600d805460ff19168215159081179091556040519081527f430864ad215aa849052adf33b0cae7eb033aa8a4f9cf45fb3973699038505ff3906020015b60405180910390a150565b60006001600160a01b038216611a735760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610b1c565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314611ae95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1c565b611af360006133d9565b565b600a546001600160a01b03163314611b4f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1c565b6001600160a01b038216611ba55760405162461bcd60e51b815260206004820152601a60248201527f456c69746520466f726365733a207a65726f20616464726573730000000000006044820152606401610b1c565b600c5481611bf55760405162461bcd60e51b815260206004820152601b60248201527f456c69746520466f726365733a20696e76616c696420636f756e7400000000006044820152606401610b1c565b7f0000000000000000000000000000000000000000000000000000000000002710611c208383614510565b1115611c785760405162461bcd60e51b815260206004820152602160248201527f456c69746520466f726365733a206d617820737570706c7920657863656564656044820152601960fa1b6064820152608401610b1c565b7f000000000000000000000000000000000000000000000000000000000000006482600b54611ca79190614510565b1115611d065760405162461bcd60e51b815260206004820152602860248201527f456c69746520466f726365733a206d6178207265736572766520636f756e7420604482015267195e18d95959195960c21b6064820152608401610b1c565b81600b6000828254611d189190614510565b90915550600090505b82811015611d4957611d37846112558385614510565b80611d4181614547565b915050611d21565b5081600c6000828254611d5c9190614510565b9091555050505050565b600a546001600160a01b03163314611dc05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1c565b600f8190556040518181527fa33fd78b97b22e55db09841cc782f306d0ecc4badd64573a5ad7c52a44556b64906020016119ea565b6040805160608082018352600e546001600160a01b038116835263ffffffff600160a01b820481166020808601918252600160c01b909304821685870152855160a081018752601154808416825264010000000081048416948201949094526801000000000000000084048316968101969096526c010000000000000000000000008304821693860193909352600160801b909104811660808501529051600093911615801590611eb05750816020015163ffffffff164210155b8015611ec55750816040015163ffffffff1642105b15611ed457600f549250505090565b805163ffffffff1615801590611ef15750805163ffffffff164210155b15611f8b57806020015163ffffffff16421015611f81576000611f2160135460125461343890919063ffffffff16565b90506000611f6883600001518460200151611f3c91906145a7565b63ffffffff16611f62856000015163ffffffff1642611f5b91906145cc565b8590613444565b90613450565b601254909150611f789082613438565b94505050505090565b6013549250505090565b60009250505090565b600a546001600160a01b03163314611fee5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1c565b6000611ff986613359565b9050600061200686613359565b9050600061201386613359565b9050600061202086613359565b9050600061202d86613359565b905060008363ffffffff1611801561204b575060008163ffffffff16115b6120975760405162461bcd60e51b815260206004820152601960248201527f456c69746520466f726365733a207a65726f20616d6f756e74000000000000006044820152606401610b1c565b60008563ffffffff161180156120b857508463ffffffff168463ffffffff16115b80156120cf57508463ffffffff168263ffffffff16115b61211b5760405162461bcd60e51b815260206004820181905260248201527f456c69746520466f726365733a20696e76616c69642074696d652072616e67656044820152606401610b1c565b6040805160a0808201835263ffffffff88811680845288821660208086018290528984168688018190528985166060808901829052958a1660809889018190526011805467ffffffffffffffff191687176401000000008702177fffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff166801000000000000000085027fffffffffffffffffffffffffffffffff00000000ffffffffffffffffffffffff16176c010000000000000000000000008402177fffffffffffffffffffffffff00000000ffffffffffffffffffffffffffffffff16600160801b83021790558951958652928501939093529683019690965291810191909152918201929092527f72d8bbd85be8fdc12bd783b697026ea5bf76b28aba8d24b7b52c3f21474f271b910160405180910390a150505050505050505050565b606060018054610a13906144bf565b600c546000612277611df5565b905060006122858483614528565b6040805160a08101825260115463ffffffff8082168084526401000000008304821660208501526801000000000000000083048216948401949094526c01000000000000000000000000820481166060840152600160801b90910416608082015291925061233f5760405162461bcd60e51b815260206004820152602160248201527f456c69746520466f726365733a2073616c65206e6f7420636f6e6669677572656044820152601960fa1b6064820152608401610b1c565b600d5461010090046001600160a01b031661239c5760405162461bcd60e51b815260206004820152601e60248201527f456c69746520466f726365733a207472656173757279206e6f742073657400006044820152606401610b1c565b600083116123f65760405162461bcd60e51b815260206004820152602160248201527f456c69746520466f726365733a20746f6b656e207072696365206e6f742073656044820152601d60fa1b6064820152608401610b1c565b600085116124465760405162461bcd60e51b815260206004820152601b60248201527f456c69746520466f726365733a20696e76616c696420636f756e7400000000006044820152606401610b1c565b805163ffffffff1642101561249d5760405162461bcd60e51b815260206004820152601e60248201527f456c69746520466f726365733a2073616c65206e6f74207374617274656400006044820152606401610b1c565b806060015163ffffffff164210156124b95780604001516124bf565b80608001515b63ffffffff1685111561253a5760405162461bcd60e51b815260206004820152602760248201527f456c69746520466f726365733a206d617820636f756e7420706572207478206560448201527f78636565646564000000000000000000000000000000000000000000000000006064820152608401610b1c565b7f00000000000000000000000000000000000000000000000000000000000027106125658686614510565b11156125bd5760405162461bcd60e51b815260206004820152602160248201527f456c69746520466f726365733a206d617820737570706c7920657863656564656044820152601960fa1b6064820152608401610b1c565b348211156126335760405162461bcd60e51b815260206004820152602560248201527f456c69746520466f726365733a20756e73756666696369656e7420457468657260448201527f2073656e740000000000000000000000000000000000000000000000000000006064820152608401610b1c565b600d546040516101009091046001600160a01b0316906108fc8415029084906000818181858888f19350505050158015612671573d6000803e3d6000fd5b50348211156126b257336108fc61268834856145cc565b6040518115909202916000818181858888f193505050501580156126b0573d6000803e3d6000fd5b505b60005b858110156126dd576126cb336112558388614510565b806126d581614547565b9150506126b5565b5084600c60008282546126f09190614510565b909155505060408051338152602081018790527f35b6d348af664cd334c7ec2746e1ab49907efa953fa3f622552cd0b19a828b3f9101611787565b6001600160a01b0382163314156127845760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b1c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6127fa3383612fb8565b61286c5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610b1c565b6128788484848461345c565b50505050565b6000818152600260205260409020546060906001600160a01b031661290b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610b1c565b60006129156134e5565b905060008151116129355760405180602001604052806000815250612960565b8061293f846134f4565b6040516020016129509291906145e3565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146129c15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1c565b6013829055601281905560408051838152602081018390527f0b21f837d829aa9f787b3c1de2dec7fad365db79cca5492b3a7953fddb8136fe910161182e565b600a546001600160a01b03163314612a5b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1c565b600c548151612aac5760405162461bcd60e51b815260206004820152601b60248201527f456c69746520466f726365733a20696e76616c696420636f756e7400000000006044820152606401610b1c565b7f0000000000000000000000000000000000000000000000000000000000002710825182612ada9190614510565b1115612b325760405162461bcd60e51b815260206004820152602160248201527f456c69746520466f726365733a206d617820737570706c7920657863656564656044820152601960fa1b6064820152608401610b1c565b7f00000000000000000000000000000000000000000000000000000000000000648251600b54612b629190614510565b1115612bc15760405162461bcd60e51b815260206004820152602860248201527f456c69746520466f726365733a206d6178207265736572766520636f756e7420604482015267195e18d95959195960c21b6064820152608401610b1c565b8151600b6000828254612bd49190614510565b90915550600090505b8251811015612c9d5760006001600160a01b0316838281518110612c0357612c03614562565b60200260200101516001600160a01b03161415612c625760405162461bcd60e51b815260206004820152601a60248201527f456c69746520466f726365733a207a65726f20616464726573730000000000006044820152606401610b1c565b612c8b838281518110612c7757612c77614562565b602002602001015182846112559190614510565b80612c9581614547565b915050612bdd565b508151600c6000828254612cb19190614510565b90915550505050565b600a546001600160a01b03163314612d145760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1c565b600d80547fffffffffffffffffffffff0000000000000000000000000000000000000000ff166101006001600160a01b038416908102919091179091556040519081527fc714d22a2f08b695f81e7c707058db484aa5b4d6b4c9fd64beb10fe85832f608906020016119ea565b600a546001600160a01b03163314612ddb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1c565b6001600160a01b038116612e575760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b1c565b6114e8816133d9565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480612ec357506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806109fe57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146109fe565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190612f3d8261183a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806000612f858585613626565b91509150612f9281613696565b509392505050565b612fb4828260405180602001604052806000815250613851565b5050565b6000818152600260205260408120546001600160a01b03166130425760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610b1c565b600061304d8361183a565b9050806001600160a01b0316846001600160a01b031614806130885750836001600160a01b031661307d84610a96565b6001600160a01b0316145b806130b857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166130d38261183a565b6001600160a01b03161461314f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610b1c565b6001600160a01b0382166131ca5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610b1c565b6131d58383836138da565b6131e0600082612efb565b6001600160a01b03831660009081526003602052604081208054600192906132099084906145cc565b90915550506001600160a01b0382166000908152600360205260408120805460019290613237908490614510565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006132b08261183a565b90506132be816000846138da565b6132c9600083612efb565b6001600160a01b03811660009081526003602052604081208054600192906132f29084906145cc565b9091555050600082815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600063ffffffff8211156133d55760405162461bcd60e51b815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203360448201527f32206269747300000000000000000000000000000000000000000000000000006064820152608401610b1c565b5090565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061296082846145cc565b60006129608284614528565b60006129608284614628565b6134678484846130c0565b61347384848484613992565b6128785760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610b1c565b606060148054610a13906144bf565b60608161353457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561355e578061354881614547565b91506135579050600a83614628565b9150613538565b60008167ffffffffffffffff811115613579576135796142a7565b6040519080825280601f01601f1916602001820160405280156135a3576020820181803683370190505b5090505b84156130b8576135b86001836145cc565b91506135c5600a8661463c565b6135d0906030614510565b60f81b8183815181106135e5576135e5614562565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061361f600a86614628565b94506135a7565b60008082516041141561365d5760208301516040840151606085015160001a61365187828585613af5565b9450945050505061368f565b825160401415613687576020830151604084015161367c868383613be2565b93509350505061368f565b506000905060025b9250929050565b60008160048111156136aa576136aa614650565b14156136b35750565b60018160048111156136c7576136c7614650565b14156137155760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610b1c565b600281600481111561372957613729614650565b14156137775760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610b1c565b600381600481111561378b5761378b614650565b14156137e45760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610b1c565b60048160048111156137f8576137f8614650565b14156114e85760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610b1c565b61385b8383613c2a565b6138686000848484613992565b610c6e5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610b1c565b6001600160a01b0383166139355761393081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613958565b816001600160a01b0316836001600160a01b031614613958576139588382613d85565b6001600160a01b03821661396f57610c6e81613e22565b826001600160a01b0316826001600160a01b031614610c6e57610c6e8282613ed1565b60006001600160a01b0384163b15613aea57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906139d6903390899088908890600401614666565b602060405180830381600087803b1580156139f057600080fd5b505af1925050508015613a20575060408051601f3d908101601f19168201909252613a1d918101906146a2565b60015b613ad0573d808015613a4e576040519150601f19603f3d011682016040523d82523d6000602084013e613a53565b606091505b508051613ac85760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610b1c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506130b8565b506001949350505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115613b2c5750600090506003613bd9565b8460ff16601b14158015613b4457508460ff16601c14155b15613b555750600090506004613bd9565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015613ba9573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116613bd257600060019250925050613bd9565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b01613c1c87828885613af5565b935093505050935093915050565b6001600160a01b038216613c805760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b1c565b6000818152600260205260409020546001600160a01b031615613ce55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b1c565b613cf1600083836138da565b6001600160a01b0382166000908152600360205260408120805460019290613d1a908490614510565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001613d92846119f5565b613d9c91906145cc565b600083815260076020526040902054909150808214613def576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090613e34906001906145cc565b60008381526009602052604081205460088054939450909284908110613e5c57613e5c614562565b906000526020600020015490508060088381548110613e7d57613e7d614562565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480613eb557613eb56146bf565b6001900381819060005260206000200160009055905550505050565b6000613edc836119f5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054613f21906144bf565b90600052602060002090601f016020900481019282613f435760008555613f89565b82601f10613f5c5782800160ff19823516178555613f89565b82800160010185558215613f89579182015b82811115613f89578235825591602001919060010190613f6e565b506133d59291505b808211156133d55760008155600101613f91565b6001600160e01b0319811681146114e857600080fd5b600060208284031215613fcd57600080fd5b813561296081613fa5565b60005b83811015613ff3578181015183820152602001613fdb565b838111156128785750506000910152565b6000815180845261401c816020860160208601613fd8565b601f01601f19169290920160200192915050565b6020815260006129606020830184614004565b60006020828403121561405557600080fd5b5035919050565b6001600160a01b03811681146114e857600080fd5b6000806040838503121561408457600080fd5b823561408f8161405c565b946020939093013593505050565b60008083601f8401126140af57600080fd5b50813567ffffffffffffffff8111156140c757600080fd5b60208301915083602082850101111561368f57600080fd5b600080600080606085870312156140f557600080fd5b8435935060208501359250604085013567ffffffffffffffff81111561411a57600080fd5b6141268782880161409d565b95989497509550505050565b60008060006060848603121561414757600080fd5b83356141528161405c565b925060208401356141628161405c565b929592945050506040919091013590565b60008060006060848603121561418857600080fd5b83356141938161405c565b95602085013595506040909401359392505050565b600080602083850312156141bb57600080fd5b823567ffffffffffffffff8111156141d257600080fd5b6141de8582860161409d565b90969095509350505050565b803580151581146141fa57600080fd5b919050565b60006020828403121561421157600080fd5b612960826141ea565b60006020828403121561422c57600080fd5b81356129608161405c565b600080600080600060a0868803121561424f57600080fd5b505083359560208501359550604085013594606081013594506080013592509050565b6000806040838503121561428557600080fd5b82356142908161405c565b915061429e602084016141ea565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156142e6576142e66142a7565b604052919050565b6000806000806080858703121561430457600080fd5b843561430f8161405c565b93506020858101356143208161405c565b935060408601359250606086013567ffffffffffffffff8082111561434457600080fd5b818801915088601f83011261435857600080fd5b81358181111561436a5761436a6142a7565b61437c601f8201601f191685016142bd565b9150808252898482850101111561439257600080fd5b808484018584013760008482840101525080935050505092959194509250565b600080604083850312156143c557600080fd5b50508035926020909101359150565b600060208083850312156143e757600080fd5b823567ffffffffffffffff808211156143ff57600080fd5b818501915085601f83011261441357600080fd5b813581811115614425576144256142a7565b8060051b91506144368483016142bd565b818152918301840191848101908884111561445057600080fd5b938501935b8385101561447a578435925061446a8361405c565b8282529385019390850190614455565b98975050505050505050565b6000806040838503121561449957600080fd5b82356144a48161405c565b915060208301356144b48161405c565b809150509250929050565b600181811c908216806144d357607f821691505b602082108114156144f457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115614523576145236144fa565b500190565b6000816000190483118215151615614542576145426144fa565b500290565b600060001982141561455b5761455b6144fa565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b600063ffffffff838116908316818110156145c4576145c46144fa565b039392505050565b6000828210156145de576145de6144fa565b500390565b600083516145f5818460208801613fd8565b835190830190614609818360208801613fd8565b01949350505050565b634e487b7160e01b600052601260045260246000fd5b60008261463757614637614612565b500490565b60008261464b5761464b614612565b500690565b634e487b7160e01b600052602160045260246000fd5b60006001600160a01b038087168352808616602084015250836040830152608060608301526146986080830184614004565b9695505050505050565b6000602082840312156146b457600080fd5b815161296081613fa5565b634e487b7160e01b600052603160045260246000fdfea26469706673582212207eb1310df10217fe1666f4d32203e40cf060e833acaf0142118d622a2cda7fda64736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000064

-----Decoded View---------------
Arg [0] : _maxSupply (uint256): 10000
Arg [1] : _reserveCount (uint256): 100

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000064


Deployed Bytecode Sourcemap

68697:13330:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62285:300;;;;;;;;;;-1:-1:-1;62285:300:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;62285:300:0;;;;;;;;49557:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;70134:25::-;;;;;;;;;;-1:-1:-1;70134:25:0;;;;;;;;51250:308;;;;;;;;;;-1:-1:-1;51250:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1738:55:1;;;1720:74;;1708:2;1693:18;51250:308:0;1574:226:1;50773:411:0;;;;;;;;;;-1:-1:-1;50773:411:0;;;;;:::i;:::-;;:::i;:::-;;70384:33;;;;;;;;;;;;;;;;;;;2430:25:1;;;2418:2;2403:18;70384:33:0;2284:177:1;70019:37:0;;;;;;;;;;;;;;;63088:113;;;;;;;;;;-1:-1:-1;63176:10:0;:17;63088:113;;76239:2363;;;;;;:::i;:::-;;:::i;52309:376::-;;;;;;;;;;-1:-1:-1;52309:376:0;;;;;:::i;:::-;;:::i;62669:343::-;;;;;;;;;;-1:-1:-1;62669:343:0;;;;;:::i;:::-;;:::i;70492:31::-;;;;;;;;;;;;;;;;52756:185;;;;;;;;;;-1:-1:-1;52756:185:0;;;;;:::i;:::-;;:::i;81625:291::-;;;;;;;;;;-1:-1:-1;81625:291:0;;;;;:::i;:::-;;:::i;70065:29::-;;;;;;;;;;;;;;;;63278:320;;;;;;;;;;-1:-1:-1;63278:320:0;;;;;:::i;:::-;;:::i;70424:29::-;;;;;;;;;;;;;;;;73683:764;;;;;;;;;;-1:-1:-1;73683:764:0;;;;;:::i;:::-;;:::i;76083:148::-;;;;;;;;;;-1:-1:-1;76083:148:0;;;;;:::i;:::-;;:::i;70166:31::-;;;;;;;;;;-1:-1:-1;70166:31:0;;;;;;;-1:-1:-1;;;;;70166:31:0;;;49164:326;;;;;;;;;;-1:-1:-1;49164:326:0;;;;;:::i;:::-;;:::i;70462:21::-;;;;;;;;;;;;;:::i;75752:167::-;;;;;;;;;;-1:-1:-1;75752:167:0;;;;;:::i;:::-;;:::i;48807:295::-;;;;;;;;;;-1:-1:-1;48807:295:0;;;;;:::i;:::-;;:::i;20095:94::-;;;;;;;;;;;;;:::i;70286:54::-;;;;;;;;;;-1:-1:-1;70286:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;70101:26;;;;;;;;;;;;;;;;71445:809;;;;;;;;;;-1:-1:-1;71445:809:0;;;;;:::i;:::-;;:::i;73149:217::-;;;;;;;;;;-1:-1:-1;73149:217:0;;;;;:::i;:::-;;:::i;80560:1057::-;;;;;;;;;;;;;:::i;19444:87::-;;;;;;;;;;-1:-1:-1;19517:6:0;;-1:-1:-1;;;;;19517:6:0;19444:87;;70349:28;;;;;;;;;;-1:-1:-1;70349:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;70349:28:0;;;;;;;;;;5922:10:1;5959:15;;;5941:34;;6011:15;;;6006:2;5991:18;;5984:43;6063:15;;;6043:18;;;6036:43;;;;6115:15;;6110:2;6095:18;;6088:43;6168:15;;;6162:3;6147:19;;6140:44;5899:3;5884:19;70349:28:0;5663:527:1;74455:1289:0;;;;;;;;;;-1:-1:-1;74455:1289:0;;;;;:::i;:::-;;:::i;70247:32::-;;;;;;;;;;;;;;;;49726:104;;;;;;;;;;;;;:::i;78610:1942::-;;;;;;:::i;:::-;;:::i;51630:327::-;;;;;;;;;;-1:-1:-1;51630:327:0;;;;;:::i;:::-;;:::i;53012:365::-;;;;;;;;;;-1:-1:-1;53012:365:0;;;;;:::i;:::-;;:::i;49901:468::-;;;;;;;;;;-1:-1:-1;49901:468:0;;;;;:::i;:::-;;:::i;73374:301::-;;;;;;;;;;-1:-1:-1;73374:301:0;;;;;:::i;:::-;;:::i;72262:879::-;;;;;;;;;;-1:-1:-1;72262:879:0;;;;;:::i;:::-;;:::i;70530:104::-;;;;;;;;;;;;70582:52;70530:104;;69978:34;;;;;;;;;;;;;;;52028:214;;;;;;;;;;-1:-1:-1;52028:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;52199:25:0;;;52170:4;52199:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;52028:214;75927:148;;;;;;;;;;-1:-1:-1;75927:148:0;;;;;:::i;:::-;;:::i;20344:229::-;;;;;;;;;;-1:-1:-1;20344:229:0;;;;;:::i;:::-;;:::i;70206:34::-;;;;;;;;;;-1:-1:-1;70206:34:0;;;;-1:-1:-1;;;;;70206:34:0;;;;-1:-1:-1;;;70206:34:0;;;;;-1:-1:-1;;;70206:34:0;;;;;;;;;-1:-1:-1;;;;;10704:55:1;;;10686:74;;10779:10;10825:15;;;10820:2;10805:18;;10798:43;10877:15;;10857:18;;;10850:43;10674:2;10659:18;70206:34:0;10488:411:1;62285:300:0;62432:4;-1:-1:-1;;;;;;62474:50:0;;62489:35;62474:50;;:103;;;62541:36;62565:11;62541:23;:36::i;:::-;62454:123;62285:300;-1:-1:-1;;62285:300:0:o;49557:100::-;49611:13;49644:5;49637:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49557:100;:::o;51250:308::-;51371:7;55013:16;;;:7;:16;;;;;;-1:-1:-1;;;;;55013:16:0;51396:110;;;;-1:-1:-1;;;51396:110:0;;11548:2:1;51396:110:0;;;11530:21:1;11587:2;11567:18;;;11560:30;11626:34;11606:18;;;11599:62;11697:14;11677:18;;;11670:42;11729:19;;51396:110:0;;;;;;;;;-1:-1:-1;51526:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;51526:24:0;;51250:308::o;50773:411::-;50854:13;50870:23;50885:7;50870:14;:23::i;:::-;50854:39;;50918:5;-1:-1:-1;;;;;50912:11:0;:2;-1:-1:-1;;;;;50912:11:0;;;50904:57;;;;-1:-1:-1;;;50904:57:0;;11961:2:1;50904:57:0;;;11943:21:1;12000:2;11980:18;;;11973:30;12039:34;12019:18;;;12012:62;12110:3;12090:18;;;12083:31;12131:19;;50904:57:0;11759:397:1;50904:57:0;9161:10;-1:-1:-1;;;;;50996:21:0;;;;:62;;-1:-1:-1;51021:37:0;51038:5;9161:10;52028:214;:::i;51021:37::-;50974:168;;;;-1:-1:-1;;;50974:168:0;;12363:2:1;50974:168:0;;;12345:21:1;12402:2;12382:18;;;12375:30;12441:34;12421:18;;;12414:62;12512:26;12492:18;;;12485:54;12556:19;;50974:168:0;12161:420:1;50974:168:0;51155:21;51164:2;51168:7;51155:8;:21::i;:::-;50843:341;50773:411;;:::o;76239:2363::-;76439:11;;76509:51;;;;;;;;76547:13;76509:51;-1:-1:-1;;;;;76509:51:0;;;;;;-1:-1:-1;;;76509:51:0;;;;;;;;-1:-1:-1;;;76509:51:0;;;;;;;;;;;;;;76571:130;;;;-1:-1:-1;;;76571:130:0;;12788:2:1;76571:130:0;;;12770:21:1;12827:2;12807:18;;;12800:30;12866:34;12846:18;;;12839:62;12937:6;12917:18;;;12910:34;12961:19;;76571:130:0;12586:400:1;76571:130:0;76736:8;;;;;-1:-1:-1;;;;;76736:8:0;76714:102;;;;-1:-1:-1;;;76714:102:0;;13193:2:1;76714:102:0;;;13175:21:1;13232:2;13212:18;;;13205:30;13271:32;13251:18;;;13244:60;13321:18;;76714:102:0;12991:354:1;76714:102:0;76869:1;76849:17;;:21;76827:104;;;;-1:-1:-1;;;76827:104:0;;13552:2:1;76827:104:0;;;13534:21:1;13591:2;13571:18;;;13564:30;13630:34;13610:18;;;13603:62;-1:-1:-1;;;13681:18:1;;;13674:31;13722:19;;76827:104:0;13350:397:1;76827:104:0;76958:1;76950:5;:9;76942:49;;;;-1:-1:-1;;;76942:49:0;;13954:2:1;76942:49:0;;;13936:21:1;13993:2;13973:18;;;13966:30;14032:29;14012:18;;;14005:57;14079:18;;76942:49:0;13752:351:1;76942:49:0;77043:14;:24;;;77024:43;;:15;:43;;77002:126;;;;-1:-1:-1;;;77002:126:0;;14310:2:1;77002:126:0;;;14292:21:1;14349:2;14329:18;;;14322:30;14388:34;14368:18;;;14361:62;-1:-1:-1;;;14439:18:1;;;14432:31;14480:19;;77002:126:0;14108:397:1;77002:126:0;77179:14;:22;;;77161:40;;:15;:40;77139:117;;;;-1:-1:-1;;;77139:117:0;;14712:2:1;77139:117:0;;;14694:21:1;14751:2;14731:18;;;14724:30;14790:29;14770:18;;;14763:57;14837:18;;77139:117:0;14510:351:1;77139:117:0;77315:9;77291:20;77306:5;77291:12;:20;:::i;:::-;:33;;77269:116;;;;-1:-1:-1;;;77269:116:0;;15390:2:1;77269:116:0;;;15372:21:1;15429:2;15409:18;;;15402:30;15468:34;15448:18;;;15441:62;-1:-1:-1;;;15519:18:1;;;15512:31;15560:19;;77269:116:0;15188:397:1;77269:116:0;77447:9;77438:5;77418:17;;:25;;;;:::i;:::-;:38;77396:123;;;;-1:-1:-1;;;77396:123:0;;15965:2:1;77396:123:0;;;15947:21:1;16004:2;15984:18;;;15977:30;16043:34;16023:18;;;16016:62;16114:5;16094:18;;;16087:33;16137:19;;77396:123:0;15763:399:1;77396:123:0;77674:16;;77719:50;;;70582:52;77719:50;;;16369:25:1;77748:10:0;16410:18:1;;;16403:83;;;;16502:18;;;16495:34;;;77569:14:0;;77674:16;16342:18:1;;77719:50:0;;;;;;;;;;;;77709:61;;;;;;77610:175;;;;;;;;16810:66:1;16798:79;;16902:1;16893:11;;16886:27;;;;16938:2;16929:12;;16922:28;16975:2;16966:12;;16540:444;77610:175:0;;;;;;;;;;;;;77586:210;;;;;;77569:227;;77807:24;77834:25;77849:9;;77834:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;77834:6:0;;:25;-1:-1:-1;;77834:14:0;:25;-1:-1:-1;77834:25:0:i;:::-;77807:52;-1:-1:-1;;;;;;77892:30:0;;;;;;:101;;-1:-1:-1;77963:30:0;;-1:-1:-1;;;;;77943:50:0;;;;;;77892:101;77870:182;;;;-1:-1:-1;;;77870:182:0;;17191:2:1;77870:182:0;;;17173:21:1;17230:2;17210:18;;;17203:30;17269:33;17249:18;;;17242:61;17320:18;;77870:182:0;16989:355:1;77870:182:0;78105:10;78085:31;;;;:19;:31;;;;;;78128:8;;78085:39;;78119:5;;78085:39;:::i;:::-;:51;;78063:141;;;;-1:-1:-1;;;78063:141:0;;17551:2:1;78063:141:0;;;17533:21:1;17590:2;17570:18;;;17563:30;17629:34;17609:18;;;17602:62;-1:-1:-1;;;17680:18:1;;;17673:38;17728:19;;78063:141:0;17349:404:1;78063:141:0;78235:10;78215:31;;;;:19;:31;;;;;:40;;78250:5;;78215:31;:40;;78250:5;;78215:40;:::i;:::-;;;;-1:-1:-1;;78365:8:0;;:28;;-1:-1:-1;;;;;78365:8:0;;;;;;;;;78383:9;78365:28;;;;;;;;;78383:9;78365:8;:28;;;;;;;;;;;;;;;;;;;;;78411:11;78406:110;78434:5;78428:3;:11;78406:110;;;78463:41;78473:10;78485:18;78500:3;78485:12;:18;:::i;:::-;78463:9;:41::i;:::-;78441:5;;;;:::i;:::-;;;;78406:110;;;;78541:5;78526:11;;:20;;;;;;;:::i;:::-;;;;-1:-1:-1;;78564:30:0;;;78576:10;18072:74:1;;18177:2;18162:18;;18155:34;;;78564:30:0;;18045:18:1;78564:30:0;;;;;;;76376:2226;;;;76239:2363;;;;:::o;52309:376::-;52518:41;9161:10;52551:7;52518:18;:41::i;:::-;52496:140;;;;-1:-1:-1;;;52496:140:0;;18402:2:1;52496:140:0;;;18384:21:1;18441:2;18421:18;;;18414:30;18480:34;18460:18;;;18453:62;18551:19;18531:18;;;18524:47;18588:19;;52496:140:0;18200:413:1;52496:140:0;52649:28;52659:4;52665:2;52669:7;52649:9;:28::i;62669:343::-;62811:7;62866:23;62883:5;62866:16;:23::i;:::-;62858:5;:31;62836:124;;;;-1:-1:-1;;;62836:124:0;;18820:2:1;62836:124:0;;;18802:21:1;18859:2;18839:18;;;18832:30;18898:34;18878:18;;;18871:62;18969:13;18949:18;;;18942:41;19000:19;;62836:124:0;18618:407:1;62836:124:0;-1:-1:-1;;;;;;62978:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;62669:343::o;52756:185::-;52894:39;52911:4;52917:2;52921:7;52894:39;;;;;;;;;;;;:16;:39::i;81625:291::-;81684:13;;;;81676:56;;;;-1:-1:-1;;;81676:56:0;;19232:2:1;81676:56:0;;;19214:21:1;19271:2;19251:18;;;19244:30;19310:32;19290:18;;;19283:60;19360:18;;81676:56:0;19030:354:1;81676:56:0;81765:39;81784:10;81796:7;81765:18;:39::i;:::-;81743:140;;;;-1:-1:-1;;;81743:140:0;;19591:2:1;81743:140:0;;;19573:21:1;19630:2;19610:18;;;19603:30;19669:34;19649:18;;;19642:62;19740:21;19720:18;;;19713:49;19779:19;;81743:140:0;19389:415:1;81743:140:0;81894:14;81900:7;81894:5;:14::i;:::-;81625:291;:::o;63278:320::-;63398:7;63453:30;63176:10;:17;;63088:113;63453:30;63445:5;:38;63423:132;;;;-1:-1:-1;;;63423:132:0;;20011:2:1;63423:132:0;;;19993:21:1;20050:2;20030:18;;;20023:30;20089:34;20069:18;;;20062:62;20160:14;20140:18;;;20133:42;20192:19;;63423:132:0;19809:408:1;63423:132:0;63573:10;63584:5;63573:17;;;;;;;;:::i;:::-;;;;;;;;;63566:24;;63278:320;;;:::o;73683:764::-;19517:6;;-1:-1:-1;;;;;19517:6:0;9161:10;19664:23;19656:68;;;;-1:-1:-1;;;19656:68:0;;20613:2:1;19656:68:0;;;20595:21:1;;;20632:18;;;20625:30;20691:34;20671:18;;;20664:62;20743:18;;19656:68:0;20411:356:1;19656:68:0;73830:17:::1;73850:20;:9;:18;:20::i;:::-;73830:40;;73881:15;73899:18;:7;:16;:18::i;:::-;73881:36:::0;-1:-1:-1;;;;;;73977:29:0;::::1;73955:105;;;::::0;-1:-1:-1;;;73955:105:0;;20974:2:1;73955:105:0::1;::::0;::::1;20956:21:1::0;21013:2;20993:18;;;20986:30;21052:28;21032:18;;;21025:56;21098:18;;73955:105:0::1;20772:350:1::0;73955:105:0::1;74106:1;74093:10;:14;;;:39;;;;;74122:10;74111:21;;:8;:21;;;74093:39;74071:121;;;::::0;-1:-1:-1;;;74071:121:0;;21329:2:1;74071:121:0::1;::::0;::::1;21311:21:1::0;;;21348:18;;;21341:30;21407:34;21387:18;;;21380:62;21459:18;;74071:121:0::1;21127:356:1::0;74071:121:0::1;74221:141;::::0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;;;;74221:141:0;::::1;::::0;;;::::1;::::0;;::::1;;::::0;;::::1;::::0;;;;;::::1;::::0;;;;;;74205:13:::1;:157:::0;;;;;;-1:-1:-1;;;74205:157:0;::::1;;::::0;::::1;-1:-1:-1::0;;;74205:157:0;::::1;;::::0;;74380:59;;10686:74:1;;;10805:18;;;10798:43;10857:18;;;10850:43;;;;74380:59:0::1;::::0;10659:18:1;74380:59:0::1;;;;;;;;73819:628;;73683:764:::0;;;:::o;76083:148::-;19517:6;;-1:-1:-1;;;;;19517:6:0;9161:10;19664:23;19656:68;;;;-1:-1:-1;;;19656:68:0;;20613:2:1;19656:68:0;;;20595:21:1;;;20632:18;;;20625:30;20691:34;20671:18;;;20664:62;20743:18;;19656:68:0;20411:356:1;19656:68:0;76161:20:::1;:7;76171:10:::0;;76161:20:::1;:::i;:::-;;76197:26;76212:10;;76197:26;;;;;;;:::i;:::-;;;;;;;;76083:148:::0;;:::o;49164:326::-;49281:7;49322:16;;;:7;:16;;;;;;-1:-1:-1;;;;;49322:16:0;49371:19;49349:110;;;;-1:-1:-1;;;49349:110:0;;22085:2:1;49349:110:0;;;22067:21:1;22124:2;22104:18;;;22097:30;22163:34;22143:18;;;22136:62;22234:11;22214:18;;;22207:39;22263:19;;49349:110:0;21883:405:1;70462:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;75752:167::-;19517:6;;-1:-1:-1;;;;;19517:6:0;9161:10;19664:23;19656:68;;;;-1:-1:-1;;;19656:68:0;;20613:2:1;19656:68:0;;;20595:21:1;;;20632:18;;;20625:30;20691:34;20671:18;;;20664:62;20743:18;;19656:68:0;20411:356:1;19656:68:0;75829:13:::1;:30:::0;;-1:-1:-1;;75829:30:0::1;::::0;::::1;;::::0;;::::1;::::0;;;75875:36:::1;::::0;586:41:1;;;75875:36:0::1;::::0;574:2:1;559:18;75875:36:0::1;;;;;;;;75752:167:::0;:::o;48807:295::-;48924:7;-1:-1:-1;;;;;48971:19:0;;48949:111;;;;-1:-1:-1;;;48949:111:0;;22495:2:1;48949:111:0;;;22477:21:1;22534:2;22514:18;;;22507:30;22573:34;22553:18;;;22546:62;22644:12;22624:18;;;22617:40;22674:19;;48949:111:0;22293:406:1;48949:111:0;-1:-1:-1;;;;;;49078:16:0;;;;;:9;:16;;;;;;;48807:295::o;20095:94::-;19517:6;;-1:-1:-1;;;;;19517:6:0;9161:10;19664:23;19656:68;;;;-1:-1:-1;;;19656:68:0;;20613:2:1;19656:68:0;;;20595:21:1;;;20632:18;;;20625:30;20691:34;20671:18;;;20664:62;20743:18;;19656:68:0;20411:356:1;19656:68:0;20160:21:::1;20178:1;20160:9;:21::i;:::-;20095:94::o:0;71445:809::-;19517:6;;-1:-1:-1;;;;;19517:6:0;9161:10;19664:23;19656:68;;;;-1:-1:-1;;;19656:68:0;;20613:2:1;19656:68:0;;;20595:21:1;;;20632:18;;;20625:30;20691:34;20671:18;;;20664:62;20743:18;;19656:68:0;20411:356:1;19656:68:0;-1:-1:-1;;;;;71577:23:0;::::1;71555:99;;;::::0;-1:-1:-1;;;71555:99:0;;20974:2:1;71555:99:0::1;::::0;::::1;20956:21:1::0;21013:2;20993:18;;;20986:30;21052:28;21032:18;;;21025:56;21098:18;;71555:99:0::1;20772:350:1::0;71555:99:0::1;71719:11;::::0;71751:9;71743:49:::1;;;::::0;-1:-1:-1;;;71743:49:0;;13954:2:1;71743:49:0::1;::::0;::::1;13936:21:1::0;13993:2;13973:18;;;13966:30;14032:29;14012:18;;;14005:57;14079:18;;71743:49:0::1;13752:351:1::0;71743:49:0::1;71849:9;71825:20;71840:5:::0;71825:12;:20:::1;:::i;:::-;:33;;71803:116;;;::::0;-1:-1:-1;;;71803:116:0;;15390:2:1;71803:116:0::1;::::0;::::1;15372:21:1::0;15429:2;15409:18;;;15402:30;15468:34;15448:18;;;15441:62;-1:-1:-1;;;15519:18:1;;;15512:31;15560:19;;71803:116:0::1;15188:397:1::0;71803:116:0::1;71980:12;71971:5;71954:14;;:22;;;;:::i;:::-;:38;;71932:128;;;::::0;-1:-1:-1;;;71932:128:0;;22906:2:1;71932:128:0::1;::::0;::::1;22888:21:1::0;22945:2;22925:18;;;22918:30;22984:34;22964:18;;;22957:62;-1:-1:-1;;;23035:18:1;;;23028:38;23083:19;;71932:128:0::1;22704:404:1::0;71932:128:0::1;72089:5;72071:14;;:23;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;72112:11:0::1;::::0;-1:-1:-1;72107:109:0::1;72135:5;72129:3;:11;72107:109;;;72164:40;72174:9:::0;72185:18:::1;72200:3:::0;72185:12;:18:::1;:::i;72164:40::-;72142:5:::0;::::1;::::0;::::1;:::i;:::-;;;;72107:109;;;;72241:5;72226:11;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;71445:809:0:o;73149:217::-;19517:6;;-1:-1:-1;;;;;19517:6:0;9161:10;19664:23;19656:68;;;;-1:-1:-1;;;19656:68:0;;20613:2:1;19656:68:0;;;20595:21:1;;;20632:18;;;20625:30;20691:34;20671:18;;;20664:62;20743:18;;19656:68:0;20411:356:1;19656:68:0;73260:17:::1;:38:::0;;;73314:44:::1;::::0;2430:25:1;;;73314:44:0::1;::::0;2418:2:1;2403:18;73314:44:0::1;2284:177:1::0;80560:1057:0;80623:51;;;;;;;;;80661:13;80623:51;-1:-1:-1;;;;;80623:51:0;;;;;-1:-1:-1;;;80623:51:0;;;;;;;;;;;-1:-1:-1;;;80623:51:0;;;;;;;;;80685:42;;;;;;;80717:10;80685:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;80685:42:0;;;;;;;;;80756:24;;80603:7;;80685:42;80756:28;;;;;:88;;;80820:14;:24;;;80801:43;;:15;:43;;80756:88;:145;;;;;80879:14;:22;;;80861:40;;:15;:40;80756:145;80738:226;;;80935:17;;80928:24;;;;80560:1057;:::o;80738:226::-;80992:21;;:25;;;;;;:82;;-1:-1:-1;81053:21:0;;81034:40;;:15;:40;;80992:82;80974:617;;;81123:11;:20;;;81105:38;;:15;:38;81101:443;;;81164:23;81190:78;81235:14;;81190:18;;:22;;:78;;;;:::i;:::-;81164:104;;81287:21;81311:154;81443:11;:21;;;81420:11;:20;;;:44;;;;:::i;:::-;81311:154;;:82;81371:11;:21;;;81353:39;;:15;:39;;;;:::i;:::-;81311:15;;:41;:82::i;:::-;:108;;:154::i;:::-;81491:18;;81287:178;;-1:-1:-1;81491:37:0;;81287:178;81491:22;:37::i;:::-;81484:44;;;;;;80560:1057;:::o;81101:443::-;81565:14;;81558:21;;;;80560:1057;:::o;80974:617::-;81608:1;81601:8;;;;80560:1057;:::o;74455:1289::-;19517:6;;-1:-1:-1;;;;;19517:6:0;9161:10;19664:23;19656:68;;;;-1:-1:-1;;;19656:68:0;;20613:2:1;19656:68:0;;;20595:21:1;;;20632:18;;;20625:30;20691:34;20671:18;;;20664:62;20743:18;;19656:68:0;20411:356:1;19656:68:0;74669:17:::1;74689:20;:9;:18;:20::i;:::-;74669:40;;74720:16;74739:19;:8;:17;:19::i;:::-;74720:38;;74769:20;74792:23;:12;:21;:23::i;:::-;74769:46;;74826:26;74855:29;:18;:27;:29::i;:::-;74826:58;;74895:24;74922:27;:16;:25;:27::i;:::-;74895:54;;75000:1;74984:13;:17;;;:42;;;;;75025:1;75005:17;:21;;;74984:42;74962:117;;;::::0;-1:-1:-1;;;74962:117:0;;23671:2:1;74962:117:0::1;::::0;::::1;23653:21:1::0;23710:2;23690:18;;;23683:30;23749:27;23729:18;;;23722:55;23794:18;;74962:117:0::1;23469:349:1::0;74962:117:0::1;75125:1;75112:10;:14;;;:57;;;;;75159:10;75147:22;;:9;:22;;;75112:57;:110;;;;;75212:10;75190:32;;:19;:32;;;75112:110;75090:192;;;::::0;-1:-1:-1;;;75090:192:0;;21329:2:1;75090:192:0::1;::::0;::::1;21311:21:1::0;;;21348:18;;;21341:30;21407:34;21387:18;;;21380:62;21459:18;;75090:192:0::1;21127:356:1::0;75090:192:0::1;75308:239;::::0;;::::1;::::0;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;;::::1;;::::0;;::::1;::::0;;;;;::::1;::::0;;;;;;;;::::1;::::0;;;;;;;;;::::1;::::0;;;;;;;75295:10:::1;:252:::0;;-1:-1:-1;;75295:252:0;;;;;::::1;;::::0;;;;::::1;::::0;;;;;::::1;;::::0;::::1;-1:-1:-1::0;;;75295:252:0;::::1;;::::0;;75565:171;;5941:34:1;;;5991:18;;;5984:43;;;;6043:18;;;6036:43;;;;6095:18;;;6088:43;;;;6147:19;;;6140:44;;;;75565:171:0::1;::::0;5884:19:1;75565:171:0::1;;;;;;;74658:1086;;;;;74455:1289:::0;;;;;:::o;49726:104::-;49782:13;49815:7;49808:14;;;;;:::i;78610:1942::-;78725:11;;78702:20;78769:12;:10;:12::i;:::-;78747:34;-1:-1:-1;78792:20:0;78815:19;78829:5;78747:34;78815:19;:::i;:::-;78893:42;;;;;;;;78925:10;78893:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;78893:42:0;;;;;;;;78792;;-1:-1:-1;78946:108:0;;;;-1:-1:-1;;;78946:108:0;;24025:2:1;78946:108:0;;;24007:21:1;24064:2;24044:18;;;24037:30;24103:34;24083:18;;;24076:62;-1:-1:-1;;;24154:18:1;;;24147:31;24195:19;;78946:108:0;23823:397:1;78946:108:0;79089:8;;;;;-1:-1:-1;;;;;79089:8:0;79067:102;;;;-1:-1:-1;;;79067:102:0;;13193:2:1;79067:102:0;;;13175:21:1;13232:2;13212:18;;;13205:30;13271:32;13251:18;;;13244:60;13321:18;;79067:102:0;12991:354:1;79067:102:0;79202:1;79188:11;:15;79180:61;;;;-1:-1:-1;;;79180:61:0;;13552:2:1;79180:61:0;;;13534:21:1;13591:2;13571:18;;;13564:30;13630:34;13610:18;;;13603:62;-1:-1:-1;;;13681:18:1;;;13674:31;13722:19;;79180:61:0;13350:397:1;79180:61:0;79268:1;79260:5;:9;79252:49;;;;-1:-1:-1;;;79252:49:0;;13954:2:1;79252:49:0;;;13936:21:1;13993:2;13973:18;;;13966:30;14032:29;14012:18;;;14005:57;14079:18;;79252:49:0;13752:351:1;79252:49:0;79353:21;;79334:40;;:15;:40;;79312:120;;;;-1:-1:-1;;;79312:120:0;;24427:2:1;79312:120:0;;;24409:21:1;24466:2;24446:18;;;24439:30;24505:32;24485:18;;;24478:60;24555:18;;79312:120:0;24225:354:1;79312:120:0;79535:11;:30;;;79516:49;;:15;:49;;:157;;79649:11;:24;;;79516:157;;;79593:11;:28;;;79516:157;79467:225;;:5;:225;;79445:314;;;;-1:-1:-1;;;79445:314:0;;24786:2:1;79445:314:0;;;24768:21:1;24825:2;24805:18;;;24798:30;24864:34;24844:18;;;24837:62;24935:9;24915:18;;;24908:37;24962:19;;79445:314:0;24584:403:1;79445:314:0;79816:9;79792:20;79807:5;79792:12;:20;:::i;:::-;:33;;79770:116;;;;-1:-1:-1;;;79770:116:0;;15390:2:1;79770:116:0;;;15372:21:1;15429:2;15409:18;;;15402:30;15468:34;15448:18;;;15441:62;-1:-1:-1;;;15519:18:1;;;15512:31;15560:19;;79770:116:0;15188:397:1;79770:116:0;79935:9;79919:12;:25;;79897:112;;;;-1:-1:-1;;;79897:112:0;;25194:2:1;79897:112:0;;;25176:21:1;25233:2;25213:18;;;25206:30;25272:34;25252:18;;;25245:62;25343:7;25323:18;;;25316:35;25368:19;;79897:112:0;24992:401:1;79897:112:0;80194:8;;:31;;:8;;;;-1:-1:-1;;;;;80194:8:0;;:31;;;;;;;;;;;;:8;:31;;;;;;;;;;;;;;;;;;;;;80255:9;80240:12;:24;80236:111;;;80289:10;80281:54;80310:24;80325:9;80310:12;:24;:::i;:::-;80281:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80236:111;80364:11;80359:110;80387:5;80381:3;:11;80359:110;;;80416:41;80426:10;80438:18;80453:3;80438:12;:18;:::i;80416:41::-;80394:5;;;;:::i;:::-;;;;80359:110;;;;80494:5;80479:11;;:20;;;;;;;:::i;:::-;;;;-1:-1:-1;;80517:27:0;;;80526:10;18072:74:1;;18177:2;18162:18;;18155:34;;;80517:27:0;;18045:18:1;80517:27:0;17898:297:1;51630:327:0;-1:-1:-1;;;;;51765:24:0;;9161:10;51765:24;;51757:62;;;;-1:-1:-1;;;51757:62:0;;25600:2:1;51757:62:0;;;25582:21:1;25639:2;25619:18;;;25612:30;25678:27;25658:18;;;25651:55;25723:18;;51757:62:0;25398:349:1;51757:62:0;9161:10;51832:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;51832:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;51832:53:0;;;;;;;;;;51901:48;;586:41:1;;;51832:42:0;;9161:10;51901:48;;559:18:1;51901:48:0;;;;;;;51630:327;;:::o;53012:365::-;53201:41;9161:10;53234:7;53201:18;:41::i;:::-;53179:140;;;;-1:-1:-1;;;53179:140:0;;18402:2:1;53179:140:0;;;18384:21:1;18441:2;18421:18;;;18414:30;18480:34;18460:18;;;18453:62;18551:19;18531:18;;;18524:47;18588:19;;53179:140:0;18200:413:1;53179:140:0;53330:39;53344:4;53350:2;53354:7;53363:5;53330:13;:39::i;:::-;53012:365;;;;:::o;49901:468::-;54989:4;55013:16;;;:7;:16;;;;;;50019:13;;-1:-1:-1;;;;;55013:16:0;50050:113;;;;-1:-1:-1;;;50050:113:0;;25954:2:1;50050:113:0;;;25936:21:1;25993:2;25973:18;;;25966:30;26032:34;26012:18;;;26005:62;26103:17;26083:18;;;26076:45;26138:19;;50050:113:0;25752:411:1;50050:113:0;50176:21;50200:10;:8;:10::i;:::-;50176:34;;50265:1;50247:7;50241:21;:25;:120;;;;;;;;;;;;;;;;;50310:7;50319:18;:7;:16;:18::i;:::-;50293:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50241:120;50221:140;49901:468;-1:-1:-1;;;49901:468:0:o;73374:301::-;19517:6;;-1:-1:-1;;;;;19517:6:0;9161:10;19664:23;19656:68;;;;-1:-1:-1;;;19656:68:0;;20613:2:1;19656:68:0;;;20595:21:1;;;20632:18;;;20625:30;20691:34;20671:18;;;20664:62;20743:18;;19656:68:0;20411:356:1;19656:68:0;73510:14:::1;:32:::0;;;73553:18:::1;:40:::0;;;73609:58:::1;::::0;;26817:25:1;;;26873:2;26858:18;;26851:34;;;73609:58:0::1;::::0;26790:18:1;73609:58:0::1;26643:248:1::0;72262:879:0;19517:6;;-1:-1:-1;;;;;19517:6:0;9161:10;19664:23;19656:68;;;;-1:-1:-1;;;19656:68:0;;20613:2:1;19656:68:0;;;20595:21:1;;;20632:18;;;20625:30;20691:34;20671:18;;;20664:62;20743:18;;19656:68:0;20411:356:1;19656:68:0;72396:11:::1;::::0;72428:17;;72420:61:::1;;;::::0;-1:-1:-1;;;72420:61:0;;13954:2:1;72420:61:0::1;::::0;::::1;13936:21:1::0;13993:2;13973:18;;;13966:30;14032:29;14012:18;;;14005:57;14079:18;;72420:61:0::1;13752:351:1::0;72420:61:0::1;72550:9;72529:10;:17;72514:12;:32;;;;:::i;:::-;:45;;72492:128;;;::::0;-1:-1:-1;;;72492:128:0;;15390:2:1;72492:128:0::1;::::0;::::1;15372:21:1::0;15429:2;15409:18;;;15402:30;15468:34;15448:18;;;15441:62;-1:-1:-1;;;15519:18:1;;;15512:31;15560:19;;72492:128:0::1;15188:397:1::0;72492:128:0::1;72693:12;72672:10;:17;72655:14;;:34;;;;:::i;:::-;:50;;72633:140;;;::::0;-1:-1:-1;;;72633:140:0;;22906:2:1;72633:140:0::1;::::0;::::1;22888:21:1::0;22945:2;22925:18;;;22918:30;22984:34;22964:18;;;22957:62;-1:-1:-1;;;23035:18:1;;;23028:38;23083:19;;72633:140:0::1;22704:404:1::0;72633:140:0::1;72802:10;:17;72784:14;;:35;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;72837:11:0::1;::::0;-1:-1:-1;72832:259:0::1;72860:10;:17;72854:3;:23;72832:259;;;72954:1;-1:-1:-1::0;;;;;72927:29:0::1;:10;72938:3;72927:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;72927:29:0::1;;;72901:117;;;::::0;-1:-1:-1;;;72901:117:0;;20974:2:1;72901:117:0::1;::::0;::::1;20956:21:1::0;21013:2;20993:18;;;20986:30;21052:28;21032:18;;;21025:56;21098:18;;72901:117:0::1;20772:350:1::0;72901:117:0::1;73033:46;73043:10;73054:3;73043:15;;;;;;;;:::i;:::-;;;;;;;73075:3;73060:12;:18;;;;:::i;73033:46::-;72879:5:::0;::::1;::::0;::::1;:::i;:::-;;;;72832:259;;;;73116:10;:17;73101:11;;:32;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;72262:879:0:o;75927:148::-;19517:6;;-1:-1:-1;;;;;19517:6:0;9161:10;19664:23;19656:68;;;;-1:-1:-1;;;19656:68:0;;20613:2:1;19656:68:0;;;20595:21:1;;;20632:18;;;20625:30;20691:34;20671:18;;;20664:62;20743:18;;19656:68:0;20411:356:1;19656:68:0;76005:8:::1;:20:::0;;;::::1;;-1:-1:-1::0;;;;;76005:20:0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;76041:26:::1;::::0;1720:74:1;;;76041:26:0::1;::::0;1708:2:1;1693:18;76041:26:0::1;1574:226:1::0;20344:229:0;19517:6;;-1:-1:-1;;;;;19517:6:0;9161:10;19664:23;19656:68;;;;-1:-1:-1;;;19656:68:0;;20613:2:1;19656:68:0;;;20595:21:1;;;20632:18;;;20625:30;20691:34;20671:18;;;20664:62;20743:18;;19656:68:0;20411:356:1;19656:68:0;-1:-1:-1;;;;;20447:22:0;::::1;20425:110;;;::::0;-1:-1:-1;;;20425:110:0;;27337:2:1;20425:110:0::1;::::0;::::1;27319:21:1::0;27376:2;27356:18;;;27349:30;27415:34;27395:18;;;27388:62;27486:8;27466:18;;;27459:36;27512:19;;20425:110:0::1;27135:402:1::0;20425:110:0::1;20546:19;20556:8;20546:9;:19::i;48388:355::-:0;48535:4;-1:-1:-1;;;;;;48577:40:0;;48592:25;48577:40;;:105;;-1:-1:-1;;;;;;;48634:48:0;;48649:33;48634:48;48577:105;:158;;;-1:-1:-1;45639:25:0;-1:-1:-1;;;;;;45624:40:0;;;48699:36;45465:207;59047:174;59122:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;59122:29:0;-1:-1:-1;;;;;59122:29:0;;;;;;;;:24;;59176:23;59122:24;59176:14;:23::i;:::-;-1:-1:-1;;;;;59167:46:0;;;;;;;;;;;59047:174;;:::o;13566:263::-;13671:7;13697:17;13716:18;13738:27;13749:4;13755:9;13738:10;:27::i;:::-;13696:69;;;;13776:18;13788:5;13776:11;:18::i;:::-;-1:-1:-1;13812:9:0;13566:263;-1:-1:-1;;;13566:263:0:o;56012:110::-;56088:26;56098:2;56102:7;56088:26;;;;;;;;;;;;:9;:26::i;:::-;56012:110;;:::o;55218:452::-;55347:4;55013:16;;;:7;:16;;;;;;-1:-1:-1;;;;;55013:16:0;55369:110;;;;-1:-1:-1;;;55369:110:0;;27744:2:1;55369:110:0;;;27726:21:1;27783:2;27763:18;;;27756:30;27822:34;27802:18;;;27795:62;27893:14;27873:18;;;27866:42;27925:19;;55369:110:0;27542:408:1;55369:110:0;55490:13;55506:23;55521:7;55506:14;:23::i;:::-;55490:39;;55559:5;-1:-1:-1;;;;;55548:16:0;:7;-1:-1:-1;;;;;55548:16:0;;:64;;;;55605:7;-1:-1:-1;;;;;55581:31:0;:20;55593:7;55581:11;:20::i;:::-;-1:-1:-1;;;;;55581:31:0;;55548:64;:113;;;-1:-1:-1;;;;;;52199:25:0;;;52170:4;52199:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;55629:32;55540:122;55218:452;-1:-1:-1;;;;55218:452:0:o;58314:615::-;58487:4;-1:-1:-1;;;;;58460:31:0;:23;58475:7;58460:14;:23::i;:::-;-1:-1:-1;;;;;58460:31:0;;58438:122;;;;-1:-1:-1;;;58438:122:0;;28157:2:1;58438:122:0;;;28139:21:1;28196:2;28176:18;;;28169:30;28235:34;28215:18;;;28208:62;28306:11;28286:18;;;28279:39;28335:19;;58438:122:0;27955:405:1;58438:122:0;-1:-1:-1;;;;;58579:16:0;;58571:65;;;;-1:-1:-1;;;58571:65:0;;28567:2:1;58571:65:0;;;28549:21:1;28606:2;28586:18;;;28579:30;28645:34;28625:18;;;28618:62;28716:6;28696:18;;;28689:34;28740:19;;58571:65:0;28365:400:1;58571:65:0;58649:39;58670:4;58676:2;58680:7;58649:20;:39::i;:::-;58753:29;58770:1;58774:7;58753:8;:29::i;:::-;-1:-1:-1;;;;;58795:15:0;;;;;;:9;:15;;;;;:20;;58814:1;;58795:15;:20;;58814:1;;58795:20;:::i;:::-;;;;-1:-1:-1;;;;;;;58826:13:0;;;;;;:9;:13;;;;;:18;;58843:1;;58826:13;:18;;58843:1;;58826:18;:::i;:::-;;;;-1:-1:-1;;58855:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;58855:21:0;-1:-1:-1;;;;;58855:21:0;;;;;;;;;58894:27;;58855:16;;58894:27;;;;;;;58314:615;;;:::o;57617:360::-;57677:13;57693:23;57708:7;57693:14;:23::i;:::-;57677:39;;57729:48;57750:5;57765:1;57769:7;57729:20;:48::i;:::-;57818:29;57835:1;57839:7;57818:8;:29::i;:::-;-1:-1:-1;;;;;57860:16:0;;;;;;:9;:16;;;;;:21;;57880:1;;57860:16;:21;;57880:1;;57860:21;:::i;:::-;;;;-1:-1:-1;;57899:16:0;;;;:7;:16;;;;;;57892:23;;-1:-1:-1;;57892:23:0;;;57933:36;57907:7;;57899:16;-1:-1:-1;;;;;57933:36:0;;;;;57899:16;;57933:36;57666:311;57617:360;:::o;23923:227::-;23979:6;24029:16;24020:25;;;23998:113;;;;-1:-1:-1;;;23998:113:0;;28972:2:1;23998:113:0;;;28954:21:1;29011:2;28991:18;;;28984:30;29050:34;29030:18;;;29023:62;29121:8;29101:18;;;29094:36;29147:19;;23998:113:0;28770:402:1;23998:113:0;-1:-1:-1;24136:5:0;23923:227::o;20581:173::-;20656:6;;;-1:-1:-1;;;;;20673:17:0;;;-1:-1:-1;;20673:17:0;;;;;;;20706:40;;20656:6;;;20673:17;20656:6;;20706:40;;20637:16;;20706:40;20626:128;20581:173;:::o;32423:98::-;32481:7;32508:5;32512:1;32508;:5;:::i;32780:98::-;32838:7;32865:5;32869:1;32865;:5;:::i;33179:98::-;33237:7;33264:5;33268:1;33264;:5;:::i;54259:352::-;54416:28;54426:4;54432:2;54436:7;54416:9;:28::i;:::-;54477:48;54500:4;54506:2;54510:7;54519:5;54477:22;:48::i;:::-;54455:148;;;;-1:-1:-1;;;54455:148:0;;29693:2:1;54455:148:0;;;29675:21:1;29732:2;29712:18;;;29705:30;29771:34;29751:18;;;29744:62;29842:20;29822:18;;;29815:48;29880:19;;54455:148:0;29491:414:1;81924:100:0;81976:13;82009:7;82002:14;;;;;:::i;36433:723::-;36489:13;36710:10;36706:53;;-1:-1:-1;;36737:10:0;;;;;;;;;;;;;;;;;;36433:723::o;36706:53::-;36784:5;36769:12;36825:78;36832:9;;36825:78;;36858:8;;;;:::i;:::-;;-1:-1:-1;36881:10:0;;-1:-1:-1;36889:2:0;36881:10;;:::i;:::-;;;36825:78;;;36913:19;36945:6;36935:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36935:17:0;;36913:39;;36963:154;36970:10;;36963:154;;36997:11;37007:1;36997:11;;:::i;:::-;;-1:-1:-1;37066:10:0;37074:2;37066:5;:10;:::i;:::-;37053:24;;:2;:24;:::i;:::-;37040:39;;37023:6;37030;37023:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;37094:11:0;37103:2;37094:11;;:::i;:::-;;;36963:154;;11424:1340;11532:7;11541:12;11771:9;:16;11791:2;11771:22;11767:990;;;12067:4;12052:20;;12046:27;12117:4;12102:20;;12096:27;12175:4;12160:20;;12154:27;11810:9;12146:36;12218:25;12229:4;12146:36;12046:27;12096;12218:10;:25::i;:::-;12211:32;;;;;;;;;11767:990;12265:9;:16;12285:2;12265:22;12261:496;;;12540:4;12525:20;;12519:27;12591:4;12576:20;;12570:27;12633:23;12644:4;12519:27;12570;12633:10;:23::i;:::-;12626:30;;;;;;;;12261:496;-1:-1:-1;12705:1:0;;-1:-1:-1;12709:35:0;12261:496;11424:1340;;;;;:::o;9695:643::-;9773:20;9764:5;:29;;;;;;;;:::i;:::-;;9760:571;;;9695:643;:::o;9760:571::-;9871:29;9862:5;:38;;;;;;;;:::i;:::-;;9858:473;;;9917:34;;-1:-1:-1;;;9917:34:0;;30418:2:1;9917:34:0;;;30400:21:1;30457:2;30437:18;;;30430:30;30496:26;30476:18;;;30469:54;30540:18;;9917:34:0;30216:348:1;9858:473:0;9982:35;9973:5;:44;;;;;;;;:::i;:::-;;9969:362;;;10034:41;;-1:-1:-1;;;10034:41:0;;30771:2:1;10034:41:0;;;30753:21:1;30810:2;30790:18;;;30783:30;30849:33;30829:18;;;30822:61;30900:18;;10034:41:0;30569:355:1;9969:362:0;10106:30;10097:5;:39;;;;;;;;:::i;:::-;;10093:238;;;10153:44;;-1:-1:-1;;;10153:44:0;;31131:2:1;10153:44:0;;;31113:21:1;31170:2;31150:18;;;31143:30;31209:34;31189:18;;;31182:62;-1:-1:-1;;;31260:18:1;;;31253:32;31302:19;;10153:44:0;30929:398:1;10093:238:0;10228:30;10219:5;:39;;;;;;;;:::i;:::-;;10215:116;;;10275:44;;-1:-1:-1;;;10275:44:0;;31534:2:1;10275:44:0;;;31516:21:1;31573:2;31553:18;;;31546:30;31612:34;31592:18;;;31585:62;-1:-1:-1;;;31663:18:1;;;31656:32;31705:19;;10275:44:0;31332:398:1;56349:321:0;56479:18;56485:2;56489:7;56479:5;:18::i;:::-;56530:54;56561:1;56565:2;56569:7;56578:5;56530:22;:54::i;:::-;56508:154;;;;-1:-1:-1;;;56508:154:0;;29693:2:1;56508:154:0;;;29675:21:1;29732:2;29712:18;;;29705:30;29771:34;29751:18;;;29744:62;29842:20;29822:18;;;29815:48;29880:19;;56508:154:0;29491:414:1;64211:589:0;-1:-1:-1;;;;;64417:18:0;;64413:187;;64452:40;64484:7;65627:10;:17;;65600:24;;;;:15;:24;;;;;:44;;;65655:24;;;;;;;;;;;;65523:164;64452:40;64413:187;;;64522:2;-1:-1:-1;;;;;64514:10:0;:4;-1:-1:-1;;;;;64514:10:0;;64510:90;;64541:47;64574:4;64580:7;64541:32;:47::i;:::-;-1:-1:-1;;;;;64614:16:0;;64610:183;;64647:45;64684:7;64647:36;:45::i;64610:183::-;64720:4;-1:-1:-1;;;;;64714:10:0;:2;-1:-1:-1;;;;;64714:10:0;;64710:83;;64741:40;64769:2;64773:7;64741:27;:40::i;59786:980::-;59941:4;-1:-1:-1;;;;;59962:13:0;;1066:20;1114:8;59958:801;;60015:175;;-1:-1:-1;;;60015:175:0;;-1:-1:-1;;;;;60015:36:0;;;;;:175;;9161:10;;60109:4;;60136:7;;60166:5;;60015:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60015:175:0;;;;;;;;-1:-1:-1;;60015:175:0;;;;;;;;;;;;:::i;:::-;;;59994:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60373:13:0;;60369:320;;60416:108;;-1:-1:-1;;;60416:108:0;;29693:2:1;60416:108:0;;;29675:21:1;29732:2;29712:18;;;29705:30;29771:34;29751:18;;;29744:62;29842:20;29822:18;;;29815:48;29880:19;;60416:108:0;29491:414:1;60369:320:0;60639:6;60633:13;60624:6;60620:2;60616:15;60609:38;59994:710;-1:-1:-1;;;;;;60254:51:0;-1:-1:-1;;;60254:51:0;;-1:-1:-1;60247:58:0;;59958:801;-1:-1:-1;60743:4:0;59786:980;;;;;;:::o;15146:1669::-;15277:7;;16238:66;16212:92;;16194:200;;;-1:-1:-1;16347:1:0;;-1:-1:-1;16351:30:0;16331:51;;16194:200;16408:1;:7;;16413:2;16408:7;;:18;;;;;16419:1;:7;;16424:2;16419:7;;16408:18;16404:102;;;-1:-1:-1;16459:1:0;;-1:-1:-1;16463:30:0;16443:51;;16404:102;16620:24;;;16603:14;16620:24;;;;;;;;;32733:25:1;;;32806:4;32794:17;;32774:18;;;32767:45;;;;32828:18;;;32821:34;;;32871:18;;;32864:34;;;16620:24:0;;32705:19:1;;16620:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;16620:24:0;;-1:-1:-1;;16620:24:0;;;-1:-1:-1;;;;;;;16659:20:0;;16655:103;;16712:1;16716:29;16696:50;;;;;;;16655:103;16778:6;-1:-1:-1;16786:20:0;;-1:-1:-1;15146:1669:0;;;;;;;;:::o;14092:440::-;14206:7;;14350:66;14307:124;;14458:3;14454:12;;;14468:2;14450:21;14499:25;14510:4;14450:21;14519:1;14307:124;14499:10;:25::i;:::-;14492:32;;;;;;14092:440;;;;;;:::o;57006:382::-;-1:-1:-1;;;;;57086:16:0;;57078:61;;;;-1:-1:-1;;;57078:61:0;;33111:2:1;57078:61:0;;;33093:21:1;;;33130:18;;;33123:30;33189:34;33169:18;;;33162:62;33241:18;;57078:61:0;32909:356:1;57078:61:0;54989:4;55013:16;;;:7;:16;;;;;;-1:-1:-1;;;;;55013:16:0;:30;57150:58;;;;-1:-1:-1;;;57150:58:0;;33472:2:1;57150:58:0;;;33454:21:1;33511:2;33491:18;;;33484:30;33550;33530:18;;;33523:58;33598:18;;57150:58:0;33270:352:1;57150:58:0;57221:45;57250:1;57254:2;57258:7;57221:20;:45::i;:::-;-1:-1:-1;;;;;57279:13:0;;;;;;:9;:13;;;;;:18;;57296:1;;57279:13;:18;;57296:1;;57279:18;:::i;:::-;;;;-1:-1:-1;;57308:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;57308:21:0;-1:-1:-1;;;;;57308:21:0;;;;;;;;57347:33;;57308:16;;;57347:33;;57308:16;;57347:33;57006:382;;:::o;66314:1002::-;66594:22;66644:1;66619:22;66636:4;66619:16;:22::i;:::-;:26;;;;:::i;:::-;66656:18;66677:26;;;:17;:26;;;;;;66594:51;;-1:-1:-1;66810:28:0;;;66806:328;;-1:-1:-1;;;;;66877:18:0;;66855:19;66877:18;;;:12;:18;;;;;;;;:34;;;;;;;;;66928:30;;;;;;:44;;;67045:30;;:17;:30;;;;;:43;;;66806:328;-1:-1:-1;67230:26:0;;;;:17;:26;;;;;;;;67223:33;;;-1:-1:-1;;;;;67274:18:0;;;;;:12;:18;;;;;:34;;;;;;;67267:41;66314:1002::o;67611:1079::-;67889:10;:17;67864:22;;67889:21;;67909:1;;67889:21;:::i;:::-;67921:18;67942:24;;;:15;:24;;;;;;68315:10;:26;;67864:46;;-1:-1:-1;67942:24:0;;67864:46;;68315:26;;;;;;:::i;:::-;;;;;;;;;68293:48;;68379:11;68354:10;68365;68354:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;68459:28;;;:15;:28;;;;;;;:41;;;68631:24;;;;;68624:31;68666:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;67682:1008;;;67611:1079;:::o;65101:221::-;65186:14;65203:20;65220:2;65203:16;:20::i;:::-;-1:-1:-1;;;;;65234:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;65279:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;65101:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:177:1;-1:-1:-1;;;;;;92:5:1;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:258::-;710:1;720:113;734:6;731:1;728:13;720:113;;;810:11;;;804:18;791:11;;;784:39;756:2;749:10;720:113;;;851:6;848:1;845:13;842:48;;;-1:-1:-1;;886:1:1;868:16;;861:27;638:258::o;901:::-;943:3;981:5;975:12;1008:6;1003:3;996:19;1024:63;1080:6;1073:4;1068:3;1064:14;1057:4;1050:5;1046:16;1024:63;:::i;:::-;1141:2;1120:15;-1:-1:-1;;1116:29:1;1107:39;;;;1148:4;1103:50;;901:258;-1:-1:-1;;901:258:1:o;1164:220::-;1313:2;1302:9;1295:21;1276:4;1333:45;1374:2;1363:9;1359:18;1351:6;1333:45;:::i;1389:180::-;1448:6;1501:2;1489:9;1480:7;1476:23;1472:32;1469:52;;;1517:1;1514;1507:12;1469:52;-1:-1:-1;1540:23:1;;1389:180;-1:-1:-1;1389:180:1:o;1805:154::-;-1:-1:-1;;;;;1884:5:1;1880:54;1873:5;1870:65;1860:93;;1949:1;1946;1939:12;1964:315;2032:6;2040;2093:2;2081:9;2072:7;2068:23;2064:32;2061:52;;;2109:1;2106;2099:12;2061:52;2148:9;2135:23;2167:31;2192:5;2167:31;:::i;:::-;2217:5;2269:2;2254:18;;;;2241:32;;-1:-1:-1;;;1964:315:1:o;2466:347::-;2517:8;2527:6;2581:3;2574:4;2566:6;2562:17;2558:27;2548:55;;2599:1;2596;2589:12;2548:55;-1:-1:-1;2622:20:1;;2665:18;2654:30;;2651:50;;;2697:1;2694;2687:12;2651:50;2734:4;2726:6;2722:17;2710:29;;2786:3;2779:4;2770:6;2762;2758:19;2754:30;2751:39;2748:59;;;2803:1;2800;2793:12;2818:545;2906:6;2914;2922;2930;2983:2;2971:9;2962:7;2958:23;2954:32;2951:52;;;2999:1;2996;2989:12;2951:52;3035:9;3022:23;3012:33;;3092:2;3081:9;3077:18;3064:32;3054:42;;3147:2;3136:9;3132:18;3119:32;3174:18;3166:6;3163:30;3160:50;;;3206:1;3203;3196:12;3160:50;3245:58;3295:7;3286:6;3275:9;3271:22;3245:58;:::i;:::-;2818:545;;;;-1:-1:-1;3322:8:1;-1:-1:-1;;;;2818:545:1:o;3368:456::-;3445:6;3453;3461;3514:2;3502:9;3493:7;3489:23;3485:32;3482:52;;;3530:1;3527;3520:12;3482:52;3569:9;3556:23;3588:31;3613:5;3588:31;:::i;:::-;3638:5;-1:-1:-1;3695:2:1;3680:18;;3667:32;3708:33;3667:32;3708:33;:::i;:::-;3368:456;;3760:7;;-1:-1:-1;;;3814:2:1;3799:18;;;;3786:32;;3368:456::o;4011:383::-;4088:6;4096;4104;4157:2;4145:9;4136:7;4132:23;4128:32;4125:52;;;4173:1;4170;4163:12;4125:52;4212:9;4199:23;4231:31;4256:5;4231:31;:::i;:::-;4281:5;4333:2;4318:18;;4305:32;;-1:-1:-1;4384:2:1;4369:18;;;4356:32;;4011:383;-1:-1:-1;;;4011:383:1:o;4399:410::-;4470:6;4478;4531:2;4519:9;4510:7;4506:23;4502:32;4499:52;;;4547:1;4544;4537:12;4499:52;4587:9;4574:23;4620:18;4612:6;4609:30;4606:50;;;4652:1;4649;4642:12;4606:50;4691:58;4741:7;4732:6;4721:9;4717:22;4691:58;:::i;:::-;4768:8;;4665:84;;-1:-1:-1;4399:410:1;-1:-1:-1;;;;4399:410:1:o;5061:160::-;5126:20;;5182:13;;5175:21;5165:32;;5155:60;;5211:1;5208;5201:12;5155:60;5061:160;;;:::o;5226:180::-;5282:6;5335:2;5323:9;5314:7;5310:23;5306:32;5303:52;;;5351:1;5348;5341:12;5303:52;5374:26;5390:9;5374:26;:::i;5411:247::-;5470:6;5523:2;5511:9;5502:7;5498:23;5494:32;5491:52;;;5539:1;5536;5529:12;5491:52;5578:9;5565:23;5597:31;5622:5;5597:31;:::i;6195:454::-;6290:6;6298;6306;6314;6322;6375:3;6363:9;6354:7;6350:23;6346:33;6343:53;;;6392:1;6389;6382:12;6343:53;-1:-1:-1;;6415:23:1;;;6485:2;6470:18;;6457:32;;-1:-1:-1;6536:2:1;6521:18;;6508:32;;6587:2;6572:18;;6559:32;;-1:-1:-1;6638:3:1;6623:19;6610:33;;-1:-1:-1;6195:454:1;-1:-1:-1;6195:454:1:o;6654:315::-;6719:6;6727;6780:2;6768:9;6759:7;6755:23;6751:32;6748:52;;;6796:1;6793;6786:12;6748:52;6835:9;6822:23;6854:31;6879:5;6854:31;:::i;:::-;6904:5;-1:-1:-1;6928:35:1;6959:2;6944:18;;6928:35;:::i;:::-;6918:45;;6654:315;;;;;:::o;6974:184::-;-1:-1:-1;;;7023:1:1;7016:88;7123:4;7120:1;7113:15;7147:4;7144:1;7137:15;7163:275;7234:2;7228:9;7299:2;7280:13;;-1:-1:-1;;7276:27:1;7264:40;;7334:18;7319:34;;7355:22;;;7316:62;7313:88;;;7381:18;;:::i;:::-;7417:2;7410:22;7163:275;;-1:-1:-1;7163:275:1:o;7443:1108::-;7538:6;7546;7554;7562;7615:3;7603:9;7594:7;7590:23;7586:33;7583:53;;;7632:1;7629;7622:12;7583:53;7671:9;7658:23;7690:31;7715:5;7690:31;:::i;:::-;7740:5;-1:-1:-1;7764:2:1;7803:18;;;7790:32;7831:33;7790:32;7831:33;:::i;:::-;7883:7;-1:-1:-1;7937:2:1;7922:18;;7909:32;;-1:-1:-1;7992:2:1;7977:18;;7964:32;8015:18;8045:14;;;8042:34;;;8072:1;8069;8062:12;8042:34;8110:6;8099:9;8095:22;8085:32;;8155:7;8148:4;8144:2;8140:13;8136:27;8126:55;;8177:1;8174;8167:12;8126:55;8213:2;8200:16;8235:2;8231;8228:10;8225:36;;;8241:18;;:::i;:::-;8283:53;8326:2;8307:13;;-1:-1:-1;;8303:27:1;8299:36;;8283:53;:::i;:::-;8270:66;;8359:2;8352:5;8345:17;8399:7;8394:2;8389;8385;8381:11;8377:20;8374:33;8371:53;;;8420:1;8417;8410:12;8371:53;8475:2;8470;8466;8462:11;8457:2;8450:5;8446:14;8433:45;8519:1;8514:2;8509;8502:5;8498:14;8494:23;8487:34;;8540:5;8530:15;;;;;7443:1108;;;;;;;:::o;8556:248::-;8624:6;8632;8685:2;8673:9;8664:7;8660:23;8656:32;8653:52;;;8701:1;8698;8691:12;8653:52;-1:-1:-1;;8724:23:1;;;8794:2;8779:18;;;8766:32;;-1:-1:-1;8556:248:1:o;8809:1021::-;8893:6;8924:2;8967;8955:9;8946:7;8942:23;8938:32;8935:52;;;8983:1;8980;8973:12;8935:52;9023:9;9010:23;9052:18;9093:2;9085:6;9082:14;9079:34;;;9109:1;9106;9099:12;9079:34;9147:6;9136:9;9132:22;9122:32;;9192:7;9185:4;9181:2;9177:13;9173:27;9163:55;;9214:1;9211;9204:12;9163:55;9250:2;9237:16;9272:2;9268;9265:10;9262:36;;;9278:18;;:::i;:::-;9324:2;9321:1;9317:10;9307:20;;9347:28;9371:2;9367;9363:11;9347:28;:::i;:::-;9409:15;;;9479:11;;;9475:20;;;9440:12;;;;9507:19;;;9504:39;;;9539:1;9536;9529:12;9504:39;9563:11;;;;9583:217;9599:6;9594:3;9591:15;9583:217;;;9679:3;9666:17;9653:30;;9696:31;9721:5;9696:31;:::i;:::-;9740:18;;;9616:12;;;;9778;;;;9583:217;;;9819:5;8809:1021;-1:-1:-1;;;;;;;;8809:1021:1:o;9835:388::-;9903:6;9911;9964:2;9952:9;9943:7;9939:23;9935:32;9932:52;;;9980:1;9977;9970:12;9932:52;10019:9;10006:23;10038:31;10063:5;10038:31;:::i;:::-;10088:5;-1:-1:-1;10145:2:1;10130:18;;10117:32;10158:33;10117:32;10158:33;:::i;:::-;10210:7;10200:17;;;9835:388;;;;;:::o;10904:437::-;10983:1;10979:12;;;;11026;;;11047:61;;11101:4;11093:6;11089:17;11079:27;;11047:61;11154:2;11146:6;11143:14;11123:18;11120:38;11117:218;;;-1:-1:-1;;;11188:1:1;11181:88;11292:4;11289:1;11282:15;11320:4;11317:1;11310:15;11117:218;;10904:437;;;:::o;14866:184::-;-1:-1:-1;;;14915:1:1;14908:88;15015:4;15012:1;15005:15;15039:4;15036:1;15029:15;15055:128;15095:3;15126:1;15122:6;15119:1;15116:13;15113:39;;;15132:18;;:::i;:::-;-1:-1:-1;15168:9:1;;15055:128::o;15590:168::-;15630:7;15696:1;15692;15688:6;15684:14;15681:1;15678:21;15673:1;15666:9;15659:17;15655:45;15652:71;;;15703:18;;:::i;:::-;-1:-1:-1;15743:9:1;;15590:168::o;17758:135::-;17797:3;-1:-1:-1;;17818:17:1;;17815:43;;;17838:18;;:::i;:::-;-1:-1:-1;17885:1:1;17874:13;;17758:135::o;20222:184::-;-1:-1:-1;;;20271:1:1;20264:88;20371:4;20368:1;20361:15;20395:4;20392:1;20385:15;21488:390;21647:2;21636:9;21629:21;21686:6;21681:2;21670:9;21666:18;21659:34;21743:6;21735;21730:2;21719:9;21715:18;21702:48;21799:1;21770:22;;;21794:2;21766:31;;;21759:42;;;;21862:2;21841:15;;;-1:-1:-1;;21837:29:1;21822:45;21818:54;;21488:390;-1:-1:-1;21488:390:1:o;23113:221::-;23152:4;23181:10;23241;;;;23211;;23263:12;;;23260:38;;;23278:18;;:::i;:::-;23315:13;;23113:221;-1:-1:-1;;;23113:221:1:o;23339:125::-;23379:4;23407:1;23404;23401:8;23398:34;;;23412:18;;:::i;:::-;-1:-1:-1;23449:9:1;;23339:125::o;26168:470::-;26347:3;26385:6;26379:13;26401:53;26447:6;26442:3;26435:4;26427:6;26423:17;26401:53;:::i;:::-;26517:13;;26476:16;;;;26539:57;26517:13;26476:16;26573:4;26561:17;;26539:57;:::i;:::-;26612:20;;26168:470;-1:-1:-1;;;;26168:470:1:o;29177:184::-;-1:-1:-1;;;29226:1:1;29219:88;29326:4;29323:1;29316:15;29350:4;29347:1;29340:15;29366:120;29406:1;29432;29422:35;;29437:18;;:::i;:::-;-1:-1:-1;29471:9:1;;29366:120::o;29910:112::-;29942:1;29968;29958:35;;29973:18;;:::i;:::-;-1:-1:-1;30007:9:1;;29910:112::o;30027:184::-;-1:-1:-1;;;30076:1:1;30069:88;30176:4;30173:1;30166:15;30200:4;30197:1;30190:15;31735:512;31929:4;-1:-1:-1;;;;;32039:2:1;32031:6;32027:15;32016:9;32009:34;32091:2;32083:6;32079:15;32074:2;32063:9;32059:18;32052:43;;32131:6;32126:2;32115:9;32111:18;32104:34;32174:3;32169:2;32158:9;32154:18;32147:31;32195:46;32236:3;32225:9;32221:19;32213:6;32195:46;:::i;:::-;32187:54;31735:512;-1:-1:-1;;;;;;31735:512:1:o;32252:249::-;32321:6;32374:2;32362:9;32353:7;32349:23;32345:32;32342:52;;;32390:1;32387;32380:12;32342:52;32422:9;32416:16;32441:30;32465:5;32441:30;:::i;33627:184::-;-1:-1:-1;;;33676:1:1;33669:88;33776:4;33773:1;33766:15;33800:4;33797:1;33790:15

Swarm Source

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