ETH Price: $2,921.08 (-7.78%)
Gas: 8 Gwei

Token

DownBad (DOWNB)
 

Overview

Max Total Supply

4,444 DOWNB

Holders

3,708

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
xitangfuxi.eth
Balance
1 DOWNB
0x685f02f75e82260d43554927fe32d8836053b238
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:
downBad

Compiler Version
v0.8.13+commit.abaa5c0e

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-20
*/

//      *******                                  ******                  **
//     /**////**                                /*////**                /**
//     /**    /**  ******  ***     ** *******   /*   /**   ******       /**
//     /**    /** **////**//**  * /**//**///**  /******     ////**   ******
//     /**    /**/**   /** /** ***/** /**  /**  /*//// **  *******  **///**
//     /**    ** /**   /** /****/**** /**  /**  /*    /** **////** /**  /**
//     /*******  //******  ***/ ///** ***  /**  /******* //********//******

// 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.13;

contract downBad is ERC721A, Ownable, ReentrancyGuard {  
    using Strings for uint256;
    string public _partslink = 'ipfs://QmfYz34egUKKq7WXDav1UGr3QEBKTKMnShFvNXxP5ZapDg/';
    bool public mintLive = false;
    uint256 public constant supply = 4445;
    uint256 public constant mintAllowed = 1; 
    uint256 constant paying = 0.0000006942 ether;
    mapping(address => uint256) public howManyMints;
   
	constructor() ERC721A("DownBad", "DOWNB") {}

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

 	function freeMint() external nonReentrant {
  	    uint256 totalminted = totalSupply();
        uint256 balance = address(this).balance;
        require(msg.sender == tx.origin);
        require(mintLive);
        require(totalminted + mintAllowed < supply);
        require(balance > paying, "Insufficient funds!");
    	require(howManyMints[msg.sender] < mintAllowed );
        _mint(msg.sender, 1, "", false);
        _withdraw(payable(msg.sender), paying);
        howManyMints[msg.sender] += 1;
    }

    function _withdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Transfer failed.");
    }

 	function reserve(address sersAddy, uint256 _number) public onlyOwner {
  	    uint256 totalminted = totalSupply();
	    require(totalminted + _number < supply);
        _mint(sersAddy, _number, "", false);
    }

    function setMetadataAnon(string memory parts) external onlyOwner {
        _partslink = parts;
    }

    function MintStat(bool _change) external payable onlyOwner {
        mintLive = _change;
    }

    function sumETHforAnon() 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":[{"internalType":"bool","name":"_change","type":"bool"}],"name":"MintStat","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"_partslink","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":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"howManyMints","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":[],"name":"mintAllowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sersAddy","type":"address"},{"internalType":"uint256","name":"_number","type":"uint256"}],"name":"reserve","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":"string","name":"parts","type":"string"}],"name":"setMetadataAnon","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sumETHforAnon","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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"}]

