ETH Price: $2,378.83 (+0.45%)

Token

HotDoge.lol (HOTDOGE)
 

Overview

Max Total Supply

327 HOTDOGE

Holders

126

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 HOTDOGE
0xfc914920202AdF1E309425906BE03c8eD8206051
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:
HotDogeNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-05
*/

//──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
//─██████──██████─██████████████─██████████████─████████████───██████████████─██████████████─██████████████────────██████─────────██████████████─██████─────────
//─██░░██──██░░██─██░░░░░░░░░░██─██░░░░░░░░░░██─██░░░░░░░░████─██░░░░░░░░░░██─██░░░░░░░░░░██─██░░░░░░░░░░██────────██░░██─────────██░░░░░░░░░░██─██░░██─────────
//─██░░██──██░░██─██░░██████░░██─██████░░██████─██░░████░░░░██─██░░██████░░██─██░░██████████─██░░██████████────────██░░██─────────██░░██████░░██─██░░██─────────
//─██░░██──██░░██─██░░██──██░░██─────██░░██─────██░░██──██░░██─██░░██──██░░██─██░░██─────────██░░██────────────────██░░██─────────██░░██──██░░██─██░░██─────────
//─██░░██████░░██─██░░██──██░░██─────██░░██─────██░░██──██░░██─██░░██──██░░██─██░░██─────────██░░██████████────────██░░██─────────██░░██──██░░██─██░░██─────────
//─██░░░░░░░░░░██─██░░██──██░░██─────██░░██─────██░░██──██░░██─██░░██──██░░██─██░░██──██████─██░░░░░░░░░░██────────██░░██─────────██░░██──██░░██─██░░██─────────
//─██░░██████░░██─██░░██──██░░██─────██░░██─────██░░██──██░░██─██░░██──██░░██─██░░██──██░░██─██░░██████████────────██░░██─────────██░░██──██░░██─██░░██─────────
//─██░░██──██░░██─██░░██──██░░██─────██░░██─────██░░██──██░░██─██░░██──██░░██─██░░██──██░░██─██░░██────────────────██░░██─────────██░░██──██░░██─██░░██─────────
//─██░░██──██░░██─██░░██████░░██─────██░░██─────██░░████░░░░██─██░░██████░░██─██░░██████░░██─██░░██████████─██████─██░░██████████─██░░██████░░██─██░░██████████─
//─██░░██──██░░██─██░░░░░░░░░░██─────██░░██─────██░░░░░░░░████─██░░░░░░░░░░██─██░░░░░░░░░░██─██░░░░░░░░░░██─██░░██─██░░░░░░░░░░██─██░░░░░░░░░░██─██░░░░░░░░░░██─
//─██████──██████─██████████████─────██████─────████████████───██████████████─██████████████─██████████████─██████─██████████████─██████████████─██████████████─
//──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @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);
    }
}
// File: ECDSA.sol


// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;


