ETH Price: $2,350.26 (+0.53%)

Token

Moon Goblins (MoonGoblins)
 

Overview

Max Total Supply

1,049 MoonGoblins

Holders

97

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 MoonGoblins
0x238eC212852200a699c13c92673bB2CDBE7C9eC7
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:
MoonGoblins

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


// OpenZeppelin Contracts v4.4.1 (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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        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/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/OpenSea.sol

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

contract OpenSea {
    address private _proxyRegistry;

    function proxyRegistry() public view returns (address) {
        return _proxyRegistry;
    }

    function isOwnersOpenSeaProxy(address owner, address operator)
        public
        view
        returns (bool)
    {
        address proxyRegistry_ = _proxyRegistry;

        if (proxyRegistry_ != address(0)) {
            if (block.chainid == 1 || block.chainid == 4) {
                return
                    address(ProxyRegistry(proxyRegistry_).proxies(owner)) ==
                    operator;
            } else if (block.chainid == 137 || block.chainid == 80001) {
                return proxyRegistry_ == operator;
            }
        }

        return false;
    }

    function _setOpenSeaRegistry(address proxyRegistryAddress) internal {
        _proxyRegistry = proxyRegistryAddress;
    }
}

contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}
// 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/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/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/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/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 v4.4.1 (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 tokenId);

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

// File: @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: contracts/ERC721.sol



pragma solidity ^0.8.7;







abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;

    string private _name;
    string private _symbol;

    // Mapping from token ID to owner address
    address[] internal _owners;

    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;

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

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

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

        uint256 count;
        for (uint256 i; i < _owners.length; ++i) {
            if (owner == _owners[i]) ++count;
        }
        return count;
    }

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

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

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

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

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

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

        _beforeTokenTransfer(address(0), to, tokenId);
        _owners.push(to);

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

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

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

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

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

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

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}
// File: contracts/ERC721Enumerable.sol



pragma solidity ^0.8.7;



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

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

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

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

        uint256 count;
        for (uint256 i; i < _owners.length; i++) {
            if (owner == _owners[i]) {
                if (count == index) return i;
                else count++;
            }
        }

        revert("ERC721Enumerable: owner index out of bounds");
    }
}
// File: MoonGoblins.sol


pragma solidity ^0.8.7;






contract MoonGoblins is ERC721Enumerable, OpenSea, Ownable, PaymentSplitter {
    using Strings for uint256;

    string private _baseTokenURI;
    string private _tokenURISuffix;

    uint256 public price = 6900000000000000; // 0.0069 ETH
    uint256 public constant MAX_SUPPLY = 4444;
    uint256 public maxPerTx = 10;
    
    bool public started = false;

    uint256 private FREE_SUPPLY = 999;

    constructor(
        address openSeaProxyRegistry,
        address[] memory _payees,
        uint256[] memory _shares
    ) ERC721("Moon Goblins", "MoonGoblins") PaymentSplitter(_payees, _shares) {
        if (openSeaProxyRegistry != address(0)) {
            _setOpenSeaRegistry(openSeaProxyRegistry);
        }
    }

    function mint(uint256 count) public payable {
        require(started, "Minting not started");
        require(count <= maxPerTx, "Exceed max per transaction");
        uint256 supply = _owners.length - 1;
        require(supply + count <= MAX_SUPPLY, "Max supply reached");
        if (supply < FREE_SUPPLY && supply + count > FREE_SUPPLY) {
            uint256 payCount = supply + count - FREE_SUPPLY;
            require(payCount * price <= msg.value, "Invalid funds provided.");
        } else if (supply >= FREE_SUPPLY) {
            require(count * price <= msg.value, "Invalid funds provided.");
        }
        for (uint256 i; i < count; i++) {
            _safeMint(msg.sender, supply+1);
            supply++;
        }
    }

    function tokenURI(uint256 tokenId)
        external
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return
            string(
                abi.encodePacked(
                    _baseTokenURI,
                    tokenId.toString(),
                    _tokenURISuffix
                )
            );
    }

    function setBaseURI(string calldata _newBaseURI, string calldata _newSuffix)
        external
        onlyOwner
    {
        _baseTokenURI = _newBaseURI;
        _tokenURISuffix = _newSuffix;
    }

    function toggleStarted() external onlyOwner {
        started = !started;
    }

    function airdrop(uint256[] calldata quantity, address[] calldata recipient)
        external
        onlyOwner
    {
        require(
            quantity.length == recipient.length,
            "Quantity length is not equal to recipients"
        );

        uint256 totalQuantity = 0;
        for (uint256 i = 0; i < quantity.length; ++i) {
            totalQuantity += quantity[i];
        }

        uint256 supply = _owners.length;
        require(supply + totalQuantity <= MAX_SUPPLY, "Max supply reached");

        delete totalQuantity;

        for (uint256 i = 0; i < recipient.length; ++i) {
            for (uint256 j = 0; j < quantity[i]; ++j) {
                _safeMint(recipient[i], supply++);
            }
        }
    }

    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        return
            super.isApprovedForAll(owner, operator) ||
            isOwnersOpenSeaProxy(owner, operator);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"openSeaProxyRegistry","type":"address"},{"internalType":"address[]","name":"_payees","type":"address[]"},{"internalType":"uint256[]","name":"_shares","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":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"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isOwnersOpenSeaProxy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistry","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[{"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"},{"internalType":"string","name":"_newSuffix","type":"string"}],"name":"setBaseURI","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":[],"name":"started","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"toggleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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"},{"stateMutability":"payable","type":"receive"}]

