ETH Price: $3,408.30 (-0.89%)
Gas: 14 Gwei

Token

FamilyTeesNFT (FTNFT)
 

Overview

Max Total Supply

430 FTNFT

Holders

146

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
jasonnaylor.eth
Balance
3 FTNFT
0x19dBcF92Ab399C5E05Df253Caf36A8F1aF8902ab
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:
FamilyTees

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/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);
    }

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

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

// File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;



/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// File: @openzeppelin/contracts/finance/PaymentSplitter.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 PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, 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;

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

    /**
     * @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 total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

    /**
     * @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 amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][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 Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their
     * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20
     * contract.
     */
    function release(IERC20 token, address account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

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

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

        _erc20Released[token][account] += payment;
        _erc20TotalReleased[token] += payment;

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, 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: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/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: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/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: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/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);

    /**
     * @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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/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: @openzeppelin/contracts/utils/Strings.sol


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

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: contracts/ERC721A.sol


// Creator: Chiru Labs
// commit e03a377 - 2/26/2022
pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See 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_;
        _currentIndex = _startTokenId();
    }

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    /**
     * 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) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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 _startTokenId() <= tokenId && tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

    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;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _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 ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _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)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), 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[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn 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)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

    /**
     * @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 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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 TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

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


// Authored by NoahN w/ Metavate ✌️
pragma solidity ^0.8.11;







contract FamilyTees is ERC721A, Ownable, PaymentSplitter{ 
  	using Strings for uint256;

    uint256 public cost = 0.05 ether;
    uint256 public discountCost = 0.04 ether;
    uint256 public maxSupply = 3333;

    bool public sale = false;
	bool public presale = false;

	string public baseURI;

	bytes32 public merkleRoot;

	address private admin = 0x8DFdD0FF4661abd44B06b1204C6334eACc8575af;
    
	mapping(address => bool) public discountContracts;

	constructor(string memory _name, string memory _symbol, address[] memory recipients, uint256[] memory split)
    ERC721A(_name, _symbol)
	PaymentSplitter(recipients, split){
    }

	modifier onlyTeam {
        require(msg.sender == owner() || msg.sender == admin, "Not team" );
        _;
    }

    function mint(uint256 mintQty) public payable {
        require(sale, "Sale");
        require(mintQty * cost == msg.value, "ETH value");
        require(mintQty < 11, "Too many");
        require(mintQty + totalSupply() <= maxSupply, "Max supply");
        require(tx.origin == msg.sender, "From contract");
        
        _safeMint(msg.sender, mintQty);
    }

	function presaleMint(uint256 mintQty, bytes32[] calldata _merkleProof) public payable {
        require(presale, "Presale");
        require(mintQty * discountCost == msg.value, "ETH value");
        require(mintQty < 11, "Too many");
        require(mintQty + totalSupply() <= maxSupply, "Max supply");
        require(MerkleProof.verify(_merkleProof, merkleRoot, keccak256(abi.encodePacked(msg.sender))), "Whitelist");
        require(tx.origin == msg.sender, "Sender");

        _safeMint(msg.sender, mintQty);
    }

	function presaleMint(uint256 mintQty, address discountAddress, uint256 tokenId) public payable {
        require(presale, "Presale");
        require(discountContracts[discountAddress], "Not partner");
        require(IERC721(discountAddress).ownerOf(tokenId) == msg.sender, "Not owner");
        require(mintQty * discountCost == msg.value, "ETH value");
        require(mintQty < 11, "Too many");
        require(mintQty + totalSupply() <= maxSupply, "Max supply");
        require(tx.origin == msg.sender, "Sender");
        
        _safeMint(msg.sender, mintQty);
    }

	function devMint(uint256 quantity, address recipient) external onlyTeam{    	
        require(quantity + totalSupply() <= maxSupply, "Max supply");
       	_safeMint(recipient, quantity);
	}

	function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
    	require(_exists(tokenId), "ERC721Metadata: Nonexistent token");
    	string memory currentBaseURI = _baseURI();
    	return bytes(currentBaseURI).length > 0	? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ".json")) : "";
	}
	
	function setDiscountContracts(address[] memory contracts, bool onoroff) public onlyTeam {
		for(uint i = 0; i < contracts.length; ++i){
    	    discountContracts[contracts[i]] = onoroff;
    	}	
	}

	function setBaseURI(string memory _newBaseURI) public onlyTeam {
	    baseURI = _newBaseURI;
	}

	function toggleSale() public onlyTeam {
	    sale = !sale;
	}

	function togglePresale() public onlyTeam {
		presale  = !presale;
	}
	
	function _baseURI() internal view virtual override returns (string memory) {
	    return baseURI;
	}
    
    function updateMerkleRoot(bytes32 _merkleRoot) public onlyTeam{
	    merkleRoot = _merkleRoot;
	}

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

	fallback() payable external {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"split","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"discountContracts","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"discountCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintQty","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintQty","type":"uint256"},{"internalType":"address","name":"discountAddress","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintQty","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"contracts","type":"address[]"},{"internalType":"bool","name":"onoroff","type":"bool"}],"name":"setDiscountContracts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","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":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405266b1a2bc2ec50000601055668e1bc9bf040000601155610d056012556013805461ffff19169055601680546001600160a01b031916738dfdd0ff4661abd44b06b1204c6334eacc8575af1790553480156200005e57600080fd5b506040516200352938038062003529833981016040819052620000819162000661565b8181858581600290805190602001906200009d92919062000444565b508051620000b390600390602084019062000444565b5050600160005550620000c63362000204565b8051825114620001385760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b60008251116200018b5760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f2070617965657300000000000060448201526064016200012f565b60005b8251811015620001f757620001e2838281518110620001b157620001b16200078a565b6020026020010151838381518110620001ce57620001ce6200078a565b60200260200101516200025660201b60201c565b80620001ee81620007b6565b9150506200018e565b505050505050506200082c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002c35760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016200012f565b60008111620003155760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a2073686172657320617265203000000060448201526064016200012f565b6001600160a01b0382166000908152600b602052604090205415620003915760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b60648201526084016200012f565b600d8054600181019091557fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50180546001600160a01b0319166001600160a01b0384169081179091556000908152600b60205260409020819055600954620003fb908290620007d4565b600955604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b8280546200045290620007ef565b90600052602060002090601f016020900481019282620004765760008555620004c1565b82601f106200049157805160ff1916838001178555620004c1565b82800160010185558215620004c1579182015b82811115620004c1578251825591602001919060010190620004a4565b50620004cf929150620004d3565b5090565b5b80821115620004cf5760008155600101620004d4565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156200052b576200052b620004ea565b604052919050565b600082601f8301126200054557600080fd5b81516001600160401b03811115620005615762000561620004ea565b602062000577601f8301601f1916820162000500565b82815285828487010111156200058c57600080fd5b60005b83811015620005ac5785810183015182820184015282016200058f565b83811115620005be5760008385840101525b5095945050505050565b60006001600160401b03821115620005e457620005e4620004ea565b5060051b60200190565b600082601f8301126200060057600080fd5b81516020620006196200061383620005c8565b62000500565b82815260059290921b840181019181810190868411156200063957600080fd5b8286015b848110156200065657805183529183019183016200063d565b509695505050505050565b600080600080608085870312156200067857600080fd5b84516001600160401b03808211156200069057600080fd5b6200069e8883890162000533565b9550602091508187015181811115620006b657600080fd5b620006c489828a0162000533565b955050604087015181811115620006da57600080fd5b8701601f81018913620006ec57600080fd5b8051620006fd6200061382620005c8565b81815260059190911b8201840190848101908b8311156200071d57600080fd5b928501925b82841015620007545783516001600160a01b0381168114620007445760008081fd5b8252928501929085019062000722565b60608b01519097509450505050808211156200076f57600080fd5b506200077e87828801620005ee565b91505092959194509250565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415620007cd57620007cd620007a0565b5060010190565b60008219821115620007ea57620007ea620007a0565b500190565b600181811c908216806200080457607f821691505b602082108114156200082657634e487b7160e01b600052602260045260246000fd5b50919050565b612ced806200083c6000396000f3fe6080604052600436106102485760003560e01c80636c0360eb11610138578063bba64ab4116100b0578063d79779b211610077578063d79779b21461073b578063e33b7de314610771578063e3e1e8ef14610786578063e985e9c514610799578063f2fde38b146107e2578063fdea8e0b1461080257005b8063bba64ab4146106a6578063c54c0192146106bc578063c87b56dd146106cf578063ce7c2ac2146106ef578063d5abeb011461072557005b80638da5cb5b116100ff5780638da5cb5b146105ea57806395d89b41146106085780639852595c1461061d578063a0712d6814610653578063a22cb46514610666578063b88d4fde1461068657005b80636c0360eb1461056b57806370a0823114610580578063715018a6146105a05780637d8966e4146105b55780638b83209b146105ca57005b806334393743116101cb57806348b750441161019257806348b75044146104a157806355f804b3146104c1578063591c648b146104e15780636352211e1461051157806367748b90146105315780636ad1fe021461055157005b806334393743146103f15780633a98ef3914610406578063406072a91461041b57806342842e0e146104615780634783f0ef1461048157005b806318160ddd1161020f57806318160ddd14610366578063191655871461037b57806323b872dd1461039b5780632d1a12f6146103bb5780632eb4a7ab146103db57005b806301ffc9a71461029357806306fdde03146102c8578063081812fc146102ea578063095ea7b31461032257806313faede61461034257005b36610291577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b005b34801561029f57600080fd5b506102b36102ae3660046124cf565b610821565b60405190151581526020015b60405180910390f35b3480156102d457600080fd5b506102dd610873565b6040516102bf9190612544565b3480156102f657600080fd5b5061030a610305366004612557565b610905565b6040516001600160a01b0390911681526020016102bf565b34801561032e57600080fd5b5061029161033d366004612585565b610949565b34801561034e57600080fd5b5061035860105481565b6040519081526020016102bf565b34801561037257600080fd5b506103586109d7565b34801561038757600080fd5b506102916103963660046125b1565b6109e5565b3480156103a757600080fd5b506102916103b63660046125ce565b610b1c565b3480156103c757600080fd5b506102916103d636600461260f565b610b27565b3480156103e757600080fd5b5061035860155481565b3480156103fd57600080fd5b50610291610ba7565b34801561041257600080fd5b50600954610358565b34801561042757600080fd5b5061035861043636600461263f565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b34801561046d57600080fd5b5061029161047c3660046125ce565b610c03565b34801561048d57600080fd5b5061029161049c366004612557565b610c1e565b3480156104ad57600080fd5b506102916104bc36600461263f565b610c62565b3480156104cd57600080fd5b506102916104dc36600461270a565b610e3b565b3480156104ed57600080fd5b506102b36104fc3660046125b1565b60176020526000908152604090205460ff1681565b34801561051d57600080fd5b5061030a61052c366004612557565b610e8d565b34801561053d57600080fd5b5061029161054c366004612770565b610e9f565b34801561055d57600080fd5b506013546102b39060ff1681565b34801561057757600080fd5b506102dd610f43565b34801561058c57600080fd5b5061035861059b3660046125b1565b610fd1565b3480156105ac57600080fd5b5061029161101f565b3480156105c157600080fd5b50610291611085565b3480156105d657600080fd5b5061030a6105e5366004612557565b6110d8565b3480156105f657600080fd5b506008546001600160a01b031661030a565b34801561061457600080fd5b506102dd611108565b34801561062957600080fd5b506103586106383660046125b1565b6001600160a01b03166000908152600c602052604090205490565b610291610661366004612557565b611117565b34801561067257600080fd5b50610291610681366004612833565b61121d565b34801561069257600080fd5b506102916106a1366004612861565b6112b3565b3480156106b257600080fd5b5061035860115481565b6102916106ca3660046128e0565b611304565b3480156106db57600080fd5b506102dd6106ea366004612557565b611509565b3480156106fb57600080fd5b5061035861070a3660046125b1565b6001600160a01b03166000908152600b602052604090205490565b34801561073157600080fd5b5061035860125481565b34801561074757600080fd5b506103586107563660046125b1565b6001600160a01b03166000908152600e602052604090205490565b34801561077d57600080fd5b50600a54610358565b610291610794366004612907565b6115c6565b3480156107a557600080fd5b506102b36107b436600461263f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107ee57600080fd5b506102916107fd3660046125b1565b611733565b34801561080e57600080fd5b506013546102b390610100900460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061085257506001600160e01b03198216635b5e139f60e01b145b8061086d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461088290612985565b80601f01602080910402602001604051908101604052809291908181526020018280546108ae90612985565b80156108fb5780601f106108d0576101008083540402835291602001916108fb565b820191906000526020600020905b8154815290600101906020018083116108de57829003601f168201915b5050505050905090565b6000610910826117fb565b61092d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061095482610e8d565b9050806001600160a01b0316836001600160a01b031614156109895760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109a957506109a781336107b4565b155b156109c7576040516367d9dca160e11b815260040160405180910390fd5b6109d2838383611834565b505050565b600154600054036000190190565b6001600160a01b0381166000908152600b6020526040902054610a235760405162461bcd60e51b8152600401610a1a906129c0565b60405180910390fd5b6000610a2e600a5490565b610a389047612a1c565b90506000610a658383610a60866001600160a01b03166000908152600c602052604090205490565b611890565b905080610a845760405162461bcd60e51b8152600401610a1a90612a34565b6001600160a01b0383166000908152600c602052604081208054839290610aac908490612a1c565b9250508190555080600a6000828254610ac59190612a1c565b90915550610ad5905083826118d6565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b6109d28383836119ef565b6008546001600160a01b0316331480610b4a57506016546001600160a01b031633145b610b665760405162461bcd60e51b8152600401610a1a90612a7f565b601254610b716109d7565b610b7b9084612a1c565b1115610b995760405162461bcd60e51b8152600401610a1a90612aa1565b610ba38183611c03565b5050565b6008546001600160a01b0316331480610bca57506016546001600160a01b031633145b610be65760405162461bcd60e51b8152600401610a1a90612a7f565b6013805461ff001981166101009182900460ff1615909102179055565b6109d2838383604051806020016040528060008152506112b3565b6008546001600160a01b0316331480610c4157506016546001600160a01b031633145b610c5d5760405162461bcd60e51b8152600401610a1a90612a7f565b601555565b6001600160a01b0381166000908152600b6020526040902054610c975760405162461bcd60e51b8152600401610a1a906129c0565b6001600160a01b0382166000908152600e60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa158015610cf4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d189190612ac5565b610d229190612a1c565b90506000610d5b8383610a6087876001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b905080610d7a5760405162461bcd60e51b8152600401610a1a90612a34565b6001600160a01b038085166000908152600f6020908152604080832093871683529290529081208054839290610db1908490612a1c565b90915550506001600160a01b0384166000908152600e602052604081208054839290610dde908490612a1c565b90915550610def9050848483611c1d565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b6008546001600160a01b0316331480610e5e57506016546001600160a01b031633145b610e7a5760405162461bcd60e51b8152600401610a1a90612a7f565b8051610ba3906014906020840190612420565b6000610e9882611c6f565b5192915050565b6008546001600160a01b0316331480610ec257506016546001600160a01b031633145b610ede5760405162461bcd60e51b8152600401610a1a90612a7f565b60005b82518110156109d2578160176000858481518110610f0157610f01612ade565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055610f3c81612af4565b9050610ee1565b60148054610f5090612985565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7c90612985565b8015610fc95780601f10610f9e57610100808354040283529160200191610fc9565b820191906000526020600020905b815481529060010190602001808311610fac57829003601f168201915b505050505081565b60006001600160a01b038216610ffa576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146110795760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a1a565b6110836000611d96565b565b6008546001600160a01b03163314806110a857506016546001600160a01b031633145b6110c45760405162461bcd60e51b8152600401610a1a90612a7f565b6013805460ff19811660ff90911615179055565b6000600d82815481106110ed576110ed612ade565b6000918252602090912001546001600160a01b031692915050565b60606003805461088290612985565b60135460ff166111525760405162461bcd60e51b8152600401610a1a9060208082526004908201526353616c6560e01b604082015260600190565b34601054826111619190612b0f565b1461117e5760405162461bcd60e51b8152600401610a1a90612b2e565b600b811061119e5760405162461bcd60e51b8152600401610a1a90612b51565b6012546111a96109d7565b6111b39083612a1c565b11156111d15760405162461bcd60e51b8152600401610a1a90612aa1565b3233146112105760405162461bcd60e51b815260206004820152600d60248201526c119c9bdb4818dbdb9d1c9858dd609a1b6044820152606401610a1a565b61121a3382611c03565b50565b6001600160a01b0382163314156112475760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112be8484846119ef565b6001600160a01b0383163b151580156112e057506112de84848484611de8565b155b156112fe576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b601354610100900460ff166113455760405162461bcd60e51b815260206004820152600760248201526650726573616c6560c81b6044820152606401610a1a565b6001600160a01b03821660009081526017602052604090205460ff1661139b5760405162461bcd60e51b815260206004820152600b60248201526a2737ba103830b93a3732b960a91b6044820152606401610a1a565b6040516331a9108f60e11b81526004810182905233906001600160a01b03841690636352211e90602401602060405180830381865afa1580156113e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114069190612b73565b6001600160a01b0316146114485760405162461bcd60e51b81526020600482015260096024820152682737ba1037bbb732b960b91b6044820152606401610a1a565b34601154846114579190612b0f565b146114745760405162461bcd60e51b8152600401610a1a90612b2e565b600b83106114945760405162461bcd60e51b8152600401610a1a90612b51565b60125461149f6109d7565b6114a99085612a1c565b11156114c75760405162461bcd60e51b8152600401610a1a90612aa1565b3233146114ff5760405162461bcd60e51b815260206004820152600660248201526529b2b73232b960d11b6044820152606401610a1a565b6109d23384611c03565b6060611514826117fb565b61156a5760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b6064820152608401610a1a565b6000611574611ed0565b9050600081511161159457604051806020016040528060008152506115bf565b8061159e84611edf565b6040516020016115af929190612b90565b6040516020818303038152906040525b9392505050565b601354610100900460ff166116075760405162461bcd60e51b815260206004820152600760248201526650726573616c6560c81b6044820152606401610a1a565b34601154846116169190612b0f565b146116335760405162461bcd60e51b8152600401610a1a90612b2e565b600b83106116535760405162461bcd60e51b8152600401610a1a90612b51565b60125461165e6109d7565b6116689085612a1c565b11156116865760405162461bcd60e51b8152600401610a1a90612aa1565b6116fb828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506015546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611fdc565b6114c75760405162461bcd60e51b815260206004820152600960248201526815da1a5d195b1a5cdd60ba1b6044820152606401610a1a565b6008546001600160a01b0316331461178d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a1a565b6001600160a01b0381166117f25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a1a565b61121a81611d96565b60008160011115801561180f575060005482105b801561086d575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6009546001600160a01b0384166000908152600b6020526040812054909183916118ba9086612b0f565b6118c49190612be5565b6118ce9190612bf9565b949350505050565b804710156119265760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a1a565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611973576040519150601f19603f3d011682016040523d82523d6000602084013e611978565b606091505b50509050806109d25760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a1a565b60006119fa82611c6f565b80519091506000906001600160a01b0316336001600160a01b03161480611a2857508151611a2890336107b4565b80611a43575033611a3884610905565b6001600160a01b0316145b905080611a6357604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611a985760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611abf57604051633a954ecd60e21b815260040160405180910390fd5b611acf6000848460000151611834565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611bb957600054811015611bb957825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610ba3828260405180602001604052806000815250611ff2565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526109d2908490611fff565b60408051606081018252600080825260208201819052918101919091528180600111158015611c9f575060005481105b15611d7d57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611d7b5780516001600160a01b031615611d12579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611d76579392505050565b611d12565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611e1d903390899088908890600401612c10565b6020604051808303816000875af1925050508015611e58575060408051601f3d908101601f19168201909252611e5591810190612c4d565b60015b611eb3573d808015611e86576040519150601f19603f3d011682016040523d82523d6000602084013e611e8b565b606091505b508051611eab576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60606014805461088290612985565b606081611f035750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f2d5780611f1781612af4565b9150611f269050600a83612be5565b9150611f07565b6000816001600160401b03811115611f4757611f4761266d565b6040519080825280601f01601f191660200182016040528015611f71576020820181803683370190505b5090505b84156118ce57611f86600183612bf9565b9150611f93600a86612c6a565b611f9e906030612a1c565b60f81b818381518110611fb357611fb3612ade565b60200101906001600160f81b031916908160001a905350611fd5600a86612be5565b9450611f75565b600082611fe985846120d1565b14949350505050565b6109d28383836001612145565b6000612054826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166123159092919063ffffffff16565b8051909150156109d257808060200190518101906120729190612c7e565b6109d25760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610a1a565b600081815b845181101561213d5760008582815181106120f3576120f3612ade565b60200260200101519050808311612119576000838152602082905260409020925061212a565b600081815260208490526040902092505b508061213581612af4565b9150506120d6565b509392505050565b6000546001600160a01b03851661216e57604051622e076360e81b815260040160405180910390fd5b8361218c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561223d57506001600160a01b0387163b15155b156122c6575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461228e6000888480600101955088611de8565b6122ab576040516368d2bf6b60e11b815260040160405180910390fd5b808214156122435782600054146122c157600080fd5b61230c565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156122c7575b50600055611bfc565b60606118ce848460008585843b61236e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a1a565b600080866001600160a01b0316858760405161238a9190612c9b565b60006040518083038185875af1925050503d80600081146123c7576040519150601f19603f3d011682016040523d82523d6000602084013e6123cc565b606091505b50915091506123dc8282866123e7565b979650505050505050565b606083156123f65750816115bf565b8251156124065782518084602001fd5b8160405162461bcd60e51b8152600401610a1a9190612544565b82805461242c90612985565b90600052602060002090601f01602090048101928261244e5760008555612494565b82601f1061246757805160ff1916838001178555612494565b82800160010185558215612494579182015b82811115612494578251825591602001919060010190612479565b506124a09291506124a4565b5090565b5b808211156124a057600081556001016124a5565b6001600160e01b03198116811461121a57600080fd5b6000602082840312156124e157600080fd5b81356115bf816124b9565b60005b838110156125075781810151838201526020016124ef565b838111156112fe5750506000910152565b600081518084526125308160208601602086016124ec565b601f01601f19169290920160200192915050565b6020815260006115bf6020830184612518565b60006020828403121561256957600080fd5b5035919050565b6001600160a01b038116811461121a57600080fd5b6000806040838503121561259857600080fd5b82356125a381612570565b946020939093013593505050565b6000602082840312156125c357600080fd5b81356115bf81612570565b6000806000606084860312156125e357600080fd5b83356125ee81612570565b925060208401356125fe81612570565b929592945050506040919091013590565b6000806040838503121561262257600080fd5b82359150602083013561263481612570565b809150509250929050565b6000806040838503121561265257600080fd5b823561265d81612570565b9150602083013561263481612570565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156126ab576126ab61266d565b604052919050565b60006001600160401b038311156126cc576126cc61266d565b6126df601f8401601f1916602001612683565b90508281528383830111156126f357600080fd5b828260208301376000602084830101529392505050565b60006020828403121561271c57600080fd5b81356001600160401b0381111561273257600080fd5b8201601f8101841361274357600080fd5b6118ce848235602084016126b3565b801515811461121a57600080fd5b803561276b81612752565b919050565b6000806040838503121561278357600080fd5b82356001600160401b038082111561279a57600080fd5b818501915085601f8301126127ae57600080fd5b81356020828211156127c2576127c261266d565b8160051b92506127d3818401612683565b82815292840181019281810190898511156127ed57600080fd5b948201945b84861015612817578535935061280784612570565b83825294820194908201906127f2565b96506128269050878201612760565b9450505050509250929050565b6000806040838503121561284657600080fd5b823561285181612570565b9150602083013561263481612752565b6000806000806080858703121561287757600080fd5b843561288281612570565b9350602085013561289281612570565b92506040850135915060608501356001600160401b038111156128b457600080fd5b8501601f810187136128c557600080fd5b6128d4878235602084016126b3565b91505092959194509250565b6000806000606084860312156128f557600080fd5b8335925060208401356125fe81612570565b60008060006040848603121561291c57600080fd5b8335925060208401356001600160401b038082111561293a57600080fd5b818601915086601f83011261294e57600080fd5b81358181111561295d57600080fd5b8760208260051b850101111561297257600080fd5b6020830194508093505050509250925092565b600181811c9082168061299957607f821691505b602082108114156129ba57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612a2f57612a2f612a06565b500190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b6020808252600890820152674e6f74207465616d60c01b604082015260600190565b6020808252600a90820152694d617820737570706c7960b01b604082015260600190565b600060208284031215612ad757600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612b0857612b08612a06565b5060010190565b6000816000190483118215151615612b2957612b29612a06565b500290565b6020808252600990820152684554482076616c756560b81b604082015260600190565b602080825260089082015267546f6f206d616e7960c01b604082015260600190565b600060208284031215612b8557600080fd5b81516115bf81612570565b60008351612ba28184602088016124ec565b835190830190612bb68183602088016124ec565b64173539b7b760d91b9101908152600501949350505050565b634e487b7160e01b600052601260045260246000fd5b600082612bf457612bf4612bcf565b500490565b600082821015612c0b57612c0b612a06565b500390565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c4390830184612518565b9695505050505050565b600060208284031215612c5f57600080fd5b81516115bf816124b9565b600082612c7957612c79612bcf565b500690565b600060208284031215612c9057600080fd5b81516115bf81612752565b60008251612cad8184602087016124ec565b919091019291505056fea2646970667358221220eb7b75705a5fed2cba81bbec68e76791ea8221f93298199887ad2e8fd70641a464736f6c634300080c0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000000d46616d696c79546565734e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000546544e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000008dfdd0ff4661abd44b06b1204c6334eacc8575af0000000000000000000000006553fd0ed4f4bd4b87aed74e95dcc049f5f11a78000000000000000000000000c7204fd6a370e9f577e8f9533fc687f3108a70b2000000000000000000000000b211499e20c19063f99249b14239a77e0a44408b00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000096000000000000000000000000000000000000000000000000000000000000011b000000000000000000000000000000000000000000000000000000000000011b000000000000000000000000000000000000000000000000000000000000011b

Deployed Bytecode

0x6080604052600436106102485760003560e01c80636c0360eb11610138578063bba64ab4116100b0578063d79779b211610077578063d79779b21461073b578063e33b7de314610771578063e3e1e8ef14610786578063e985e9c514610799578063f2fde38b146107e2578063fdea8e0b1461080257005b8063bba64ab4146106a6578063c54c0192146106bc578063c87b56dd146106cf578063ce7c2ac2146106ef578063d5abeb011461072557005b80638da5cb5b116100ff5780638da5cb5b146105ea57806395d89b41146106085780639852595c1461061d578063a0712d6814610653578063a22cb46514610666578063b88d4fde1461068657005b80636c0360eb1461056b57806370a0823114610580578063715018a6146105a05780637d8966e4146105b55780638b83209b146105ca57005b806334393743116101cb57806348b750441161019257806348b75044146104a157806355f804b3146104c1578063591c648b146104e15780636352211e1461051157806367748b90146105315780636ad1fe021461055157005b806334393743146103f15780633a98ef3914610406578063406072a91461041b57806342842e0e146104615780634783f0ef1461048157005b806318160ddd1161020f57806318160ddd14610366578063191655871461037b57806323b872dd1461039b5780632d1a12f6146103bb5780632eb4a7ab146103db57005b806301ffc9a71461029357806306fdde03146102c8578063081812fc146102ea578063095ea7b31461032257806313faede61461034257005b36610291577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b005b34801561029f57600080fd5b506102b36102ae3660046124cf565b610821565b60405190151581526020015b60405180910390f35b3480156102d457600080fd5b506102dd610873565b6040516102bf9190612544565b3480156102f657600080fd5b5061030a610305366004612557565b610905565b6040516001600160a01b0390911681526020016102bf565b34801561032e57600080fd5b5061029161033d366004612585565b610949565b34801561034e57600080fd5b5061035860105481565b6040519081526020016102bf565b34801561037257600080fd5b506103586109d7565b34801561038757600080fd5b506102916103963660046125b1565b6109e5565b3480156103a757600080fd5b506102916103b63660046125ce565b610b1c565b3480156103c757600080fd5b506102916103d636600461260f565b610b27565b3480156103e757600080fd5b5061035860155481565b3480156103fd57600080fd5b50610291610ba7565b34801561041257600080fd5b50600954610358565b34801561042757600080fd5b5061035861043636600461263f565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b34801561046d57600080fd5b5061029161047c3660046125ce565b610c03565b34801561048d57600080fd5b5061029161049c366004612557565b610c1e565b3480156104ad57600080fd5b506102916104bc36600461263f565b610c62565b3480156104cd57600080fd5b506102916104dc36600461270a565b610e3b565b3480156104ed57600080fd5b506102b36104fc3660046125b1565b60176020526000908152604090205460ff1681565b34801561051d57600080fd5b5061030a61052c366004612557565b610e8d565b34801561053d57600080fd5b5061029161054c366004612770565b610e9f565b34801561055d57600080fd5b506013546102b39060ff1681565b34801561057757600080fd5b506102dd610f43565b34801561058c57600080fd5b5061035861059b3660046125b1565b610fd1565b3480156105ac57600080fd5b5061029161101f565b3480156105c157600080fd5b50610291611085565b3480156105d657600080fd5b5061030a6105e5366004612557565b6110d8565b3480156105f657600080fd5b506008546001600160a01b031661030a565b34801561061457600080fd5b506102dd611108565b34801561062957600080fd5b506103586106383660046125b1565b6001600160a01b03166000908152600c602052604090205490565b610291610661366004612557565b611117565b34801561067257600080fd5b50610291610681366004612833565b61121d565b34801561069257600080fd5b506102916106a1366004612861565b6112b3565b3480156106b257600080fd5b5061035860115481565b6102916106ca3660046128e0565b611304565b3480156106db57600080fd5b506102dd6106ea366004612557565b611509565b3480156106fb57600080fd5b5061035861070a3660046125b1565b6001600160a01b03166000908152600b602052604090205490565b34801561073157600080fd5b5061035860125481565b34801561074757600080fd5b506103586107563660046125b1565b6001600160a01b03166000908152600e602052604090205490565b34801561077d57600080fd5b50600a54610358565b610291610794366004612907565b6115c6565b3480156107a557600080fd5b506102b36107b436600461263f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107ee57600080fd5b506102916107fd3660046125b1565b611733565b34801561080e57600080fd5b506013546102b390610100900460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061085257506001600160e01b03198216635b5e139f60e01b145b8061086d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461088290612985565b80601f01602080910402602001604051908101604052809291908181526020018280546108ae90612985565b80156108fb5780601f106108d0576101008083540402835291602001916108fb565b820191906000526020600020905b8154815290600101906020018083116108de57829003601f168201915b5050505050905090565b6000610910826117fb565b61092d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061095482610e8d565b9050806001600160a01b0316836001600160a01b031614156109895760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109a957506109a781336107b4565b155b156109c7576040516367d9dca160e11b815260040160405180910390fd5b6109d2838383611834565b505050565b600154600054036000190190565b6001600160a01b0381166000908152600b6020526040902054610a235760405162461bcd60e51b8152600401610a1a906129c0565b60405180910390fd5b6000610a2e600a5490565b610a389047612a1c565b90506000610a658383610a60866001600160a01b03166000908152600c602052604090205490565b611890565b905080610a845760405162461bcd60e51b8152600401610a1a90612a34565b6001600160a01b0383166000908152600c602052604081208054839290610aac908490612a1c565b9250508190555080600a6000828254610ac59190612a1c565b90915550610ad5905083826118d6565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b6109d28383836119ef565b6008546001600160a01b0316331480610b4a57506016546001600160a01b031633145b610b665760405162461bcd60e51b8152600401610a1a90612a7f565b601254610b716109d7565b610b7b9084612a1c565b1115610b995760405162461bcd60e51b8152600401610a1a90612aa1565b610ba38183611c03565b5050565b6008546001600160a01b0316331480610bca57506016546001600160a01b031633145b610be65760405162461bcd60e51b8152600401610a1a90612a7f565b6013805461ff001981166101009182900460ff1615909102179055565b6109d2838383604051806020016040528060008152506112b3565b6008546001600160a01b0316331480610c4157506016546001600160a01b031633145b610c5d5760405162461bcd60e51b8152600401610a1a90612a7f565b601555565b6001600160a01b0381166000908152600b6020526040902054610c975760405162461bcd60e51b8152600401610a1a906129c0565b6001600160a01b0382166000908152600e60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa158015610cf4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d189190612ac5565b610d229190612a1c565b90506000610d5b8383610a6087876001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b905080610d7a5760405162461bcd60e51b8152600401610a1a90612a34565b6001600160a01b038085166000908152600f6020908152604080832093871683529290529081208054839290610db1908490612a1c565b90915550506001600160a01b0384166000908152600e602052604081208054839290610dde908490612a1c565b90915550610def9050848483611c1d565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b6008546001600160a01b0316331480610e5e57506016546001600160a01b031633145b610e7a5760405162461bcd60e51b8152600401610a1a90612a7f565b8051610ba3906014906020840190612420565b6000610e9882611c6f565b5192915050565b6008546001600160a01b0316331480610ec257506016546001600160a01b031633145b610ede5760405162461bcd60e51b8152600401610a1a90612a7f565b60005b82518110156109d2578160176000858481518110610f0157610f01612ade565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055610f3c81612af4565b9050610ee1565b60148054610f5090612985565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7c90612985565b8015610fc95780601f10610f9e57610100808354040283529160200191610fc9565b820191906000526020600020905b815481529060010190602001808311610fac57829003601f168201915b505050505081565b60006001600160a01b038216610ffa576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146110795760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a1a565b6110836000611d96565b565b6008546001600160a01b03163314806110a857506016546001600160a01b031633145b6110c45760405162461bcd60e51b8152600401610a1a90612a7f565b6013805460ff19811660ff90911615179055565b6000600d82815481106110ed576110ed612ade565b6000918252602090912001546001600160a01b031692915050565b60606003805461088290612985565b60135460ff166111525760405162461bcd60e51b8152600401610a1a9060208082526004908201526353616c6560e01b604082015260600190565b34601054826111619190612b0f565b1461117e5760405162461bcd60e51b8152600401610a1a90612b2e565b600b811061119e5760405162461bcd60e51b8152600401610a1a90612b51565b6012546111a96109d7565b6111b39083612a1c565b11156111d15760405162461bcd60e51b8152600401610a1a90612aa1565b3233146112105760405162461bcd60e51b815260206004820152600d60248201526c119c9bdb4818dbdb9d1c9858dd609a1b6044820152606401610a1a565b61121a3382611c03565b50565b6001600160a01b0382163314156112475760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112be8484846119ef565b6001600160a01b0383163b151580156112e057506112de84848484611de8565b155b156112fe576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b601354610100900460ff166113455760405162461bcd60e51b815260206004820152600760248201526650726573616c6560c81b6044820152606401610a1a565b6001600160a01b03821660009081526017602052604090205460ff1661139b5760405162461bcd60e51b815260206004820152600b60248201526a2737ba103830b93a3732b960a91b6044820152606401610a1a565b6040516331a9108f60e11b81526004810182905233906001600160a01b03841690636352211e90602401602060405180830381865afa1580156113e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114069190612b73565b6001600160a01b0316146114485760405162461bcd60e51b81526020600482015260096024820152682737ba1037bbb732b960b91b6044820152606401610a1a565b34601154846114579190612b0f565b146114745760405162461bcd60e51b8152600401610a1a90612b2e565b600b83106114945760405162461bcd60e51b8152600401610a1a90612b51565b60125461149f6109d7565b6114a99085612a1c565b11156114c75760405162461bcd60e51b8152600401610a1a90612aa1565b3233146114ff5760405162461bcd60e51b815260206004820152600660248201526529b2b73232b960d11b6044820152606401610a1a565b6109d23384611c03565b6060611514826117fb565b61156a5760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b6064820152608401610a1a565b6000611574611ed0565b9050600081511161159457604051806020016040528060008152506115bf565b8061159e84611edf565b6040516020016115af929190612b90565b6040516020818303038152906040525b9392505050565b601354610100900460ff166116075760405162461bcd60e51b815260206004820152600760248201526650726573616c6560c81b6044820152606401610a1a565b34601154846116169190612b0f565b146116335760405162461bcd60e51b8152600401610a1a90612b2e565b600b83106116535760405162461bcd60e51b8152600401610a1a90612b51565b60125461165e6109d7565b6116689085612a1c565b11156116865760405162461bcd60e51b8152600401610a1a90612aa1565b6116fb828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506015546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611fdc565b6114c75760405162461bcd60e51b815260206004820152600960248201526815da1a5d195b1a5cdd60ba1b6044820152606401610a1a565b6008546001600160a01b0316331461178d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a1a565b6001600160a01b0381166117f25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a1a565b61121a81611d96565b60008160011115801561180f575060005482105b801561086d575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6009546001600160a01b0384166000908152600b6020526040812054909183916118ba9086612b0f565b6118c49190612be5565b6118ce9190612bf9565b949350505050565b804710156119265760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a1a565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611973576040519150601f19603f3d011682016040523d82523d6000602084013e611978565b606091505b50509050806109d25760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a1a565b60006119fa82611c6f565b80519091506000906001600160a01b0316336001600160a01b03161480611a2857508151611a2890336107b4565b80611a43575033611a3884610905565b6001600160a01b0316145b905080611a6357604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611a985760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611abf57604051633a954ecd60e21b815260040160405180910390fd5b611acf6000848460000151611834565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611bb957600054811015611bb957825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610ba3828260405180602001604052806000815250611ff2565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526109d2908490611fff565b60408051606081018252600080825260208201819052918101919091528180600111158015611c9f575060005481105b15611d7d57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611d7b5780516001600160a01b031615611d12579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611d76579392505050565b611d12565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611e1d903390899088908890600401612c10565b6020604051808303816000875af1925050508015611e58575060408051601f3d908101601f19168201909252611e5591810190612c4d565b60015b611eb3573d808015611e86576040519150601f19603f3d011682016040523d82523d6000602084013e611e8b565b606091505b508051611eab576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60606014805461088290612985565b606081611f035750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f2d5780611f1781612af4565b9150611f269050600a83612be5565b9150611f07565b6000816001600160401b03811115611f4757611f4761266d565b6040519080825280601f01601f191660200182016040528015611f71576020820181803683370190505b5090505b84156118ce57611f86600183612bf9565b9150611f93600a86612c6a565b611f9e906030612a1c565b60f81b818381518110611fb357611fb3612ade565b60200101906001600160f81b031916908160001a905350611fd5600a86612be5565b9450611f75565b600082611fe985846120d1565b14949350505050565b6109d28383836001612145565b6000612054826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166123159092919063ffffffff16565b8051909150156109d257808060200190518101906120729190612c7e565b6109d25760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610a1a565b600081815b845181101561213d5760008582815181106120f3576120f3612ade565b60200260200101519050808311612119576000838152602082905260409020925061212a565b600081815260208490526040902092505b508061213581612af4565b9150506120d6565b509392505050565b6000546001600160a01b03851661216e57604051622e076360e81b815260040160405180910390fd5b8361218c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561223d57506001600160a01b0387163b15155b156122c6575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461228e6000888480600101955088611de8565b6122ab576040516368d2bf6b60e11b815260040160405180910390fd5b808214156122435782600054146122c157600080fd5b61230c565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156122c7575b50600055611bfc565b60606118ce848460008585843b61236e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a1a565b600080866001600160a01b0316858760405161238a9190612c9b565b60006040518083038185875af1925050503d80600081146123c7576040519150601f19603f3d011682016040523d82523d6000602084013e6123cc565b606091505b50915091506123dc8282866123e7565b979650505050505050565b606083156123f65750816115bf565b8251156124065782518084602001fd5b8160405162461bcd60e51b8152600401610a1a9190612544565b82805461242c90612985565b90600052602060002090601f01602090048101928261244e5760008555612494565b82601f1061246757805160ff1916838001178555612494565b82800160010185558215612494579182015b82811115612494578251825591602001919060010190612479565b506124a09291506124a4565b5090565b5b808211156124a057600081556001016124a5565b6001600160e01b03198116811461121a57600080fd5b6000602082840312156124e157600080fd5b81356115bf816124b9565b60005b838110156125075781810151838201526020016124ef565b838111156112fe5750506000910152565b600081518084526125308160208601602086016124ec565b601f01601f19169290920160200192915050565b6020815260006115bf6020830184612518565b60006020828403121561256957600080fd5b5035919050565b6001600160a01b038116811461121a57600080fd5b6000806040838503121561259857600080fd5b82356125a381612570565b946020939093013593505050565b6000602082840312156125c357600080fd5b81356115bf81612570565b6000806000606084860312156125e357600080fd5b83356125ee81612570565b925060208401356125fe81612570565b929592945050506040919091013590565b6000806040838503121561262257600080fd5b82359150602083013561263481612570565b809150509250929050565b6000806040838503121561265257600080fd5b823561265d81612570565b9150602083013561263481612570565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156126ab576126ab61266d565b604052919050565b60006001600160401b038311156126cc576126cc61266d565b6126df601f8401601f1916602001612683565b90508281528383830111156126f357600080fd5b828260208301376000602084830101529392505050565b60006020828403121561271c57600080fd5b81356001600160401b0381111561273257600080fd5b8201601f8101841361274357600080fd5b6118ce848235602084016126b3565b801515811461121a57600080fd5b803561276b81612752565b919050565b6000806040838503121561278357600080fd5b82356001600160401b038082111561279a57600080fd5b818501915085601f8301126127ae57600080fd5b81356020828211156127c2576127c261266d565b8160051b92506127d3818401612683565b82815292840181019281810190898511156127ed57600080fd5b948201945b84861015612817578535935061280784612570565b83825294820194908201906127f2565b96506128269050878201612760565b9450505050509250929050565b6000806040838503121561284657600080fd5b823561285181612570565b9150602083013561263481612752565b6000806000806080858703121561287757600080fd5b843561288281612570565b9350602085013561289281612570565b92506040850135915060608501356001600160401b038111156128b457600080fd5b8501601f810187136128c557600080fd5b6128d4878235602084016126b3565b91505092959194509250565b6000806000606084860312156128f557600080fd5b8335925060208401356125fe81612570565b60008060006040848603121561291c57600080fd5b8335925060208401356001600160401b038082111561293a57600080fd5b818601915086601f83011261294e57600080fd5b81358181111561295d57600080fd5b8760208260051b850101111561297257600080fd5b6020830194508093505050509250925092565b600181811c9082168061299957607f821691505b602082108114156129ba57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612a2f57612a2f612a06565b500190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b6020808252600890820152674e6f74207465616d60c01b604082015260600190565b6020808252600a90820152694d617820737570706c7960b01b604082015260600190565b600060208284031215612ad757600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612b0857612b08612a06565b5060010190565b6000816000190483118215151615612b2957612b29612a06565b500290565b6020808252600990820152684554482076616c756560b81b604082015260600190565b602080825260089082015267546f6f206d616e7960c01b604082015260600190565b600060208284031215612b8557600080fd5b81516115bf81612570565b60008351612ba28184602088016124ec565b835190830190612bb68183602088016124ec565b64173539b7b760d91b9101908152600501949350505050565b634e487b7160e01b600052601260045260246000fd5b600082612bf457612bf4612bcf565b500490565b600082821015612c0b57612c0b612a06565b500390565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c4390830184612518565b9695505050505050565b600060208284031215612c5f57600080fd5b81516115bf816124b9565b600082612c7957612c79612bcf565b500690565b600060208284031215612c9057600080fd5b81516115bf81612752565b60008251612cad8184602087016124ec565b919091019291505056fea2646970667358221220eb7b75705a5fed2cba81bbec68e76791ea8221f93298199887ad2e8fd70641a464736f6c634300080c0033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000000d46616d696c79546565734e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000546544e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000008dfdd0ff4661abd44b06b1204c6334eacc8575af0000000000000000000000006553fd0ed4f4bd4b87aed74e95dcc049f5f11a78000000000000000000000000c7204fd6a370e9f577e8f9533fc687f3108a70b2000000000000000000000000b211499e20c19063f99249b14239a77e0a44408b00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000096000000000000000000000000000000000000000000000000000000000000011b000000000000000000000000000000000000000000000000000000000000011b000000000000000000000000000000000000000000000000000000000000011b

-----Decoded View---------------
Arg [0] : _name (string): FamilyTeesNFT
Arg [1] : _symbol (string): FTNFT
Arg [2] : recipients (address[]): 0x8DFdD0FF4661abd44B06b1204C6334eACc8575af,0x6553FD0Ed4f4Bd4B87aed74E95DcC049f5F11A78,0xc7204Fd6A370e9f577e8f9533Fc687f3108A70B2,0xb211499e20c19063f99249B14239a77e0A44408b
Arg [3] : split (uint256[]): 150,283,283,283

-----Encoded View---------------
18 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [5] : 46616d696c79546565734e465400000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 46544e4654000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 0000000000000000000000008dfdd0ff4661abd44b06b1204c6334eacc8575af
Arg [10] : 0000000000000000000000006553fd0ed4f4bd4b87aed74e95dcc049f5f11a78
Arg [11] : 000000000000000000000000c7204fd6a370e9f577e8f9533fc687f3108a70b2
Arg [12] : 000000000000000000000000b211499e20c19063f99249b14239a77e0a44408b
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000096
Arg [15] : 000000000000000000000000000000000000000000000000000000000000011b
Arg [16] : 000000000000000000000000000000000000000000000000000000000000011b
Arg [17] : 000000000000000000000000000000000000000000000000000000000000011b


Deployed Bytecode Sourcemap

62387:3631:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24079:40;6027:10;24079:40;;;-1:-1:-1;;;;;206:32:1;;;188:51;;24109:9:0;270:2:1;255:18;;248:34;161:18;24079:40:0;;;;;;;62387:3631;;;44806:305;;;;;;;;;;-1:-1:-1;44806:305:0;;;;;:::i;:::-;;:::i;:::-;;;844:14:1;;837:22;819:41;;807:2;792:18;44806:305:0;;;;;;;;48191:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;49694:204::-;;;;;;;;;;-1:-1:-1;49694:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1971:32:1;;;1953:51;;1941:2;1926:18;49694:204:0;1807:203:1;49257:371:0;;;;;;;;;;-1:-1:-1;49257:371:0;;;;;:::i;:::-;;:::i;62484:32::-;;;;;;;;;;;;;;;;;;;2617:25:1;;;2605:2;2590:18;62484:32:0;2471:177:1;44055:303:0;;;;;;;;;;;;;:::i;25865:566::-;;;;;;;;;;-1:-1:-1;25865:566:0;;;;;:::i;:::-;;:::i;50551:170::-;;;;;;;;;;-1:-1:-1;50551:170:0;;;;;:::i;:::-;;:::i;64668:193::-;;;;;;;;;;-1:-1:-1;64668:193:0;;;;;:::i;:::-;;:::i;62698:25::-;;;;;;;;;;;;;;;;65585:70;;;;;;;;;;;;;:::i;24210:91::-;;;;;;;;;;-1:-1:-1;24281:12:0;;24210:91;;25339:135;;;;;;;;;;-1:-1:-1;25339:135:0;;;;;:::i;:::-;-1:-1:-1;;;;;25436:21:0;;;25409:7;25436:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;25339:135;50792:185;;;;;;;;;;-1:-1:-1;50792:185:0;;;;;:::i;:::-;;:::i;65775:99::-;;;;;;;;;;-1:-1:-1;65775:99:0;;;;;:::i;:::-;;:::i;26699:641::-;;;;;;;;;;-1:-1:-1;26699:641:0;;;;;:::i;:::-;;:::i;65415:97::-;;;;;;;;;;-1:-1:-1;65415:97:0;;;;;:::i;:::-;;:::i;62805:49::-;;;;;;;;;;-1:-1:-1;62805:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;48000:124;;;;;;;;;;-1:-1:-1;48000:124:0;;;;;:::i;:::-;;:::i;65208:202::-;;;;;;;;;;-1:-1:-1;65208:202:0;;;;;:::i;:::-;;:::i;62610:24::-;;;;;;;;;;-1:-1:-1;62610:24:0;;;;;;;;62671:21;;;;;;;;;;;;;:::i;45175:206::-;;;;;;;;;;-1:-1:-1;45175:206:0;;;;;:::i;:::-;;:::i;7874:103::-;;;;;;;;;;;;;:::i;65517:63::-;;;;;;;;;;;;;:::i;25565:100::-;;;;;;;;;;-1:-1:-1;25565:100:0;;;;;:::i;:::-;;:::i;7223:87::-;;;;;;;;;;-1:-1:-1;7296:6:0;;-1:-1:-1;;;;;7296:6:0;7223:87;;48360:104;;;;;;;;;;;;;:::i;25061:109::-;;;;;;;;;;-1:-1:-1;25061:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;25144:18:0;25117:7;25144:18;;;:9;:18;;;;;;;25061:109;63170:371;;;;;;:::i;:::-;;:::i;49970:279::-;;;;;;;;;;-1:-1:-1;49970:279:0;;;;;:::i;:::-;;:::i;51048:369::-;;;;;;;;;;-1:-1:-1;51048:369:0;;;;;:::i;:::-;;:::i;62523:40::-;;;;;;;;;;;;;;;;64079:584;;;;;;:::i;:::-;;:::i;64866:336::-;;;;;;;;;;-1:-1:-1;64866:336:0;;;;;:::i;:::-;;:::i;24857:105::-;;;;;;;;;;-1:-1:-1;24857:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;24938:16:0;24911:7;24938:16;;;:7;:16;;;;;;;24857:105;62570:31;;;;;;;;;;;;;;;;24647:119;;;;;;;;;;-1:-1:-1;24647:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;24732:26:0;24705:7;24732:26;;;:19;:26;;;;;;;24647:119;24395:95;;;;;;;;;;-1:-1:-1;24468:14:0;;24395:95;;63546:528;;;;;;:::i;:::-;;:::i;50320:164::-;;;;;;;;;;-1:-1:-1;50320:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;50441:25:0;;;50417:4;50441:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;50320:164;8132:201;;;;;;;;;;-1:-1:-1;8132:201:0;;;;;:::i;:::-;;:::i;62638:27::-;;;;;;;;;;-1:-1:-1;62638:27:0;;;;;;;;;;;44806:305;44908:4;-1:-1:-1;;;;;;44945:40:0;;-1:-1:-1;;;44945:40:0;;:105;;-1:-1:-1;;;;;;;45002:48:0;;-1:-1:-1;;;45002:48:0;44945:105;:158;;;-1:-1:-1;;;;;;;;;;31360:40:0;;;45067:36;44925:178;44806:305;-1:-1:-1;;44806:305:0:o;48191:100::-;48245:13;48278:5;48271:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48191:100;:::o;49694:204::-;49762:7;49787:16;49795:7;49787;:16::i;:::-;49782:64;;49812:34;;-1:-1:-1;;;49812:34:0;;;;;;;;;;;49782:64;-1:-1:-1;49866:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;49866:24:0;;49694:204::o;49257:371::-;49330:13;49346:24;49362:7;49346:15;:24::i;:::-;49330:40;;49391:5;-1:-1:-1;;;;;49385:11:0;:2;-1:-1:-1;;;;;49385:11:0;;49381:48;;;49405:24;;-1:-1:-1;;;49405:24:0;;;;;;;;;;;49381:48;6027:10;-1:-1:-1;;;;;49446:21:0;;;;;;:63;;-1:-1:-1;49472:37:0;49489:5;6027:10;50320:164;:::i;49472:37::-;49471:38;49446:63;49442:138;;;49533:35;;-1:-1:-1;;;49533:35:0;;;;;;;;;;;49442:138;49592:28;49601:2;49605:7;49614:5;49592:8;:28::i;:::-;49319:309;49257:371;;:::o;44055:303::-;65971:1;44309:12;44099:7;44293:13;:28;-1:-1:-1;;44293:46:0;;44055:303::o;25865:566::-;-1:-1:-1;;;;;25941:16:0;;25960:1;25941:16;;;:7;:16;;;;;;25933:71;;;;-1:-1:-1;;;25933:71:0;;;;;;;:::i;:::-;;;;;;;;;26017:21;26065:15;24468:14;;;24395:95;26065:15;26041:39;;:21;:39;:::i;:::-;26017:63;;26091:15;26109:58;26125:7;26134:13;26149:17;26158:7;-1:-1:-1;;;;;25144:18:0;25117:7;25144:18;;;:9;:18;;;;;;;25061:109;26149:17;26109:15;:58::i;:::-;26091:76;-1:-1:-1;26188:12:0;26180:68;;;;-1:-1:-1;;;26180:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26261:18:0;;;;;;:9;:18;;;;;:29;;26283:7;;26261:18;:29;;26283:7;;26261:29;:::i;:::-;;;;;;;;26319:7;26301:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;26339:35:0;;-1:-1:-1;26357:7:0;26366;26339:17;:35::i;:::-;26390:33;;;-1:-1:-1;;;;;206:32:1;;188:51;;270:2;255:18;;248:34;;;26390:33:0;;161:18:1;26390:33:0;;;;;;;25922:509;;25865:566;:::o;50551:170::-;50685:28;50695:4;50701:2;50705:7;50685:9;:28::i;64668:193::-;7296:6;;-1:-1:-1;;;;;7296:6:0;63084:10;:21;;:44;;-1:-1:-1;63123:5:0;;-1:-1:-1;;;;;63123:5:0;63109:10;:19;63084:44;63076:66;;;;-1:-1:-1;;;63076:66:0;;;;;;;:::i;:::-;64791:9:::1;;64774:13;:11;:13::i;:::-;64763:24;::::0;:8;:24:::1;:::i;:::-;:37;;64755:60;;;;-1:-1:-1::0;;;64755:60:0::1;;;;;;;:::i;:::-;64826:30;64836:9;64847:8;64826:9;:30::i;:::-;64668:193:::0;;:::o;65585:70::-;7296:6;;-1:-1:-1;;;;;7296:6:0;63084:10;:21;;:44;;-1:-1:-1;63123:5:0;;-1:-1:-1;;;;;63123:5:0;63109:10;:19;63084:44;63076:66;;;;-1:-1:-1;;;63076:66:0;;;;;;;:::i;:::-;65643:7:::1;::::0;;-1:-1:-1;;65631:19:0;::::1;65643:7;::::0;;;::::1;;;65642:8;65631:19:::0;;::::1;;::::0;;65585:70::o;50792:185::-;50930:39;50947:4;50953:2;50957:7;50930:39;;;;;;;;;;;;:16;:39::i;65775:99::-;7296:6;;-1:-1:-1;;;;;7296:6:0;63084:10;:21;;:44;;-1:-1:-1;63123:5:0;;-1:-1:-1;;;;;63123:5:0;63109:10;:19;63084:44;63076:66;;;;-1:-1:-1;;;63076:66:0;;;;;;;:::i;:::-;65845:10:::1;:24:::0;65775:99::o;26699:641::-;-1:-1:-1;;;;;26781:16:0;;26800:1;26781:16;;;:7;:16;;;;;;26773:71;;;;-1:-1:-1;;;26773:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24732:26:0;;26857:21;24732:26;;;:19;:26;;;;;;26881:30;;-1:-1:-1;;;26881:30:0;;26905:4;26881:30;;;1953:51:1;-1:-1:-1;;;;;26881:15:0;;;;;1926:18:1;;26881:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;26857:77;;26945:15;26963:65;26979:7;26988:13;27003:24;27012:5;27019:7;-1:-1:-1;;;;;25436:21:0;;;25409:7;25436:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;25339:135;26963:65;26945:83;-1:-1:-1;27049:12:0;27041:68;;;;-1:-1:-1;;;27041:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27122:21:0;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;;;:41;;27156:7;;27122:21;:41;;27156:7;;27122:41;:::i;:::-;;;;-1:-1:-1;;;;;;;27174:26:0;;;;;;:19;:26;;;;;:37;;27204:7;;27174:26;:37;;27204:7;;27174:37;:::i;:::-;;;;-1:-1:-1;27224:47:0;;-1:-1:-1;27247:5:0;27254:7;27263;27224:22;:47::i;:::-;27287:45;;;-1:-1:-1;;;;;206:32:1;;;188:51;;270:2;255:18;;248:34;;;27287:45:0;;;;;161:18:1;27287:45:0;;;;;;;26762:578;;26699:641;;:::o;65415:97::-;7296:6;;-1:-1:-1;;;;;7296:6:0;63084:10;:21;;:44;;-1:-1:-1;63123:5:0;;-1:-1:-1;;;;;63123:5:0;63109:10;:19;63084:44;63076:66;;;;-1:-1:-1;;;63076:66:0;;;;;;;:::i;:::-;65486:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;48000:124::-:0;48064:7;48091:20;48103:7;48091:11;:20::i;:::-;:25;;48000:124;-1:-1:-1;;48000:124:0:o;65208:202::-;7296:6;;-1:-1:-1;;;;;7296:6:0;63084:10;:21;;:44;;-1:-1:-1;63123:5:0;;-1:-1:-1;;;;;63123:5:0;63109:10;:19;63084:44;63076:66;;;;-1:-1:-1;;;63076:66:0;;;;;;;:::i;:::-;65305:6:::1;65301:104;65321:9;:16;65317:1;:20;65301:104;;;65389:7;65355:17;:31;65373:9;65383:1;65373:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;65355:31:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;65355:31:0;:41;;-1:-1:-1;;65355:41:0::1;::::0;::::1;;::::0;;;::::1;::::0;;65339:3:::1;::::0;::::1;:::i;:::-;;;65301:104;;62671:21:::0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45175:206::-;45239:7;-1:-1:-1;;;;;45263:19:0;;45259:60;;45291:28;;-1:-1:-1;;;45291:28:0;;;;;;;;;;;45259:60;-1:-1:-1;;;;;;45345:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;45345:27:0;;45175:206::o;7874:103::-;7296:6;;-1:-1:-1;;;;;7296:6:0;6027:10;7443:23;7435:68;;;;-1:-1:-1;;;7435:68:0;;13366:2:1;7435:68:0;;;13348:21:1;;;13385:18;;;13378:30;13444:34;13424:18;;;13417:62;13496:18;;7435:68:0;13164:356:1;7435:68:0;7939:30:::1;7966:1;7939:18;:30::i;:::-;7874:103::o:0;65517:63::-;7296:6;;-1:-1:-1;;;;;7296:6:0;63084:10;:21;;:44;;-1:-1:-1;63123:5:0;;-1:-1:-1;;;;;63123:5:0;63109:10;:19;63084:44;63076:66;;;;-1:-1:-1;;;63076:66:0;;;;;;;:::i;:::-;65571:4:::1;::::0;;-1:-1:-1;;65563:12:0;::::1;65571:4;::::0;;::::1;65570:5;65563:12;::::0;;65517:63::o;25565:100::-;25616:7;25643;25651:5;25643:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;25643:14:0;;25565:100;-1:-1:-1;;25565:100:0:o;48360:104::-;48416:13;48449:7;48442:14;;;;;:::i;63170:371::-;63235:4;;;;63227:21;;;;-1:-1:-1;;;63227:21:0;;;;;;13727:2:1;13709:21;;;13766:1;13746:18;;;13739:29;-1:-1:-1;;;13799:2:1;13784:18;;13777:34;13843:2;13828:18;;13525:327;63227:21:0;63285:9;63277:4;;63267:7;:14;;;;:::i;:::-;:27;63259:49;;;;-1:-1:-1;;;63259:49:0;;;;;;;:::i;:::-;63337:2;63327:7;:12;63319:33;;;;-1:-1:-1;;;63319:33:0;;;;;;;:::i;:::-;63398:9;;63381:13;:11;:13::i;:::-;63371:23;;:7;:23;:::i;:::-;:36;;63363:59;;;;-1:-1:-1;;;63363:59:0;;;;;;;:::i;:::-;63441:9;63454:10;63441:23;63433:49;;;;-1:-1:-1;;;63433:49:0;;14905:2:1;63433:49:0;;;14887:21:1;14944:2;14924:18;;;14917:30;-1:-1:-1;;;14963:18:1;;;14956:43;15016:18;;63433:49:0;14703:337:1;63433:49:0;63503:30;63513:10;63525:7;63503:9;:30::i;:::-;63170:371;:::o;49970:279::-;-1:-1:-1;;;;;50061:24:0;;6027:10;50061:24;50057:54;;;50094:17;;-1:-1:-1;;;50094:17:0;;;;;;;;;;;50057:54;6027:10;50124:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;50124:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;50124:53:0;;;;;;;;;;50193:48;;819:41:1;;;50124:42:0;;6027:10;50193:48;;792:18:1;50193:48:0;;;;;;;49970:279;;:::o;51048:369::-;51215:28;51225:4;51231:2;51235:7;51215:9;:28::i;:::-;-1:-1:-1;;;;;51258:13:0;;9834:20;9882:8;;51258:76;;;;;51278:56;51309:4;51315:2;51319:7;51328:5;51278:30;:56::i;:::-;51277:57;51258:76;51254:156;;;51358:40;;-1:-1:-1;;;51358:40:0;;;;;;;;;;;51254:156;51048:369;;;;:::o;64079:584::-;64193:7;;;;;;;64185:27;;;;-1:-1:-1;;;64185:27:0;;15247:2:1;64185:27:0;;;15229:21:1;15286:1;15266:18;;;15259:29;-1:-1:-1;;;15304:18:1;;;15297:37;15351:18;;64185:27:0;15045:330:1;64185:27:0;-1:-1:-1;;;;;64231:34:0;;;;;;:17;:34;;;;;;;;64223:58;;;;-1:-1:-1;;;64223:58:0;;15582:2:1;64223:58:0;;;15564:21:1;15621:2;15601:18;;;15594:30;-1:-1:-1;;;15640:18:1;;;15633:41;15691:18;;64223:58:0;15380:335:1;64223:58:0;64300:41;;-1:-1:-1;;;64300:41:0;;;;;2617:25:1;;;64345:10:0;;-1:-1:-1;;;;;64300:32:0;;;;;2590:18:1;;64300:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;64300:55:0;;64292:77;;;;-1:-1:-1;;;64292:77:0;;16178:2:1;64292:77:0;;;16160:21:1;16217:1;16197:18;;;16190:29;-1:-1:-1;;;16235:18:1;;;16228:39;16284:18;;64292:77:0;15976:332:1;64292:77:0;64414:9;64398:12;;64388:7;:22;;;;:::i;:::-;:35;64380:57;;;;-1:-1:-1;;;64380:57:0;;;;;;;:::i;:::-;64466:2;64456:7;:12;64448:33;;;;-1:-1:-1;;;64448:33:0;;;;;;;:::i;:::-;64527:9;;64510:13;:11;:13::i;:::-;64500:23;;:7;:23;:::i;:::-;:36;;64492:59;;;;-1:-1:-1;;;64492:59:0;;;;;;;:::i;:::-;64570:9;64583:10;64570:23;64562:42;;;;-1:-1:-1;;;64562:42:0;;16515:2:1;64562:42:0;;;16497:21:1;16554:1;16534:18;;;16527:29;-1:-1:-1;;;16572:18:1;;;16565:36;16618:18;;64562:42:0;16313:329:1;64562:42:0;64625:30;64635:10;64647:7;64625:9;:30::i;64866:336::-;64939:13;64970:16;64978:7;64970;:16::i;:::-;64962:62;;;;-1:-1:-1;;;64962:62:0;;16849:2:1;64962:62:0;;;16831:21:1;16888:2;16868:18;;;16861:30;16927:34;16907:18;;;16900:62;-1:-1:-1;;;16978:18:1;;;16971:31;17019:19;;64962:62:0;16647:397:1;64962:62:0;65032:28;65063:10;:8;:10::i;:::-;65032:41;;65119:1;65094:14;65088:28;:32;:109;;;;;;;;;;;;;;;;;65147:14;65163:18;:7;:16;:18::i;:::-;65130:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;65088:109;65081:116;64866:336;-1:-1:-1;;;64866:336:0:o;63546:528::-;63651:7;;;;;;;63643:27;;;;-1:-1:-1;;;63643:27:0;;15247:2:1;63643:27:0;;;15229:21:1;15286:1;15266:18;;;15259:29;-1:-1:-1;;;15304:18:1;;;15297:37;15351:18;;63643:27:0;15045:330:1;63643:27:0;63715:9;63699:12;;63689:7;:22;;;;:::i;:::-;:35;63681:57;;;;-1:-1:-1;;;63681:57:0;;;;;;;:::i;:::-;63767:2;63757:7;:12;63749:33;;;;-1:-1:-1;;;63749:33:0;;;;;;;:::i;:::-;63828:9;;63811:13;:11;:13::i;:::-;63801:23;;:7;:23;:::i;:::-;:36;;63793:59;;;;-1:-1:-1;;;63793:59:0;;;;;;;:::i;:::-;63871:85;63890:12;;63871:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;63904:10:0;;63926:28;;-1:-1:-1;;63943:10:0;17840:2:1;17836:15;17832:53;63926:28:0;;;17820:66:1;63904:10:0;;-1:-1:-1;17902:12:1;;;-1:-1:-1;63926:28:0;;;;;;;;;;;;63916:39;;;;;;63871:18;:85::i;:::-;63863:107;;;;-1:-1:-1;;;63863:107:0;;18127:2:1;63863:107:0;;;18109:21:1;18166:1;18146:18;;;18139:29;-1:-1:-1;;;18184:18:1;;;18177:39;18233:18;;63863:107:0;17925:332:1;8132:201:0;7296:6;;-1:-1:-1;;;;;7296:6:0;6027:10;7443:23;7435:68;;;;-1:-1:-1;;;7435:68:0;;13366:2:1;7435:68:0;;;13348:21:1;;;13385:18;;;13378:30;13444:34;13424:18;;;13417:62;13496:18;;7435:68:0;13164:356:1;7435:68:0;-1:-1:-1;;;;;8221:22:0;::::1;8213:73;;;::::0;-1:-1:-1;;;8213:73:0;;18464:2:1;8213:73:0::1;::::0;::::1;18446:21:1::0;18503:2;18483:18;;;18476:30;18542:34;18522:18;;;18515:62;-1:-1:-1;;;18593:18:1;;;18586:36;18639:19;;8213:73:0::1;18262:402:1::0;8213:73:0::1;8297:28;8316:8;8297:18;:28::i;51672:187::-:0;51729:4;51772:7;65971:1;51753:26;;:53;;;;;51793:13;;51783:7;:23;51753:53;:98;;;;-1:-1:-1;;51824:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;51824:27:0;;;;51823:28;;51672:187::o;59283:196::-;59398:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;59398:29:0;-1:-1:-1;;;;;59398:29:0;;;;;;;;;59443:28;;59398:24;;59443:28;;;;;;;59283:196;;;:::o;27518:248::-;27728:12;;-1:-1:-1;;;;;27708:16:0;;27664:7;27708:16;;;:7;:16;;;;;;27664:7;;27743:15;;27692:32;;:13;:32;:::i;:::-;27691:49;;;;:::i;:::-;:67;;;;:::i;:::-;27684:74;27518:248;-1:-1:-1;;;;27518:248:0:o;10833:317::-;10948:6;10923:21;:31;;10915:73;;;;-1:-1:-1;;;10915:73:0;;19258:2:1;10915:73:0;;;19240:21:1;19297:2;19277:18;;;19270:30;19336:31;19316:18;;;19309:59;19385:18;;10915:73:0;19056:353:1;10915:73:0;11002:12;11020:9;-1:-1:-1;;;;;11020:14:0;11042:6;11020:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11001:52;;;11072:7;11064:78;;;;-1:-1:-1;;;11064:78:0;;19826:2:1;11064:78:0;;;19808:21:1;19865:2;19845:18;;;19838:30;19904:34;19884:18;;;19877:62;19975:28;19955:18;;;19948:56;20021:19;;11064:78:0;19624:422:1;54785:2112:0;54900:35;54938:20;54950:7;54938:11;:20::i;:::-;55013:18;;54900:58;;-1:-1:-1;54971:22:0;;-1:-1:-1;;;;;54997:34:0;6027:10;-1:-1:-1;;;;;54997:34:0;;:101;;;-1:-1:-1;55065:18:0;;55048:50;;6027:10;50320:164;:::i;55048:50::-;54997:154;;;-1:-1:-1;6027:10:0;55115:20;55127:7;55115:11;:20::i;:::-;-1:-1:-1;;;;;55115:36:0;;54997:154;54971:181;;55170:17;55165:66;;55196:35;;-1:-1:-1;;;55196:35:0;;;;;;;;;;;55165:66;55268:4;-1:-1:-1;;;;;55246:26:0;:13;:18;;;-1:-1:-1;;;;;55246:26:0;;55242:67;;55281:28;;-1:-1:-1;;;55281:28:0;;;;;;;;;;;55242:67;-1:-1:-1;;;;;55324:16:0;;55320:52;;55349:23;;-1:-1:-1;;;55349:23:0;;;;;;;;;;;55320:52;55493:49;55510:1;55514:7;55523:13;:18;;;55493:8;:49::i;:::-;-1:-1:-1;;;;;55838:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;55838:31:0;;;-1:-1:-1;;;;;55838:31:0;;;-1:-1:-1;;55838:31:0;;;;;;;55884:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;55884:29:0;;;;;;;;;;;55930:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;55975:61:0;;;;-1:-1:-1;;;56020:15:0;55975:61;;;;;;;;;;;56310:11;;;56340:24;;;;;:29;56310:11;;56340:29;56336:445;;56565:13;;56551:11;:27;56547:219;;;56635:18;;;56603:24;;;:11;:24;;;;;;;;:50;;56718:28;;;;-1:-1:-1;;;;;56676:70:0;-1:-1:-1;;;56676:70:0;-1:-1:-1;;;;;;56676:70:0;;;-1:-1:-1;;;;;56603:50:0;;;56676:70;;;;;;;56547:219;55813:979;56828:7;56824:2;-1:-1:-1;;;;;56809:27:0;56818:4;-1:-1:-1;;;;;56809:27:0;;;;;;;;;;;56847:42;54889:2008;;54785:2112;;;:::o;51867:104::-;51936:27;51946:2;51950:8;51936:27;;;;;;;;;;;;:9;:27::i;17539:211::-;17683:58;;;-1:-1:-1;;;;;206:32:1;;17683:58:0;;;188:51:1;255:18;;;;248:34;;;17683:58:0;;;;;;;;;;161:18:1;;;;17683:58:0;;;;;;;;-1:-1:-1;;;;;17683:58:0;-1:-1:-1;;;17683:58:0;;;17656:86;;17676:5;;17656:19;:86::i;46830:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;46940:7:0;;65971:1;46989:23;;:47;;;;;47023:13;;47016:4;:20;46989:47;46985:886;;;47057:31;47091:17;;;:11;:17;;;;;;;;;47057:51;;;;;;;;;-1:-1:-1;;;;;47057:51:0;;;;-1:-1:-1;;;47057:51:0;;-1:-1:-1;;;;;47057:51:0;;;;;;;;-1:-1:-1;;;47057:51:0;;;;;;;;;;;;;;47127:729;;47177:14;;-1:-1:-1;;;;;47177:28:0;;47173:101;;47241:9;46830:1108;-1:-1:-1;;;46830:1108:0:o;47173:101::-;-1:-1:-1;;;47616:6:0;47661:17;;;;:11;:17;;;;;;;;;47649:29;;;;;;;;;-1:-1:-1;;;;;47649:29:0;;;;;-1:-1:-1;;;47649:29:0;;-1:-1:-1;;;;;47649:29:0;;;;;;;;-1:-1:-1;;;47649:29:0;;;;;;;;;;;;;47709:28;47705:109;;47777:9;46830:1108;-1:-1:-1;;;46830:1108:0:o;47705:109::-;47576:261;;;47038:833;46985:886;47899:31;;-1:-1:-1;;;47899:31:0;;;;;;;;;;;8493:191;8586:6;;;-1:-1:-1;;;;;8603:17:0;;;-1:-1:-1;;;;;;8603:17:0;;;;;;;8636:40;;8586:6;;;8603:17;8586:6;;8636:40;;8567:16;;8636:40;8556:128;8493:191;:::o;59971:667::-;60155:72;;-1:-1:-1;;;60155:72:0;;60134:4;;-1:-1:-1;;;;;60155:36:0;;;;;:72;;6027:10;;60206:4;;60212:7;;60221:5;;60155:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60155:72:0;;;;;;;;-1:-1:-1;;60155:72:0;;;;;;;;;;;;:::i;:::-;;;60151:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60389:13:0;;60385:235;;60435:40;;-1:-1:-1;;;60435:40:0;;;;;;;;;;;60385:235;60578:6;60572:13;60563:6;60559:2;60555:15;60548:38;60151:480;-1:-1:-1;;;;;;60274:55:0;-1:-1:-1;;;60274:55:0;;-1:-1:-1;59971:667:0;;;;;;:::o;65661:102::-;65721:13;65751:7;65744:14;;;;;:::i;38535:723::-;38591:13;38812:10;38808:53;;-1:-1:-1;;38839:10:0;;;;;;;;;;;;-1:-1:-1;;;38839:10:0;;;;;38535:723::o;38808:53::-;38886:5;38871:12;38927:78;38934:9;;38927:78;;38960:8;;;;:::i;:::-;;-1:-1:-1;38983:10:0;;-1:-1:-1;38991:2:0;38983:10;;:::i;:::-;;;38927:78;;;39015:19;39047:6;-1:-1:-1;;;;;39037:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39037:17:0;;39015:39;;39065:154;39072:10;;39065:154;;39099:11;39109:1;39099:11;;:::i;:::-;;-1:-1:-1;39168:10:0;39176:2;39168:5;:10;:::i;:::-;39155:24;;:2;:24;:::i;:::-;39142:39;;39125:6;39132;39125:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;39125:56:0;;;;;;;;-1:-1:-1;39196:11:0;39205:2;39196:11;;:::i;:::-;;;39065:154;;3802:190;3927:4;3980;3951:25;3964:5;3971:4;3951:12;:25::i;:::-;:33;;3802:190;-1:-1:-1;;;;3802:190:0:o;52334:163::-;52457:32;52463:2;52467:8;52477:5;52484:4;52457:5;:32::i;20112:716::-;20536:23;20562:69;20590:4;20562:69;;;;;;;;;;;;;;;;;20570:5;-1:-1:-1;;;;;20562:27:0;;;:69;;;;;:::i;:::-;20646:17;;20536:95;;-1:-1:-1;20646:21:0;20642:179;;20743:10;20732:30;;;;;;;;;;;;:::i;:::-;20724:85;;;;-1:-1:-1;;;20724:85:0;;21368:2:1;20724:85:0;;;21350:21:1;21407:2;21387:18;;;21380:30;21446:34;21426:18;;;21419:62;-1:-1:-1;;;21497:18:1;;;21490:40;21547:19;;20724:85:0;21166:406:1;4354:675:0;4437:7;4480:4;4437:7;4495:497;4519:5;:12;4515:1;:16;4495:497;;;4553:20;4576:5;4582:1;4576:8;;;;;;;;:::i;:::-;;;;;;;4553:31;;4619:12;4603;:28;4599:382;;5105:13;5155:15;;;5191:4;5184:15;;;5238:4;5222:21;;4731:57;;4599:382;;;5105:13;5155:15;;;5191:4;5184:15;;;5238:4;5222:21;;4908:57;;4599:382;-1:-1:-1;4533:3:0;;;;:::i;:::-;;;;4495:497;;;-1:-1:-1;5009:12:0;4354:675;-1:-1:-1;;;4354:675:0:o;52756:1775::-;52895:20;52918:13;-1:-1:-1;;;;;52946:16:0;;52942:48;;52971:19;;-1:-1:-1;;;52971:19:0;;;;;;;;;;;52942:48;53005:13;53001:44;;53027:18;;-1:-1:-1;;;53027:18:0;;;;;;;;;;;53001:44;-1:-1:-1;;;;;53396:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;53455:49:0;;-1:-1:-1;;;;;53396:44:0;;;;;;;53455:49;;;;-1:-1:-1;;53396:44:0;;;;;;53455:49;;;;;;;;;;;;;;;;53521:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;53571:66:0;;;;-1:-1:-1;;;53621:15:0;53571:66;;;;;;;;;;53521:25;53718:23;;;53762:4;:23;;;;-1:-1:-1;;;;;;53770:13:0;;9834:20;9882:8;;53770:15;53758:641;;;53806:314;53837:38;;53862:12;;-1:-1:-1;;;;;53837:38:0;;;53854:1;;53837:38;;53854:1;;53837:38;53903:69;53942:1;53946:2;53950:14;;;;;;53966:5;53903:30;:69::i;:::-;53898:174;;54008:40;;-1:-1:-1;;;54008:40:0;;;;;;;;;;;53898:174;54115:3;54099:12;:19;;53806:314;;54201:12;54184:13;;:29;54180:43;;54215:8;;;54180:43;53758:641;;;54264:120;54295:40;;54320:14;;;;;-1:-1:-1;;;;;54295:40:0;;;54312:1;;54295:40;;54312:1;;54295:40;54379:3;54363:12;:19;;54264:120;;53758:641;-1:-1:-1;54413:13:0;:28;54463:60;51048:369;12317:229;12454:12;12486:52;12508:6;12516:4;12522:1;12525:12;12454;9834:20;;13724:60;;;;-1:-1:-1;;;13724:60:0;;22186:2:1;13724:60:0;;;22168:21:1;22225:2;22205:18;;;22198:30;22264:31;22244:18;;;22237:59;22313:18;;13724:60:0;21984:353:1;13724:60:0;13798:12;13812:23;13839:6;-1:-1:-1;;;;;13839:11:0;13858:5;13865:4;13839:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13797:73;;;;13888:51;13905:7;13914:10;13926:12;13888:16;:51::i;:::-;13881:58;13437:510;-1:-1:-1;;;;;;;13437:510:0:o;16123:712::-;16273:12;16302:7;16298:530;;;-1:-1:-1;16333:10:0;16326:17;;16298:530;16447:17;;:21;16443:374;;16645:10;16639:17;16706:15;16693:10;16689:2;16685:19;16678:44;16443:374;16788:12;16781:20;;-1:-1:-1;;;16781:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;293:131:1;-1:-1:-1;;;;;;367:32:1;;357:43;;347:71;;414:1;411;404:12;429:245;487:6;540:2;528:9;519:7;515:23;511:32;508:52;;;556:1;553;546:12;508:52;595:9;582:23;614:30;638:5;614:30;:::i;871:258::-;943:1;953:113;967:6;964:1;961:13;953:113;;;1043:11;;;1037:18;1024:11;;;1017:39;989:2;982:10;953:113;;;1084:6;1081:1;1078:13;1075:48;;;-1:-1:-1;;1119:1:1;1101:16;;1094:27;871:258::o;1134:::-;1176:3;1214:5;1208:12;1241:6;1236:3;1229:19;1257:63;1313:6;1306:4;1301:3;1297:14;1290:4;1283:5;1279:16;1257:63;:::i;:::-;1374:2;1353:15;-1:-1:-1;;1349:29:1;1340:39;;;;1381:4;1336:50;;1134:258;-1:-1:-1;;1134:258:1:o;1397:220::-;1546:2;1535:9;1528:21;1509:4;1566:45;1607:2;1596:9;1592:18;1584:6;1566:45;:::i;1622:180::-;1681:6;1734:2;1722:9;1713:7;1709:23;1705:32;1702:52;;;1750:1;1747;1740:12;1702:52;-1:-1:-1;1773:23:1;;1622:180;-1:-1:-1;1622:180:1:o;2015:131::-;-1:-1:-1;;;;;2090:31:1;;2080:42;;2070:70;;2136:1;2133;2126:12;2151:315;2219:6;2227;2280:2;2268:9;2259:7;2255:23;2251:32;2248:52;;;2296:1;2293;2286:12;2248:52;2335:9;2322:23;2354:31;2379:5;2354:31;:::i;:::-;2404:5;2456:2;2441:18;;;;2428:32;;-1:-1:-1;;;2151:315:1:o;2653:255::-;2720:6;2773:2;2761:9;2752:7;2748:23;2744:32;2741:52;;;2789:1;2786;2779:12;2741:52;2828:9;2815:23;2847:31;2872:5;2847:31;:::i;2913:456::-;2990:6;2998;3006;3059:2;3047:9;3038:7;3034:23;3030:32;3027:52;;;3075:1;3072;3065:12;3027:52;3114:9;3101:23;3133:31;3158:5;3133:31;:::i;:::-;3183:5;-1:-1:-1;3240:2:1;3225:18;;3212:32;3253:33;3212:32;3253:33;:::i;:::-;2913:456;;3305:7;;-1:-1:-1;;;3359:2:1;3344:18;;;;3331:32;;2913:456::o;3374:315::-;3442:6;3450;3503:2;3491:9;3482:7;3478:23;3474:32;3471:52;;;3519:1;3516;3509:12;3471:52;3555:9;3542:23;3532:33;;3615:2;3604:9;3600:18;3587:32;3628:31;3653:5;3628:31;:::i;:::-;3678:5;3668:15;;;3374:315;;;;;:::o;3876:401::-;3957:6;3965;4018:2;4006:9;3997:7;3993:23;3989:32;3986:52;;;4034:1;4031;4024:12;3986:52;4073:9;4060:23;4092:31;4117:5;4092:31;:::i;:::-;4142:5;-1:-1:-1;4199:2:1;4184:18;;4171:32;4212:33;4171:32;4212:33;:::i;4467:127::-;4528:10;4523:3;4519:20;4516:1;4509:31;4559:4;4556:1;4549:15;4583:4;4580:1;4573:15;4599:275;4670:2;4664:9;4735:2;4716:13;;-1:-1:-1;;4712:27:1;4700:40;;-1:-1:-1;;;;;4755:34:1;;4791:22;;;4752:62;4749:88;;;4817:18;;:::i;:::-;4853:2;4846:22;4599:275;;-1:-1:-1;4599:275:1:o;4879:407::-;4944:5;-1:-1:-1;;;;;4970:6:1;4967:30;4964:56;;;5000:18;;:::i;:::-;5038:57;5083:2;5062:15;;-1:-1:-1;;5058:29:1;5089:4;5054:40;5038:57;:::i;:::-;5029:66;;5118:6;5111:5;5104:21;5158:3;5149:6;5144:3;5140:16;5137:25;5134:45;;;5175:1;5172;5165:12;5134:45;5224:6;5219:3;5212:4;5205:5;5201:16;5188:43;5278:1;5271:4;5262:6;5255:5;5251:18;5247:29;5240:40;4879:407;;;;;:::o;5291:451::-;5360:6;5413:2;5401:9;5392:7;5388:23;5384:32;5381:52;;;5429:1;5426;5419:12;5381:52;5469:9;5456:23;-1:-1:-1;;;;;5494:6:1;5491:30;5488:50;;;5534:1;5531;5524:12;5488:50;5557:22;;5610:4;5602:13;;5598:27;-1:-1:-1;5588:55:1;;5639:1;5636;5629:12;5588:55;5662:74;5728:7;5723:2;5710:16;5705:2;5701;5697:11;5662:74;:::i;5999:118::-;6085:5;6078:13;6071:21;6064:5;6061:32;6051:60;;6107:1;6104;6097:12;6122:128;6187:20;;6216:28;6187:20;6216:28;:::i;:::-;6122:128;;;:::o;6255:1091::-;6345:6;6353;6406:2;6394:9;6385:7;6381:23;6377:32;6374:52;;;6422:1;6419;6412:12;6374:52;6462:9;6449:23;-1:-1:-1;;;;;6532:2:1;6524:6;6521:14;6518:34;;;6548:1;6545;6538:12;6518:34;6586:6;6575:9;6571:22;6561:32;;6631:7;6624:4;6620:2;6616:13;6612:27;6602:55;;6653:1;6650;6643:12;6602:55;6689:2;6676:16;6711:4;6734:2;6730;6727:10;6724:36;;;6740:18;;:::i;:::-;6786:2;6783:1;6779:10;6769:20;;6809:28;6833:2;6829;6825:11;6809:28;:::i;:::-;6871:15;;;6941:11;;;6937:20;;;6902:12;;;;6969:19;;;6966:39;;;7001:1;6998;6991:12;6966:39;7025:11;;;;7045:217;7061:6;7056:3;7053:15;7045:217;;;7141:3;7128:17;7115:30;;7158:31;7183:5;7158:31;:::i;:::-;7202:18;;;7078:12;;;;7240;;;;7045:217;;;7281:5;-1:-1:-1;7305:35:1;;-1:-1:-1;7321:18:1;;;7305:35;:::i;:::-;7295:45;;;;;;6255:1091;;;;;:::o;7351:382::-;7416:6;7424;7477:2;7465:9;7456:7;7452:23;7448:32;7445:52;;;7493:1;7490;7483:12;7445:52;7532:9;7519:23;7551:31;7576:5;7551:31;:::i;:::-;7601:5;-1:-1:-1;7658:2:1;7643:18;;7630:32;7671:30;7630:32;7671:30;:::i;7738:795::-;7833:6;7841;7849;7857;7910:3;7898:9;7889:7;7885:23;7881:33;7878:53;;;7927:1;7924;7917:12;7878:53;7966:9;7953:23;7985:31;8010:5;7985:31;:::i;:::-;8035:5;-1:-1:-1;8092:2:1;8077:18;;8064:32;8105:33;8064:32;8105:33;:::i;:::-;8157:7;-1:-1:-1;8211:2:1;8196:18;;8183:32;;-1:-1:-1;8266:2:1;8251:18;;8238:32;-1:-1:-1;;;;;8282:30:1;;8279:50;;;8325:1;8322;8315:12;8279:50;8348:22;;8401:4;8393:13;;8389:27;-1:-1:-1;8379:55:1;;8430:1;8427;8420:12;8379:55;8453:74;8519:7;8514:2;8501:16;8496:2;8492;8488:11;8453:74;:::i;:::-;8443:84;;;7738:795;;;;;;;:::o;8538:383::-;8615:6;8623;8631;8684:2;8672:9;8663:7;8659:23;8655:32;8652:52;;;8700:1;8697;8690:12;8652:52;8736:9;8723:23;8713:33;;8796:2;8785:9;8781:18;8768:32;8809:31;8834:5;8809:31;:::i;9191:683::-;9286:6;9294;9302;9355:2;9343:9;9334:7;9330:23;9326:32;9323:52;;;9371:1;9368;9361:12;9323:52;9407:9;9394:23;9384:33;;9468:2;9457:9;9453:18;9440:32;-1:-1:-1;;;;;9532:2:1;9524:6;9521:14;9518:34;;;9548:1;9545;9538:12;9518:34;9586:6;9575:9;9571:22;9561:32;;9631:7;9624:4;9620:2;9616:13;9612:27;9602:55;;9653:1;9650;9643:12;9602:55;9693:2;9680:16;9719:2;9711:6;9708:14;9705:34;;;9735:1;9732;9725:12;9705:34;9788:7;9783:2;9773:6;9770:1;9766:14;9762:2;9758:23;9754:32;9751:45;9748:65;;;9809:1;9806;9799:12;9748:65;9840:2;9836;9832:11;9822:21;;9862:6;9852:16;;;;;9191:683;;;;;:::o;10272:380::-;10351:1;10347:12;;;;10394;;;10415:61;;10469:4;10461:6;10457:17;10447:27;;10415:61;10522:2;10514:6;10511:14;10491:18;10488:38;10485:161;;;10568:10;10563:3;10559:20;10556:1;10549:31;10603:4;10600:1;10593:15;10631:4;10628:1;10621:15;10485:161;;10272:380;;;:::o;10657:402::-;10859:2;10841:21;;;10898:2;10878:18;;;10871:30;10937:34;10932:2;10917:18;;10910:62;-1:-1:-1;;;11003:2:1;10988:18;;10981:36;11049:3;11034:19;;10657:402::o;11064:127::-;11125:10;11120:3;11116:20;11113:1;11106:31;11156:4;11153:1;11146:15;11180:4;11177:1;11170:15;11196:128;11236:3;11267:1;11263:6;11260:1;11257:13;11254:39;;;11273:18;;:::i;:::-;-1:-1:-1;11309:9:1;;11196:128::o;11329:407::-;11531:2;11513:21;;;11570:2;11550:18;;;11543:30;11609:34;11604:2;11589:18;;11582:62;-1:-1:-1;;;11675:2:1;11660:18;;11653:41;11726:3;11711:19;;11329:407::o;12028:331::-;12230:2;12212:21;;;12269:1;12249:18;;;12242:29;-1:-1:-1;;;12302:2:1;12287:18;;12280:38;12350:2;12335:18;;12028:331::o;12364:334::-;12566:2;12548:21;;;12605:2;12585:18;;;12578:30;-1:-1:-1;;;12639:2:1;12624:18;;12617:40;12689:2;12674:18;;12364:334::o;12703:184::-;12773:6;12826:2;12814:9;12805:7;12801:23;12797:32;12794:52;;;12842:1;12839;12832:12;12794:52;-1:-1:-1;12865:16:1;;12703:184;-1:-1:-1;12703:184:1:o;12892:127::-;12953:10;12948:3;12944:20;12941:1;12934:31;12984:4;12981:1;12974:15;13008:4;13005:1;12998:15;13024:135;13063:3;-1:-1:-1;;13084:17:1;;13081:43;;;13104:18;;:::i;:::-;-1:-1:-1;13151:1:1;13140:13;;13024:135::o;13857:168::-;13897:7;13963:1;13959;13955:6;13951:14;13948:1;13945:21;13940:1;13933:9;13926:17;13922:45;13919:71;;;13970:18;;:::i;:::-;-1:-1:-1;14010:9:1;;13857:168::o;14030:332::-;14232:2;14214:21;;;14271:1;14251:18;;;14244:29;-1:-1:-1;;;14304:2:1;14289:18;;14282:39;14353:2;14338:18;;14030:332::o;14367:331::-;14569:2;14551:21;;;14608:1;14588:18;;;14581:29;-1:-1:-1;;;14641:2:1;14626:18;;14619:38;14689:2;14674:18;;14367:331::o;15720:251::-;15790:6;15843:2;15831:9;15822:7;15818:23;15814:32;15811:52;;;15859:1;15856;15849:12;15811:52;15891:9;15885:16;15910:31;15935:5;15910:31;:::i;17049:637::-;17329:3;17367:6;17361:13;17383:53;17429:6;17424:3;17417:4;17409:6;17405:17;17383:53;:::i;:::-;17499:13;;17458:16;;;;17521:57;17499:13;17458:16;17555:4;17543:17;;17521:57;:::i;:::-;-1:-1:-1;;;17600:20:1;;17629:22;;;17678:1;17667:13;;17049:637;-1:-1:-1;;;;17049:637:1:o;18669:127::-;18730:10;18725:3;18721:20;18718:1;18711:31;18761:4;18758:1;18751:15;18785:4;18782:1;18775:15;18801:120;18841:1;18867;18857:35;;18872:18;;:::i;:::-;-1:-1:-1;18906:9:1;;18801:120::o;18926:125::-;18966:4;18994:1;18991;18988:8;18985:34;;;18999:18;;:::i;:::-;-1:-1:-1;19036:9:1;;18926:125::o;20051:489::-;-1:-1:-1;;;;;20320:15:1;;;20302:34;;20372:15;;20367:2;20352:18;;20345:43;20419:2;20404:18;;20397:34;;;20467:3;20462:2;20447:18;;20440:31;;;20245:4;;20488:46;;20514:19;;20506:6;20488:46;:::i;:::-;20480:54;20051:489;-1:-1:-1;;;;;;20051:489:1:o;20545:249::-;20614:6;20667:2;20655:9;20646:7;20642:23;20638:32;20635:52;;;20683:1;20680;20673:12;20635:52;20715:9;20709:16;20734:30;20758:5;20734:30;:::i;20799:112::-;20831:1;20857;20847:35;;20862:18;;:::i;:::-;-1:-1:-1;20896:9:1;;20799:112::o;20916:245::-;20983:6;21036:2;21024:9;21015:7;21011:23;21007:32;21004:52;;;21052:1;21049;21042:12;21004:52;21084:9;21078:16;21103:28;21125:5;21103:28;:::i;22342:274::-;22471:3;22509:6;22503:13;22525:53;22571:6;22566:3;22559:4;22551:6;22547:17;22525:53;:::i;:::-;22594:16;;;;;22342:274;-1:-1:-1;;22342:274:1:o

Swarm Source

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