/**
 * @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 = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 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 Message, created from `s`. 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(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @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));
    }
}
// File: Context.sol



pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
// File: Ownable.sol



pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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);
    }
}
// File: Address.sol



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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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);
            }
        }
    }
}
// File: Payment.sol


// OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;



/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract Payment is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }


    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }


    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + totalReleased();
        uint256 payment = _pendingPayment(account, totalReceived, released(account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] += payment;
        _totalReleased += payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }


    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}
// File: IERC721Receiver.sol



pragma solidity ^0.8.0;

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



pragma solidity ^0.8.0;

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



pragma solidity ^0.8.0;


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



pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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;
}
// File: IERC721Enumerable.sol



pragma solidity ^0.8.0;


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

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 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);
}
// File: IERC721Metadata.sol



pragma solidity ^0.8.0;


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

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

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


pragma solidity ^0.8.0;









contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: 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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

pragma solidity ^0.8.2;

contract HotDogeNFT is ERC721A, Ownable, ReentrancyGuard {  
    using Strings for uint256;
    string public _sausagelink;
    bool public grill = false;
    uint256 public hotdoges = 10000;
    uint256 public coalhotdoge = 1; 
    mapping(address => uint256) public howmanyhotdoges;
   
	constructor() ERC721A("HotDoge.lol", "HOTDOGE") {}

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

 	function grillhotdoge() external nonReentrant {
  	    uint256 totalhotdoges = totalSupply();
        require(grill);
        require(totalhotdoges + coalhotdoge <= hotdoges);
        require(msg.sender == tx.origin);
    	require(howmanyhotdoges[msg.sender] < coalhotdoge);
        _safeMint(msg.sender, coalhotdoge);
        howmanyhotdoges[msg.sender] += coalhotdoge;
    }

    

 	function makehotdogegrill(address cook, uint256 _hotdoges) public onlyOwner {
  	    uint256 totalhotdoges = totalSupply();
	    require(totalhotdoges + _hotdoges <= hotdoges);
        _safeMint(cook, _hotdoges);
    }

    function makehotdogegrill(bool _coal) external onlyOwner {
        grill = _coal;
    }

    function spredhotdoges(uint256 _coalhotdoge) external onlyOwner {
        coalhotdoge = _coalhotdoge;
    }

    function makehotdogehavesausage(string memory sausage) external onlyOwner {
        _sausagelink = sausage;
    }
  
    function sumthinboutfunds() public payable onlyOwner {
	(bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
		require(success);
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_sausagelink","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"coalhotdoge","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"grill","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"grillhotdoge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hotdoges","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"howmanyhotdoges","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"cook","type":"address"},{"internalType":"uint256","name":"_hotdoges","type":"uint256"}],"name":"makehotdogegrill","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_coal","type":"bool"}],"name":"makehotdogegrill","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"sausage","type":"string"}],"name":"makehotdogehavesausage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_coalhotdoge","type":"uint256"}],"name":"spredhotdoges","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sumthinboutfunds","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600a805460ff19169055612710600b556001600c553480156200002657600080fd5b50604080518082018252600b81526a121bdd111bd9d94b9b1bdb60aa1b602080830191825283518085019094526007845266484f54444f474560c81b90840152815191929162000079916001916200010d565b5080516200008f9060029060208401906200010d565b505050620000ac620000a6620000b760201b60201c565b620000bb565b6001600855620001f0565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011b90620001b3565b90600052602060002090601f0160209004810192826200013f57600085556200018a565b82601f106200015a57805160ff19168380011785556200018a565b828001600101855582156200018a579182015b828111156200018a5782518255916020019190600101906200016d565b50620001989291506200019c565b5090565b5b808211156200019857600081556001016200019d565b600181811c90821680620001c857607f821691505b60208210811415620001ea57634e487b7160e01b600052602260045260246000fd5b50919050565b611ec680620002006000396000f3fe6080604052600436106101cd5760003560e01c806370a08231116100f757806398e6eec311610095578063c911541611610064578063c9115416146104fe578063e50c45ed14610513578063e985e9c514610533578063f2fde38b1461057c57600080fd5b806398e6eec314610488578063a22cb4651461049e578063b88d4fde146104be578063c87b56dd146104de57600080fd5b80638da5cb5b116100d15780638da5cb5b1461041f578063944dce841461043d5780639566323c1461045d57806395d89b411461047357600080fd5b806370a08231146103ca578063715018a6146103ea578063782ef885146103ff57600080fd5b806323b872dd1161016f57806342842e0e1161013e57806342842e0e146103505780634f6ccce7146103705780635352670c146103905780636352211e146103aa57600080fd5b806323b872dd146102f35780632f745c59146103135780632fbd08301461033357806333958a181461034857600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806315dbad8d1461028357806318160ddd146102be5780631fac5e2e146102d357600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611b7a565b61059c565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c610609565b6040516101fe9190611cae565b34801561023557600080fd5b50610249610244366004611bfd565b61069b565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611b35565b61072b565b005b34801561028f57600080fd5b506102b061029e366004611a05565b600d6020526000908152604090205481565b6040519081526020016101fe565b3480156102ca57600080fd5b506000546102b0565b3480156102df57600080fd5b506102816102ee366004611bfd565b610843565b3480156102ff57600080fd5b5061028161030e366004611a53565b610872565b34801561031f57600080fd5b506102b061032e366004611b35565b61087d565b34801561033f57600080fd5b506102816109da565b610281610ac3565b34801561035c57600080fd5b5061028161036b366004611a53565b610b45565b34801561037c57600080fd5b506102b061038b366004611bfd565b610b60565b34801561039c57600080fd5b50600a546101f29060ff1681565b3480156103b657600080fd5b506102496103c5366004611bfd565b610bc2565b3480156103d657600080fd5b506102b06103e5366004611a05565b610bd4565b3480156103f657600080fd5b50610281610c65565b34801561040b57600080fd5b5061028161041a366004611b35565b610c9b565b34801561042b57600080fd5b506007546001600160a01b0316610249565b34801561044957600080fd5b50610281610458366004611b5f565b610cea565b34801561046957600080fd5b506102b0600c5481565b34801561047f57600080fd5b5061021c610d27565b34801561049457600080fd5b506102b0600b5481565b3480156104aa57600080fd5b506102816104b9366004611b0b565b610d36565b3480156104ca57600080fd5b506102816104d9366004611a8f565b610dfb565b3480156104ea57600080fd5b5061021c6104f9366004611bfd565b610e34565b34801561050a57600080fd5b5061021c610f02565b34801561051f57600080fd5b5061028161052e366004611bb4565b610f90565b34801561053f57600080fd5b506101f261054e366004611a20565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561058857600080fd5b50610281610597366004611a05565b610fd1565b60006001600160e01b031982166380ac58cd60e01b14806105cd57506001600160e01b03198216635b5e139f60e01b145b806105e857506001600160e01b0319821663780e9d6360e01b145b8061060357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461061890611db8565b80601f016020809104026020016040519081016040528092919081815260200182805461064490611db8565b80156106915780601f1061066657610100808354040283529160200191610691565b820191906000526020600020905b81548152906001019060200180831161067457829003601f168201915b5050505050905090565b60006106a8826000541190565b61070f5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061073682610bc2565b9050806001600160a01b0316836001600160a01b031614156107a55760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610706565b336001600160a01b03821614806107c157506107c1813361054e565b6108335760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610706565b61083e838383611069565b505050565b6007546001600160a01b0316331461086d5760405162461bcd60e51b815260040161070690611cc1565b600c55565b61083e8383836110c5565b600061088883610bd4565b82106108e15760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610706565b600080549080805b8381101561097a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561093c57805192505b876001600160a01b0316836001600160a01b03161415610971578684141561096a5750935061060392505050565b6001909301925b506001016108e9565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610706565b60026008541415610a2d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610706565b6002600855600054600a5460ff16610a4457600080fd5b600b54600c54610a549083611d49565b1115610a5f57600080fd5b333214610a6b57600080fd5b600c54336000908152600d602052604090205410610a8857600080fd5b610a9433600c546113aa565b600c54336000908152600d602052604081208054909190610ab6908490611d49565b9091555050600160085550565b6007546001600160a01b03163314610aed5760405162461bcd60e51b815260040161070690611cc1565b604051600090339047908381818185875af1925050503d8060008114610b2f576040519150601f19603f3d011682016040523d82523d6000602084013e610b34565b606091505b5050905080610b4257600080fd5b50565b61083e83838360405180602001604052806000815250610dfb565b600080548210610bbe5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610706565b5090565b6000610bcd826113c4565b5192915050565b60006001600160a01b038216610c405760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610706565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610c8f5760405162461bcd60e51b815260040161070690611cc1565b610c99600061149b565b565b6007546001600160a01b03163314610cc55760405162461bcd60e51b815260040161070690611cc1565b600054600b54610cd58383611d49565b1115610ce057600080fd5b61083e83836113aa565b6007546001600160a01b03163314610d145760405162461bcd60e51b815260040161070690611cc1565b600a805460ff1916911515919091179055565b60606002805461061890611db8565b6001600160a01b038216331415610d8f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610706565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e068484846110c5565b610e12848484846114ed565b610e2e5760405162461bcd60e51b815260040161070690611cf6565b50505050565b6060610e41826000541190565b610ea55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610706565b6000610eaf6115fb565b9050805160001415610ed05760405180602001604052806000815250610efb565b80610eda8461160a565b604051602001610eeb929190611c42565b6040516020818303038152906040525b9392505050565b60098054610f0f90611db8565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3b90611db8565b8015610f885780601f10610f5d57610100808354040283529160200191610f88565b820191906000526020600020905b815481529060010190602001808311610f6b57829003601f168201915b505050505081565b6007546001600160a01b03163314610fba5760405162461bcd60e51b815260040161070690611cc1565b8051610fcd9060099060208401906118d3565b5050565b6007546001600160a01b03163314610ffb5760405162461bcd60e51b815260040161070690611cc1565b6001600160a01b0381166110605760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610706565b610b428161149b565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110d0826113c4565b80519091506000906001600160a01b0316336001600160a01b031614806111075750336110fc8461069b565b6001600160a01b0316145b8061111957508151611119903361054e565b9050806111835760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610706565b846001600160a01b031682600001516001600160a01b0316146111f75760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610706565b6001600160a01b03841661125b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610706565b61126b6000848460000151611069565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661136057611313816000541190565b15611360578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610fcd828260405180602001604052806000815250611708565b60408051808201909152600080825260208201526113e3826000541190565b6114425760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610706565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611491579392505050565b5060001901611444565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156115ef57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611531903390899088908890600401611c71565b602060405180830381600087803b15801561154b57600080fd5b505af192505050801561157b575060408051601f3d908101601f1916820190925261157891810190611b97565b60015b6115d5573d8080156115a9576040519150601f19603f3d011682016040523d82523d6000602084013e6115ae565b606091505b5080516115cd5760405162461bcd60e51b815260040161070690611cf6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115f3565b5060015b949350505050565b60606009805461061890611db8565b60608161162e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611658578061164281611df3565b91506116519050600a83611d61565b9150611632565b60008167ffffffffffffffff81111561167357611673611e64565b6040519080825280601f01601f19166020018201604052801561169d576020820181803683370190505b5090505b84156115f3576116b2600183611d75565b91506116bf600a86611e0e565b6116ca906030611d49565b60f81b8183815181106116df576116df611e4e565b60200101906001600160f81b031916908160001a905350611701600a86611d61565b94506116a1565b61083e83838360016000546001600160a01b0385166117735760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610706565b836117d15760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610706565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156118ca5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156118be576118a260008884886114ed565b6118be5760405162461bcd60e51b815260040161070690611cf6565b6001918201910161184f565b506000556113a3565b8280546118df90611db8565b90600052602060002090601f0160209004810192826119015760008555611947565b82601f1061191a57805160ff1916838001178555611947565b82800160010185558215611947579182015b8281111561194757825182559160200191906001019061192c565b50610bbe9291505b80821115610bbe576000815560010161194f565b600067ffffffffffffffff8084111561197e5761197e611e64565b604051601f8501601f19908116603f011681019082821181831017156119a6576119a6611e64565b816040528093508581528686860111156119bf57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146119f057600080fd5b919050565b803580151581146119f057600080fd5b600060208284031215611a1757600080fd5b610efb826119d9565b60008060408385031215611a3357600080fd5b611a3c836119d9565b9150611a4a602084016119d9565b90509250929050565b600080600060608486031215611a6857600080fd5b611a71846119d9565b9250611a7f602085016119d9565b9150604084013590509250925092565b60008060008060808587031215611aa557600080fd5b611aae856119d9565b9350611abc602086016119d9565b925060408501359150606085013567ffffffffffffffff811115611adf57600080fd5b8501601f81018713611af057600080fd5b611aff87823560208401611963565b91505092959194509250565b60008060408385031215611b1e57600080fd5b611b27836119d9565b9150611a4a602084016119f5565b60008060408385031215611b4857600080fd5b611b51836119d9565b946020939093013593505050565b600060208284031215611b7157600080fd5b610efb826119f5565b600060208284031215611b8c57600080fd5b8135610efb81611e7a565b600060208284031215611ba957600080fd5b8151610efb81611e7a565b600060208284031215611bc657600080fd5b813567ffffffffffffffff811115611bdd57600080fd5b8201601f81018413611bee57600080fd5b6115f384823560208401611963565b600060208284031215611c0f57600080fd5b5035919050565b60008151808452611c2e816020860160208601611d8c565b601f01601f19169290920160200192915050565b60008351611c54818460208801611d8c565b835190830190611c68818360208801611d8c565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ca490830184611c16565b9695505050505050565b602081526000610efb6020830184611c16565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008219821115611d5c57611d5c611e22565b500190565b600082611d7057611d70611e38565b500490565b600082821015611d8757611d87611e22565b500390565b60005b83811015611da7578181015183820152602001611d8f565b83811115610e2e5750506000910152565b600181811c90821680611dcc57607f821691505b60208210811415611ded57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611e0757611e07611e22565b5060010190565b600082611e1d57611e1d611e38565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b4257600080fdfea2646970667358221220d9609308ffaba579d1fd2cc54ceb364f8fd24a214042d8e54cab766ffd6e94bf64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c806370a08231116100f757806398e6eec311610095578063c911541611610064578063c9115416146104fe578063e50c45ed14610513578063e985e9c514610533578063f2fde38b1461057c57600080fd5b806398e6eec314610488578063a22cb4651461049e578063b88d4fde146104be578063c87b56dd146104de57600080fd5b80638da5cb5b116100d15780638da5cb5b1461041f578063944dce841461043d5780639566323c1461045d57806395d89b411461047357600080fd5b806370a08231146103ca578063715018a6146103ea578063782ef885146103ff57600080fd5b806323b872dd1161016f57806342842e0e1161013e57806342842e0e146103505780634f6ccce7146103705780635352670c146103905780636352211e146103aa57600080fd5b806323b872dd146102f35780632f745c59146103135780632fbd08301461033357806333958a181461034857600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806315dbad8d1461028357806318160ddd146102be5780631fac5e2e146102d357600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611b7a565b61059c565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c610609565b6040516101fe9190611cae565b34801561023557600080fd5b50610249610244366004611bfd565b61069b565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611b35565b61072b565b005b34801561028f57600080fd5b506102b061029e366004611a05565b600d6020526000908152604090205481565b6040519081526020016101fe565b3480156102ca57600080fd5b506000546102b0565b3480156102df57600080fd5b506102816102ee366004611bfd565b610843565b3480156102ff57600080fd5b5061028161030e366004611a53565b610872565b34801561031f57600080fd5b506102b061032e366004611b35565b61087d565b34801561033f57600080fd5b506102816109da565b610281610ac3565b34801561035c57600080fd5b5061028161036b366004611a53565b610b45565b34801561037c57600080fd5b506102b061038b366004611bfd565b610b60565b34801561039c57600080fd5b50600a546101f29060ff1681565b3480156103b657600080fd5b506102496103c5366004611bfd565b610bc2565b3480156103d657600080fd5b506102b06103e5366004611a05565b610bd4565b3480156103f657600080fd5b50610281610c65565b34801561040b57600080fd5b5061028161041a366004611b35565b610c9b565b34801561042b57600080fd5b506007546001600160a01b0316610249565b34801561044957600080fd5b50610281610458366004611b5f565b610cea565b34801561046957600080fd5b506102b0600c5481565b34801561047f57600080fd5b5061021c610d27565b34801561049457600080fd5b506102b0600b5481565b3480156104aa57600080fd5b506102816104b9366004611b0b565b610d36565b3480156104ca57600080fd5b506102816104d9366004611a8f565b610dfb565b3480156104ea57600080fd5b5061021c6104f9366004611bfd565b610e34565b34801561050a57600080fd5b5061021c610f02565b34801561051f57600080fd5b5061028161052e366004611bb4565b610f90565b34801561053f57600080fd5b506101f261054e366004611a20565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561058857600080fd5b50610281610597366004611a05565b610fd1565b60006001600160e01b031982166380ac58cd60e01b14806105cd57506001600160e01b03198216635b5e139f60e01b145b806105e857506001600160e01b0319821663780e9d6360e01b145b8061060357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461061890611db8565b80601f016020809104026020016040519081016040528092919081815260200182805461064490611db8565b80156106915780601f1061066657610100808354040283529160200191610691565b820191906000526020600020905b81548152906001019060200180831161067457829003601f168201915b5050505050905090565b60006106a8826000541190565b61070f5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061073682610bc2565b9050806001600160a01b0316836001600160a01b031614156107a55760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610706565b336001600160a01b03821614806107c157506107c1813361054e565b6108335760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610706565b61083e838383611069565b505050565b6007546001600160a01b0316331461086d5760405162461bcd60e51b815260040161070690611cc1565b600c55565b61083e8383836110c5565b600061088883610bd4565b82106108e15760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610706565b600080549080805b8381101561097a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561093c57805192505b876001600160a01b0316836001600160a01b03161415610971578684141561096a5750935061060392505050565b6001909301925b506001016108e9565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610706565b60026008541415610a2d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610706565b6002600855600054600a5460ff16610a4457600080fd5b600b54600c54610a549083611d49565b1115610a5f57600080fd5b333214610a6b57600080fd5b600c54336000908152600d602052604090205410610a8857600080fd5b610a9433600c546113aa565b600c54336000908152600d602052604081208054909190610ab6908490611d49565b9091555050600160085550565b6007546001600160a01b03163314610aed5760405162461bcd60e51b815260040161070690611cc1565b604051600090339047908381818185875af1925050503d8060008114610b2f576040519150601f19603f3d011682016040523d82523d6000602084013e610b34565b606091505b5050905080610b4257600080fd5b50565b61083e83838360405180602001604052806000815250610dfb565b600080548210610bbe5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610706565b5090565b6000610bcd826113c4565b5192915050565b60006001600160a01b038216610c405760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610706565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610c8f5760405162461bcd60e51b815260040161070690611cc1565b610c99600061149b565b565b6007546001600160a01b03163314610cc55760405162461bcd60e51b815260040161070690611cc1565b600054600b54610cd58383611d49565b1115610ce057600080fd5b61083e83836113aa565b6007546001600160a01b03163314610d145760405162461bcd60e51b815260040161070690611cc1565b600a805460ff1916911515919091179055565b60606002805461061890611db8565b6001600160a01b038216331415610d8f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610706565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e068484846110c5565b610e12848484846114ed565b610e2e5760405162461bcd60e51b815260040161070690611cf6565b50505050565b6060610e41826000541190565b610ea55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610706565b6000610eaf6115fb565b9050805160001415610ed05760405180602001604052806000815250610efb565b80610eda8461160a565b604051602001610eeb929190611c42565b6040516020818303038152906040525b9392505050565b60098054610f0f90611db8565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3b90611db8565b8015610f885780601f10610f5d57610100808354040283529160200191610f88565b820191906000526020600020905b815481529060010190602001808311610f6b57829003601f168201915b505050505081565b6007546001600160a01b03163314610fba5760405162461bcd60e51b815260040161070690611cc1565b8051610fcd9060099060208401906118d3565b5050565b6007546001600160a01b03163314610ffb5760405162461bcd60e51b815260040161070690611cc1565b6001600160a01b0381166110605760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610706565b610b428161149b565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110d0826113c4565b80519091506000906001600160a01b0316336001600160a01b031614806111075750336110fc8461069b565b6001600160a01b0316145b8061111957508151611119903361054e565b9050806111835760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610706565b846001600160a01b031682600001516001600160a01b0316146111f75760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610706565b6001600160a01b03841661125b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610706565b61126b6000848460000151611069565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661136057611313816000541190565b15611360578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610fcd828260405180602001604052806000815250611708565b60408051808201909152600080825260208201526113e3826000541190565b6114425760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610706565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611491579392505050565b5060001901611444565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156115ef57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611531903390899088908890600401611c71565b602060405180830381600087803b15801561154b57600080fd5b505af192505050801561157b575060408051601f3d908101601f1916820190925261157891810190611b97565b60015b6115d5573d8080156115a9576040519150601f19603f3d011682016040523d82523d6000602084013e6115ae565b606091505b5080516115cd5760405162461bcd60e51b815260040161070690611cf6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115f3565b5060015b949350505050565b60606009805461061890611db8565b60608161162e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611658578061164281611df3565b91506116519050600a83611d61565b9150611632565b60008167ffffffffffffffff81111561167357611673611e64565b6040519080825280601f01601f19166020018201604052801561169d576020820181803683370190505b5090505b84156115f3576116b2600183611d75565b91506116bf600a86611e0e565b6116ca906030611d49565b60f81b8183815181106116df576116df611e4e565b60200101906001600160f81b031916908160001a905350611701600a86611d61565b94506116a1565b61083e83838360016000546001600160a01b0385166117735760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610706565b836117d15760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610706565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156118ca5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156118be576118a260008884886114ed565b6118be5760405162461bcd60e51b815260040161070690611cf6565b6001918201910161184f565b506000556113a3565b8280546118df90611db8565b90600052602060002090601f0160209004810192826119015760008555611947565b82601f1061191a57805160ff1916838001178555611947565b82800160010185558215611947579182015b8281111561194757825182559160200191906001019061192c565b50610bbe9291505b80821115610bbe576000815560010161194f565b600067ffffffffffffffff8084111561197e5761197e611e64565b604051601f8501601f19908116603f011681019082821181831017156119a6576119a6611e64565b816040528093508581528686860111156119bf57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146119f057600080fd5b919050565b803580151581146119f057600080fd5b600060208284031215611a1757600080fd5b610efb826119d9565b60008060408385031215611a3357600080fd5b611a3c836119d9565b9150611a4a602084016119d9565b90509250929050565b600080600060608486031215611a6857600080fd5b611a71846119d9565b9250611a7f602085016119d9565b9150604084013590509250925092565b60008060008060808587031215611aa557600080fd5b611aae856119d9565b9350611abc602086016119d9565b925060408501359150606085013567ffffffffffffffff811115611adf57600080fd5b8501601f81018713611af057600080fd5b611aff87823560208401611963565b91505092959194509250565b60008060408385031215611b1e57600080fd5b611b27836119d9565b9150611a4a602084016119f5565b60008060408385031215611b4857600080fd5b611b51836119d9565b946020939093013593505050565b600060208284031215611b7157600080fd5b610efb826119f5565b600060208284031215611b8c57600080fd5b8135610efb81611e7a565b600060208284031215611ba957600080fd5b8151610efb81611e7a565b600060208284031215611bc657600080fd5b813567ffffffffffffffff811115611bdd57600080fd5b8201601f81018413611bee57600080fd5b6115f384823560208401611963565b600060208284031215611c0f57600080fd5b5035919050565b60008151808452611c2e816020860160208601611d8c565b601f01601f19169290920160200192915050565b60008351611c54818460208801611d8c565b835190830190611c68818360208801611d8c565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ca490830184611c16565b9695505050505050565b602081526000610efb6020830184611c16565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008219821115611d5c57611d5c611e22565b500190565b600082611d7057611d70611e38565b500490565b600082821015611d8757611d87611e22565b500390565b60005b83811015611da7578181015183820152602001611d8f565b83811115610e2e5750506000910152565b600181811c90821680611dcc57607f821691505b60208210811415611ded57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611e0757611e07611e22565b5060010190565b600082611e1d57611e1d611e38565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b4257600080fdfea2646970667358221220d9609308ffaba579d1fd2cc54ceb364f8fd24a214042d8e54cab766ffd6e94bf64736f6c63430008070033

Deployed Bytecode Sourcemap

62416:1605:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46573:372;;;;;;;;;;-1:-1:-1;46573:372:0;;;;;:::i;:::-;;:::i;:::-;;;6113:14:1;;6106:22;6088:41;;6076:2;6061:18;46573:372:0;;;;;;;;48459:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;50021:214::-;;;;;;;;;;-1:-1:-1;50021:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5411:32:1;;;5393:51;;5381:2;5366:18;50021:214:0;5247:203:1;49542:413:0;;;;;;;;;;-1:-1:-1;49542:413:0;;;;;:::i;:::-;;:::i;:::-;;62655:50;;;;;;;;;;-1:-1:-1;62655:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;14576:25:1;;;14564:2;14549:18;62655:50:0;14430:177:1;44830:100:0;;;;;;;;;;-1:-1:-1;44883:7:0;44910:12;44830:100;;63616:109;;;;;;;;;;-1:-1:-1;63616:109:0;;;;;:::i;:::-;;:::i;50897:162::-;;;;;;;;;;-1:-1:-1;50897:162:0;;;;;:::i;:::-;;:::i;45494:1007::-;;;;;;;;;;-1:-1:-1;45494:1007:0;;;;;:::i;:::-;;:::i;62891:384::-;;;;;;;;;;;;;:::i;63858:160::-;;;:::i;51130:177::-;;;;;;;;;;-1:-1:-1;51130:177:0;;;;;:::i;:::-;;:::i;45007:187::-;;;;;;;;;;-1:-1:-1;45007:187:0;;;;;:::i;:::-;;:::i;62547:25::-;;;;;;;;;;-1:-1:-1;62547:25:0;;;;;;;;48268:124;;;;;;;;;;-1:-1:-1;48268:124:0;;;;;:::i;:::-;;:::i;47009:221::-;;;;;;;;;;-1:-1:-1;47009:221:0;;;;;:::i;:::-;;:::i;20160:94::-;;;;;;;;;;;;;:::i;63289:222::-;;;;;;;;;;-1:-1:-1;63289:222:0;;;;;:::i;:::-;;:::i;19509:87::-;;;;;;;;;;-1:-1:-1;19582:6:0;;-1:-1:-1;;;;;19582:6:0;19509:87;;63519:89;;;;;;;;;;-1:-1:-1;63519:89:0;;;;;:::i;:::-;;:::i;62617:30::-;;;;;;;;;;;;;;;;48628:104;;;;;;;;;;;;;:::i;62579:31::-;;;;;;;;;;;;;;;;50307:288;;;;;;;;;;-1:-1:-1;50307:288:0;;;;;:::i;:::-;;:::i;51378:355::-;;;;;;;;;;-1:-1:-1;51378:355:0;;;;;:::i;:::-;;:::i;48803:335::-;;;;;;;;;;-1:-1:-1;48803:335:0;;;;;:::i;:::-;;:::i;62514:26::-;;;;;;;;;;;;;:::i;63733:115::-;;;;;;;;;;-1:-1:-1;63733:115:0;;;;;:::i;:::-;;:::i;50666:164::-;;;;;;;;;;-1:-1:-1;50666:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;50787:25:0;;;50763:4;50787:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;50666:164;20409:192;;;;;;;;;;-1:-1:-1;20409:192:0;;;;;:::i;:::-;;:::i;46573:372::-;46675:4;-1:-1:-1;;;;;;46712:40:0;;-1:-1:-1;;;46712:40:0;;:105;;-1:-1:-1;;;;;;;46769:48:0;;-1:-1:-1;;;46769:48:0;46712:105;:172;;;-1:-1:-1;;;;;;;46834:50:0;;-1:-1:-1;;;46834:50:0;46712:172;:225;;;-1:-1:-1;;;;;;;;;;37070:40:0;;;46901:36;46692:245;46573:372;-1:-1:-1;;46573:372:0:o;48459:100::-;48513:13;48546:5;48539:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48459:100;:::o;50021:214::-;50089:7;50117:16;50125:7;52045:4;52079:12;-1:-1:-1;52069:22:0;51988:111;50117:16;50109:74;;;;-1:-1:-1;;;50109:74:0;;14218:2:1;50109:74:0;;;14200:21:1;14257:2;14237:18;;;14230:30;14296:34;14276:18;;;14269:62;-1:-1:-1;;;14347:18:1;;;14340:43;14400:19;;50109:74:0;;;;;;;;;-1:-1:-1;50203:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;50203:24:0;;50021:214::o;49542:413::-;49615:13;49631:24;49647:7;49631:15;:24::i;:::-;49615:40;;49680:5;-1:-1:-1;;;;;49674:11:0;:2;-1:-1:-1;;;;;49674:11:0;;;49666:58;;;;-1:-1:-1;;;49666:58:0;;11393:2:1;49666:58:0;;;11375:21:1;11432:2;11412:18;;;11405:30;11471:34;11451:18;;;11444:62;-1:-1:-1;;;11522:18:1;;;11515:32;11564:19;;49666:58:0;11191:398:1;49666:58:0;18410:10;-1:-1:-1;;;;;49759:21:0;;;;:62;;-1:-1:-1;49784:37:0;49801:5;18410:10;50666:164;:::i;49784:37::-;49737:169;;;;-1:-1:-1;;;49737:169:0;;8597:2:1;49737:169:0;;;8579:21:1;8636:2;8616:18;;;8609:30;8675:34;8655:18;;;8648:62;8746:27;8726:18;;;8719:55;8791:19;;49737:169:0;8395:421:1;49737:169:0;49919:28;49928:2;49932:7;49941:5;49919:8;:28::i;:::-;49604:351;49542:413;;:::o;63616:109::-;19582:6;;-1:-1:-1;;;;;19582:6:0;18410:10;19729:23;19721:68;;;;-1:-1:-1;;;19721:68:0;;;;;;;:::i;:::-;63691:11:::1;:26:::0;63616:109::o;50897:162::-;51023:28;51033:4;51039:2;51043:7;51023:9;:28::i;45494:1007::-;45583:7;45619:16;45629:5;45619:9;:16::i;:::-;45611:5;:24;45603:71;;;;-1:-1:-1;;;45603:71:0;;6566:2:1;45603:71:0;;;6548:21:1;6605:2;6585:18;;;6578:30;6644:34;6624:18;;;6617:62;-1:-1:-1;;;6695:18:1;;;6688:32;6737:19;;45603:71:0;6364:398:1;45603:71:0;45685:22;44910:12;;;45685:22;;45948:466;45968:14;45964:1;:18;45948:466;;;46008:31;46042:14;;;:11;:14;;;;;;;;;46008:48;;;;;;;;;-1:-1:-1;;;;;46008:48:0;;;;;-1:-1:-1;;;46008:48:0;;;;;;;;;;;;46079:28;46075:111;;46152:14;;;-1:-1:-1;46075:111:0;46229:5;-1:-1:-1;;;;;46208:26:0;:17;-1:-1:-1;;;;;46208:26:0;;46204:195;;;46278:5;46263:11;:20;46259:85;;;-1:-1:-1;46319:1:0;-1:-1:-1;46312:8:0;;-1:-1:-1;;;46312:8:0;46259:85;46366:13;;;;;46204:195;-1:-1:-1;45984:3:0;;45948:466;;;-1:-1:-1;46437:56:0;;-1:-1:-1;;;46437:56:0;;13027:2:1;46437:56:0;;;13009:21:1;13066:2;13046:18;;;13039:30;13105:34;13085:18;;;13078:62;-1:-1:-1;;;13156:18:1;;;13149:44;13210:19;;46437:56:0;12825:410:1;62891:384:0;61442:1;62040:7;;:19;;62032:63;;;;-1:-1:-1;;;62032:63:0;;13442:2:1;62032:63:0;;;13424:21:1;13481:2;13461:18;;;13454:30;13520:33;13500:18;;;13493:61;13571:18;;62032:63:0;13240:355:1;62032:63:0;61442:1;62173:7;:18;62947:21:::1;44910:12:::0;63003:5:::1;::::0;::::1;;62995:14;;;::::0;::::1;;63059:8;::::0;63044:11:::1;::::0;63028:27:::1;::::0;:13;:27:::1;:::i;:::-;:39;;63020:48;;;::::0;::::1;;63087:10;63101:9;63087:23;63079:32;;;::::0;::::1;;63157:11;::::0;63143:10:::1;63127:27;::::0;;;:15:::1;:27;::::0;;;;;:41:::1;63119:50;;;::::0;::::1;;63180:34;63190:10;63202:11;;63180:9;:34::i;:::-;63256:11;::::0;63241:10:::1;63225:27;::::0;;;:15:::1;:27;::::0;;;;:42;;:27;;;:42:::1;::::0;63256:11;;63225:42:::1;:::i;:::-;::::0;;;-1:-1:-1;;61398:1:0;62352:7;:22;-1:-1:-1;62891:384:0:o;63858:160::-;19582:6;;-1:-1:-1;;;;;19582:6:0;18410:10;19729:23;19721:68;;;;-1:-1:-1;;;19721:68:0;;;;;;;:::i;:::-;63934:58:::1;::::0;63916:12:::1;::::0;63942:10:::1;::::0;63966:21:::1;::::0;63916:12;63934:58;63916:12;63934:58;63966:21;63942:10;63934:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63915:77;;;64005:7;63997:16;;;::::0;::::1;;63911:107;63858:160::o:0;51130:177::-;51260:39;51277:4;51283:2;51287:7;51260:39;;;;;;;;;;;;:16;:39::i;45007:187::-;45074:7;44910:12;;45102:5;:21;45094:69;;;;-1:-1:-1;;;45094:69:0;;7787:2:1;45094:69:0;;;7769:21:1;7826:2;7806:18;;;7799:30;7865:34;7845:18;;;7838:62;-1:-1:-1;;;7916:18:1;;;7909:33;7959:19;;45094:69:0;7585:399:1;45094:69:0;-1:-1:-1;45181:5:0;45007:187::o;48268:124::-;48332:7;48359:20;48371:7;48359:11;:20::i;:::-;:25;;48268:124;-1:-1:-1;;48268:124:0:o;47009:221::-;47073:7;-1:-1:-1;;;;;47101:19:0;;47093:75;;;;-1:-1:-1;;;47093:75:0;;9023:2:1;47093:75:0;;;9005:21:1;9062:2;9042:18;;;9035:30;9101:34;9081:18;;;9074:62;-1:-1:-1;;;9152:18:1;;;9145:41;9203:19;;47093:75:0;8821:407:1;47093:75:0;-1:-1:-1;;;;;;47194:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;47194:27:0;;47009:221::o;20160:94::-;19582:6;;-1:-1:-1;;;;;19582:6:0;18410:10;19729:23;19721:68;;;;-1:-1:-1;;;19721:68:0;;;;;;;:::i;:::-;20225:21:::1;20243:1;20225:9;:21::i;:::-;20160:94::o:0;63289:222::-;19582:6;;-1:-1:-1;;;;;19582:6:0;18410:10;19729:23;19721:68;;;;-1:-1:-1;;;19721:68:0;;;;;;;:::i;:::-;63375:21:::1;44910:12:::0;63457:8:::1;::::0;63428:25:::1;63444:9:::0;44910:12;63428:25:::1;:::i;:::-;:37;;63420:46;;;::::0;::::1;;63477:26;63487:4;63493:9;63477;:26::i;63519:89::-:0;19582:6;;-1:-1:-1;;;;;19582:6:0;18410:10;19729:23;19721:68;;;;-1:-1:-1;;;19721:68:0;;;;;;;:::i;:::-;63587:5:::1;:13:::0;;-1:-1:-1;;63587:13:0::1;::::0;::::1;;::::0;;;::::1;::::0;;63519:89::o;48628:104::-;48684:13;48717:7;48710:14;;;;;:::i;50307:288::-;-1:-1:-1;;;;;50402:24:0;;18410:10;50402:24;;50394:63;;;;-1:-1:-1;;;50394:63:0;;10619:2:1;50394:63:0;;;10601:21:1;10658:2;10638:18;;;10631:30;10697:28;10677:18;;;10670:56;10743:18;;50394:63:0;10417:350:1;50394:63:0;18410:10;50470:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;50470:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;50470:53:0;;;;;;;;;;50539:48;;6088:41:1;;;50470:42:0;;18410:10;50539:48;;6061:18:1;50539:48:0;;;;;;;50307:288;;:::o;51378:355::-;51537:28;51547:4;51553:2;51557:7;51537:9;:28::i;:::-;51598:48;51621:4;51627:2;51631:7;51640:5;51598:22;:48::i;:::-;51576:149;;;;-1:-1:-1;;;51576:149:0;;;;;;;:::i;:::-;51378:355;;;;:::o;48803:335::-;48876:13;48910:16;48918:7;52045:4;52079:12;-1:-1:-1;52069:22:0;51988:111;48910:16;48902:76;;;;-1:-1:-1;;;48902:76:0;;10203:2:1;48902:76:0;;;10185:21:1;10242:2;10222:18;;;10215:30;10281:34;10261:18;;;10254:62;-1:-1:-1;;;10332:18:1;;;10325:45;10387:19;;48902:76:0;10001:411:1;48902:76:0;48991:21;49015:10;:8;:10::i;:::-;48991:34;;49049:7;49043:21;49068:1;49043:26;;:87;;;;;;;;;;;;;;;;;49096:7;49105:18;:7;:16;:18::i;:::-;49079:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49043:87;49036:94;48803:335;-1:-1:-1;;;48803:335:0:o;62514:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;63733:115::-;19582:6;;-1:-1:-1;;;;;19582:6:0;18410:10;19729:23;19721:68;;;;-1:-1:-1;;;19721:68:0;;;;;;;:::i;:::-;63818:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;63733:115:::0;:::o;20409:192::-;19582:6;;-1:-1:-1;;;;;19582:6:0;18410:10;19729:23;19721:68;;;;-1:-1:-1;;;19721:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20498:22:0;::::1;20490:73;;;::::0;-1:-1:-1;;;20490:73:0;;6969:2:1;20490:73:0::1;::::0;::::1;6951:21:1::0;7008:2;6988:18;;;6981:30;7047:34;7027:18;;;7020:62;-1:-1:-1;;;7098:18:1;;;7091:36;7144:19;;20490:73:0::1;6767:402:1::0;20490:73:0::1;20574:19;20584:8;20574:9;:19::i;56908:196::-:0;57023:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;57023:29:0;-1:-1:-1;;;;;57023:29:0;;;;;;;;;57068:28;;57023:24;;57068:28;;;;;;;56908:196;;;:::o;54788:2002::-;54903:35;54941:20;54953:7;54941:11;:20::i;:::-;55016:18;;54903:58;;-1:-1:-1;54974:22:0;;-1:-1:-1;;;;;55000:34:0;18410:10;-1:-1:-1;;;;;55000:34:0;;:87;;;-1:-1:-1;18410:10:0;55051:20;55063:7;55051:11;:20::i;:::-;-1:-1:-1;;;;;55051:36:0;;55000:87;:154;;;-1:-1:-1;55121:18:0;;55104:50;;18410:10;50666:164;:::i;55104:50::-;54974:181;;55176:17;55168:80;;;;-1:-1:-1;;;55168:80:0;;10974:2:1;55168:80:0;;;10956:21:1;11013:2;10993:18;;;10986:30;11052:34;11032:18;;;11025:62;-1:-1:-1;;;11103:18:1;;;11096:48;11161:19;;55168:80:0;10772:414:1;55168:80:0;55291:4;-1:-1:-1;;;;;55269:26:0;:13;:18;;;-1:-1:-1;;;;;55269:26:0;;55261:77;;;;-1:-1:-1;;;55261:77:0;;9435:2:1;55261:77:0;;;9417:21:1;9474:2;9454:18;;;9447:30;9513:34;9493:18;;;9486:62;-1:-1:-1;;;9564:18:1;;;9557:36;9610:19;;55261:77:0;9233:402:1;55261:77:0;-1:-1:-1;;;;;55357:16:0;;55349:66;;;;-1:-1:-1;;;55349:66:0;;8191:2:1;55349:66:0;;;8173:21:1;8230:2;8210:18;;;8203:30;8269:34;8249:18;;;8242:62;-1:-1:-1;;;8320:18:1;;;8313:35;8365:19;;55349:66:0;7989:401:1;55349:66:0;55536:49;55553:1;55557:7;55566:13;:18;;;55536:8;:49::i;:::-;-1:-1:-1;;;;;55881:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;55881:31:0;;;-1:-1:-1;;;;;55881:31:0;;;-1:-1:-1;;55881:31:0;;;;;;;55927:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;55927:29:0;;;;;;;;;;;;;55973:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;56018:61:0;;;;-1:-1:-1;;;56063:15:0;56018:61;;;;;;56353:11;;;56383:24;;;;;:29;56353:11;;56383:29;56379:295;;56451:20;56459:11;52045:4;52079:12;-1:-1:-1;52069:22:0;51988:111;56451:20;56447:212;;;56528:18;;;56496:24;;;:11;:24;;;;;;;;:50;;56611:28;;;;56569:70;;-1:-1:-1;;;56569:70:0;-1:-1:-1;;;;;;56569:70:0;;;-1:-1:-1;;;;;56496:50:0;;;56569:70;;;;;;;56447:212;55856:829;56721:7;56717:2;-1:-1:-1;;;;;56702:27:0;56711:4;-1:-1:-1;;;;;56702:27:0;;;;;;;;;;;56740:42;54892:1898;;54788:2002;;;:::o;52107:104::-;52176:27;52186:2;52190:8;52176:27;;;;;;;;;;;;:9;:27::i;47669:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;47772:16:0;47780:7;52045:4;52079:12;-1:-1:-1;52069:22:0;51988:111;47772:16;47764:71;;;;-1:-1:-1;;;47764:71:0;;7376:2:1;47764:71:0;;;7358:21:1;7415:2;7395:18;;;7388:30;7454:34;7434:18;;;7427:62;-1:-1:-1;;;7505:18:1;;;7498:40;7555:19;;47764:71:0;7174:406:1;47764:71:0;47893:7;47873:245;47940:31;47974:17;;;:11;:17;;;;;;;;;47940:51;;;;;;;;;-1:-1:-1;;;;;47940:51:0;;;;;-1:-1:-1;;;47940:51:0;;;;;;;;;;;;48014:28;48010:93;;48074:9;47669:537;-1:-1:-1;;;47669:537:0:o;48010:93::-;-1:-1:-1;;;47913:6:0;47873:245;;20609:173;20684:6;;;-1:-1:-1;;;;;20701:17:0;;;-1:-1:-1;;;;;;20701:17:0;;;;;;;20734:40;;20684:6;;;20701:17;20684:6;;20734:40;;20665:16;;20734:40;20654:128;20609:173;:::o;57669:804::-;57824:4;-1:-1:-1;;;;;57845:13:0;;21846:20;21894:8;57841:625;;57881:72;;-1:-1:-1;;;57881:72:0;;-1:-1:-1;;;;;57881:36:0;;;;;:72;;18410:10;;57932:4;;57938:7;;57947:5;;57881:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57881:72:0;;;;;;;;-1:-1:-1;;57881:72:0;;;;;;;;;;;;:::i;:::-;;;57877:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58127:13:0;;58123:273;;58170:61;;-1:-1:-1;;;58170:61:0;;;;;;;:::i;58123:273::-;58346:6;58340:13;58331:6;58327:2;58323:15;58316:38;57877:534;-1:-1:-1;;;;;;58004:55:0;-1:-1:-1;;;58004:55:0;;-1:-1:-1;57997:62:0;;57841:625;-1:-1:-1;58450:4:0;57841:625;57669:804;;;;;;:::o;62772:113::-;62832:13;62865:12;62858:19;;;;;:::i;6504:723::-;6560:13;6781:10;6777:53;;-1:-1:-1;;6808:10:0;;;;;;;;;;;;-1:-1:-1;;;6808:10:0;;;;;6504:723::o;6777:53::-;6855:5;6840:12;6896:78;6903:9;;6896:78;;6929:8;;;;:::i;:::-;;-1:-1:-1;6952:10:0;;-1:-1:-1;6960:2:0;6952:10;;:::i;:::-;;;6896:78;;;6984:19;7016:6;7006:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7006:17:0;;6984:39;;7034:154;7041:10;;7034:154;;7068:11;7078:1;7068:11;;:::i;:::-;;-1:-1:-1;7137:10:0;7145:2;7137:5;:10;:::i;:::-;7124:24;;:2;:24;:::i;:::-;7111:39;;7094:6;7101;7094:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7094:56:0;;;;;;;;-1:-1:-1;7165:11:0;7174:2;7165:11;;:::i;:::-;;;7034:154;;52574:163;52697:32;52703:2;52707:8;52717:5;52724:4;53135:20;53158:12;-1:-1:-1;;;;;53189:16:0;;53181:62;;;;-1:-1:-1;;;53181:62:0;;12216:2:1;53181:62:0;;;12198:21:1;12255:2;12235:18;;;12228:30;12294:34;12274:18;;;12267:62;-1:-1:-1;;;12345:18:1;;;12338:31;12386:19;;53181:62:0;12014:397:1;53181:62:0;53262:13;53254:66;;;;-1:-1:-1;;;53254:66:0;;12618:2:1;53254:66:0;;;12600:21:1;12657:2;12637:18;;;12630:30;12696:34;12676:18;;;12669:62;-1:-1:-1;;;12747:18:1;;;12740:38;12795:19;;53254:66:0;12416:404:1;53254:66:0;-1:-1:-1;;;;;53672:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;53672:45:0;;-1:-1:-1;;;;;53672:45:0;;;;;;;;;;53732:50;;;;;;;;;;;;;;53799:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;53849:66:0;;;;-1:-1:-1;;;53899:15:0;53849:66;;;;;;;53799:25;;53984:415;54004:8;54000:1;:12;53984:415;;;54043:38;;54068:12;;-1:-1:-1;;;;;54043:38:0;;;54060:1;;54043:38;;54060:1;;54043:38;54104:4;54100:249;;;54167:59;54198:1;54202:2;54206:12;54220:5;54167:22;:59::i;:::-;54133:196;;;;-1:-1:-1;;;54133:196:0;;;;;;;:::i;:::-;54369:14;;;;;54014:3;53984:415;;;-1:-1:-1;54415:12:0;:27;54466:60;51378:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:470::-;4741:3;4779:6;4773:13;4795:53;4841:6;4836:3;4829:4;4821:6;4817:17;4795:53;:::i;:::-;4911:13;;4870:16;;;;4933:57;4911:13;4870:16;4967:4;4955:17;;4933:57;:::i;:::-;5006:20;;4562:470;-1:-1:-1;;;;4562:470:1:o;5455:488::-;-1:-1:-1;;;;;5724:15:1;;;5706:34;;5776:15;;5771:2;5756:18;;5749:43;5823:2;5808:18;;5801:34;;;5871:3;5866:2;5851:18;;5844:31;;;5649:4;;5892:45;;5917:19;;5909:6;5892:45;:::i;:::-;5884:53;5455:488;-1:-1:-1;;;;;;5455:488:1:o;6140:219::-;6289:2;6278:9;6271:21;6252:4;6309:44;6349:2;6338:9;6334:18;6326:6;6309:44;:::i;9640:356::-;9842:2;9824:21;;;9861:18;;;9854:30;9920:34;9915:2;9900:18;;9893:62;9987:2;9972:18;;9640:356::o;11594:415::-;11796:2;11778:21;;;11835:2;11815:18;;;11808:30;11874:34;11869:2;11854:18;;11847:62;-1:-1:-1;;;11940:2:1;11925:18;;11918:49;11999:3;11984:19;;11594:415::o;14612:128::-;14652:3;14683:1;14679:6;14676:1;14673:13;14670:39;;;14689:18;;:::i;:::-;-1:-1:-1;14725:9:1;;14612:128::o;14745:120::-;14785:1;14811;14801:35;;14816:18;;:::i;:::-;-1:-1:-1;14850:9:1;;14745:120::o;14870:125::-;14910:4;14938:1;14935;14932:8;14929:34;;;14943:18;;:::i;:::-;-1:-1:-1;14980:9:1;;14870:125::o;15000:258::-;15072:1;15082:113;15096:6;15093:1;15090:13;15082:113;;;15172:11;;;15166:18;15153:11;;;15146:39;15118:2;15111:10;15082:113;;;15213:6;15210:1;15207:13;15204:48;;;-1:-1:-1;;15248:1:1;15230:16;;15223:27;15000:258::o;15263:380::-;15342:1;15338:12;;;;15385;;;15406:61;;15460:4;15452:6;15448:17;15438:27;;15406:61;15513:2;15505:6;15502:14;15482:18;15479:38;15476:161;;;15559:10;15554:3;15550:20;15547:1;15540:31;15594:4;15591:1;15584:15;15622:4;15619:1;15612:15;15476:161;;15263:380;;;:::o;15648:135::-;15687:3;-1:-1:-1;;15708:17:1;;15705:43;;;15728:18;;:::i;:::-;-1:-1:-1;15775:1:1;15764:13;;15648:135::o;15788:112::-;15820:1;15846;15836:35;;15851:18;;:::i;:::-;-1:-1:-1;15885:9:1;;15788:112::o;15905:127::-;15966:10;15961:3;15957:20;15954:1;15947:31;15997:4;15994:1;15987:15;16021:4;16018:1;16011:15;16037:127;16098:10;16093:3;16089:20;16086:1;16079:31;16129:4;16126:1;16119:15;16153:4;16150:1;16143:15;16169:127;16230:10;16225:3;16221:20;16218:1;16211:31;16261:4;16258:1;16251:15;16285:4;16282:1;16275:15;16301:127;16362:10;16357:3;16353:20;16350:1;16343:31;16393:4;16390:1;16383:15;16417:4;16414:1;16407:15;16433:131;-1:-1:-1;;;;;;16507:32:1;;16497:43;;16487:71;;16554:1;16551;16544:12

Swarm Source

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