60806040526618838370f34000601055600a6011556012805460ff191690556103e76013553480156200003157600080fd5b5060405162003469380380620034698339810160408190526200005491620005f9565b604080518082018252600c81526b4d6f6f6e20476f626c696e7360a01b60208083019182528351808501909452600b84526a4d6f6f6e476f626c696e7360a81b90840152815185938593929091620000af91600091620004bc565b508051620000c5906001906020840190620004bc565b5050600280546001810182556000919091527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b03191690555062000113336200027c565b8051825114620001855760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620001d85760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f2070617965657300000000000060448201526064016200017c565b60005b825181101562000244576200022f838281518110620001fe57620001fe620007c9565b60200260200101518383815181106200021b576200021b620007c9565b6020026020010151620002ce60201b60201c565b806200023b8162000795565b915050620001db565b5050506001600160a01b038316156200027357600580546001600160a01b0319166001600160a01b0385161790555b505050620007f5565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200033b5760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016200017c565b600081116200038d5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a2073686172657320617265203000000060448201526064016200017c565b6001600160a01b03821660009081526009602052604090205415620004095760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b60648201526084016200017c565b600b8054600181019091557f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319166001600160a01b0384169081179091556000908152600960205260409020819055600754620004739082906200073d565b600755604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b828054620004ca9062000758565b90600052602060002090601f016020900481019282620004ee576000855562000539565b82601f106200050957805160ff191683800117855562000539565b8280016001018555821562000539579182015b82811115620005395782518255916020019190600101906200051c565b50620005479291506200054b565b5090565b5b808211156200054757600081556001016200054c565b80516001600160a01b03811681146200057a57600080fd5b919050565b600082601f8301126200059157600080fd5b81516020620005aa620005a48362000717565b620006e4565b80838252828201915082860187848660051b8901011115620005cb57600080fd5b60005b85811015620005ec57815184529284019290840190600101620005ce565b5090979650505050505050565b6000806000606084860312156200060f57600080fd5b6200061a8462000562565b602085810151919450906001600160401b03808211156200063a57600080fd5b818701915087601f8301126200064f57600080fd5b815162000660620005a48262000717565b8082825285820191508585018b878560051b88010111156200068157600080fd5b600095505b83861015620006af576200069a8162000562565b83526001959095019491860191860162000686565b5060408a01519097509450505080831115620006ca57600080fd5b5050620006da868287016200057f565b9150509250925092565b604051601f8201601f191681016001600160401b03811182821017156200070f576200070f620007df565b604052919050565b60006001600160401b03821115620007335762000733620007df565b5060051b60200190565b60008219821115620007535762000753620007b3565b500190565b600181811c908216806200076d57607f821691505b602082108114156200078f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620007ac57620007ac620007b3565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b612c6480620008056000396000f3fe6080604052600436106102295760003560e01c806370a0823111610123578063b50cbd9f116100ab578063e33b7de31161006f578063e33b7de3146106e7578063e985e9c5146106fc578063ef9849691461071c578063f2fde38b14610731578063f968adbe1461075157600080fd5b8063b50cbd9f1461061d578063b88d4fde1461063b578063c87b56dd1461065b578063ce7c2ac21461067b578063d79779b2146106b157600080fd5b806395d89b41116100f257806395d89b41146105895780639852595c1461059e578063a035b1fe146105d4578063a0712d68146105ea578063a22cb465146105fd57600080fd5b806370a0823114610516578063715018a6146105365780638b83209b1461054b5780638da5cb5b1461056b57600080fd5b806332cb6b0c116101b15780634f6ccce7116101755780634f6ccce7146104765780636102de98146104965780636352211e146104b65780636673c4c2146104d65780636790a9de146104f657600080fd5b806332cb6b0c146103c55780633a98ef39146103db578063406072a9146103f057806342842e0e1461043657806348b750441461045657600080fd5b806318160ddd116101f857806318160ddd14610328578063191655871461034b5780631f2698ab1461036b57806323b872dd146103855780632f745c59146103a557600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063095ea7b31461030657600080fd5b36610272577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561028357600080fd5b506102976102923660046126ae565b610767565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c1610792565b6040516102a391906128de565b3480156102da57600080fd5b506102ee6102e9366004612765565b610824565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b506103266103213660046125f9565b6108b1565b005b34801561033457600080fd5b5061033d6109c7565b6040519081526020016102a3565b34801561035757600080fd5b50610326610366366004612454565b6109de565b34801561037757600080fd5b506012546102979060ff1681565b34801561039157600080fd5b506103266103a03660046124aa565b610b0c565b3480156103b157600080fd5b5061033d6103c03660046125f9565b610b3d565b3480156103d157600080fd5b5061033d61115c81565b3480156103e757600080fd5b5060075461033d565b3480156103fc57600080fd5b5061033d61040b366004612471565b6001600160a01b039182166000908152600d6020908152604080832093909416825291909152205490565b34801561044257600080fd5b506103266104513660046124aa565b610bf0565b34801561046257600080fd5b50610326610471366004612471565b610c0b565b34801561048257600080fd5b5061033d610491366004612765565b610df3565b3480156104a257600080fd5b506102976104b1366004612471565b610e60565b3480156104c257600080fd5b506102ee6104d1366004612765565b610f56565b3480156104e257600080fd5b506103266104f1366004612625565b610fe2565b34801561050257600080fd5b50610326610511366004612705565b61119b565b34801561052257600080fd5b5061033d610531366004612454565b6111e5565b34801561054257600080fd5b506103266112b3565b34801561055757600080fd5b506102ee610566366004612765565b6112e9565b34801561057757600080fd5b506006546001600160a01b03166102ee565b34801561059557600080fd5b506102c1611319565b3480156105aa57600080fd5b5061033d6105b9366004612454565b6001600160a01b03166000908152600a602052604090205490565b3480156105e057600080fd5b5061033d60105481565b6103266105f8366004612765565b611328565b34801561060957600080fd5b506103266106183660046125cb565b61155e565b34801561062957600080fd5b506005546001600160a01b03166102ee565b34801561064757600080fd5b506103266106563660046124eb565b611623565b34801561066757600080fd5b506102c1610676366004612765565b61165b565b34801561068757600080fd5b5061033d610696366004612454565b6001600160a01b031660009081526009602052604090205490565b3480156106bd57600080fd5b5061033d6106cc366004612454565b6001600160a01b03166000908152600c602052604090205490565b3480156106f357600080fd5b5060085461033d565b34801561070857600080fd5b50610297610717366004612471565b6116ff565b34801561072857600080fd5b50610326611741565b34801561073d57600080fd5b5061032661074c366004612454565b61177f565b34801561075d57600080fd5b5061033d60115481565b60006001600160e01b0319821663780e9d6360e01b148061078c575061078c8261181a565b92915050565b6060600080546107a190612b33565b80601f01602080910402602001604051908101604052809291908181526020018280546107cd90612b33565b801561081a5780601f106107ef5761010080835404028352916020019161081a565b820191906000526020600020905b8154815290600101906020018083116107fd57829003601f168201915b5050505050905090565b600061082f8261186a565b6108955760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b60006108bc82610f56565b9050806001600160a01b0316836001600160a01b0316141561092a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161088c565b336001600160a01b0382161480610946575061094681336116ff565b6109b85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161088c565b6109c283836118b4565b505050565b6002546000906109d990600190612af0565b905090565b6001600160a01b038116600090815260096020526040902054610a135760405162461bcd60e51b815260040161088c9061298e565b6000610a1e60085490565b610a289047612aa5565b90506000610a558383610a50866001600160a01b03166000908152600a602052604090205490565b611922565b905080610a745760405162461bcd60e51b815260040161088c906129d4565b6001600160a01b0383166000908152600a602052604081208054839290610a9c908490612aa5565b925050819055508060086000828254610ab59190612aa5565b90915550610ac590508382611968565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610b163382611a81565b610b325760405162461bcd60e51b815260040161088c90612a54565b6109c2838383611b43565b6000610b48836111e5565b8210610b665760405162461bcd60e51b815260040161088c906128f1565b6000805b600254811015610bd75760028181548110610b8757610b87612bc9565b6000918252602090912001546001600160a01b0386811691161415610bc55783821415610bb757915061078c9050565b81610bc181612b6e565b9250505b80610bcf81612b6e565b915050610b6a565b5060405162461bcd60e51b815260040161088c906128f1565b6109c283838360405180602001604052806000815250611623565b6001600160a01b038116600090815260096020526040902054610c405760405162461bcd60e51b815260040161088c9061298e565b6001600160a01b0382166000908152600c60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b158015610c9857600080fd5b505afa158015610cac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cd0919061277e565b610cda9190612aa5565b90506000610d138383610a5087876001600160a01b039182166000908152600d6020908152604080832093909416825291909152205490565b905080610d325760405162461bcd60e51b815260040161088c906129d4565b6001600160a01b038085166000908152600d6020908152604080832093871683529290529081208054839290610d69908490612aa5565b90915550506001600160a01b0384166000908152600c602052604081208054839290610d96908490612aa5565b90915550610da79050848483611c99565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b6002546000908210610e5c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161088c565b5090565b6005546000906001600160a01b03168015610f4c574660011480610e845750466004145b15610f195760405163c455279160e01b81526001600160a01b038581166004830152808516919083169063c45527919060240160206040518083038186803b158015610ecf57600080fd5b505afa158015610ee3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0791906126e8565b6001600160a01b03161491505061078c565b4660891480610f2a57504662013881145b15610f4c57826001600160a01b0316816001600160a01b03161491505061078c565b5060009392505050565b60008060028381548110610f6c57610f6c612bc9565b6000918252602090912001546001600160a01b031690508061078c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161088c565b6006546001600160a01b0316331461100c5760405162461bcd60e51b815260040161088c90612a1f565b82811461106e5760405162461bcd60e51b815260206004820152602a60248201527f5175616e74697479206c656e677468206973206e6f7420657175616c20746f20604482015269726563697069656e747360b01b606482015260840161088c565b6000805b848110156110b05785858281811061108c5761108c612bc9565b905060200201358261109e9190612aa5565b91506110a981612b6e565b9050611072565b5060025461115c6110c18383612aa5565b11156111045760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b604482015260640161088c565b6000915060005b838110156111925760005b87878381811061112857611128612bc9565b905060200201358110156111815761117186868481811061114b5761114b612bc9565b90506020020160208101906111609190612454565b8461116a81612b6e565b9550611ceb565b61117a81612b6e565b9050611116565b5061118b81612b6e565b905061110b565b50505050505050565b6006546001600160a01b031633146111c55760405162461bcd60e51b815260040161088c90612a1f565b6111d1600e8585612336565b506111de600f8383612336565b5050505050565b60006001600160a01b0382166112505760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161088c565b6000805b6002548110156112ac576002818154811061127157611271612bc9565b6000918252602090912001546001600160a01b038581169116141561129c5761129982612b6e565b91505b6112a581612b6e565b9050611254565b5092915050565b6006546001600160a01b031633146112dd5760405162461bcd60e51b815260040161088c90612a1f565b6112e76000611d09565b565b6000600b82815481106112fe576112fe612bc9565b6000918252602090912001546001600160a01b031692915050565b6060600180546107a190612b33565b60125460ff166113705760405162461bcd60e51b8152602060048201526013602482015272135a5b9d1a5b99c81b9bdd081cdd185c9d1959606a1b604482015260640161088c565b6011548111156113c25760405162461bcd60e51b815260206004820152601a60248201527f457863656564206d617820706572207472616e73616374696f6e000000000000604482015260640161088c565b6002546000906113d490600190612af0565b905061115c6113e38383612aa5565b11156114265760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b604482015260640161088c565b60135481108015611441575060135461143f8383612aa5565b115b156114bf576013546000906114568484612aa5565b6114609190612af0565b905034601054826114719190612ad1565b11156114b95760405162461bcd60e51b815260206004820152601760248201527624b73b30b634b210333ab7323990383937bb34b232b21760491b604482015260640161088c565b5061151f565b601354811061151f5734601054836114d79190612ad1565b111561151f5760405162461bcd60e51b815260206004820152601760248201527624b73b30b634b210333ab7323990383937bb34b232b21760491b604482015260640161088c565b60005b828110156109c25761153e33611539846001612aa5565b611ceb565b8161154881612b6e565b925050808061155690612b6e565b915050611522565b6001600160a01b0382163314156115b75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161088c565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61162d3383611a81565b6116495760405162461bcd60e51b815260040161088c90612a54565b61165584848484611d5b565b50505050565b60606116668261186a565b6116ca5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161088c565b600e6116d583611d8e565b600f6040516020016116e993929190612879565b6040516020818303038152906040529050919050565b6001600160a01b03808316600090815260046020908152604080832093851683529290529081205460ff168061173a575061173a8383610e60565b9392505050565b6006546001600160a01b0316331461176b5760405162461bcd60e51b815260040161088c90612a1f565b6012805460ff19811660ff90911615179055565b6006546001600160a01b031633146117a95760405162461bcd60e51b815260040161088c90612a1f565b6001600160a01b03811661180e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161088c565b61181781611d09565b50565b60006001600160e01b031982166380ac58cd60e01b148061184b57506001600160e01b03198216635b5e139f60e01b145b8061078c57506301ffc9a760e01b6001600160e01b031983161461078c565b6002546000908210801561078c575060006001600160a01b03166002838154811061189757611897612bc9565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118e982610f56565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6007546001600160a01b0384166000908152600960205260408120549091839161194c9086612ad1565b6119569190612abd565b6119609190612af0565b949350505050565b804710156119b85760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161088c565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611a05576040519150601f19603f3d011682016040523d82523d6000602084013e611a0a565b606091505b50509050806109c25760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161088c565b6000611a8c8261186a565b611aed5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161088c565b6000611af883610f56565b9050806001600160a01b0316846001600160a01b03161480611b335750836001600160a01b0316611b2884610824565b6001600160a01b0316145b80611960575061196081856116ff565b826001600160a01b0316611b5682610f56565b6001600160a01b031614611bbe5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161088c565b6001600160a01b038216611c205760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161088c565b611c2b6000826118b4565b8160028281548110611c3f57611c3f612bc9565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526109c2908490611e8c565b611d05828260405180602001604052806000815250611f5e565b5050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611d66848484611b43565b611d7284848484611f91565b6116555760405162461bcd60e51b815260040161088c9061293c565b606081611db25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ddc5780611dc681612b6e565b9150611dd59050600a83612abd565b9150611db6565b60008167ffffffffffffffff811115611df757611df7612bdf565b6040519080825280601f01601f191660200182016040528015611e21576020820181803683370190505b5090505b841561196057611e36600183612af0565b9150611e43600a86612b89565b611e4e906030612aa5565b60f81b818381518110611e6357611e63612bc9565b60200101906001600160f81b031916908160001a905350611e85600a86612abd565b9450611e25565b6000611ee1826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661209e9092919063ffffffff16565b8051909150156109c25780806020019051810190611eff9190612691565b6109c25760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161088c565b611f6883836120ad565b611f756000848484611f91565b6109c25760405162461bcd60e51b815260040161088c9061293c565b60006001600160a01b0384163b1561209357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fd59033908990889088906004016128a1565b602060405180830381600087803b158015611fef57600080fd5b505af192505050801561201f575060408051601f3d908101601f1916820190925261201c918101906126cb565b60015b612079573d80801561204d576040519150601f19603f3d011682016040523d82523d6000602084013e612052565b606091505b5080516120715760405162461bcd60e51b815260040161088c9061293c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611960565b506001949350505050565b606061196084846000856121d5565b6001600160a01b0382166121035760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161088c565b61210c8161186a565b156121595760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161088c565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060824710156122365760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161088c565b843b6122845760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161088c565b600080866001600160a01b031685876040516122a0919061285d565b60006040518083038185875af1925050503d80600081146122dd576040519150601f19603f3d011682016040523d82523d6000602084013e6122e2565b606091505b50915091506122f28282866122fd565b979650505050505050565b6060831561230c57508161173a565b82511561231c5782518084602001fd5b8160405162461bcd60e51b815260040161088c91906128de565b82805461234290612b33565b90600052602060002090601f01602090048101928261236457600085556123aa565b82601f1061237d5782800160ff198235161785556123aa565b828001600101855582156123aa579182015b828111156123aa57823582559160200191906001019061238f565b50610e5c9291505b80821115610e5c57600081556001016123b2565b60008083601f8401126123d857600080fd5b50813567ffffffffffffffff8111156123f057600080fd5b6020830191508360208260051b850101111561240b57600080fd5b9250929050565b60008083601f84011261242457600080fd5b50813567ffffffffffffffff81111561243c57600080fd5b60208301915083602082850101111561240b57600080fd5b60006020828403121561246657600080fd5b813561173a81612bf5565b6000806040838503121561248457600080fd5b823561248f81612bf5565b9150602083013561249f81612bf5565b809150509250929050565b6000806000606084860312156124bf57600080fd5b83356124ca81612bf5565b925060208401356124da81612bf5565b929592945050506040919091013590565b6000806000806080858703121561250157600080fd5b843561250c81612bf5565b9350602085013561251c81612bf5565b925060408501359150606085013567ffffffffffffffff8082111561254057600080fd5b818701915087601f83011261255457600080fd5b81358181111561256657612566612bdf565b604051601f8201601f19908116603f0116810190838211818310171561258e5761258e612bdf565b816040528281528a60208487010111156125a757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156125de57600080fd5b82356125e981612bf5565b9150602083013561249f81612c0a565b6000806040838503121561260c57600080fd5b823561261781612bf5565b946020939093013593505050565b6000806000806040858703121561263b57600080fd5b843567ffffffffffffffff8082111561265357600080fd5b61265f888389016123c6565b9096509450602087013591508082111561267857600080fd5b50612685878288016123c6565b95989497509550505050565b6000602082840312156126a357600080fd5b815161173a81612c0a565b6000602082840312156126c057600080fd5b813561173a81612c18565b6000602082840312156126dd57600080fd5b815161173a81612c18565b6000602082840312156126fa57600080fd5b815161173a81612bf5565b6000806000806040858703121561271b57600080fd5b843567ffffffffffffffff8082111561273357600080fd5b61273f88838901612412565b9096509450602087013591508082111561275857600080fd5b5061268587828801612412565b60006020828403121561277757600080fd5b5035919050565b60006020828403121561279057600080fd5b5051919050565b600081518084526127af816020860160208601612b07565b601f01601f19169290920160200192915050565b8054600090600181811c90808316806127dd57607f831692505b60208084108214156127ff57634e487b7160e01b600052602260045260246000fd5b818015612813576001811461282457612851565b60ff19861689528489019650612851565b60008881526020902060005b868110156128495781548b820152908501908301612830565b505084890196505b50505050505092915050565b6000825161286f818460208701612b07565b9190910192915050565b600061288582866127c3565b8451612895818360208901612b07565b6122f2818301866127c3565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128d490830184612797565b9695505050505050565b60208152600061173a6020830184612797565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612ab857612ab8612b9d565b500190565b600082612acc57612acc612bb3565b500490565b6000816000190483118215151615612aeb57612aeb612b9d565b500290565b600082821015612b0257612b02612b9d565b500390565b60005b83811015612b22578181015183820152602001612b0a565b838111156116555750506000910152565b600181811c90821680612b4757607f821691505b60208210811415612b6857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b8257612b82612b9d565b5060010190565b600082612b9857612b98612bb3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461181757600080fd5b801515811461181757600080fd5b6001600160e01b03198116811461181757600080fdfea26469706673582212206627efd1c3ff426f184d28ae7bcb769a4817edef4820dcede1fdef98e6b5212a64736f6c63430008070033000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000100000000000000000000000073f7a88d8b1491ab49244b6da3860b7ddf0bf68900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001