60e060405260366080818152906200214e60a0398051620000299160099160209091019062000122565b50600a805460ff191690553480156200004157600080fd5b506040805180820182526007815266111bdddb90985960ca1b6020808301918252835180850190945260058452642227aba72160d91b9084015281519192916200008e9160019162000122565b508051620000a490600290602084019062000122565b505050620000c1620000bb620000cc60201b60201c565b620000d0565b600160085562000204565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013090620001c8565b90600052602060002090601f0160209004810192826200015457600085556200019f565b82601f106200016f57805160ff19168380011785556200019f565b828001600101855582156200019f579182015b828111156200019f57825182559160200191906001019062000182565b50620001ad929150620001b1565b5090565b5b80821115620001ad5760008155600101620001b2565b600181811c90821680620001dd57607f821691505b602082108103620001fe57634e487b7160e01b600052602260045260246000fd5b50919050565b611f3a80620002146000396000f3fe6080604052600436106101c25760003560e01c80636352211e116100f7578063a2e02ddb11610095578063cc47a40b11610064578063cc47a40b146104c0578063e8656fcc146104e0578063e985e9c5146104fa578063f2fde38b1461054357600080fd5b8063a2e02ddb14610458578063b88d4fde1461046b578063c467201e1461048b578063c87b56dd146104a057600080fd5b80637d8f3671116100d15780637d8f3671146103d85780638da5cb5b1461040557806395d89b4114610423578063a22cb4651461043857600080fd5b80636352211e1461038357806370a08231146103a3578063715018a6146103c357600080fd5b80632f745c591161016457806342842e0e1161013e57806342842e0e146103265780634f6ccce71461034657806358049a81146103665780635b70ea9f1461036e57600080fd5b80632f745c59146102d15780633232deeb146102f1578063328ed7281461030657600080fd5b8063081812fc116101a0578063081812fc14610242578063095ea7b31461027a57806318160ddd1461029c57806323b872dd146102b157600080fd5b806301ffc9a7146101c7578063047fc9aa146101fc57806306fdde0314610220575b600080fd5b3480156101d357600080fd5b506101e76101e23660046119f0565b610563565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b5061021261115d81565b6040519081526020016101f3565b34801561022c57600080fd5b506102356105d0565b6040516101f39190611a65565b34801561024e57600080fd5b5061026261025d366004611a78565b610662565b6040516001600160a01b0390911681526020016101f3565b34801561028657600080fd5b5061029a610295366004611aad565b6106f2565b005b3480156102a857600080fd5b50600054610212565b3480156102bd57600080fd5b5061029a6102cc366004611ad7565b610809565b3480156102dd57600080fd5b506102126102ec366004611aad565b610814565b3480156102fd57600080fd5b5061023561096f565b34801561031257600080fd5b5061029a610321366004611b9f565b6109fd565b34801561033257600080fd5b5061029a610341366004611ad7565b610a3e565b34801561035257600080fd5b50610212610361366004611a78565b610a59565b61029a610abb565b34801561037a57600080fd5b5061029a610b3d565b34801561038f57600080fd5b5061026261039e366004611a78565b610c8b565b3480156103af57600080fd5b506102126103be366004611be8565b610c9d565b3480156103cf57600080fd5b5061029a610d2e565b3480156103e457600080fd5b506102126103f3366004611be8565b600b6020526000908152604090205481565b34801561041157600080fd5b506007546001600160a01b0316610262565b34801561042f57600080fd5b50610235610d64565b34801561044457600080fd5b5061029a610453366004611c13565b610d73565b61029a610466366004611c46565b610e37565b34801561047757600080fd5b5061029a610486366004611c61565b610e74565b34801561049757600080fd5b50610212600181565b3480156104ac57600080fd5b506102356104bb366004611a78565b610ead565b3480156104cc57600080fd5b5061029a6104db366004611aad565b610f7a565b3480156104ec57600080fd5b50600a546101e79060ff1681565b34801561050657600080fd5b506101e7610515366004611cdd565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561054f57600080fd5b5061029a61055e366004611be8565b610fda565b60006001600160e01b031982166380ac58cd60e01b148061059457506001600160e01b03198216635b5e139f60e01b145b806105af57506001600160e01b0319821663780e9d6360e01b145b806105ca57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105df90611d07565b80601f016020809104026020016040519081016040528092919081815260200182805461060b90611d07565b80156106585780601f1061062d57610100808354040283529160200191610658565b820191906000526020600020905b81548152906001019060200180831161063b57829003601f168201915b5050505050905090565b600061066f826000541190565b6106d65760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106fd82610c8b565b9050806001600160a01b0316836001600160a01b03160361076b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106cd565b336001600160a01b038216148061078757506107878133610515565b6107f95760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106cd565b610804838383611072565b505050565b6108048383836110ce565b600061081f83610c9d565b82106108785760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106cd565b600080549080805b8381101561090f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156108d357805192505b876001600160a01b0316836001600160a01b031603610906578684036108ff575093506105ca92505050565b6001909301925b50600101610880565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106cd565b6009805461097c90611d07565b80601f01602080910402602001604051908101604052809291908181526020018280546109a890611d07565b80156109f55780601f106109ca576101008083540402835291602001916109f5565b820191906000526020600020905b8154815290600101906020018083116109d857829003601f168201915b505050505081565b6007546001600160a01b03163314610a275760405162461bcd60e51b81526004016106cd90611d41565b8051610a3a90600990602084019061194a565b5050565b61080483838360405180602001604052806000815250610e74565b600080548210610ab75760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106cd565b5090565b6007546001600160a01b03163314610ae55760405162461bcd60e51b81526004016106cd90611d41565b604051600090339047908381818185875af1925050503d8060008114610b27576040519150601f19603f3d011682016040523d82523d6000602084013e610b2c565b606091505b5050905080610b3a57600080fd5b50565b600260085403610b8f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106cd565b600260085560005447323314610ba457600080fd5b600a5460ff16610bb357600080fd5b61115d610bc1600184611d8c565b10610bcb57600080fd5b64a1a18b5e008111610c155760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016106cd565b336000908152600b6020526040902054600111610c3157600080fd5b610c4e3360016040518060200160405280600081525060006113b3565b610c5d3364a1a18b5e00611579565b336000908152600b60205260408120805460019290610c7d908490611d8c565b909155505060016008555050565b6000610c968261160f565b5192915050565b60006001600160a01b038216610d095760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106cd565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610d585760405162461bcd60e51b81526004016106cd90611d41565b610d6260006116e6565b565b6060600280546105df90611d07565b336001600160a01b03831603610dcb5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106cd565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b03163314610e615760405162461bcd60e51b81526004016106cd90611d41565b600a805460ff1916911515919091179055565b610e7f8484846110ce565b610e8b84848484611738565b610ea75760405162461bcd60e51b81526004016106cd90611da4565b50505050565b6060610eba826000541190565b610f1e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106cd565b6000610f2861183a565b90508051600003610f485760405180602001604052806000815250610f73565b80610f5284611849565b604051602001610f63929190611df7565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314610fa45760405162461bcd60e51b81526004016106cd90611d41565b60005461115d610fb48383611d8c565b10610fbe57600080fd5b61080483836040518060200160405280600081525060006113b3565b6007546001600160a01b031633146110045760405162461bcd60e51b81526004016106cd90611d41565b6001600160a01b0381166110695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106cd565b610b3a816116e6565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110d98261160f565b80519091506000906001600160a01b0316336001600160a01b0316148061111057503361110584610662565b6001600160a01b0316145b80611122575081516111229033610515565b90508061118c5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106cd565b846001600160a01b031682600001516001600160a01b0316146112005760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106cd565b6001600160a01b0384166112645760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106cd565b6112746000848460000151611072565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166113695761131c816000541190565b15611369578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6000546001600160a01b0385166114165760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106cd565b836000036114775760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016106cd565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156115705760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611564576115486000888488611738565b6115645760405162461bcd60e51b81526004016106cd90611da4565b600191820191016114f5565b506000556113ac565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146115c6576040519150601f19603f3d011682016040523d82523d6000602084013e6115cb565b606091505b50509050806108045760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016106cd565b604080518082019091526000808252602082015261162e826000541190565b61168d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106cd565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156116dc579392505050565b506000190161168f565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561182e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061177c903390899088908890600401611e26565b6020604051808303816000875af19250505080156117b7575060408051601f3d908101601f191682019092526117b491810190611e63565b60015b611814573d8080156117e5576040519150601f19603f3d011682016040523d82523d6000602084013e6117ea565b606091505b50805160000361180c5760405162461bcd60e51b81526004016106cd90611da4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611832565b5060015b949350505050565b6060600980546105df90611d07565b6060816000036118705750506040805180820190915260018152600360fc1b602082015290565b8160005b811561189a578061188481611e80565b91506118939050600a83611eaf565b9150611874565b60008167ffffffffffffffff8111156118b5576118b5611b13565b6040519080825280601f01601f1916602001820160405280156118df576020820181803683370190505b5090505b8415611832576118f4600183611ec3565b9150611901600a86611eda565b61190c906030611d8c565b60f81b81838151811061192157611921611eee565b60200101906001600160f81b031916908160001a905350611943600a86611eaf565b94506118e3565b82805461195690611d07565b90600052602060002090601f01602090048101928261197857600085556119be565b82601f1061199157805160ff19168380011785556119be565b828001600101855582156119be579182015b828111156119be5782518255916020019190600101906119a3565b50610ab79291505b80821115610ab757600081556001016119c6565b6001600160e01b031981168114610b3a57600080fd5b600060208284031215611a0257600080fd5b8135610f73816119da565b60005b83811015611a28578181015183820152602001611a10565b83811115610ea75750506000910152565b60008151808452611a51816020860160208601611a0d565b601f01601f19169290920160200192915050565b602081526000610f736020830184611a39565b600060208284031215611a8a57600080fd5b5035919050565b80356001600160a01b0381168114611aa857600080fd5b919050565b60008060408385031215611ac057600080fd5b611ac983611a91565b946020939093013593505050565b600080600060608486031215611aec57600080fd5b611af584611a91565b9250611b0360208501611a91565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611b4457611b44611b13565b604051601f8501601f19908116603f01168101908282118183101715611b6c57611b6c611b13565b81604052809350858152868686011115611b8557600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611bb157600080fd5b813567ffffffffffffffff811115611bc857600080fd5b8201601f81018413611bd957600080fd5b61183284823560208401611b29565b600060208284031215611bfa57600080fd5b610f7382611a91565b80358015158114611aa857600080fd5b60008060408385031215611c2657600080fd5b611c2f83611a91565b9150611c3d60208401611c03565b90509250929050565b600060208284031215611c5857600080fd5b610f7382611c03565b60008060008060808587031215611c7757600080fd5b611c8085611a91565b9350611c8e60208601611a91565b925060408501359150606085013567ffffffffffffffff811115611cb157600080fd5b8501601f81018713611cc257600080fd5b611cd187823560208401611b29565b91505092959194509250565b60008060408385031215611cf057600080fd5b611cf983611a91565b9150611c3d60208401611a91565b600181811c90821680611d1b57607f821691505b602082108103611d3b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611d9f57611d9f611d76565b500190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351611e09818460208801611a0d565b835190830190611e1d818360208801611a0d565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e5990830184611a39565b9695505050505050565b600060208284031215611e7557600080fd5b8151610f73816119da565b600060018201611e9257611e92611d76565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611ebe57611ebe611e99565b500490565b600082821015611ed557611ed5611d76565b500390565b600082611ee957611ee9611e99565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220f5ff2e4846d7d33ac499c7af71b74cd95e61be4c41be3d397d46244c106bfa4764736f6c634300080d0033697066733a2f2f516d66597a33346567554b4b7137575844617631554772335145424b544b4d6e536846764e587850355a617044672f

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80636352211e116100f7578063a2e02ddb11610095578063cc47a40b11610064578063cc47a40b146104c0578063e8656fcc146104e0578063e985e9c5146104fa578063f2fde38b1461054357600080fd5b8063a2e02ddb14610458578063b88d4fde1461046b578063c467201e1461048b578063c87b56dd146104a057600080fd5b80637d8f3671116100d15780637d8f3671146103d85780638da5cb5b1461040557806395d89b4114610423578063a22cb4651461043857600080fd5b80636352211e1461038357806370a08231146103a3578063715018a6146103c357600080fd5b80632f745c591161016457806342842e0e1161013e57806342842e0e146103265780634f6ccce71461034657806358049a81146103665780635b70ea9f1461036e57600080fd5b80632f745c59146102d15780633232deeb146102f1578063328ed7281461030657600080fd5b8063081812fc116101a0578063081812fc14610242578063095ea7b31461027a57806318160ddd1461029c57806323b872dd146102b157600080fd5b806301ffc9a7146101c7578063047fc9aa146101fc57806306fdde0314610220575b600080fd5b3480156101d357600080fd5b506101e76101e23660046119f0565b610563565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b5061021261115d81565b6040519081526020016101f3565b34801561022c57600080fd5b506102356105d0565b6040516101f39190611a65565b34801561024e57600080fd5b5061026261025d366004611a78565b610662565b6040516001600160a01b0390911681526020016101f3565b34801561028657600080fd5b5061029a610295366004611aad565b6106f2565b005b3480156102a857600080fd5b50600054610212565b3480156102bd57600080fd5b5061029a6102cc366004611ad7565b610809565b3480156102dd57600080fd5b506102126102ec366004611aad565b610814565b3480156102fd57600080fd5b5061023561096f565b34801561031257600080fd5b5061029a610321366004611b9f565b6109fd565b34801561033257600080fd5b5061029a610341366004611ad7565b610a3e565b34801561035257600080fd5b50610212610361366004611a78565b610a59565b61029a610abb565b34801561037a57600080fd5b5061029a610b3d565b34801561038f57600080fd5b5061026261039e366004611a78565b610c8b565b3480156103af57600080fd5b506102126103be366004611be8565b610c9d565b3480156103cf57600080fd5b5061029a610d2e565b3480156103e457600080fd5b506102126103f3366004611be8565b600b6020526000908152604090205481565b34801561041157600080fd5b506007546001600160a01b0316610262565b34801561042f57600080fd5b50610235610d64565b34801561044457600080fd5b5061029a610453366004611c13565b610d73565b61029a610466366004611c46565b610e37565b34801561047757600080fd5b5061029a610486366004611c61565b610e74565b34801561049757600080fd5b50610212600181565b3480156104ac57600080fd5b506102356104bb366004611a78565b610ead565b3480156104cc57600080fd5b5061029a6104db366004611aad565b610f7a565b3480156104ec57600080fd5b50600a546101e79060ff1681565b34801561050657600080fd5b506101e7610515366004611cdd565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561054f57600080fd5b5061029a61055e366004611be8565b610fda565b60006001600160e01b031982166380ac58cd60e01b148061059457506001600160e01b03198216635b5e139f60e01b145b806105af57506001600160e01b0319821663780e9d6360e01b145b806105ca57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105df90611d07565b80601f016020809104026020016040519081016040528092919081815260200182805461060b90611d07565b80156106585780601f1061062d57610100808354040283529160200191610658565b820191906000526020600020905b81548152906001019060200180831161063b57829003601f168201915b5050505050905090565b600061066f826000541190565b6106d65760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106fd82610c8b565b9050806001600160a01b0316836001600160a01b03160361076b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106cd565b336001600160a01b038216148061078757506107878133610515565b6107f95760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106cd565b610804838383611072565b505050565b6108048383836110ce565b600061081f83610c9d565b82106108785760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106cd565b600080549080805b8381101561090f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156108d357805192505b876001600160a01b0316836001600160a01b031603610906578684036108ff575093506105ca92505050565b6001909301925b50600101610880565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106cd565b6009805461097c90611d07565b80601f01602080910402602001604051908101604052809291908181526020018280546109a890611d07565b80156109f55780601f106109ca576101008083540402835291602001916109f5565b820191906000526020600020905b8154815290600101906020018083116109d857829003601f168201915b505050505081565b6007546001600160a01b03163314610a275760405162461bcd60e51b81526004016106cd90611d41565b8051610a3a90600990602084019061194a565b5050565b61080483838360405180602001604052806000815250610e74565b600080548210610ab75760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106cd565b5090565b6007546001600160a01b03163314610ae55760405162461bcd60e51b81526004016106cd90611d41565b604051600090339047908381818185875af1925050503d8060008114610b27576040519150601f19603f3d011682016040523d82523d6000602084013e610b2c565b606091505b5050905080610b3a57600080fd5b50565b600260085403610b8f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106cd565b600260085560005447323314610ba457600080fd5b600a5460ff16610bb357600080fd5b61115d610bc1600184611d8c565b10610bcb57600080fd5b64a1a18b5e008111610c155760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016106cd565b336000908152600b6020526040902054600111610c3157600080fd5b610c4e3360016040518060200160405280600081525060006113b3565b610c5d3364a1a18b5e00611579565b336000908152600b60205260408120805460019290610c7d908490611d8c565b909155505060016008555050565b6000610c968261160f565b5192915050565b60006001600160a01b038216610d095760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106cd565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610d585760405162461bcd60e51b81526004016106cd90611d41565b610d6260006116e6565b565b6060600280546105df90611d07565b336001600160a01b03831603610dcb5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106cd565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b03163314610e615760405162461bcd60e51b81526004016106cd90611d41565b600a805460ff1916911515919091179055565b610e7f8484846110ce565b610e8b84848484611738565b610ea75760405162461bcd60e51b81526004016106cd90611da4565b50505050565b6060610eba826000541190565b610f1e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106cd565b6000610f2861183a565b90508051600003610f485760405180602001604052806000815250610f73565b80610f5284611849565b604051602001610f63929190611df7565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314610fa45760405162461bcd60e51b81526004016106cd90611d41565b60005461115d610fb48383611d8c565b10610fbe57600080fd5b61080483836040518060200160405280600081525060006113b3565b6007546001600160a01b031633146110045760405162461bcd60e51b81526004016106cd90611d41565b6001600160a01b0381166110695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106cd565b610b3a816116e6565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110d98261160f565b80519091506000906001600160a01b0316336001600160a01b0316148061111057503361110584610662565b6001600160a01b0316145b80611122575081516111229033610515565b90508061118c5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106cd565b846001600160a01b031682600001516001600160a01b0316146112005760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106cd565b6001600160a01b0384166112645760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106cd565b6112746000848460000151611072565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166113695761131c816000541190565b15611369578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6000546001600160a01b0385166114165760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106cd565b836000036114775760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016106cd565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156115705760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611564576115486000888488611738565b6115645760405162461bcd60e51b81526004016106cd90611da4565b600191820191016114f5565b506000556113ac565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146115c6576040519150601f19603f3d011682016040523d82523d6000602084013e6115cb565b606091505b50509050806108045760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016106cd565b604080518082019091526000808252602082015261162e826000541190565b61168d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106cd565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156116dc579392505050565b506000190161168f565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561182e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061177c903390899088908890600401611e26565b6020604051808303816000875af19250505080156117b7575060408051601f3d908101601f191682019092526117b491810190611e63565b60015b611814573d8080156117e5576040519150601f19603f3d011682016040523d82523d6000602084013e6117ea565b606091505b50805160000361180c5760405162461bcd60e51b81526004016106cd90611da4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611832565b5060015b949350505050565b6060600980546105df90611d07565b6060816000036118705750506040805180820190915260018152600360fc1b602082015290565b8160005b811561189a578061188481611e80565b91506118939050600a83611eaf565b9150611874565b60008167ffffffffffffffff8111156118b5576118b5611b13565b6040519080825280601f01601f1916602001820160405280156118df576020820181803683370190505b5090505b8415611832576118f4600183611ec3565b9150611901600a86611eda565b61190c906030611d8c565b60f81b81838151811061192157611921611eee565b60200101906001600160f81b031916908160001a905350611943600a86611eaf565b94506118e3565b82805461195690611d07565b90600052602060002090601f01602090048101928261197857600085556119be565b82601f1061199157805160ff19168380011785556119be565b828001600101855582156119be579182015b828111156119be5782518255916020019190600101906119a3565b50610ab79291505b80821115610ab757600081556001016119c6565b6001600160e01b031981168114610b3a57600080fd5b600060208284031215611a0257600080fd5b8135610f73816119da565b60005b83811015611a28578181015183820152602001611a10565b83811115610ea75750506000910152565b60008151808452611a51816020860160208601611a0d565b601f01601f19169290920160200192915050565b602081526000610f736020830184611a39565b600060208284031215611a8a57600080fd5b5035919050565b80356001600160a01b0381168114611aa857600080fd5b919050565b60008060408385031215611ac057600080fd5b611ac983611a91565b946020939093013593505050565b600080600060608486031215611aec57600080fd5b611af584611a91565b9250611b0360208501611a91565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611b4457611b44611b13565b604051601f8501601f19908116603f01168101908282118183101715611b6c57611b6c611b13565b81604052809350858152868686011115611b8557600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611bb157600080fd5b813567ffffffffffffffff811115611bc857600080fd5b8201601f81018413611bd957600080fd5b61183284823560208401611b29565b600060208284031215611bfa57600080fd5b610f7382611a91565b80358015158114611aa857600080fd5b60008060408385031215611c2657600080fd5b611c2f83611a91565b9150611c3d60208401611c03565b90509250929050565b600060208284031215611c5857600080fd5b610f7382611c03565b60008060008060808587031215611c7757600080fd5b611c8085611a91565b9350611c8e60208601611a91565b925060408501359150606085013567ffffffffffffffff811115611cb157600080fd5b8501601f81018713611cc257600080fd5b611cd187823560208401611b29565b91505092959194509250565b60008060408385031215611cf057600080fd5b611cf983611a91565b9150611c3d60208401611a91565b600181811c90821680611d1b57607f821691505b602082108103611d3b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611d9f57611d9f611d76565b500190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351611e09818460208801611a0d565b835190830190611e1d818360208801611a0d565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e5990830184611a39565b9695505050505050565b600060208284031215611e7557600080fd5b8151610f73816119da565b600060018201611e9257611e92611d76565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611ebe57611ebe611e99565b500490565b600082821015611ed557611ed5611d76565b500390565b600082611ee957611ee9611e99565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220f5ff2e4846d7d33ac499c7af71b74cd95e61be4c41be3d397d46244c106bfa4764736f6c634300080d0033