Deployed Bytecode

0x6080604052600436106102295760003560e01c806370a0823111610123578063b50cbd9f116100ab578063e33b7de31161006f578063e33b7de3146106e7578063e985e9c5146106fc578063ef9849691461071c578063f2fde38b14610731578063f968adbe1461075157600080fd5b8063b50cbd9f1461061d578063b88d4fde1461063b578063c87b56dd1461065b578063ce7c2ac21461067b578063d79779b2146106b157600080fd5b806395d89b41116100f257806395d89b41146105895780639852595c1461059e578063a035b1fe146105d4578063a0712d68146105ea578063a22cb465146105fd57600080fd5b806370a0823114610516578063715018a6146105365780638b83209b1461054b5780638da5cb5b1461056b57600080fd5b806332cb6b0c116101b15780634f6ccce7116101755780634f6ccce7146104765780636102de98146104965780636352211e146104b65780636673c4c2146104d65780636790a9de146104f657600080fd5b806332cb6b0c146103c55780633a98ef39146103db578063406072a9146103f057806342842e0e1461043657806348b750441461045657600080fd5b806318160ddd116101f857806318160ddd14610328578063191655871461034b5780631f2698ab1461036b57806323b872dd146103855780632f745c59146103a557600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063095ea7b31461030657600080fd5b36610272577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561028357600080fd5b506102976102923660046126ae565b610767565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c1610792565b6040516102a391906128de565b3480156102da57600080fd5b506102ee6102e9366004612765565b610824565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b506103266103213660046125f9565b6108b1565b005b34801561033457600080fd5b5061033d6109c7565b6040519081526020016102a3565b34801561035757600080fd5b50610326610366366004612454565b6109de565b34801561037757600080fd5b506012546102979060ff1681565b34801561039157600080fd5b506103266103a03660046124aa565b610b0c565b3480156103b157600080fd5b5061033d6103c03660046125f9565b610b3d565b3480156103d157600080fd5b5061033d61115c81565b3480156103e757600080fd5b5060075461033d565b3480156103fc57600080fd5b5061033d61040b366004612471565b6001600160a01b039182166000908152600d6020908152604080832093909416825291909152205490565b34801561044257600080fd5b506103266104513660046124aa565b610bf0565b34801561046257600080fd5b50610326610471366004612471565b610c0b565b34801561048257600080fd5b5061033d610491366004612765565b610df3565b3480156104a257600080fd5b506102976104b1366004612471565b610e60565b3480156104c257600080fd5b506102ee6104d1366004612765565b610f56565b3480156104e257600080fd5b506103266104f1366004612625565b610fe2565b34801561050257600080fd5b50610326610511366004612705565b61119b565b34801561052257600080fd5b5061033d610531366004612454565b6111e5565b34801561054257600080fd5b506103266112b3565b34801561055757600080fd5b506102ee610566366004612765565b6112e9565b34801561057757600080fd5b506006546001600160a01b03166102ee565b34801561059557600080fd5b506102c1611319565b3480156105aa57600080fd5b5061033d6105b9366004612454565b6001600160a01b03166000908152600a602052604090205490565b3480156105e057600080fd5b5061033d60105481565b6103266105f8366004612765565b611328565b34801561060957600080fd5b506103266106183660046125cb565b61155e565b34801561062957600080fd5b506005546001600160a01b03166102ee565b34801561064757600080fd5b506103266106563660046124eb565b611623565b34801561066757600080fd5b506102c1610676366004612765565b61165b565b34801561068757600080fd5b5061033d610696366004612454565b6001600160a01b031660009081526009602052604090205490565b3480156106bd57600080fd5b5061033d6106cc366004612454565b6001600160a01b03166000908152600c602052604090205490565b3480156106f357600080fd5b5060085461033d565b34801561070857600080fd5b50610297610717366004612471565b6116ff565b34801561072857600080fd5b50610326611741565b34801561073d57600080fd5b5061032661074c366004612454565b61177f565b34801561075d57600080fd5b5061033d60115481565b60006001600160e01b0319821663780e9d6360e01b148061078c575061078c8261181a565b92915050565b6060600080546107a190612b33565b80601f01602080910402602001604051908101604052809291908181526020018280546107cd90612b33565b801561081a5780601f106107ef5761010080835404028352916020019161081a565b820191906000526020600020905b8154815290600101906020018083116107fd57829003601f168201915b5050505050905090565b600061082f8261186a565b6108955760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b60006108bc82610f56565b9050806001600160a01b0316836001600160a01b0316141561092a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161088c565b336001600160a01b0382161480610946575061094681336116ff565b6109b85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161088c565b6109c283836118b4565b505050565b6002546000906109d990600190612af0565b905090565b6001600160a01b038116600090815260096020526040902054610a135760405162461bcd60e51b815260040161088c9061298e565b6000610a1e60085490565b610a289047612aa5565b90506000610a558383610a50866001600160a01b03166000908152600a602052604090205490565b611922565b905080610a745760405162461bcd60e51b815260040161088c906129d4565b6001600160a01b0383166000908152600a602052604081208054839290610a9c908490612aa5565b925050819055508060086000828254610ab59190612aa5565b90915550610ac590508382611968565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610b163382611a81565b610b325760405162461bcd60e51b815260040161088c90612a54565b6109c2838383611b43565b6000610b48836111e5565b8210610b665760405162461bcd60e51b815260040161088c906128f1565b6000805b600254811015610bd75760028181548110610b8757610b87612bc9565b6000918252602090912001546001600160a01b0386811691161415610bc55783821415610bb757915061078c9050565b81610bc181612b6e565b9250505b80610bcf81612b6e565b915050610b6a565b5060405162461bcd60e51b815260040161088c906128f1565b6109c283838360405180602001604052806000815250611623565b6001600160a01b038116600090815260096020526040902054610c405760405162461bcd60e51b815260040161088c9061298e565b6001600160a01b0382166000908152600c60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b158015610c9857600080fd5b505afa158015610cac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cd0919061277e565b610cda9190612aa5565b90506000610d138383610a5087876001600160a01b039182166000908152600d6020908152604080832093909416825291909152205490565b905080610d325760405162461bcd60e51b815260040161088c906129d4565b6001600160a01b038085166000908152600d6020908152604080832093871683529290529081208054839290610d69908490612aa5565b90915550506001600160a01b0384166000908152600c602052604081208054839290610d96908490612aa5565b90915550610da79050848483611c99565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b6002546000908210610e5c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161088c565b5090565b6005546000906001600160a01b03168015610f4c574660011480610e845750466004145b15610f195760405163c455279160e01b81526001600160a01b038581166004830152808516919083169063c45527919060240160206040518083038186803b158015610ecf57600080fd5b505afa158015610ee3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0791906126e8565b6001600160a01b03161491505061078c565b4660891480610f2a57504662013881145b15610f4c57826001600160a01b0316816001600160a01b03161491505061078c565b5060009392505050565b60008060028381548110610f6c57610f6c612bc9565b6000918252602090912001546001600160a01b031690508061078c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161088c565b6006546001600160a01b0316331461100c5760405162461bcd60e51b815260040161088c90612a1f565b82811461106e5760405162461bcd60e51b815260206004820152602a60248201527f5175616e74697479206c656e677468206973206e6f7420657175616c20746f20604482015269726563697069656e747360b01b606482015260840161088c565b6000805b848110156110b05785858281811061108c5761108c612bc9565b905060200201358261109e9190612aa5565b91506110a981612b6e565b9050611072565b5060025461115c6110c18383612aa5565b11156111045760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b604482015260640161088c565b6000915060005b838110156111925760005b87878381811061112857611128612bc9565b905060200201358110156111815761117186868481811061114b5761114b612bc9565b90506020020160208101906111609190612454565b8461116a81612b6e565b9550611ceb565b61117a81612b6e565b9050611116565b5061118b81612b6e565b905061110b565b50505050505050565b6006546001600160a01b031633146111c55760405162461bcd60e51b815260040161088c90612a1f565b6111d1600e8585612336565b506111de600f8383612336565b5050505050565b60006001600160a01b0382166112505760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161088c565b6000805b6002548110156112ac576002818154811061127157611271612bc9565b6000918252602090912001546001600160a01b038581169116141561129c5761129982612b6e565b91505b6112a581612b6e565b9050611254565b5092915050565b6006546001600160a01b031633146112dd5760405162461bcd60e51b815260040161088c90612a1f565b6112e76000611d09565b565b6000600b82815481106112fe576112fe612bc9565b6000918252602090912001546001600160a01b031692915050565b6060600180546107a190612b33565b60125460ff166113705760405162461bcd60e51b8152602060048201526013602482015272135a5b9d1a5b99c81b9bdd081cdd185c9d1959606a1b604482015260640161088c565b6011548111156113c25760405162461bcd60e51b815260206004820152601a60248201527f457863656564206d617820706572207472616e73616374696f6e000000000000604482015260640161088c565b6002546000906113d490600190612af0565b905061115c6113e38383612aa5565b11156114265760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b604482015260640161088c565b60135481108015611441575060135461143f8383612aa5565b115b156114bf576013546000906114568484612aa5565b6114609190612af0565b905034601054826114719190612ad1565b11156114b95760405162461bcd60e51b815260206004820152601760248201527624b73b30b634b210333ab7323990383937bb34b232b21760491b604482015260640161088c565b5061151f565b601354811061151f5734601054836114d79190612ad1565b111561151f5760405162461bcd60e51b815260206004820152601760248201527624b73b30b634b210333ab7323990383937bb34b232b21760491b604482015260640161088c565b60005b828110156109c25761153e33611539846001612aa5565b611ceb565b8161154881612b6e565b925050808061155690612b6e565b915050611522565b6001600160a01b0382163314156115b75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161088c565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61162d3383611a81565b6116495760405162461bcd60e51b815260040161088c90612a54565b61165584848484611d5b565b50505050565b60606116668261186a565b6116ca5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161088c565b600e6116d583611d8e565b600f6040516020016116e993929190612879565b6040516020818303038152906040529050919050565b6001600160a01b03808316600090815260046020908152604080832093851683529290529081205460ff168061173a575061173a8383610e60565b9392505050565b6006546001600160a01b0316331461176b5760405162461bcd60e51b815260040161088c90612a1f565b6012805460ff19811660ff90911615179055565b6006546001600160a01b031633146117a95760405162461bcd60e51b815260040161088c90612a1f565b6001600160a01b03811661180e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161088c565b61181781611d09565b50565b60006001600160e01b031982166380ac58cd60e01b148061184b57506001600160e01b03198216635b5e139f60e01b145b8061078c57506301ffc9a760e01b6001600160e01b031983161461078c565b6002546000908210801561078c575060006001600160a01b03166002838154811061189757611897612bc9565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118e982610f56565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6007546001600160a01b0384166000908152600960205260408120549091839161194c9086612ad1565b6119569190612abd565b6119609190612af0565b949350505050565b804710156119b85760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161088c565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611a05576040519150601f19603f3d011682016040523d82523d6000602084013e611a0a565b606091505b50509050806109c25760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161088c565b6000611a8c8261186a565b611aed5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161088c565b6000611af883610f56565b9050806001600160a01b0316846001600160a01b03161480611b335750836001600160a01b0316611b2884610824565b6001600160a01b0316145b80611960575061196081856116ff565b826001600160a01b0316611b5682610f56565b6001600160a01b031614611bbe5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161088c565b6001600160a01b038216611c205760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161088c565b611c2b6000826118b4565b8160028281548110611c3f57611c3f612bc9565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526109c2908490611e8c565b611d05828260405180602001604052806000815250611f5e565b5050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611d66848484611b43565b611d7284848484611f91565b6116555760405162461bcd60e51b815260040161088c9061293c565b606081611db25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ddc5780611dc681612b6e565b9150611dd59050600a83612abd565b9150611db6565b60008167ffffffffffffffff811115611df757611df7612bdf565b6040519080825280601f01601f191660200182016040528015611e21576020820181803683370190505b5090505b841561196057611e36600183612af0565b9150611e43600a86612b89565b611e4e906030612aa5565b60f81b818381518110611e6357611e63612bc9565b60200101906001600160f81b031916908160001a905350611e85600a86612abd565b9450611e25565b6000611ee1826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661209e9092919063ffffffff16565b8051909150156109c25780806020019051810190611eff9190612691565b6109c25760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161088c565b611f6883836120ad565b611f756000848484611f91565b6109c25760405162461bcd60e51b815260040161088c9061293c565b60006001600160a01b0384163b1561209357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fd59033908990889088906004016128a1565b602060405180830381600087803b158015611fef57600080fd5b505af192505050801561201f575060408051601f3d908101601f1916820190925261201c918101906126cb565b60015b612079573d80801561204d576040519150601f19603f3d011682016040523d82523d6000602084013e612052565b606091505b5080516120715760405162461bcd60e51b815260040161088c9061293c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611960565b506001949350505050565b606061196084846000856121d5565b6001600160a01b0382166121035760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161088c565b61210c8161186a565b156121595760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161088c565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060824710156122365760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161088c565b843b6122845760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161088c565b600080866001600160a01b031685876040516122a0919061285d565b60006040518083038185875af1925050503d80600081146122dd576040519150601f19603f3d011682016040523d82523d6000602084013e6122e2565b606091505b50915091506122f28282866122fd565b979650505050505050565b6060831561230c57508161173a565b82511561231c5782518084602001fd5b8160405162461bcd60e51b815260040161088c91906128de565b82805461234290612b33565b90600052602060002090601f01602090048101928261236457600085556123aa565b82601f1061237d5782800160ff198235161785556123aa565b828001600101855582156123aa579182015b828111156123aa57823582559160200191906001019061238f565b50610e5c9291505b80821115610e5c57600081556001016123b2565b60008083601f8401126123d857600080fd5b50813567ffffffffffffffff8111156123f057600080fd5b6020830191508360208260051b850101111561240b57600080fd5b9250929050565b60008083601f84011261242457600080fd5b50813567ffffffffffffffff81111561243c57600080fd5b60208301915083602082850101111561240b57600080fd5b60006020828403121561246657600080fd5b813561173a81612bf5565b6000806040838503121561248457600080fd5b823561248f81612bf5565b9150602083013561249f81612bf5565b809150509250929050565b6000806000606084860312156124bf57600080fd5b83356124ca81612bf5565b925060208401356124da81612bf5565b929592945050506040919091013590565b6000806000806080858703121561250157600080fd5b843561250c81612bf5565b9350602085013561251c81612bf5565b925060408501359150606085013567ffffffffffffffff8082111561254057600080fd5b818701915087601f83011261255457600080fd5b81358181111561256657612566612bdf565b604051601f8201601f19908116603f0116810190838211818310171561258e5761258e612bdf565b816040528281528a60208487010111156125a757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156125de57600080fd5b82356125e981612bf5565b9150602083013561249f81612c0a565b6000806040838503121561260c57600080fd5b823561261781612bf5565b946020939093013593505050565b6000806000806040858703121561263b57600080fd5b843567ffffffffffffffff8082111561265357600080fd5b61265f888389016123c6565b9096509450602087013591508082111561267857600080fd5b50612685878288016123c6565b95989497509550505050565b6000602082840312156126a357600080fd5b815161173a81612c0a565b6000602082840312156126c057600080fd5b813561173a81612c18565b6000602082840312156126dd57600080fd5b815161173a81612c18565b6000602082840312156126fa57600080fd5b815161173a81612bf5565b6000806000806040858703121561271b57600080fd5b843567ffffffffffffffff8082111561273357600080fd5b61273f88838901612412565b9096509450602087013591508082111561275857600080fd5b5061268587828801612412565b60006020828403121561277757600080fd5b5035919050565b60006020828403121561279057600080fd5b5051919050565b600081518084526127af816020860160208601612b07565b601f01601f19169290920160200192915050565b8054600090600181811c90808316806127dd57607f831692505b60208084108214156127ff57634e487b7160e01b600052602260045260246000fd5b818015612813576001811461282457612851565b60ff19861689528489019650612851565b60008881526020902060005b868110156128495781548b820152908501908301612830565b505084890196505b50505050505092915050565b6000825161286f818460208701612b07565b9190910192915050565b600061288582866127c3565b8451612895818360208901612b07565b6122f2818301866127c3565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128d490830184612797565b9695505050505050565b60208152600061173a6020830184612797565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612ab857612ab8612b9d565b500190565b600082612acc57612acc612bb3565b500490565b6000816000190483118215151615612aeb57612aeb612b9d565b500290565b600082821015612b0257612b02612b9d565b500390565b60005b83811015612b22578181015183820152602001612b0a565b838111156116555750506000910152565b600181811c90821680612b4757607f821691505b60208210811415612b6857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b8257612b82612b9d565b5060010190565b600082612b9857612b98612bb3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461181757600080fd5b801515811461181757600080fd5b6001600160e01b03198116811461181757600080fdfea26469706673582212206627efd1c3ff426f184d28ae7bcb769a4817edef4820dcede1fdef98e6b5212a64736f6c63430008070033

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

000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000100000000000000000000000073f7a88d8b1491ab49244b6da3860b7ddf0bf68900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001

-----Decoded View---------------
Arg [0] : openSeaProxyRegistry (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
Arg [1] : _payees (address[]): 0x73f7A88D8B1491aB49244B6dA3860b7DdF0bf689
Arg [2] : _shares (uint256[]): 1

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 00000000000000000000000073f7a88d8b1491ab49244b6da3860b7ddf0bf689
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000001


Deployed Bytecode Sourcemap

53885:3356:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22424:40;19046:10;22424:40;;;-1:-1:-1;;;;;10268:32:1;;;10250:51;;22454:9:0;10332:2:1;10317:18;;10310:34;10223:18;22424:40:0;;;;;;;53885:3356;;;;;52282:300;;;;;;;;;;-1:-1:-1;52282:300:0;;;;;:::i;:::-;;:::i;:::-;;;11292:14:1;;11285:22;11267:41;;11255:2;11240:18;52282:300:0;;;;;;;;41136:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;41948:308::-;;;;;;;;;;-1:-1:-1;41948:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;10024:32:1;;;10006:51;;9994:2;9979:18;41948:308:0;9860:203:1;41471:411:0;;;;;;;;;;-1:-1:-1;41471:411:0;;;;;:::i;:::-;;:::i;:::-;;52658:114;;;;;;;;;;;;;:::i;:::-;;;23489:25:1;;;23477:2;23462:18;52658:114:0;23343:177:1;24210:566:0;;;;;;;;;;-1:-1:-1;24210:566:0;;;;;:::i;:::-;;:::i;54225:27::-;;;;;;;;;;-1:-1:-1;54225:27:0;;;;;;;;43007:376;;;;;;;;;;-1:-1:-1;43007:376:0;;;;;:::i;:::-;;:::i;53225:588::-;;;;;;;;;;-1:-1:-1;53225:588:0;;;;;:::i;:::-;;:::i;54136:41::-;;;;;;;;;;;;54173:4;54136:41;;22555:91;;;;;;;;;;-1:-1:-1;22626:12:0;;22555:91;;23684:135;;;;;;;;;;-1:-1:-1;23684:135:0;;;;;:::i;:::-;-1:-1:-1;;;;;23781:21:0;;;23754:7;23781:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;23684:135;43454:185;;;;;;;;;;-1:-1:-1;43454:185:0;;;;;:::i;:::-;;:::i;25044:641::-;;;;;;;;;;-1:-1:-1;25044:641:0;;;;;:::i;:::-;;:::i;52849:292::-;;;;;;;;;;-1:-1:-1;52849:292:0;;;;;:::i;:::-;;:::i;5279:598::-;;;;;;;;;;-1:-1:-1;5279:598:0;;;;;:::i;:::-;;:::i;40743:326::-;;;;;;;;;;-1:-1:-1;40743:326:0;;;;;:::i;:::-;;:::i;56199:763::-;;;;;;;;;;-1:-1:-1;56199:763:0;;;;;:::i;:::-;;:::i;55898:204::-;;;;;;;;;;-1:-1:-1;55898:204:0;;;;;:::i;:::-;;:::i;40261:420::-;;;;;;;;;;-1:-1:-1;40261:420:0;;;;;:::i;:::-;;:::i;28496:103::-;;;;;;;;;;;;;:::i;23910:100::-;;;;;;;;;;-1:-1:-1;23910:100:0;;;;;:::i;:::-;;:::i;27845:87::-;;;;;;;;;;-1:-1:-1;27918:6:0;;-1:-1:-1;;;;;27918:6:0;27845:87;;41305:104;;;;;;;;;;;;;:::i;23406:109::-;;;;;;;;;;-1:-1:-1;23406:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;23489:18:0;23462:7;23489:18;;;:9;:18;;;;;;;23406:109;54076:39;;;;;;;;;;;;;;;;54637:752;;;;;;:::i;:::-;;:::i;42328:327::-;;;;;;;;;;-1:-1:-1;42328:327:0;;;;;:::i;:::-;;:::i;5176:95::-;;;;;;;;;;-1:-1:-1;5249:14:0;;-1:-1:-1;;;;;5249:14:0;5176:95;;43710:365;;;;;;;;;;-1:-1:-1;43710:365:0;;;;;:::i;:::-;;:::i;55397:493::-;;;;;;;;;;-1:-1:-1;55397:493:0;;;;;:::i;:::-;;:::i;23202:105::-;;;;;;;;;;-1:-1:-1;23202:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;23283:16:0;23256:7;23283:16;;;:7;:16;;;;;;;23202:105;22992:119;;;;;;;;;;-1:-1:-1;22992:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;23077:26:0;23050:7;23077:26;;;:19;:26;;;;;;;22992:119;22740:95;;;;;;;;;;-1:-1:-1;22813:14:0;;22740:95;;56970:268;;;;;;;;;;-1:-1:-1;56970:268:0;;;;;:::i;:::-;;:::i;56110:81::-;;;;;;;;;;;;;:::i;28754:201::-;;;;;;;;;;-1:-1:-1;28754:201:0;;;;;:::i;:::-;;:::i;54184:28::-;;;;;;;;;;;;;;;;52282:300;52429:4;-1:-1:-1;;;;;;52471:50:0;;-1:-1:-1;;;52471:50:0;;:103;;;52538:36;52562:11;52538:23;:36::i;:::-;52451:123;52282:300;-1:-1:-1;;52282:300:0:o;41136:100::-;41190:13;41223:5;41216:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41136:100;:::o;41948:308::-;42069:7;42116:16;42124:7;42116;:16::i;:::-;42094:110;;;;-1:-1:-1;;;42094:110:0;;19241:2:1;42094:110:0;;;19223:21:1;19280:2;19260:18;;;19253:30;19319:34;19299:18;;;19292:62;-1:-1:-1;;;19370:18:1;;;19363:42;19422:19;;42094:110:0;;;;;;;;;-1:-1:-1;42224:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;42224:24:0;;41948:308::o;41471:411::-;41552:13;41568:23;41583:7;41568:14;:23::i;:::-;41552:39;;41616:5;-1:-1:-1;;;;;41610:11:0;:2;-1:-1:-1;;;;;41610:11:0;;;41602:57;;;;-1:-1:-1;;;41602:57:0;;21196:2:1;41602:57:0;;;21178:21:1;21235:2;21215:18;;;21208:30;21274:34;21254:18;;;21247:62;-1:-1:-1;;;21325:18:1;;;21318:31;21366:19;;41602:57:0;20994:397:1;41602:57:0;19046:10;-1:-1:-1;;;;;41694:21:0;;;;:62;;-1:-1:-1;41719:37:0;41736:5;19046:10;56970:268;:::i;41719:37::-;41672:168;;;;-1:-1:-1;;;41672:168:0;;16871:2:1;41672:168:0;;;16853:21:1;16910:2;16890:18;;;16883:30;16949:34;16929:18;;;16922:62;17020:26;17000:18;;;16993:54;17064:19;;41672:168:0;16669:420:1;41672:168:0;41853:21;41862:2;41866:7;41853:8;:21::i;:::-;41541:341;41471:411;;:::o;52658:114::-;52746:7;:14;52719:7;;52746:18;;52763:1;;52746:18;:::i;:::-;52739:25;;52658:114;:::o;24210:566::-;-1:-1:-1;;;;;24286:16:0;;24305:1;24286:16;;;:7;:16;;;;;;24278:71;;;;-1:-1:-1;;;24278:71:0;;;;;;;:::i;:::-;24362:21;24410:15;22813:14;;;22740:95;24410:15;24386:39;;:21;:39;:::i;:::-;24362:63;;24436:15;24454:58;24470:7;24479:13;24494:17;24503:7;-1:-1:-1;;;;;23489:18:0;23462:7;23489:18;;;:9;:18;;;;;;;23406:109;24494:17;24454:15;:58::i;:::-;24436:76;-1:-1:-1;24533:12:0;24525:68;;;;-1:-1:-1;;;24525:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24606:18:0;;;;;;:9;:18;;;;;:29;;24628:7;;24606:18;:29;;24628:7;;24606:29;:::i;:::-;;;;;;;;24664:7;24646:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;24684:35:0;;-1:-1:-1;24702:7:0;24711;24684:17;:35::i;:::-;24735:33;;;-1:-1:-1;;;;;10268:32:1;;10250:51;;10332:2;10317:18;;10310:34;;;24735:33:0;;10223:18:1;24735:33:0;;;;;;;24267:509;;24210:566;:::o;43007:376::-;43216:41;19046:10;43249:7;43216:18;:41::i;:::-;43194:140;;;;-1:-1:-1;;;43194:140:0;;;;;;;:::i;:::-;43347:28;43357:4;43363:2;43367:7;43347:9;:28::i;53225:588::-;53367:15;53430:16;53440:5;53430:9;:16::i;:::-;53422:5;:24;53400:117;;;;-1:-1:-1;;;53400:117:0;;;;;;;:::i;:::-;53530:13;53559:9;53554:186;53574:7;:14;53570:18;;53554:186;;;53623:7;53631:1;53623:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;53614:19:0;;;53623:10;;53614:19;53610:119;;;53667:5;53658;:14;53654:59;;;53681:1;-1:-1:-1;53674:8:0;;-1:-1:-1;53674:8:0;53654:59;53706:7;;;;:::i;:::-;;;;53654:59;53590:3;;;;:::i;:::-;;;;53554:186;;;;53752:53;;-1:-1:-1;;;53752:53:0;;;;;;;:::i;43454:185::-;43592:39;43609:4;43615:2;43619:7;43592:39;;;;;;;;;;;;:16;:39::i;25044:641::-;-1:-1:-1;;;;;25126:16:0;;25145:1;25126:16;;;:7;:16;;;;;;25118:71;;;;-1:-1:-1;;;25118:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23077:26:0;;25202:21;23077:26;;;:19;:26;;;;;;25226:30;;-1:-1:-1;;;25226:30:0;;25250:4;25226:30;;;10006:51:1;-1:-1:-1;;;;;25226:15:0;;;;;9979:18:1;;25226:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;25202:77;;25290:15;25308:65;25324:7;25333:13;25348:24;25357:5;25364:7;-1:-1:-1;;;;;23781:21:0;;;23754:7;23781:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;23684:135;25308:65;25290:83;-1:-1:-1;25394:12:0;25386:68;;;;-1:-1:-1;;;25386:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25467:21:0;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;;;:41;;25501:7;;25467:21;:41;;25501:7;;25467:41;:::i;:::-;;;;-1:-1:-1;;;;;;;25519:26:0;;;;;;:19;:26;;;;;:37;;25549:7;;25519:26;:37;;25549:7;;25519:37;:::i;:::-;;;;-1:-1:-1;25569:47:0;;-1:-1:-1;25592:5:0;25599:7;25608;25569:22;:47::i;:::-;25632:45;;;-1:-1:-1;;;;;10268:32:1;;;10250:51;;10332:2;10317:18;;10310:34;;;25632:45:0;;;;;10223:18:1;25632:45:0;;;;;;;25107:578;;25044:641;;:::o;52849:292::-;53024:7;:14;52969:7;;53016:22;;52994:116;;;;-1:-1:-1;;;52994:116:0;;22721:2:1;52994:116:0;;;22703:21:1;22760:2;22740:18;;;22733:30;22799:34;22779:18;;;22772:62;-1:-1:-1;;;22850:18:1;;;22843:42;22902:19;;52994:116:0;22519:408:1;52994:116:0;-1:-1:-1;53128:5:0;52849:292::o;5279:598::-;5437:14;;5390:4;;-1:-1:-1;;;;;5437:14:0;5468:28;;5464:381;;5517:13;5534:1;5517:18;:40;;;;5539:13;5556:1;5539:18;5517:40;5513:321;;;5614:44;;-1:-1:-1;;;5614:44:0;;-1:-1:-1;;;;;10024:32:1;;;5614:44:0;;;10006:51:1;5606:86:0;;;;5614:37;;;;;;9979:18:1;;5614:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;5606:86:0;;5578:114;;;;;5513:321;5718:13;5735:3;5718:20;:46;;;;5742:13;5759:5;5742:22;5718:46;5714:120;;;5810:8;-1:-1:-1;;;;;5792:26:0;:14;-1:-1:-1;;;;;5792:26:0;;5785:33;;;;;5714:120;-1:-1:-1;5864:5:0;;5279:598;-1:-1:-1;;;5279:598:0:o;40743:326::-;40860:7;40885:13;40901:7;40909;40901:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;40901:16:0;;-1:-1:-1;40950:19:0;40928:110;;;;-1:-1:-1;;;40928:110:0;;18118:2:1;40928:110:0;;;18100:21:1;18157:2;18137:18;;;18130:30;18196:34;18176:18;;;18169:62;-1:-1:-1;;;18247:18:1;;;18240:39;18296:19;;40928:110:0;17916:405:1;56199:763:0;27918:6;;-1:-1:-1;;;;;27918:6:0;19046:10;28065:23;28057:68;;;;-1:-1:-1;;;28057:68:0;;;;;;;:::i;:::-;56350:35;;::::1;56328:127;;;::::0;-1:-1:-1;;;56328:127:0;;17296:2:1;56328:127:0::1;::::0;::::1;17278:21:1::0;17335:2;17315:18;;;17308:30;17374:34;17354:18;;;17347:62;-1:-1:-1;;;17425:18:1;;;17418:40;17475:19;;56328:127:0::1;17094:406:1::0;56328:127:0::1;56468:21;56509:9:::0;56504:101:::1;56524:19:::0;;::::1;56504:101;;;56582:8;;56591:1;56582:11;;;;;;;:::i;:::-;;;;;;;56565:28;;;;;:::i;:::-;::::0;-1:-1:-1;56545:3:0::1;::::0;::::1;:::i;:::-;;;56504:101;;;-1:-1:-1::0;56634:7:0::1;:14:::0;54173:4:::1;56667:22;56676:13:::0;56634:14;56667:22:::1;:::i;:::-;:36;;56659:67;;;::::0;-1:-1:-1;;;56659:67:0;;22374:2:1;56659:67:0::1;::::0;::::1;22356:21:1::0;22413:2;22393:18;;;22386:30;-1:-1:-1;;;22432:18:1;;;22425:48;22490:18;;56659:67:0::1;22172:342:1::0;56659:67:0::1;56739:20;;;56777:9;56772:183;56792:20:::0;;::::1;56772:183;;;56839:9;56834:110;56858:8;;56867:1;56858:11;;;;;;;:::i;:::-;;;;;;;56854:1;:15;56834:110;;;56895:33;56905:9;;56915:1;56905:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;56919:8:::0;::::1;::::0;::::1;:::i;:::-;;;56895:9;:33::i;:::-;56871:3;::::0;::::1;:::i;:::-;;;56834:110;;;-1:-1:-1::0;56814:3:0::1;::::0;::::1;:::i;:::-;;;56772:183;;;;56317:645;;56199:763:::0;;;;:::o;55898:204::-;27918:6;;-1:-1:-1;;;;;27918:6:0;19046:10;28065:23;28057:68;;;;-1:-1:-1;;;28057:68:0;;;;;;;:::i;:::-;56028:27:::1;:13;56044:11:::0;;56028:27:::1;:::i;:::-;-1:-1:-1::0;56066:28:0::1;:15;56084:10:::0;;56066:28:::1;:::i;:::-;;55898:204:::0;;;;:::o;40261:420::-;40378:7;-1:-1:-1;;;;;40425:19:0;;40403:111;;;;-1:-1:-1;;;40403:111:0;;17707:2:1;40403:111:0;;;17689:21:1;17746:2;17726:18;;;17719:30;17785:34;17765:18;;;17758:62;-1:-1:-1;;;17836:18:1;;;17829:40;17886:19;;40403:111:0;17505:406:1;40403:111:0;40527:13;40556:9;40551:100;40571:7;:14;40567:18;;40551:100;;;40620:7;40628:1;40620:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;40611:19:0;;;40620:10;;40611:19;40607:32;;;40632:7;;;:::i;:::-;;;40607:32;40587:3;;;:::i;:::-;;;40551:100;;;-1:-1:-1;40668:5:0;40261:420;-1:-1:-1;;40261:420:0:o;28496:103::-;27918:6;;-1:-1:-1;;;;;27918:6:0;19046:10;28065:23;28057:68;;;;-1:-1:-1;;;28057:68:0;;;;;;;:::i;:::-;28561:30:::1;28588:1;28561:18;:30::i;:::-;28496:103::o:0;23910:100::-;23961:7;23988;23996:5;23988:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;23988:14:0;;23910:100;-1:-1:-1;;23910:100:0:o;41305:104::-;41361:13;41394:7;41387:14;;;;;:::i;54637:752::-;54700:7;;;;54692:39;;;;-1:-1:-1;;;54692:39:0;;12983:2:1;54692:39:0;;;12965:21:1;13022:2;13002:18;;;12995:30;-1:-1:-1;;;13041:18:1;;;13034:49;13100:18;;54692:39:0;12781:343:1;54692:39:0;54759:8;;54750:5;:17;;54742:56;;;;-1:-1:-1;;;54742:56:0;;19654:2:1;54742:56:0;;;19636:21:1;19693:2;19673:18;;;19666:30;19732:28;19712:18;;;19705:56;19778:18;;54742:56:0;19452:350:1;54742:56:0;54826:7;:14;54809;;54826:18;;54843:1;;54826:18;:::i;:::-;54809:35;-1:-1:-1;54173:4:0;54863:14;54872:5;54809:35;54863:14;:::i;:::-;:28;;54855:59;;;;-1:-1:-1;;;54855:59:0;;22374:2:1;54855:59:0;;;22356:21:1;22413:2;22393:18;;;22386:30;-1:-1:-1;;;22432:18:1;;;22425:48;22490:18;;54855:59:0;22172:342:1;54855:59:0;54938:11;;54929:6;:20;:52;;;;-1:-1:-1;54970:11:0;;54953:14;54962:5;54953:6;:14;:::i;:::-;:28;54929:52;54925:334;;;55034:11;;54998:16;;55017:14;55026:5;55017:6;:14;:::i;:::-;:28;;;;:::i;:::-;54998:47;;55088:9;55079:5;;55068:8;:16;;;;:::i;:::-;:29;;55060:65;;;;-1:-1:-1;;;55060:65:0;;18528:2:1;55060:65:0;;;18510:21:1;18567:2;18547:18;;;18540:30;-1:-1:-1;;;18586:18:1;;;18579:53;18649:18;;55060:65:0;18326:347:1;55060:65:0;54983:154;54925:334;;;55157:11;;55147:6;:21;55143:116;;55210:9;55201:5;;55193;:13;;;;:::i;:::-;:26;;55185:62;;;;-1:-1:-1;;;55185:62:0;;18528:2:1;55185:62:0;;;18510:21:1;18567:2;18547:18;;;18540:30;-1:-1:-1;;;18586:18:1;;;18579:53;18649:18;;55185:62:0;18326:347:1;55185:62:0;55274:9;55269:113;55289:5;55285:1;:9;55269:113;;;55316:31;55326:10;55338:8;:6;55345:1;55338:8;:::i;:::-;55316:9;:31::i;:::-;55362:8;;;;:::i;:::-;;;;55296:3;;;;;:::i;:::-;;;;55269:113;;42328:327;-1:-1:-1;;;;;42463:24:0;;19046:10;42463:24;;42455:62;;;;-1:-1:-1;;;42455:62:0;;14500:2:1;42455:62:0;;;14482:21:1;14539:2;14519:18;;;14512:30;14578:27;14558:18;;;14551:55;14623:18;;42455:62:0;14298:349:1;42455:62:0;19046:10;42530:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;42530:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;42530:53:0;;;;;;;;;;42599:48;;11267:41:1;;;42530:42:0;;19046:10;42599:48;;11240:18:1;42599:48:0;;;;;;;42328:327;;:::o;43710:365::-;43899:41;19046:10;43932:7;43899:18;:41::i;:::-;43877:140;;;;-1:-1:-1;;;43877:140:0;;;;;;;:::i;:::-;44028:39;44042:4;44048:2;44052:7;44061:5;44028:13;:39::i;:::-;43710:365;;;;:::o;55397:493::-;55517:13;55570:16;55578:7;55570;:16::i;:::-;55548:113;;;;-1:-1:-1;;;55548:113:0;;20780:2:1;55548:113:0;;;20762:21:1;20819:2;20799:18;;;20792:30;20858:34;20838:18;;;20831:62;-1:-1:-1;;;20909:18:1;;;20902:45;20964:19;;55548:113:0;20578:411:1;55548:113:0;55756:13;55792:18;:7;:16;:18::i;:::-;55833:15;55717:150;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55672:210;;55397:493;;;:::o;56970:268::-;-1:-1:-1;;;;;42897:25:0;;;57095:4;42897:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;57137:93;;;;57193:37;57214:5;57221:8;57193:20;:37::i;:::-;57117:113;56970:268;-1:-1:-1;;;56970:268:0:o;56110:81::-;27918:6;;-1:-1:-1;;;;;27918:6:0;19046:10;28065:23;28057:68;;;;-1:-1:-1;;;28057:68:0;;;;;;;:::i;:::-;56176:7:::1;::::0;;-1:-1:-1;;56165:18:0;::::1;56176:7;::::0;;::::1;56175:8;56165:18;::::0;;56110:81::o;28754:201::-;27918:6;;-1:-1:-1;;;;;27918:6:0;19046:10;28065:23;28057:68;;;;-1:-1:-1;;;28057:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28843:22:0;::::1;28835:73;;;::::0;-1:-1:-1;;;28835:73:0;;12576:2:1;28835:73:0::1;::::0;::::1;12558:21:1::0;12615:2;12595:18;;;12588:30;12654:34;12634:18;;;12627:62;-1:-1:-1;;;12705:18:1;;;12698:36;12751:19;;28835:73:0::1;12374:402:1::0;28835:73:0::1;28919:28;28938:8;28919:18;:28::i;:::-;28754:201:::0;:::o;39842:355::-;39989:4;-1:-1:-1;;;;;;40031:40:0;;-1:-1:-1;;;40031:40:0;;:105;;-1:-1:-1;;;;;;;40088:48:0;;-1:-1:-1;;;40088:48:0;40031:105;:158;;;-1:-1:-1;;;;;;;;;;32235:40:0;;;40153:36;32126:157;45622:155;45721:7;:14;45687:4;;45711:24;;:58;;;;;45767:1;-1:-1:-1;;;;;45739:30:0;:7;45747;45739:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;45739:16:0;:30;;45704:65;45622:155;-1:-1:-1;;45622:155:0:o;49647:174::-;49722:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;49722:29:0;-1:-1:-1;;;;;49722:29:0;;;;;;;;:24;;49776:23;49722:24;49776:14;:23::i;:::-;-1:-1:-1;;;;;49767:46:0;;;;;;;;;;;49647:174;;:::o;25863:248::-;26073:12;;-1:-1:-1;;;;;26053:16:0;;26009:7;26053:16;;;:7;:16;;;;;;26009:7;;26088:15;;26037:32;;:13;:32;:::i;:::-;26036:49;;;;:::i;:::-;:67;;;;:::i;:::-;26029:74;25863:248;-1:-1:-1;;;;25863:248:0:o;8285:317::-;8400:6;8375:21;:31;;8367:73;;;;-1:-1:-1;;;8367:73:0;;15281:2:1;8367:73:0;;;15263:21:1;15320:2;15300:18;;;15293:30;15359:31;15339:18;;;15332:59;15408:18;;8367:73:0;15079:353:1;8367:73:0;8454:12;8472:9;-1:-1:-1;;;;;8472:14:0;8494:6;8472:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8453:52;;;8524:7;8516:78;;;;-1:-1:-1;;;8516:78:0;;14854:2:1;8516:78:0;;;14836:21:1;14893:2;14873:18;;;14866:30;14932:34;14912:18;;;14905:62;15003:28;14983:18;;;14976:56;15049:19;;8516:78:0;14652:422:1;45944:452:0;46073:4;46117:16;46125:7;46117;:16::i;:::-;46095:110;;;;-1:-1:-1;;;46095:110:0;;16046:2:1;46095:110:0;;;16028:21:1;16085:2;16065:18;;;16058:30;16124:34;16104:18;;;16097:62;-1:-1:-1;;;16175:18:1;;;16168:42;16227:19;;46095:110:0;15844:408:1;46095:110:0;46216:13;46232:23;46247:7;46232:14;:23::i;:::-;46216:39;;46285:5;-1:-1:-1;;;;;46274:16:0;:7;-1:-1:-1;;;;;46274:16:0;;:64;;;;46331:7;-1:-1:-1;;;;;46307:31:0;:20;46319:7;46307:11;:20::i;:::-;-1:-1:-1;;;;;46307:31:0;;46274:64;:113;;;;46355:32;46372:5;46379:7;46355:16;:32::i;48976:553::-;49149:4;-1:-1:-1;;;;;49122:31:0;:23;49137:7;49122:14;:23::i;:::-;-1:-1:-1;;;;;49122:31:0;;49100:122;;;;-1:-1:-1;;;49100:122:0;;20370:2:1;49100:122:0;;;20352:21:1;20409:2;20389:18;;;20382:30;20448:34;20428:18;;;20421:62;-1:-1:-1;;;20499:18:1;;;20492:39;20548:19;;49100:122:0;20168:405:1;49100:122:0;-1:-1:-1;;;;;49241:16:0;;49233:65;;;;-1:-1:-1;;;49233:65:0;;14095:2:1;49233:65:0;;;14077:21:1;14134:2;14114:18;;;14107:30;14173:34;14153:18;;;14146:62;-1:-1:-1;;;14224:18:1;;;14217:34;14268:19;;49233:65:0;13893:400:1;49233:65:0;49415:29;49432:1;49436:7;49415:8;:29::i;:::-;49474:2;49455:7;49463;49455:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;49455:21:0;-1:-1:-1;;;;;49455:21:0;;;;;;49494:27;;49513:7;;49494:27;;;;;;;;;;49455:16;49494:27;48976:553;;;:::o;14991:211::-;15135:58;;;-1:-1:-1;;;;;10268:32:1;;15135:58:0;;;10250:51:1;10317:18;;;;10310:34;;;15135:58:0;;;;;;;;;;10223:18:1;;;;15135:58:0;;;;;;;;-1:-1:-1;;;;;15135:58:0;-1:-1:-1;;;15135:58:0;;;15108:86;;15128:5;;15108:19;:86::i;46738:110::-;46814:26;46824:2;46828:7;46814:26;;;;;;;;;;;;:9;:26::i;:::-;46738:110;;:::o;29115:191::-;29208:6;;;-1:-1:-1;;;;;29225:17:0;;;-1:-1:-1;;;;;;29225:17:0;;;;;;;29258:40;;29208:6;;;29225:17;29208:6;;29258:40;;29189:16;;29258:40;29178:128;29115:191;:::o;44957:352::-;45114:28;45124:4;45130:2;45134:7;45114:9;:28::i;:::-;45175:48;45198:4;45204:2;45208:7;45217:5;45175:22;:48::i;:::-;45153:148;;;;-1:-1:-1;;;45153:148:0;;;;;;;:::i;3261:723::-;3317:13;3538:10;3534:53;;-1:-1:-1;;3565:10:0;;;;;;;;;;;;-1:-1:-1;;;3565:10:0;;;;;3261:723::o;3534:53::-;3612:5;3597:12;3653:78;3660:9;;3653:78;;3686:8;;;;:::i;:::-;;-1:-1:-1;3709:10:0;;-1:-1:-1;3717:2:0;3709:10;;:::i;:::-;;;3653:78;;;3741:19;3773:6;3763:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3763:17:0;;3741:39;;3791:154;3798:10;;3791:154;;3825:11;3835:1;3825:11;;:::i;:::-;;-1:-1:-1;3894:10:0;3902:2;3894:5;:10;:::i;:::-;3881:24;;:2;:24;:::i;:::-;3868:39;;3851:6;3858;3851:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3851:56:0;;;;;;;;-1:-1:-1;3922:11:0;3931:2;3922:11;;:::i;:::-;;;3791:154;;17564:716;17988:23;18014:69;18042:4;18014:69;;;;;;;;;;;;;;;;;18022:5;-1:-1:-1;;;;;18014:27:0;;;:69;;;;;:::i;:::-;18098:17;;17988:95;;-1:-1:-1;18098:21:0;18094:179;;18195:10;18184:30;;;;;;;;;;;;:::i;:::-;18176:85;;;;-1:-1:-1;;;18176:85:0;;23134:2:1;18176:85:0;;;23116:21:1;23173:2;23153:18;;;23146:30;23212:34;23192:18;;;23185:62;-1:-1:-1;;;23263:18:1;;;23256:40;23313:19;;18176:85:0;22932:406:1;47075:321:0;47205:18;47211:2;47215:7;47205:5;:18::i;:::-;47256:54;47287:1;47291:2;47295:7;47304:5;47256:22;:54::i;:::-;47234:154;;;;-1:-1:-1;;;47234:154:0;;;;;;;:::i;50386:980::-;50541:4;-1:-1:-1;;;;;50562:13:0;;7286:20;7334:8;50558:801;;50615:175;;-1:-1:-1;;;50615:175:0;;-1:-1:-1;;;;;50615:36:0;;;;;:175;;19046:10;;50709:4;;50736:7;;50766:5;;50615:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50615:175:0;;;;;;;;-1:-1:-1;;50615:175:0;;;;;;;;;;;;:::i;:::-;;;50594:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50973:13:0;;50969:320;;51016:108;;-1:-1:-1;;;51016:108:0;;;;;;;:::i;50969:320::-;51239:6;51233:13;51224:6;51220:2;51216:15;51209:38;50594:710;-1:-1:-1;;;;;;50854:51:0;-1:-1:-1;;;50854:51:0;;-1:-1:-1;50847:58:0;;50558:801;-1:-1:-1;51343:4:0;50386:980;;;;;;:::o;9769:229::-;9906:12;9938:52;9960:6;9968:4;9974:1;9977:12;9938:21;:52::i;47732:346::-;-1:-1:-1;;;;;47812:16:0;;47804:61;;;;-1:-1:-1;;;47804:61:0;;18880:2:1;47804:61:0;;;18862:21:1;;;18899:18;;;18892:30;18958:34;18938:18;;;18931:62;19010:18;;47804:61:0;18678:356:1;47804:61:0;47885:16;47893:7;47885;:16::i;:::-;47884:17;47876:58;;;;-1:-1:-1;;;47876:58:0;;13331:2:1;47876:58:0;;;13313:21:1;13370:2;13350:18;;;13343:30;13409;13389:18;;;13382:58;13457:18;;47876:58:0;13129:352:1;47876:58:0;48003:7;:16;;;;;;;-1:-1:-1;48003:16:0;;;;;;;-1:-1:-1;;;;;;48003:16:0;-1:-1:-1;;;;;48003:16:0;;;;;;;;48037:33;;48062:7;;-1:-1:-1;48037:33:0;;-1:-1:-1;;48037:33:0;47732:346;;:::o;10889:510::-;11059:12;11117:5;11092:21;:30;;11084:81;;;;-1:-1:-1;;;11084:81:0;;15639:2:1;11084:81:0;;;15621:21:1;15678:2;15658:18;;;15651:30;15717:34;15697:18;;;15690:62;-1:-1:-1;;;15768:18:1;;;15761:36;15814:19;;11084:81:0;15437:402:1;11084:81:0;7286:20;;11176:60;;;;-1:-1:-1;;;11176:60:0;;22016:2:1;11176:60:0;;;21998:21:1;22055:2;22035:18;;;22028:30;22094:31;22074:18;;;22067:59;22143:18;;11176:60:0;21814:353:1;11176:60:0;11250:12;11264:23;11291:6;-1:-1:-1;;;;;11291:11:0;11310:5;11317:4;11291:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11249:73;;;;11340:51;11357:7;11366:10;11378:12;11340:16;:51::i;:::-;11333:58;10889:510;-1:-1:-1;;;;;;;10889:510:0:o;13575:712::-;13725:12;13754:7;13750:530;;;-1:-1:-1;13785:10:0;13778:17;;13750:530;13899:17;;:21;13895:374;;14097:10;14091:17;14158:15;14145:10;14141:2;14137:19;14130:44;13895:374;14240:12;14233:20;;-1:-1:-1;;;14233:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:367:1;77:8;87:6;141:3;134:4;126:6;122:17;118:27;108:55;;159:1;156;149:12;108:55;-1:-1:-1;182:20:1;;225:18;214:30;;211:50;;;257:1;254;247:12;211:50;294:4;286:6;282:17;270:29;;354:3;347:4;337:6;334:1;330:14;322:6;318:27;314:38;311:47;308:67;;;371:1;368;361:12;308:67;14:367;;;;;:::o;386:348::-;438:8;448:6;502:3;495:4;487:6;483:17;479:27;469:55;;520:1;517;510:12;469:55;-1:-1:-1;543:20:1;;586:18;575:30;;572:50;;;618:1;615;608:12;572:50;655:4;647:6;643:17;631:29;;707:3;700:4;691:6;683;679:19;675:30;672:39;669:59;;;724:1;721;714:12;739:247;798:6;851:2;839:9;830:7;826:23;822:32;819:52;;;867:1;864;857:12;819:52;906:9;893:23;925:31;950:5;925:31;:::i;1251:388::-;1319:6;1327;1380:2;1368:9;1359:7;1355:23;1351:32;1348:52;;;1396:1;1393;1386:12;1348:52;1435:9;1422:23;1454:31;1479:5;1454:31;:::i;:::-;1504:5;-1:-1:-1;1561:2:1;1546:18;;1533:32;1574:33;1533:32;1574:33;:::i;:::-;1626:7;1616:17;;;1251:388;;;;;:::o;1644:456::-;1721:6;1729;1737;1790:2;1778:9;1769:7;1765:23;1761:32;1758:52;;;1806:1;1803;1796:12;1758:52;1845:9;1832:23;1864:31;1889:5;1864:31;:::i;:::-;1914:5;-1:-1:-1;1971:2:1;1956:18;;1943:32;1984:33;1943:32;1984:33;:::i;:::-;1644:456;;2036:7;;-1:-1:-1;;;2090:2:1;2075:18;;;;2062:32;;1644:456::o;2105:1266::-;2200:6;2208;2216;2224;2277:3;2265:9;2256:7;2252:23;2248:33;2245:53;;;2294:1;2291;2284:12;2245:53;2333:9;2320:23;2352:31;2377:5;2352:31;:::i;:::-;2402:5;-1:-1:-1;2459:2:1;2444:18;;2431:32;2472:33;2431:32;2472:33;:::i;:::-;2524:7;-1:-1:-1;2578:2:1;2563:18;;2550:32;;-1:-1:-1;2633:2:1;2618:18;;2605:32;2656:18;2686:14;;;2683:34;;;2713:1;2710;2703:12;2683:34;2751:6;2740:9;2736:22;2726:32;;2796:7;2789:4;2785:2;2781:13;2777:27;2767:55;;2818:1;2815;2808:12;2767:55;2854:2;2841:16;2876:2;2872;2869:10;2866:36;;;2882:18;;:::i;:::-;2957:2;2951:9;2925:2;3011:13;;-1:-1:-1;;3007:22:1;;;3031:2;3003:31;2999:40;2987:53;;;3055:18;;;3075:22;;;3052:46;3049:72;;;3101:18;;:::i;:::-;3141:10;3137:2;3130:22;3176:2;3168:6;3161:18;3216:7;3211:2;3206;3202;3198:11;3194:20;3191:33;3188:53;;;3237:1;3234;3227:12;3188:53;3293:2;3288;3284;3280:11;3275:2;3267:6;3263:15;3250:46;3338:1;3333:2;3328;3320:6;3316:15;3312:24;3305:35;3359:6;3349:16;;;;;;;2105:1266;;;;;;;:::o;3376:382::-;3441:6;3449;3502:2;3490:9;3481:7;3477:23;3473:32;3470:52;;;3518:1;3515;3508:12;3470:52;3557:9;3544:23;3576:31;3601:5;3576:31;:::i;:::-;3626:5;-1:-1:-1;3683:2:1;3668:18;;3655:32;3696:30;3655:32;3696:30;:::i;3763:315::-;3831:6;3839;3892:2;3880:9;3871:7;3867:23;3863:32;3860:52;;;3908:1;3905;3898:12;3860:52;3947:9;3934:23;3966:31;3991:5;3966:31;:::i;:::-;4016:5;4068:2;4053:18;;;;4040:32;;-1:-1:-1;;;3763:315:1:o;4083:773::-;4205:6;4213;4221;4229;4282:2;4270:9;4261:7;4257:23;4253:32;4250:52;;;4298:1;4295;4288:12;4250:52;4338:9;4325:23;4367:18;4408:2;4400:6;4397:14;4394:34;;;4424:1;4421;4414:12;4394:34;4463:70;4525:7;4516:6;4505:9;4501:22;4463:70;:::i;:::-;4552:8;;-1:-1:-1;4437:96:1;-1:-1:-1;4640:2:1;4625:18;;4612:32;;-1:-1:-1;4656:16:1;;;4653:36;;;4685:1;4682;4675:12;4653:36;;4724:72;4788:7;4777:8;4766:9;4762:24;4724:72;:::i;:::-;4083:773;;;;-1:-1:-1;4815:8:1;-1:-1:-1;;;;4083:773:1:o;4861:245::-;4928:6;4981:2;4969:9;4960:7;4956:23;4952:32;4949:52;;;4997:1;4994;4987:12;4949:52;5029:9;5023:16;5048:28;5070:5;5048:28;:::i;5111:245::-;5169:6;5222:2;5210:9;5201:7;5197:23;5193:32;5190:52;;;5238:1;5235;5228:12;5190:52;5277:9;5264:23;5296:30;5320:5;5296:30;:::i;5361:249::-;5430:6;5483:2;5471:9;5462:7;5458:23;5454:32;5451:52;;;5499:1;5496;5489:12;5451:52;5531:9;5525:16;5550:30;5574:5;5550:30;:::i;6286:279::-;6384:6;6437:2;6425:9;6416:7;6412:23;6408:32;6405:52;;;6453:1;6450;6443:12;6405:52;6485:9;6479:16;6504:31;6529:5;6504:31;:::i;6570:721::-;6662:6;6670;6678;6686;6739:2;6727:9;6718:7;6714:23;6710:32;6707:52;;;6755:1;6752;6745:12;6707:52;6795:9;6782:23;6824:18;6865:2;6857:6;6854:14;6851:34;;;6881:1;6878;6871:12;6851:34;6920:59;6971:7;6962:6;6951:9;6947:22;6920:59;:::i;:::-;6998:8;;-1:-1:-1;6894:85:1;-1:-1:-1;7086:2:1;7071:18;;7058:32;;-1:-1:-1;7102:16:1;;;7099:36;;;7131:1;7128;7121:12;7099:36;;7170:61;7223:7;7212:8;7201:9;7197:24;7170:61;:::i;7296:180::-;7355:6;7408:2;7396:9;7387:7;7383:23;7379:32;7376:52;;;7424:1;7421;7414:12;7376:52;-1:-1:-1;7447:23:1;;7296:180;-1:-1:-1;7296:180:1:o;7481:184::-;7551:6;7604:2;7592:9;7583:7;7579:23;7575:32;7572:52;;;7620:1;7617;7610:12;7572:52;-1:-1:-1;7643:16:1;;7481:184;-1:-1:-1;7481:184:1:o;7670:257::-;7711:3;7749:5;7743:12;7776:6;7771:3;7764:19;7792:63;7848:6;7841:4;7836:3;7832:14;7825:4;7818:5;7814:16;7792:63;:::i;:::-;7909:2;7888:15;-1:-1:-1;;7884:29:1;7875:39;;;;7916:4;7871:50;;7670:257;-1:-1:-1;;7670:257:1:o;7932:973::-;8017:12;;7982:3;;8072:1;8092:18;;;;8145;;;;8172:61;;8226:4;8218:6;8214:17;8204:27;;8172:61;8252:2;8300;8292:6;8289:14;8269:18;8266:38;8263:161;;;8346:10;8341:3;8337:20;8334:1;8327:31;8381:4;8378:1;8371:15;8409:4;8406:1;8399:15;8263:161;8440:18;8467:104;;;;8585:1;8580:319;;;;8433:466;;8467:104;-1:-1:-1;;8500:24:1;;8488:37;;8545:16;;;;-1:-1:-1;8467:104:1;;8580:319;23598:1;23591:14;;;23635:4;23622:18;;8674:1;8688:165;8702:6;8699:1;8696:13;8688:165;;;8780:14;;8767:11;;;8760:35;8823:16;;;;8717:10;;8688:165;;;8692:3;;8882:6;8877:3;8873:16;8866:23;;8433:466;;;;;;;7932:973;;;;:::o;8910:274::-;9039:3;9077:6;9071:13;9093:53;9139:6;9134:3;9127:4;9119:6;9115:17;9093:53;:::i;:::-;9162:16;;;;;8910:274;-1:-1:-1;;8910:274:1:o;9189:456::-;9410:3;9438:38;9472:3;9464:6;9438:38;:::i;:::-;9505:6;9499:13;9521:52;9566:6;9562:2;9555:4;9547:6;9543:17;9521:52;:::i;:::-;9589:50;9631:6;9627:2;9623:15;9615:6;9589:50;:::i;10355:488::-;-1:-1:-1;;;;;10624:15:1;;;10606:34;;10676:15;;10671:2;10656:18;;10649:43;10723:2;10708:18;;10701:34;;;10771:3;10766:2;10751:18;;10744:31;;;10549:4;;10792:45;;10817:19;;10809:6;10792:45;:::i;:::-;10784:53;10355:488;-1:-1:-1;;;;;;10355:488:1:o;11319:219::-;11468:2;11457:9;11450:21;11431:4;11488:44;11528:2;11517:9;11513:18;11505:6;11488:44;:::i;11543:407::-;11745:2;11727:21;;;11784:2;11764:18;;;11757:30;11823:34;11818:2;11803:18;;11796:62;-1:-1:-1;;;11889:2:1;11874:18;;11867:41;11940:3;11925:19;;11543:407::o;11955:414::-;12157:2;12139:21;;;12196:2;12176:18;;;12169:30;12235:34;12230:2;12215:18;;12208:62;-1:-1:-1;;;12301:2:1;12286:18;;12279:48;12359:3;12344:19;;11955:414::o;13486:402::-;13688:2;13670:21;;;13727:2;13707:18;;;13700:30;13766:34;13761:2;13746:18;;13739:62;-1:-1:-1;;;13832:2:1;13817:18;;13810:36;13878:3;13863:19;;13486:402::o;16257:407::-;16459:2;16441:21;;;16498:2;16478:18;;;16471:30;16537:34;16532:2;16517:18;;16510:62;-1:-1:-1;;;16603:2:1;16588:18;;16581:41;16654:3;16639:19;;16257:407::o;19807:356::-;20009:2;19991:21;;;20028:18;;;20021:30;20087:34;20082:2;20067:18;;20060:62;20154:2;20139:18;;19807:356::o;21396:413::-;21598:2;21580:21;;;21637:2;21617:18;;;21610:30;21676:34;21671:2;21656:18;;21649:62;-1:-1:-1;;;21742:2:1;21727:18;;21720:47;21799:3;21784:19;;21396:413::o;23651:128::-;23691:3;23722:1;23718:6;23715:1;23712:13;23709:39;;;23728:18;;:::i;:::-;-1:-1:-1;23764:9:1;;23651:128::o;23784:120::-;23824:1;23850;23840:35;;23855:18;;:::i;:::-;-1:-1:-1;23889:9:1;;23784:120::o;23909:168::-;23949:7;24015:1;24011;24007:6;24003:14;24000:1;23997:21;23992:1;23985:9;23978:17;23974:45;23971:71;;;24022:18;;:::i;:::-;-1:-1:-1;24062:9:1;;23909:168::o;24082:125::-;24122:4;24150:1;24147;24144:8;24141:34;;;24155:18;;:::i;:::-;-1:-1:-1;24192:9:1;;24082:125::o;24212:258::-;24284:1;24294:113;24308:6;24305:1;24302:13;24294:113;;;24384:11;;;24378:18;24365:11;;;24358:39;24330:2;24323:10;24294:113;;;24425:6;24422:1;24419:13;24416:48;;;-1:-1:-1;;24460:1:1;24442:16;;24435:27;24212:258::o;24475:380::-;24554:1;24550:12;;;;24597;;;24618:61;;24672:4;24664:6;24660:17;24650:27;;24618:61;24725:2;24717:6;24714:14;24694:18;24691:38;24688:161;;;24771:10;24766:3;24762:20;24759:1;24752:31;24806:4;24803:1;24796:15;24834:4;24831:1;24824:15;24688:161;;24475:380;;;:::o;24860:135::-;24899:3;-1:-1:-1;;24920:17:1;;24917:43;;;24940:18;;:::i;:::-;-1:-1:-1;24987:1:1;24976:13;;24860:135::o;25000:112::-;25032:1;25058;25048:35;;25063:18;;:::i;:::-;-1:-1:-1;25097:9:1;;25000:112::o;25117:127::-;25178:10;25173:3;25169:20;25166:1;25159:31;25209:4;25206:1;25199:15;25233:4;25230:1;25223:15;25249:127;25310:10;25305:3;25301:20;25298:1;25291:31;25341:4;25338:1;25331:15;25365:4;25362:1;25355:15;25381:127;25442:10;25437:3;25433:20;25430:1;25423:31;25473:4;25470:1;25463:15;25497:4;25494:1;25487:15;25513:127;25574:10;25569:3;25565:20;25562:1;25555:31;25605:4;25602:1;25595:15;25629:4;25626:1;25619:15;25645:131;-1:-1:-1;;;;;25720:31:1;;25710:42;;25700:70;;25766:1;25763;25756:12;25781:118;25867:5;25860:13;25853:21;25846:5;25843:32;25833:60;;25889:1;25886;25879:12;25904:131;-1:-1:-1;;;;;;25978:32:1;;25968:43;;25958:71;;26025:1;26022;26015:12

Swarm Source

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