Deployed Bytecode Sourcemap

56742:1894:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40898:372;;;;;;;;;;-1:-1:-1;40898:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;40898:372:0;;;;;;;;56962:37;;;;;;;;;;;;56995:4;56962:37;;;;;738:25:1;;;726:2;711:18;56962:37:0;592:177:1;42784:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;44346:214::-;;;;;;;;;;-1:-1:-1;44346:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1874:32:1;;;1856:51;;1844:2;1829:18;44346:214:0;1710:203:1;43867:413:0;;;;;;;;;;-1:-1:-1;43867:413:0;;;;;:::i;:::-;;:::i;:::-;;39155:100;;;;;;;;;;-1:-1:-1;39208:7:0;39235:12;39155:100;;45222:162;;;;;;;;;;-1:-1:-1;45222:162:0;;;;;:::i;:::-;;:::i;39819:1007::-;;;;;;;;;;-1:-1:-1;39819:1007:0;;;;;:::i;:::-;;:::i;56837:83::-;;;;;;;;;;;;;:::i;58262:102::-;;;;;;;;;;-1:-1:-1;58262:102:0;;;;;:::i;:::-;;:::i;45455:177::-;;;;;;;;;;-1:-1:-1;45455:177:0;;;;;:::i;:::-;;:::i;39332:187::-;;;;;;;;;;-1:-1:-1;39332:187:0;;;;;:::i;:::-;;:::i;58476:157::-;;;:::i;57329:516::-;;;;;;;;;;;;;:::i;42593:124::-;;;;;;;;;;-1:-1:-1;42593:124:0;;;;;:::i;:::-;;:::i;41334:221::-;;;;;;;;;;-1:-1:-1;41334:221:0;;;;;:::i;:::-;;:::i;14485:94::-;;;;;;;;;;;;;:::i;57104:47::-;;;;;;;;;;-1:-1:-1;57104:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;13834:87;;;;;;;;;;-1:-1:-1;13907:6:0;;-1:-1:-1;;;;;13907:6:0;13834:87;;42953:104;;;;;;;;;;;;;:::i;44632:288::-;;;;;;;;;;-1:-1:-1;44632:288:0;;;;;:::i;:::-;;:::i;58372:96::-;;;;;;:::i;:::-;;:::i;45703:355::-;;;;;;;;;;-1:-1:-1;45703:355:0;;;;;:::i;:::-;;:::i;57006:39::-;;;;;;;;;;;;57044:1;57006:39;;43128:335;;;;;;;;;;-1:-1:-1;43128:335:0;;;;;:::i;:::-;;:::i;58039:215::-;;;;;;;;;;-1:-1:-1;58039:215:0;;;;;:::i;:::-;;:::i;56927:28::-;;;;;;;;;;-1:-1:-1;56927:28:0;;;;;;;;44991:164;;;;;;;;;;-1:-1:-1;44991:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;45112:25:0;;;45088:4;45112:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;44991:164;14734:192;;;;;;;;;;-1:-1:-1;14734:192:0;;;;;:::i;:::-;;:::i;40898:372::-;41000:4;-1:-1:-1;;;;;;41037:40:0;;-1:-1:-1;;;41037:40:0;;:105;;-1:-1:-1;;;;;;;41094:48:0;;-1:-1:-1;;;41094:48:0;41037:105;:172;;;-1:-1:-1;;;;;;;41159:50:0;;-1:-1:-1;;;41159:50:0;41037:172;:225;;;-1:-1:-1;;;;;;;;;;31395:40:0;;;41226:36;41017:245;40898:372;-1:-1:-1;;40898:372:0:o;42784:100::-;42838:13;42871:5;42864:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42784:100;:::o;44346:214::-;44414:7;44442:16;44450:7;46370:4;46404:12;-1:-1:-1;46394:22:0;46313:111;44442:16;44434:74;;;;-1:-1:-1;;;44434:74:0;;6237:2:1;44434:74:0;;;6219:21:1;6276:2;6256:18;;;6249:30;6315:34;6295:18;;;6288:62;-1:-1:-1;;;6366:18:1;;;6359:43;6419:19;;44434:74:0;;;;;;;;;-1:-1:-1;44528:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;44528:24:0;;44346:214::o;43867:413::-;43940:13;43956:24;43972:7;43956:15;:24::i;:::-;43940:40;;44005:5;-1:-1:-1;;;;;43999:11:0;:2;-1:-1:-1;;;;;43999:11:0;;43991:58;;;;-1:-1:-1;;;43991:58:0;;6651:2:1;43991:58:0;;;6633:21:1;6690:2;6670:18;;;6663:30;6729:34;6709:18;;;6702:62;-1:-1:-1;;;6780:18:1;;;6773:32;6822:19;;43991:58:0;6449:398:1;43991:58:0;12735:10;-1:-1:-1;;;;;44084:21:0;;;;:62;;-1:-1:-1;44109:37:0;44126:5;12735:10;44991:164;:::i;44109:37::-;44062:169;;;;-1:-1:-1;;;44062:169:0;;7054:2:1;44062:169:0;;;7036:21:1;7093:2;7073:18;;;7066:30;7132:34;7112:18;;;7105:62;7203:27;7183:18;;;7176:55;7248:19;;44062:169:0;6852:421:1;44062:169:0;44244:28;44253:2;44257:7;44266:5;44244:8;:28::i;:::-;43929:351;43867:413;;:::o;45222:162::-;45348:28;45358:4;45364:2;45368:7;45348:9;:28::i;39819:1007::-;39908:7;39944:16;39954:5;39944:9;:16::i;:::-;39936:5;:24;39928:71;;;;-1:-1:-1;;;39928:71:0;;7480:2:1;39928:71:0;;;7462:21:1;7519:2;7499:18;;;7492:30;7558:34;7538:18;;;7531:62;-1:-1:-1;;;7609:18:1;;;7602:32;7651:19;;39928:71:0;7278:398:1;39928:71:0;40010:22;39235:12;;;40010:22;;40273:466;40293:14;40289:1;:18;40273:466;;;40333:31;40367:14;;;:11;:14;;;;;;;;;40333:48;;;;;;;;;-1:-1:-1;;;;;40333:48:0;;;;;-1:-1:-1;;;40333:48:0;;;;;;;;;;;;40404:28;40400:111;;40477:14;;;-1:-1:-1;40400:111:0;40554:5;-1:-1:-1;;;;;40533:26:0;:17;-1:-1:-1;;;;;40533:26:0;;40529:195;;40603:5;40588:11;:20;40584:85;;-1:-1:-1;40644:1:0;-1:-1:-1;40637:8:0;;-1:-1:-1;;;40637:8:0;40584:85;40691:13;;;;;40529:195;-1:-1:-1;40309:3:0;;40273:466;;;-1:-1:-1;40762:56:0;;-1:-1:-1;;;40762:56:0;;7883:2:1;40762:56:0;;;7865:21:1;7922:2;7902:18;;;7895:30;7961:34;7941:18;;;7934:62;-1:-1:-1;;;8012:18:1;;;8005:44;8066:19;;40762:56:0;7681:410:1;56837:83:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58262:102::-;13907:6;;-1:-1:-1;;;;;13907:6:0;12735:10;14054:23;14046:68;;;;-1:-1:-1;;;14046:68:0;;;;;;;:::i;:::-;58338:18;;::::1;::::0;:10:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;58262:102:::0;:::o;45455:177::-;45585:39;45602:4;45608:2;45612:7;45585:39;;;;;;;;;;;;:16;:39::i;39332:187::-;39399:7;39235:12;;39427:5;:21;39419:69;;;;-1:-1:-1;;;39419:69:0;;8659:2:1;39419:69:0;;;8641:21:1;8698:2;8678:18;;;8671:30;8737:34;8717:18;;;8710:62;-1:-1:-1;;;8788:18:1;;;8781:33;8831:19;;39419:69:0;8457:399:1;39419:69:0;-1:-1:-1;39506:5:0;39332:187::o;58476:157::-;13907:6;;-1:-1:-1;;;;;13907:6:0;12735:10;14054:23;14046:68;;;;-1:-1:-1;;;14046:68:0;;;;;;;:::i;:::-;58549:58:::1;::::0;58531:12:::1;::::0;58557:10:::1;::::0;58581:21:::1;::::0;58531:12;58549:58;58531:12;58549:58;58581:21;58557:10;58549:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58530:77;;;58620:7;58612:16;;;::::0;::::1;;58526:107;58476:157::o:0;57329:516::-;55767:1;56365:7;;:19;56357:63;;;;-1:-1:-1;;;56357:63:0;;9273:2:1;56357:63:0;;;9255:21:1;9312:2;9292:18;;;9285:30;9351:33;9331:18;;;9324:61;9402:18;;56357:63:0;9071:355:1;56357:63:0;55767:1;56498:7;:18;57381:19:::1;39235:12:::0;57445:21:::1;57499:9;57485:10;:23;57477:32;;;::::0;::::1;;57528:8;::::0;::::1;;57520:17;;;::::0;::::1;;56995:4;57556:25;57044:1;57556:11:::0;:25:::1;:::i;:::-;:34;57548:43;;;::::0;::::1;;57079:18;57610:7;:16;57602:48;;;::::0;-1:-1:-1;;;57602:48:0;;9898:2:1;57602:48:0::1;::::0;::::1;9880:21:1::0;9937:2;9917:18;;;9910:30;-1:-1:-1;;;9956:18:1;;;9949:49;10015:18;;57602:48:0::1;9696:343:1::0;57602:48:0::1;57679:10;57666:24;::::0;;;:12:::1;:24;::::0;;;;;57044:1:::1;-1:-1:-1::0;57658:48:0::1;;;::::0;::::1;;57717:31;57723:10;57735:1;57717:31;;;;;;;;;;;::::0;57742:5:::1;57717;:31::i;:::-;57759:38;57777:10;57079:18;57759:9;:38::i;:::-;57821:10;57808:24;::::0;;;:12:::1;:24;::::0;;;;:29;;57836:1:::1;::::0;57808:24;:29:::1;::::0;57836:1;;57808:29:::1;:::i;:::-;::::0;;;-1:-1:-1;;55723:1:0;56677:7;:22;-1:-1:-1;;57329:516:0:o;42593:124::-;42657:7;42684:20;42696:7;42684:11;:20::i;:::-;:25;;42593:124;-1:-1:-1;;42593:124:0:o;41334:221::-;41398:7;-1:-1:-1;;;;;41426:19:0;;41418:75;;;;-1:-1:-1;;;41418:75:0;;10246:2:1;41418:75:0;;;10228:21:1;10285:2;10265:18;;;10258:30;10324:34;10304:18;;;10297:62;-1:-1:-1;;;10375:18:1;;;10368:41;10426:19;;41418:75:0;10044:407:1;41418:75:0;-1:-1:-1;;;;;;41519:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;41519:27:0;;41334:221::o;14485:94::-;13907:6;;-1:-1:-1;;;;;13907:6:0;12735:10;14054:23;14046:68;;;;-1:-1:-1;;;14046:68:0;;;;;;;:::i;:::-;14550:21:::1;14568:1;14550:9;:21::i;:::-;14485:94::o:0;42953:104::-;43009:13;43042:7;43035:14;;;;;:::i;44632:288::-;12735:10;-1:-1:-1;;;;;44727:24:0;;;44719:63;;;;-1:-1:-1;;;44719:63:0;;10658:2:1;44719:63:0;;;10640:21:1;10697:2;10677:18;;;10670:30;10736:28;10716:18;;;10709:56;10782:18;;44719:63:0;10456:350:1;44719:63:0;12735:10;44795:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;44795:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;44795:53:0;;;;;;;;;;44864:48;;540:41:1;;;44795:42:0;;12735:10;44864:48;;513:18:1;44864:48:0;;;;;;;44632:288;;:::o;58372:96::-;13907:6;;-1:-1:-1;;;;;13907:6:0;12735:10;14054:23;14046:68;;;;-1:-1:-1;;;14046:68:0;;;;;;;:::i;:::-;58442:8:::1;:18:::0;;-1:-1:-1;;58442:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;58372:96::o;45703:355::-;45862:28;45872:4;45878:2;45882:7;45862:9;:28::i;:::-;45923:48;45946:4;45952:2;45956:7;45965:5;45923:22;:48::i;:::-;45901:149;;;;-1:-1:-1;;;45901:149:0;;;;;;;:::i;:::-;45703:355;;;;:::o;43128:335::-;43201:13;43235:16;43243:7;46370:4;46404:12;-1:-1:-1;46394:22:0;46313:111;43235:16;43227:76;;;;-1:-1:-1;;;43227:76:0;;11433:2:1;43227:76:0;;;11415:21:1;11472:2;11452:18;;;11445:30;11511:34;11491:18;;;11484:62;-1:-1:-1;;;11562:18:1;;;11555:45;11617:19;;43227:76:0;11231:411:1;43227:76:0;43316:21;43340:10;:8;:10::i;:::-;43316:34;;43374:7;43368:21;43393:1;43368:26;:87;;;;;;;;;;;;;;;;;43421:7;43430:18;:7;:16;:18::i;:::-;43404:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43368:87;43361:94;43128:335;-1:-1:-1;;;43128:335:0:o;58039:215::-;13907:6;;-1:-1:-1;;;;;13907:6:0;12735:10;14054:23;14046:68;;;;-1:-1:-1;;;14046:68:0;;;;;;;:::i;:::-;58118:19:::1;39235:12:::0;56995:4:::1;58169:21;58183:7:::0;39235:12;58169:21:::1;:::i;:::-;:30;58161:39;;;::::0;::::1;;58211:35;58217:8;58227:7;58211:35;;;;;;;;;;;::::0;58240:5:::1;58211;:35::i;14734:192::-:0;13907:6;;-1:-1:-1;;;;;13907:6:0;12735:10;14054:23;14046:68;;;;-1:-1:-1;;;14046:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14823:22:0;::::1;14815:73;;;::::0;-1:-1:-1;;;14815:73:0;;12324:2:1;14815:73:0::1;::::0;::::1;12306:21:1::0;12363:2;12343:18;;;12336:30;12402:34;12382:18;;;12375:62;-1:-1:-1;;;12453:18:1;;;12446:36;12499:19;;14815:73:0::1;12122:402:1::0;14815:73:0::1;14899:19;14909:8;14899:9;:19::i;51233:196::-:0;51348:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;51348:29:0;-1:-1:-1;;;;;51348:29:0;;;;;;;;;51393:28;;51348:24;;51393:28;;;;;;;51233:196;;;:::o;49113:2002::-;49228:35;49266:20;49278:7;49266:11;:20::i;:::-;49341:18;;49228:58;;-1:-1:-1;49299:22:0;;-1:-1:-1;;;;;49325:34:0;12735:10;-1:-1:-1;;;;;49325:34:0;;:87;;;-1:-1:-1;12735:10:0;49376:20;49388:7;49376:11;:20::i;:::-;-1:-1:-1;;;;;49376:36:0;;49325:87;:154;;;-1:-1:-1;49446:18:0;;49429:50;;12735:10;44991:164;:::i;49429:50::-;49299:181;;49501:17;49493:80;;;;-1:-1:-1;;;49493:80:0;;12731:2:1;49493:80:0;;;12713:21:1;12770:2;12750:18;;;12743:30;12809:34;12789:18;;;12782:62;-1:-1:-1;;;12860:18:1;;;12853:48;12918:19;;49493:80:0;12529:414:1;49493:80:0;49616:4;-1:-1:-1;;;;;49594:26:0;:13;:18;;;-1:-1:-1;;;;;49594:26:0;;49586:77;;;;-1:-1:-1;;;49586:77:0;;13150:2:1;49586:77:0;;;13132:21:1;13189:2;13169:18;;;13162:30;13228:34;13208:18;;;13201:62;-1:-1:-1;;;13279:18:1;;;13272:36;13325:19;;49586:77:0;12948:402:1;49586:77:0;-1:-1:-1;;;;;49682:16:0;;49674:66;;;;-1:-1:-1;;;49674:66:0;;13557:2:1;49674:66:0;;;13539:21:1;13596:2;13576:18;;;13569:30;13635:34;13615:18;;;13608:62;-1:-1:-1;;;13686:18:1;;;13679:35;13731:19;;49674:66:0;13355:401:1;49674:66:0;49861:49;49878:1;49882:7;49891:13;:18;;;49861:8;:49::i;:::-;-1:-1:-1;;;;;50206:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;50206:31:0;;;-1:-1:-1;;;;;50206:31:0;;;-1:-1:-1;;50206:31:0;;;;;;;50252:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;50252:29:0;;;;;;;;;;;;;50298:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;50343:61:0;;;;-1:-1:-1;;;50388:15:0;50343:61;;;;;;50678:11;;;50708:24;;;;;:29;50678:11;;50708:29;50704:295;;50776:20;50784:11;46370:4;46404:12;-1:-1:-1;46394:22:0;46313:111;50776:20;50772:212;;;50853:18;;;50821:24;;;:11;:24;;;;;;;;:50;;50936:28;;;;50894:70;;-1:-1:-1;;;50894:70:0;-1:-1:-1;;;;;;50894:70:0;;;-1:-1:-1;;;;;50821:50:0;;;50894:70;;;;;;;50772:212;50181:829;51046:7;51042:2;-1:-1:-1;;;;;51027:27:0;51036:4;-1:-1:-1;;;;;51027:27:0;;;;;;;;;;;51065:42;49217:1898;;49113:2002;;;:::o;47321:1538::-;47460:20;47483:12;-1:-1:-1;;;;;47514:16:0;;47506:62;;;;-1:-1:-1;;;47506:62:0;;13963:2:1;47506:62:0;;;13945:21:1;14002:2;13982:18;;;13975:30;14041:34;14021:18;;;14014:62;-1:-1:-1;;;14092:18:1;;;14085:31;14133:19;;47506:62:0;13761:397:1;47506:62:0;47587:8;47599:1;47587:13;47579:66;;;;-1:-1:-1;;;47579:66:0;;14365:2:1;47579:66:0;;;14347:21:1;14404:2;14384:18;;;14377:30;14443:34;14423:18;;;14416:62;-1:-1:-1;;;14494:18:1;;;14487:38;14542:19;;47579:66:0;14163:404:1;47579:66:0;-1:-1:-1;;;;;47997:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;47997:45:0;;-1:-1:-1;;;;;47997:45:0;;;;;;;;;;48057:50;;;;;;;;;;;;;;48124:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;48174:66:0;;;;-1:-1:-1;;;48224:15:0;48174:66;;;;;;;48124:25;;48309:415;48329:8;48325:1;:12;48309:415;;;48368:38;;48393:12;;-1:-1:-1;;;;;48368:38:0;;;48385:1;;48368:38;;48385:1;;48368:38;48429:4;48425:249;;;48492:59;48523:1;48527:2;48531:12;48545:5;48492:22;:59::i;:::-;48458:196;;;;-1:-1:-1;;;48458:196:0;;;;;;;:::i;:::-;48694:14;;;;;48339:3;48309:415;;;-1:-1:-1;48740:12:0;:27;48791:60;45703:355;57853:180;57927:12;57945:8;-1:-1:-1;;;;;57945:13:0;57966:7;57945:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57926:52;;;57997:7;57989:36;;;;-1:-1:-1;;;57989:36:0;;14774:2:1;57989:36:0;;;14756:21:1;14813:2;14793:18;;;14786:30;-1:-1:-1;;;14832:18:1;;;14825:46;14888:18;;57989:36:0;14572:340:1;41994:537:0;-1:-1:-1;;;;;;;;;;;;;;;;;42097:16:0;42105:7;46370:4;46404:12;-1:-1:-1;46394:22:0;46313:111;42097:16;42089:71;;;;-1:-1:-1;;;42089:71:0;;15119:2:1;42089:71:0;;;15101:21:1;15158:2;15138:18;;;15131:30;15197:34;15177:18;;;15170:62;-1:-1:-1;;;15248:18:1;;;15241:40;15298:19;;42089:71:0;14917:406:1;42089:71:0;42218:7;42198:245;42265:31;42299:17;;;:11;:17;;;;;;;;;42265:51;;;;;;;;;-1:-1:-1;;;;;42265:51:0;;;;;-1:-1:-1;;;42265:51:0;;;;;;;;;;;;42339:28;42335:93;;42399:9;41994:537;-1:-1:-1;;;41994:537:0:o;42335:93::-;-1:-1:-1;;;42238:6:0;42198:245;;14934:173;15009:6;;;-1:-1:-1;;;;;15026:17:0;;;-1:-1:-1;;;;;;15026:17:0;;;;;;;15059:40;;15009:6;;;15026:17;15009:6;;15059:40;;14990:16;;15059:40;14979:128;14934:173;:::o;51994:804::-;52149:4;-1:-1:-1;;;;;52170:13:0;;16171:20;16219:8;52166:625;;52206:72;;-1:-1:-1;;;52206:72:0;;-1:-1:-1;;;;;52206:36:0;;;;;:72;;12735:10;;52257:4;;52263:7;;52272:5;;52206:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52206:72:0;;;;;;;;-1:-1:-1;;52206:72:0;;;;;;;;;;;;:::i;:::-;;;52202:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52452:6;:13;52469:1;52452:18;52448:273;;52495:61;;-1:-1:-1;;;52495:61:0;;;;;;;:::i;52448:273::-;52671:6;52665:13;52656:6;52652:2;52648:15;52641:38;52202:534;-1:-1:-1;;;;;;52329:55:0;-1:-1:-1;;;52329:55:0;;-1:-1:-1;52322:62:0;;52166:625;-1:-1:-1;52775:4:0;52166:625;51994:804;;;;;;:::o;57212:111::-;57272:13;57305:10;57298:17;;;;;:::i;829:723::-;885:13;1106:5;1115:1;1106:10;1102:53;;-1:-1:-1;;1133:10:0;;;;;;;;;;;;-1:-1:-1;;;1133:10:0;;;;;829:723::o;1102:53::-;1180:5;1165:12;1221:78;1228:9;;1221:78;;1254:8;;;;:::i;:::-;;-1:-1:-1;1277:10:0;;-1:-1:-1;1285:2:0;1277:10;;:::i;:::-;;;1221:78;;;1309:19;1341:6;1331:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1331:17:0;;1309:39;;1359:154;1366:10;;1359:154;;1393:11;1403:1;1393:11;;:::i;:::-;;-1:-1:-1;1462:10:0;1470:2;1462:5;:10;:::i;:::-;1449:24;;:2;:24;:::i;:::-;1436:39;;1419:6;1426;1419:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1419:56:0;;;;;;;;-1:-1:-1;1490:11:0;1499:2;1490:11;;:::i;:::-;;;1359:154;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:::-;1079:3;1117:5;1111:12;1144:6;1139:3;1132:19;1160:63;1216:6;1209:4;1204:3;1200:14;1193:4;1186:5;1182:16;1160:63;:::i;:::-;1277:2;1256:15;-1:-1:-1;;1252:29:1;1243:39;;;;1284:4;1239:50;;1037:258;-1:-1:-1;;1037:258:1:o;1300:220::-;1449:2;1438:9;1431:21;1412:4;1469:45;1510:2;1499:9;1495:18;1487:6;1469:45;:::i;1525:180::-;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;-1:-1:-1;1676:23:1;;1525:180;-1:-1:-1;1525:180:1:o;1918:173::-;1986:20;;-1:-1:-1;;;;;2035:31:1;;2025:42;;2015:70;;2081:1;2078;2071:12;2015:70;1918:173;;;:::o;2096:254::-;2164:6;2172;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:29;2283:9;2264:29;:::i;:::-;2254:39;2340:2;2325:18;;;;2312:32;;-1:-1:-1;;;2096:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:632;2885:5;2915:18;2956:2;2948:6;2945:14;2942:40;;;2962:18;;:::i;:::-;3037:2;3031:9;3005:2;3091:15;;-1:-1:-1;;3087:24:1;;;3113:2;3083:33;3079:42;3067:55;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3252:6;3243:15;;3282:6;3274;3267:22;3322:3;3313:6;3308:3;3304:16;3301:25;3298:45;;;3339:1;3336;3329:12;3298:45;3389:6;3384:3;3377:4;3369:6;3365:17;3352:44;3444:1;3437:4;3428:6;3420;3416:19;3412:30;3405:41;;;;2820:632;;;;;:::o;3457:451::-;3526:6;3579:2;3567:9;3558:7;3554:23;3550:32;3547:52;;;3595:1;3592;3585:12;3547:52;3635:9;3622:23;3668:18;3660:6;3657:30;3654:50;;;3700:1;3697;3690:12;3654:50;3723:22;;3776:4;3768:13;;3764:27;-1:-1:-1;3754:55:1;;3805:1;3802;3795:12;3754:55;3828:74;3894:7;3889:2;3876:16;3871:2;3867;3863:11;3828:74;:::i;3913:186::-;3972:6;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;4064:29;4083:9;4064:29;:::i;4104:160::-;4169:20;;4225:13;;4218:21;4208:32;;4198:60;;4254:1;4251;4244:12;4269:254;4334:6;4342;4395:2;4383:9;4374:7;4370:23;4366:32;4363:52;;;4411:1;4408;4401:12;4363:52;4434:29;4453:9;4434:29;:::i;:::-;4424:39;;4482:35;4513:2;4502:9;4498:18;4482:35;:::i;:::-;4472:45;;4269:254;;;;;:::o;4528:180::-;4584:6;4637:2;4625:9;4616:7;4612:23;4608:32;4605:52;;;4653:1;4650;4643:12;4605:52;4676:26;4692:9;4676:26;:::i;4713:667::-;4808:6;4816;4824;4832;4885:3;4873:9;4864:7;4860:23;4856:33;4853:53;;;4902:1;4899;4892:12;4853:53;4925:29;4944:9;4925:29;:::i;:::-;4915:39;;4973:38;5007:2;4996:9;4992:18;4973:38;:::i;:::-;4963:48;;5058:2;5047:9;5043:18;5030:32;5020:42;;5113:2;5102:9;5098:18;5085:32;5140:18;5132:6;5129:30;5126:50;;;5172:1;5169;5162:12;5126:50;5195:22;;5248:4;5240:13;;5236:27;-1:-1:-1;5226:55:1;;5277:1;5274;5267:12;5226:55;5300:74;5366:7;5361:2;5348:16;5343:2;5339;5335:11;5300:74;:::i;:::-;5290:84;;;4713:667;;;;;;;:::o;5385:260::-;5453:6;5461;5514:2;5502:9;5493:7;5489:23;5485:32;5482:52;;;5530:1;5527;5520:12;5482:52;5553:29;5572:9;5553:29;:::i;:::-;5543:39;;5601:38;5635:2;5624:9;5620:18;5601:38;:::i;5650:380::-;5729:1;5725:12;;;;5772;;;5793:61;;5847:4;5839:6;5835:17;5825:27;;5793:61;5900:2;5892:6;5889:14;5869:18;5866:38;5863:161;;5946:10;5941:3;5937:20;5934:1;5927:31;5981:4;5978:1;5971:15;6009:4;6006:1;5999:15;5863:161;;5650:380;;;:::o;8096:356::-;8298:2;8280:21;;;8317:18;;;8310:30;8376:34;8371:2;8356:18;;8349:62;8443:2;8428:18;;8096:356::o;9431:127::-;9492:10;9487:3;9483:20;9480:1;9473:31;9523:4;9520:1;9513:15;9547:4;9544:1;9537:15;9563:128;9603:3;9634:1;9630:6;9627:1;9624:13;9621:39;;;9640:18;;:::i;:::-;-1:-1:-1;9676:9:1;;9563:128::o;10811:415::-;11013:2;10995:21;;;11052:2;11032:18;;;11025:30;11091:34;11086:2;11071:18;;11064:62;-1:-1:-1;;;11157:2:1;11142:18;;11135:49;11216:3;11201:19;;10811:415::o;11647:470::-;11826:3;11864:6;11858:13;11880:53;11926:6;11921:3;11914:4;11906:6;11902:17;11880:53;:::i;:::-;11996:13;;11955:16;;;;12018:57;11996:13;11955:16;12052:4;12040:17;;12018:57;:::i;:::-;12091:20;;11647:470;-1:-1:-1;;;;11647:470:1:o;15744:489::-;-1:-1:-1;;;;;16013:15:1;;;15995:34;;16065:15;;16060:2;16045:18;;16038:43;16112:2;16097:18;;16090:34;;;16160:3;16155:2;16140:18;;16133:31;;;15938:4;;16181:46;;16207:19;;16199:6;16181:46;:::i;:::-;16173:54;15744:489;-1:-1:-1;;;;;;15744:489:1:o;16238:249::-;16307:6;16360:2;16348:9;16339:7;16335:23;16331:32;16328:52;;;16376:1;16373;16366:12;16328:52;16408:9;16402:16;16427:30;16451:5;16427:30;:::i;16492:135::-;16531:3;16552:17;;;16549:43;;16572:18;;:::i;:::-;-1:-1:-1;16619:1:1;16608:13;;16492:135::o;16632:127::-;16693:10;16688:3;16684:20;16681:1;16674:31;16724:4;16721:1;16714:15;16748:4;16745:1;16738:15;16764:120;16804:1;16830;16820:35;;16835:18;;:::i;:::-;-1:-1:-1;16869:9:1;;16764:120::o;16889:125::-;16929:4;16957:1;16954;16951:8;16948:34;;;16962:18;;:::i;:::-;-1:-1:-1;16999:9:1;;16889:125::o;17019:112::-;17051:1;17077;17067:35;;17082:18;;:::i;:::-;-1:-1:-1;17116:9:1;;17019:112::o;17136:127::-;17197:10;17192:3;17188:20;17185:1;17178:31;17228:4;17225:1;17218:15;17252:4;17249:1;17242:15

Swarm Source

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