ETH Price: $3,100.44 (+1.05%)
Gas: 12 Gwei

Token

Pixxo (Pixxo)
 

Overview

Max Total Supply

4,444 Pixxo

Holders

361

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
6 Pixxo
0xd045cc3e4428222eeb1602d63897a32c32440a6c
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:
Pixxo

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/finance/PaymentSplitter.sol


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

pragma solidity ^0.8.0;




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

    uint256 private _totalShares;
    uint256 private _totalReleased;

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

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

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

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

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

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

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

    /**
     * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

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

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

    /**
     * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][account];
    }

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

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

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

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

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

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

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

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

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

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

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, account, payment);
    }

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

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

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts 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: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;









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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

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

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

// File: pixxo.sol

//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;





contract Pixxo is ERC721A, PaymentSplitter, Ownable {
  using Strings for uint256;
  bool public saleIsActive = false;
  uint public pixxoPrice = 0.004 ether;
  uint public constant MAX_MINTS_PER_TX = 10;
  uint public constant MAX_MINT = 4439;
  uint public constant MAX_RESERVE_MINT = 5;
  string public ipfsBase = "ipfs://Qmc75xe6pzcvq1DDdAmdVtWup3R9Bx4F1N9wBR7Hgo7CXZ/";
  uint256[] private _ones = [1, 1, 1, 1, 1];

  constructor(address[] memory payees) ERC721A("Pixxo", "Pixxo") PaymentSplitter(payees, _ones) {
    require(payees.length == 5, "Need to split among 5.");
  }

  function claimReserve() public onlyOwner {
    require(totalSupply() == MAX_MINT, "Must wait until mint is over.");
    _safeMint(msg.sender, MAX_RESERVE_MINT);
  }

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

  function setBaseURI(string memory uri) public onlyOwner {
    ipfsBase = uri;
  }

  function flipSaleState() public onlyOwner {
    saleIsActive = !saleIsActive;
  }

  function setPrice(uint256 _price) public onlyOwner{
    pixxoPrice = _price;
  }

  function mint(uint n) public payable {
    require(saleIsActive, "Sale must be active.");
    require(n > 0, "Must be positive.");
    require(n <= MAX_MINTS_PER_TX, "Exceeds max per transaction.");
    require(totalSupply() + n <= (MAX_MINT), "Purchase exceeds max supply.");
    require((n * pixxoPrice) <= msg.value, "Invalid Ether Amount.");

    _safeMint(msg.sender, n);
  }

  function tokenURI(uint256 _tokenId) public view override returns (string memory) {
    require(_exists(_tokenId), "URI query for nonexistent token.");
    return string(abi.encodePacked(_baseURI(), _tokenId.toString(), ".json"));
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address[]","name":"payees","type":"address[]"}],"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_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_RESERVE_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ipfsBase","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"uint256","name":"n","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":"pixxoPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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"}]

600e805460ff60a01b19169055660e35fa931a0000600f5560e06040526036608081815290620030c460a0398051620000419160109160209091019062000549565b506040805160a0810182526001808252602082018190529181018290526060810182905260808101919091526200007d906011906005620005d8565b503480156200008b57600080fd5b50604051620030fa380380620030fa833981016040819052620000ae9162000665565b806011805480602002602001604051908101604052809291908181526020018280548015620000fd57602002820191906000526020600020905b815481526020019060010190808311620000e8575b5050604080518082018252600580825264506978786f60d81b6020808401828152855180870190965292855284015281519195509193506200014492506001919062000549565b5080516200015a90600290602084019062000549565b5050508051825114620001cf5760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620002225760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f207061796565730000000000006044820152606401620001c6565b60005b82518110156200028e576200027983828151811062000248576200024862000737565b602002602001015183838151811062000265576200026562000737565b60200260200101516200030560201b60201c565b80620002858162000763565b91505062000225565b505050620002ab620002a5620004f360201b60201c565b620004f7565b8051600514620002fe5760405162461bcd60e51b815260206004820152601660248201527f4e65656420746f2073706c697420616d6f6e6720352e000000000000000000006044820152606401620001c6565b50620007d9565b6001600160a01b038216620003725760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b6064820152608401620001c6565b60008111620003c45760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a207368617265732061726520300000006044820152606401620001c6565b6001600160a01b03821660009081526009602052604090205415620004405760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b6064820152608401620001c6565b600b8054600181019091557f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319166001600160a01b0384169081179091556000908152600960205260409020819055600754620004aa90829062000781565b600755604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b3390565b600e80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000557906200079c565b90600052602060002090601f0160209004810192826200057b5760008555620005c6565b82601f106200059657805160ff1916838001178555620005c6565b82800160010185558215620005c6579182015b82811115620005c6578251825591602001919060010190620005a9565b50620005d49291506200061b565b5090565b828054828255906000526020600020908101928215620005c6579160200282015b82811115620005c6578251829060ff16905591602001919060010190620005f9565b5b80821115620005d457600081556001016200061c565b634e487b7160e01b600052604160045260246000fd5b80516001600160a01b03811681146200066057600080fd5b919050565b600060208083850312156200067957600080fd5b82516001600160401b03808211156200069157600080fd5b818501915085601f830112620006a657600080fd5b815181811115620006bb57620006bb62000632565b8060051b604051601f19603f83011681018181108582111715620006e357620006e362000632565b6040529182528482019250838101850191888311156200070257600080fd5b938501935b828510156200072b576200071b8562000648565b8452938501939285019262000707565b98975050505050505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156200077a576200077a6200074d565b5060010190565b600082198211156200079757620007976200074d565b500190565b600181811c90821680620007b157607f821691505b60208210811415620007d357634e487b7160e01b600052602260045260246000fd5b50919050565b6128db80620007e96000396000f3fe6080604052600436106102345760003560e01c8063715018a61161012e578063b88d4fde116100ab578063e33b7de31161006f578063e33b7de3146106e9578063e985e9c5146106fe578063eb8d244414610747578063f0292a0314610768578063f2fde38b1461077e57600080fd5b8063b88d4fde14610628578063c6a91b4214610648578063c87b56dd1461065d578063ce7c2ac21461067d578063d79779b2146106b357600080fd5b806395d89b41116100f257806395d89b41146105955780639852595c146105aa578063a0712d68146105e0578063a22cb465146105f3578063a9bd94d41461061357600080fd5b8063715018a61461050d5780637e7d7c7e146105225780638b83209b146105375780638da5cb5b1461055757806391b7f5ed1461057557600080fd5b806334918dfd116101bc57806348b750441161018057806348b750441461046d5780634f6ccce71461048d57806355f804b3146104ad5780636352211e146104cd57806370a08231146104ed57600080fd5b806334918dfd146103c85780633a98ef39146103dd5780633fe5f054146103f2578063406072a91461040757806342842e0e1461044d57600080fd5b806318160ddd1161020357806318160ddd14610333578063191655871461035257806323b872dd146103725780632c358f2f146103925780632f745c59146103a857600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063095ea7b31461031157600080fd5b3661027d577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561028e57600080fd5b506102a261029d366004612289565b61079e565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc61080b565b6040516102ae91906122fe565b3480156102e557600080fd5b506102f96102f4366004612311565b61089d565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b5061033161032c36600461233f565b61092d565b005b34801561033f57600080fd5b506000545b6040519081526020016102ae565b34801561035e57600080fd5b5061033161036d36600461236b565b610a45565b34801561037e57600080fd5b5061033161038d366004612388565b610b73565b34801561039e57600080fd5b50610344600f5481565b3480156103b457600080fd5b506103446103c336600461233f565b610b7e565b3480156103d457600080fd5b50610331610cdb565b3480156103e957600080fd5b50600754610344565b3480156103fe57600080fd5b50610331610d26565b34801561041357600080fd5b506103446104223660046123c9565b6001600160a01b039182166000908152600d6020908152604080832093909416825291909152205490565b34801561045957600080fd5b50610331610468366004612388565b610db6565b34801561047957600080fd5b506103316104883660046123c9565b610dd1565b34801561049957600080fd5b506103446104a8366004612311565b610faa565b3480156104b957600080fd5b506103316104c836600461248e565b61100c565b3480156104d957600080fd5b506102f96104e8366004612311565b61104d565b3480156104f957600080fd5b5061034461050836600461236b565b61105f565b34801561051957600080fd5b506103316110f0565b34801561052e57600080fd5b506102cc611124565b34801561054357600080fd5b506102f9610552366004612311565b6111b2565b34801561056357600080fd5b50600e546001600160a01b03166102f9565b34801561058157600080fd5b50610331610590366004612311565b6111e2565b3480156105a157600080fd5b506102cc611211565b3480156105b657600080fd5b506103446105c536600461236b565b6001600160a01b03166000908152600a602052604090205490565b6103316105ee366004612311565b611220565b3480156105ff57600080fd5b5061033161060e3660046124e5565b6113cc565b34801561061f57600080fd5b50610344600581565b34801561063457600080fd5b50610331610643366004612513565b611491565b34801561065457600080fd5b50610344600a81565b34801561066957600080fd5b506102cc610678366004612311565b6114ca565b34801561068957600080fd5b5061034461069836600461236b565b6001600160a01b031660009081526009602052604090205490565b3480156106bf57600080fd5b506103446106ce36600461236b565b6001600160a01b03166000908152600c602052604090205490565b3480156106f557600080fd5b50600854610344565b34801561070a57600080fd5b506102a26107193660046123c9565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561075357600080fd5b50600e546102a290600160a01b900460ff1681565b34801561077457600080fd5b5061034461115781565b34801561078a57600080fd5b5061033161079936600461236b565b61155b565b60006001600160e01b031982166380ac58cd60e01b14806107cf57506001600160e01b03198216635b5e139f60e01b145b806107ea57506001600160e01b0319821663780e9d6360e01b145b8061080557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461081a90612593565b80601f016020809104026020016040519081016040528092919081815260200182805461084690612593565b80156108935780601f1061086857610100808354040283529160200191610893565b820191906000526020600020905b81548152906001019060200180831161087657829003601f168201915b5050505050905090565b60006108aa826000541190565b6109115760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006109388261104d565b9050806001600160a01b0316836001600160a01b031614156109a75760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610908565b336001600160a01b03821614806109c357506109c38133610719565b610a355760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610908565b610a408383836115f3565b505050565b6001600160a01b038116600090815260096020526040902054610a7a5760405162461bcd60e51b8152600401610908906125ce565b6000610a8560085490565b610a8f904761262a565b90506000610abc8383610ab7866001600160a01b03166000908152600a602052604090205490565b61164f565b905080610adb5760405162461bcd60e51b815260040161090890612642565b6001600160a01b0383166000908152600a602052604081208054839290610b0390849061262a565b925050819055508060086000828254610b1c919061262a565b90915550610b2c90508382611697565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610a408383836117b0565b6000610b898361105f565b8210610be25760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610908565b600080549080805b83811015610c7b576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c3d57805192505b876001600160a01b0316836001600160a01b03161415610c725786841415610c6b5750935061080592505050565b6001909301925b50600101610bea565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610908565b600e546001600160a01b03163314610d055760405162461bcd60e51b81526004016109089061268d565b600e805460ff60a01b198116600160a01b9182900460ff1615909102179055565b600e546001600160a01b03163314610d505760405162461bcd60e51b81526004016109089061268d565b611157610d5c60005490565b14610da95760405162461bcd60e51b815260206004820152601d60248201527f4d757374207761697420756e74696c206d696e74206973206f7665722e0000006044820152606401610908565b610db4336005611a95565b565b610a4083838360405180602001604052806000815250611491565b6001600160a01b038116600090815260096020526040902054610e065760405162461bcd60e51b8152600401610908906125ce565b6001600160a01b0382166000908152600c60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa158015610e63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8791906126c2565b610e91919061262a565b90506000610eca8383610ab787876001600160a01b039182166000908152600d6020908152604080832093909416825291909152205490565b905080610ee95760405162461bcd60e51b815260040161090890612642565b6001600160a01b038085166000908152600d6020908152604080832093871683529290529081208054839290610f2090849061262a565b90915550506001600160a01b0384166000908152600c602052604081208054839290610f4d90849061262a565b90915550610f5e9050848483611aaf565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b6000805482106110085760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610908565b5090565b600e546001600160a01b031633146110365760405162461bcd60e51b81526004016109089061268d565b80516110499060109060208401906121e3565b5050565b600061105882611b01565b5192915050565b60006001600160a01b0382166110cb5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610908565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b600e546001600160a01b0316331461111a5760405162461bcd60e51b81526004016109089061268d565b610db46000611bd8565b6010805461113190612593565b80601f016020809104026020016040519081016040528092919081815260200182805461115d90612593565b80156111aa5780601f1061117f576101008083540402835291602001916111aa565b820191906000526020600020905b81548152906001019060200180831161118d57829003601f168201915b505050505081565b6000600b82815481106111c7576111c76126db565b6000918252602090912001546001600160a01b031692915050565b600e546001600160a01b0316331461120c5760405162461bcd60e51b81526004016109089061268d565b600f55565b60606002805461081a90612593565b600e54600160a01b900460ff166112705760405162461bcd60e51b815260206004820152601460248201527329b0b6329036bab9ba1031329030b1ba34bb329760611b6044820152606401610908565b600081116112b45760405162461bcd60e51b815260206004820152601160248201527026bab9ba103132903837b9b4ba34bb329760791b6044820152606401610908565b600a8111156113055760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e000000006044820152606401610908565b6111578161131260005490565b61131c919061262a565b111561136a5760405162461bcd60e51b815260206004820152601c60248201527f50757263686173652065786365656473206d617820737570706c792e000000006044820152606401610908565b34600f548261137991906126f1565b11156113bf5760405162461bcd60e51b815260206004820152601560248201527424b73b30b634b21022ba3432b91020b6b7bab73a1760591b6044820152606401610908565b6113c93382611a95565b50565b6001600160a01b0382163314156114255760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610908565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61149c8484846117b0565b6114a884848484611c2a565b6114c45760405162461bcd60e51b815260040161090890612710565b50505050565b60606114d7826000541190565b6115235760405162461bcd60e51b815260206004820181905260248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e2e6044820152606401610908565b61152b611d29565b61153483611d38565b604051602001611545929190612763565b6040516020818303038152906040529050919050565b600e546001600160a01b031633146115855760405162461bcd60e51b81526004016109089061268d565b6001600160a01b0381166115ea5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610908565b6113c981611bd8565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6007546001600160a01b0384166000908152600960205260408120549091839161167990866126f1565b61168391906127b8565b61168d91906127cc565b90505b9392505050565b804710156116e75760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610908565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611734576040519150601f19603f3d011682016040523d82523d6000602084013e611739565b606091505b5050905080610a405760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610908565b60006117bb82611b01565b80519091506000906001600160a01b0316336001600160a01b031614806117f25750336117e78461089d565b6001600160a01b0316145b80611804575081516118049033610719565b90508061186e5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610908565b846001600160a01b031682600001516001600160a01b0316146118e25760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610908565b6001600160a01b0384166119465760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610908565b61195660008484600001516115f3565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611a4b576119fe816000541190565b15611a4b578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b611049828260405180602001604052806000815250611e36565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610a40908490611e43565b6040805180820190915260008082526020820152611b20826000541190565b611b7f5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610908565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611bce579392505050565b5060001901611b81565b600e80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611d1d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c6e9033908990889088906004016127e3565b6020604051808303816000875af1925050508015611ca9575060408051601f3d908101601f19168201909252611ca691810190612820565b60015b611d03573d808015611cd7576040519150601f19603f3d011682016040523d82523d6000602084013e611cdc565b606091505b508051611cfb5760405162461bcd60e51b815260040161090890612710565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d21565b5060015b949350505050565b60606010805461081a90612593565b606081611d5c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d865780611d708161283d565b9150611d7f9050600a836127b8565b9150611d60565b60008167ffffffffffffffff811115611da157611da1612402565b6040519080825280601f01601f191660200182016040528015611dcb576020820181803683370190505b5090505b8415611d2157611de06001836127cc565b9150611ded600a86612858565b611df890603061262a565b60f81b818381518110611e0d57611e0d6126db565b60200101906001600160f81b031916908160001a905350611e2f600a866127b8565b9450611dcf565b610a408383836001611f15565b6000611e98826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166120d89092919063ffffffff16565b805190915015610a405780806020019051810190611eb6919061286c565b610a405760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610908565b6000546001600160a01b038516611f785760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610908565b83611fd65760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610908565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156120cf5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156120c3576120a76000888488611c2a565b6120c35760405162461bcd60e51b815260040161090890612710565b60019182019101612054565b50600055611a8e565b606061168d848460008585843b6121315760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610908565b600080866001600160a01b0316858760405161214d9190612889565b60006040518083038185875af1925050503d806000811461218a576040519150601f19603f3d011682016040523d82523d6000602084013e61218f565b606091505b509150915061219f8282866121aa565b979650505050505050565b606083156121b9575081611690565b8251156121c95782518084602001fd5b8160405162461bcd60e51b815260040161090891906122fe565b8280546121ef90612593565b90600052602060002090601f0160209004810192826122115760008555612257565b82601f1061222a57805160ff1916838001178555612257565b82800160010185558215612257579182015b8281111561225757825182559160200191906001019061223c565b506110089291505b80821115611008576000815560010161225f565b6001600160e01b0319811681146113c957600080fd5b60006020828403121561229b57600080fd5b813561169081612273565b60005b838110156122c15781810151838201526020016122a9565b838111156114c45750506000910152565b600081518084526122ea8160208601602086016122a6565b601f01601f19169290920160200192915050565b60208152600061169060208301846122d2565b60006020828403121561232357600080fd5b5035919050565b6001600160a01b03811681146113c957600080fd5b6000806040838503121561235257600080fd5b823561235d8161232a565b946020939093013593505050565b60006020828403121561237d57600080fd5b81356116908161232a565b60008060006060848603121561239d57600080fd5b83356123a88161232a565b925060208401356123b88161232a565b929592945050506040919091013590565b600080604083850312156123dc57600080fd5b82356123e78161232a565b915060208301356123f78161232a565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561243357612433612402565b604051601f8501601f19908116603f0116810190828211818310171561245b5761245b612402565b8160405280935085815286868601111561247457600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156124a057600080fd5b813567ffffffffffffffff8111156124b757600080fd5b8201601f810184136124c857600080fd5b611d2184823560208401612418565b80151581146113c957600080fd5b600080604083850312156124f857600080fd5b82356125038161232a565b915060208301356123f7816124d7565b6000806000806080858703121561252957600080fd5b84356125348161232a565b935060208501356125448161232a565b925060408501359150606085013567ffffffffffffffff81111561256757600080fd5b8501601f8101871361257857600080fd5b61258787823560208401612418565b91505092959194509250565b600181811c908216806125a757607f821691505b602082108114156125c857634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561263d5761263d612614565b500190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000602082840312156126d457600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b600081600019048311821515161561270b5761270b612614565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600083516127758184602088016122a6565b8351908301906127898183602088016122a6565b64173539b7b760d91b9101908152600501949350505050565b634e487b7160e01b600052601260045260246000fd5b6000826127c7576127c76127a2565b500490565b6000828210156127de576127de612614565b500390565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612816908301846122d2565b9695505050505050565b60006020828403121561283257600080fd5b815161169081612273565b600060001982141561285157612851612614565b5060010190565b600082612867576128676127a2565b500690565b60006020828403121561287e57600080fd5b8151611690816124d7565b6000825161289b8184602087016122a6565b919091019291505056fea26469706673582212203a23ab26fdd52fb37aa12e62e6a994ffdc180a517171368c3b6a0d23772e624264736f6c634300080b0033697066733a2f2f516d633735786536707a63767131444464416d64567457757033523942783446314e397742523748676f3743585a2f000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000050000000000000000000000003d0b92abaae47efd45e88f9f392f33c9513543c2000000000000000000000000bc4a59fd2943c7f3c8bd445201427b23cf6218190000000000000000000000007fa30f28da472a1e40be577c300c93a2baf34b3200000000000000000000000002d8a0b7dd963d95fcf6e84d55095a3d17f42cc20000000000000000000000002ac6f6574846305c7f0b475a2d171dbbc6d016d2

Deployed Bytecode

0x6080604052600436106102345760003560e01c8063715018a61161012e578063b88d4fde116100ab578063e33b7de31161006f578063e33b7de3146106e9578063e985e9c5146106fe578063eb8d244414610747578063f0292a0314610768578063f2fde38b1461077e57600080fd5b8063b88d4fde14610628578063c6a91b4214610648578063c87b56dd1461065d578063ce7c2ac21461067d578063d79779b2146106b357600080fd5b806395d89b41116100f257806395d89b41146105955780639852595c146105aa578063a0712d68146105e0578063a22cb465146105f3578063a9bd94d41461061357600080fd5b8063715018a61461050d5780637e7d7c7e146105225780638b83209b146105375780638da5cb5b1461055757806391b7f5ed1461057557600080fd5b806334918dfd116101bc57806348b750441161018057806348b750441461046d5780634f6ccce71461048d57806355f804b3146104ad5780636352211e146104cd57806370a08231146104ed57600080fd5b806334918dfd146103c85780633a98ef39146103dd5780633fe5f054146103f2578063406072a91461040757806342842e0e1461044d57600080fd5b806318160ddd1161020357806318160ddd14610333578063191655871461035257806323b872dd146103725780632c358f2f146103925780632f745c59146103a857600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063095ea7b31461031157600080fd5b3661027d577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561028e57600080fd5b506102a261029d366004612289565b61079e565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc61080b565b6040516102ae91906122fe565b3480156102e557600080fd5b506102f96102f4366004612311565b61089d565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b5061033161032c36600461233f565b61092d565b005b34801561033f57600080fd5b506000545b6040519081526020016102ae565b34801561035e57600080fd5b5061033161036d36600461236b565b610a45565b34801561037e57600080fd5b5061033161038d366004612388565b610b73565b34801561039e57600080fd5b50610344600f5481565b3480156103b457600080fd5b506103446103c336600461233f565b610b7e565b3480156103d457600080fd5b50610331610cdb565b3480156103e957600080fd5b50600754610344565b3480156103fe57600080fd5b50610331610d26565b34801561041357600080fd5b506103446104223660046123c9565b6001600160a01b039182166000908152600d6020908152604080832093909416825291909152205490565b34801561045957600080fd5b50610331610468366004612388565b610db6565b34801561047957600080fd5b506103316104883660046123c9565b610dd1565b34801561049957600080fd5b506103446104a8366004612311565b610faa565b3480156104b957600080fd5b506103316104c836600461248e565b61100c565b3480156104d957600080fd5b506102f96104e8366004612311565b61104d565b3480156104f957600080fd5b5061034461050836600461236b565b61105f565b34801561051957600080fd5b506103316110f0565b34801561052e57600080fd5b506102cc611124565b34801561054357600080fd5b506102f9610552366004612311565b6111b2565b34801561056357600080fd5b50600e546001600160a01b03166102f9565b34801561058157600080fd5b50610331610590366004612311565b6111e2565b3480156105a157600080fd5b506102cc611211565b3480156105b657600080fd5b506103446105c536600461236b565b6001600160a01b03166000908152600a602052604090205490565b6103316105ee366004612311565b611220565b3480156105ff57600080fd5b5061033161060e3660046124e5565b6113cc565b34801561061f57600080fd5b50610344600581565b34801561063457600080fd5b50610331610643366004612513565b611491565b34801561065457600080fd5b50610344600a81565b34801561066957600080fd5b506102cc610678366004612311565b6114ca565b34801561068957600080fd5b5061034461069836600461236b565b6001600160a01b031660009081526009602052604090205490565b3480156106bf57600080fd5b506103446106ce36600461236b565b6001600160a01b03166000908152600c602052604090205490565b3480156106f557600080fd5b50600854610344565b34801561070a57600080fd5b506102a26107193660046123c9565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561075357600080fd5b50600e546102a290600160a01b900460ff1681565b34801561077457600080fd5b5061034461115781565b34801561078a57600080fd5b5061033161079936600461236b565b61155b565b60006001600160e01b031982166380ac58cd60e01b14806107cf57506001600160e01b03198216635b5e139f60e01b145b806107ea57506001600160e01b0319821663780e9d6360e01b145b8061080557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461081a90612593565b80601f016020809104026020016040519081016040528092919081815260200182805461084690612593565b80156108935780601f1061086857610100808354040283529160200191610893565b820191906000526020600020905b81548152906001019060200180831161087657829003601f168201915b5050505050905090565b60006108aa826000541190565b6109115760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006109388261104d565b9050806001600160a01b0316836001600160a01b031614156109a75760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610908565b336001600160a01b03821614806109c357506109c38133610719565b610a355760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610908565b610a408383836115f3565b505050565b6001600160a01b038116600090815260096020526040902054610a7a5760405162461bcd60e51b8152600401610908906125ce565b6000610a8560085490565b610a8f904761262a565b90506000610abc8383610ab7866001600160a01b03166000908152600a602052604090205490565b61164f565b905080610adb5760405162461bcd60e51b815260040161090890612642565b6001600160a01b0383166000908152600a602052604081208054839290610b0390849061262a565b925050819055508060086000828254610b1c919061262a565b90915550610b2c90508382611697565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610a408383836117b0565b6000610b898361105f565b8210610be25760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610908565b600080549080805b83811015610c7b576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c3d57805192505b876001600160a01b0316836001600160a01b03161415610c725786841415610c6b5750935061080592505050565b6001909301925b50600101610bea565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610908565b600e546001600160a01b03163314610d055760405162461bcd60e51b81526004016109089061268d565b600e805460ff60a01b198116600160a01b9182900460ff1615909102179055565b600e546001600160a01b03163314610d505760405162461bcd60e51b81526004016109089061268d565b611157610d5c60005490565b14610da95760405162461bcd60e51b815260206004820152601d60248201527f4d757374207761697420756e74696c206d696e74206973206f7665722e0000006044820152606401610908565b610db4336005611a95565b565b610a4083838360405180602001604052806000815250611491565b6001600160a01b038116600090815260096020526040902054610e065760405162461bcd60e51b8152600401610908906125ce565b6001600160a01b0382166000908152600c60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa158015610e63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8791906126c2565b610e91919061262a565b90506000610eca8383610ab787876001600160a01b039182166000908152600d6020908152604080832093909416825291909152205490565b905080610ee95760405162461bcd60e51b815260040161090890612642565b6001600160a01b038085166000908152600d6020908152604080832093871683529290529081208054839290610f2090849061262a565b90915550506001600160a01b0384166000908152600c602052604081208054839290610f4d90849061262a565b90915550610f5e9050848483611aaf565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b6000805482106110085760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610908565b5090565b600e546001600160a01b031633146110365760405162461bcd60e51b81526004016109089061268d565b80516110499060109060208401906121e3565b5050565b600061105882611b01565b5192915050565b60006001600160a01b0382166110cb5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610908565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b600e546001600160a01b0316331461111a5760405162461bcd60e51b81526004016109089061268d565b610db46000611bd8565b6010805461113190612593565b80601f016020809104026020016040519081016040528092919081815260200182805461115d90612593565b80156111aa5780601f1061117f576101008083540402835291602001916111aa565b820191906000526020600020905b81548152906001019060200180831161118d57829003601f168201915b505050505081565b6000600b82815481106111c7576111c76126db565b6000918252602090912001546001600160a01b031692915050565b600e546001600160a01b0316331461120c5760405162461bcd60e51b81526004016109089061268d565b600f55565b60606002805461081a90612593565b600e54600160a01b900460ff166112705760405162461bcd60e51b815260206004820152601460248201527329b0b6329036bab9ba1031329030b1ba34bb329760611b6044820152606401610908565b600081116112b45760405162461bcd60e51b815260206004820152601160248201527026bab9ba103132903837b9b4ba34bb329760791b6044820152606401610908565b600a8111156113055760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e000000006044820152606401610908565b6111578161131260005490565b61131c919061262a565b111561136a5760405162461bcd60e51b815260206004820152601c60248201527f50757263686173652065786365656473206d617820737570706c792e000000006044820152606401610908565b34600f548261137991906126f1565b11156113bf5760405162461bcd60e51b815260206004820152601560248201527424b73b30b634b21022ba3432b91020b6b7bab73a1760591b6044820152606401610908565b6113c93382611a95565b50565b6001600160a01b0382163314156114255760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610908565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61149c8484846117b0565b6114a884848484611c2a565b6114c45760405162461bcd60e51b815260040161090890612710565b50505050565b60606114d7826000541190565b6115235760405162461bcd60e51b815260206004820181905260248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e2e6044820152606401610908565b61152b611d29565b61153483611d38565b604051602001611545929190612763565b6040516020818303038152906040529050919050565b600e546001600160a01b031633146115855760405162461bcd60e51b81526004016109089061268d565b6001600160a01b0381166115ea5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610908565b6113c981611bd8565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6007546001600160a01b0384166000908152600960205260408120549091839161167990866126f1565b61168391906127b8565b61168d91906127cc565b90505b9392505050565b804710156116e75760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610908565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611734576040519150601f19603f3d011682016040523d82523d6000602084013e611739565b606091505b5050905080610a405760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610908565b60006117bb82611b01565b80519091506000906001600160a01b0316336001600160a01b031614806117f25750336117e78461089d565b6001600160a01b0316145b80611804575081516118049033610719565b90508061186e5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610908565b846001600160a01b031682600001516001600160a01b0316146118e25760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610908565b6001600160a01b0384166119465760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610908565b61195660008484600001516115f3565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611a4b576119fe816000541190565b15611a4b578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b611049828260405180602001604052806000815250611e36565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610a40908490611e43565b6040805180820190915260008082526020820152611b20826000541190565b611b7f5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610908565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611bce579392505050565b5060001901611b81565b600e80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611d1d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c6e9033908990889088906004016127e3565b6020604051808303816000875af1925050508015611ca9575060408051601f3d908101601f19168201909252611ca691810190612820565b60015b611d03573d808015611cd7576040519150601f19603f3d011682016040523d82523d6000602084013e611cdc565b606091505b508051611cfb5760405162461bcd60e51b815260040161090890612710565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d21565b5060015b949350505050565b60606010805461081a90612593565b606081611d5c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d865780611d708161283d565b9150611d7f9050600a836127b8565b9150611d60565b60008167ffffffffffffffff811115611da157611da1612402565b6040519080825280601f01601f191660200182016040528015611dcb576020820181803683370190505b5090505b8415611d2157611de06001836127cc565b9150611ded600a86612858565b611df890603061262a565b60f81b818381518110611e0d57611e0d6126db565b60200101906001600160f81b031916908160001a905350611e2f600a866127b8565b9450611dcf565b610a408383836001611f15565b6000611e98826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166120d89092919063ffffffff16565b805190915015610a405780806020019051810190611eb6919061286c565b610a405760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610908565b6000546001600160a01b038516611f785760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610908565b83611fd65760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610908565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156120cf5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156120c3576120a76000888488611c2a565b6120c35760405162461bcd60e51b815260040161090890612710565b60019182019101612054565b50600055611a8e565b606061168d848460008585843b6121315760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610908565b600080866001600160a01b0316858760405161214d9190612889565b60006040518083038185875af1925050503d806000811461218a576040519150601f19603f3d011682016040523d82523d6000602084013e61218f565b606091505b509150915061219f8282866121aa565b979650505050505050565b606083156121b9575081611690565b8251156121c95782518084602001fd5b8160405162461bcd60e51b815260040161090891906122fe565b8280546121ef90612593565b90600052602060002090601f0160209004810192826122115760008555612257565b82601f1061222a57805160ff1916838001178555612257565b82800160010185558215612257579182015b8281111561225757825182559160200191906001019061223c565b506110089291505b80821115611008576000815560010161225f565b6001600160e01b0319811681146113c957600080fd5b60006020828403121561229b57600080fd5b813561169081612273565b60005b838110156122c15781810151838201526020016122a9565b838111156114c45750506000910152565b600081518084526122ea8160208601602086016122a6565b601f01601f19169290920160200192915050565b60208152600061169060208301846122d2565b60006020828403121561232357600080fd5b5035919050565b6001600160a01b03811681146113c957600080fd5b6000806040838503121561235257600080fd5b823561235d8161232a565b946020939093013593505050565b60006020828403121561237d57600080fd5b81356116908161232a565b60008060006060848603121561239d57600080fd5b83356123a88161232a565b925060208401356123b88161232a565b929592945050506040919091013590565b600080604083850312156123dc57600080fd5b82356123e78161232a565b915060208301356123f78161232a565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561243357612433612402565b604051601f8501601f19908116603f0116810190828211818310171561245b5761245b612402565b8160405280935085815286868601111561247457600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156124a057600080fd5b813567ffffffffffffffff8111156124b757600080fd5b8201601f810184136124c857600080fd5b611d2184823560208401612418565b80151581146113c957600080fd5b600080604083850312156124f857600080fd5b82356125038161232a565b915060208301356123f7816124d7565b6000806000806080858703121561252957600080fd5b84356125348161232a565b935060208501356125448161232a565b925060408501359150606085013567ffffffffffffffff81111561256757600080fd5b8501601f8101871361257857600080fd5b61258787823560208401612418565b91505092959194509250565b600181811c908216806125a757607f821691505b602082108114156125c857634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561263d5761263d612614565b500190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000602082840312156126d457600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b600081600019048311821515161561270b5761270b612614565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600083516127758184602088016122a6565b8351908301906127898183602088016122a6565b64173539b7b760d91b9101908152600501949350505050565b634e487b7160e01b600052601260045260246000fd5b6000826127c7576127c76127a2565b500490565b6000828210156127de576127de612614565b500390565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612816908301846122d2565b9695505050505050565b60006020828403121561283257600080fd5b815161169081612273565b600060001982141561285157612851612614565b5060010190565b600082612867576128676127a2565b500690565b60006020828403121561287e57600080fd5b8151611690816124d7565b6000825161289b8184602087016122a6565b919091019291505056fea26469706673582212203a23ab26fdd52fb37aa12e62e6a994ffdc180a517171368c3b6a0d23772e624264736f6c634300080b0033

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

000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000050000000000000000000000003d0b92abaae47efd45e88f9f392f33c9513543c2000000000000000000000000bc4a59fd2943c7f3c8bd445201427b23cf6218190000000000000000000000007fa30f28da472a1e40be577c300c93a2baf34b3200000000000000000000000002d8a0b7dd963d95fcf6e84d55095a3d17f42cc20000000000000000000000002ac6f6574846305c7f0b475a2d171dbbc6d016d2

-----Decoded View---------------
Arg [0] : payees (address[]): 0x3d0b92ABAAE47Efd45E88f9F392F33c9513543c2,0xBc4a59fD2943C7F3c8Bd445201427B23CF621819,0x7FA30F28Da472A1e40BE577C300c93a2BaF34b32,0x02D8A0B7dd963D95fCf6E84d55095a3D17F42cc2,0x2ac6f6574846305c7f0B475A2D171Dbbc6d016D2

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [2] : 0000000000000000000000003d0b92abaae47efd45e88f9f392f33c9513543c2
Arg [3] : 000000000000000000000000bc4a59fd2943c7f3c8bd445201427b23cf621819
Arg [4] : 0000000000000000000000007fa30f28da472a1e40be577c300c93a2baf34b32
Arg [5] : 00000000000000000000000002d8a0b7dd963d95fcf6e84d55095a3d17f42cc2
Arg [6] : 0000000000000000000000002ac6f6574846305c7f0b475a2d171dbbc6d016d2


Deployed Bytecode Sourcemap

54754:1780:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23831:40;5779:10;23831:40;;;-1:-1:-1;;;;;206:32:1;;;188:51;;23861:9:0;270:2:1;255:18;;248:34;161:18;23831:40:0;;;;;;;54754:1780;;;;;41519:372;;;;;;;;;;-1:-1:-1;41519:372:0;;;;;:::i;:::-;;:::i;:::-;;;844:14:1;;837:22;819:41;;807:2;792:18;41519:372:0;;;;;;;;43405:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;44967:214::-;;;;;;;;;;-1:-1:-1;44967:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1971:32:1;;;1953:51;;1941:2;1926:18;44967:214:0;1807:203:1;44488:413:0;;;;;;;;;;-1:-1:-1;44488:413:0;;;;;:::i;:::-;;:::i;:::-;;39776:100;;;;;;;;;;-1:-1:-1;39829:7:0;39856:12;39776:100;;;2617:25:1;;;2605:2;2590:18;39776:100:0;2471:177:1;25617:566:0;;;;;;;;;;-1:-1:-1;25617:566:0;;;;;:::i;:::-;;:::i;45843:170::-;;;;;;;;;;-1:-1:-1;45843:170:0;;;;;:::i;:::-;;:::i;54878:36::-;;;;;;;;;;;;;;;;40440:1007;;;;;;;;;;-1:-1:-1;40440:1007:0;;;;;:::i;:::-;;:::i;55724:83::-;;;;;;;;;;;;;:::i;23962:91::-;;;;;;;;;;-1:-1:-1;24033:12:0;;23962:91;;55353:167;;;;;;;;;;;;;:::i;25091:135::-;;;;;;;;;;-1:-1:-1;25091:135:0;;;;;:::i;:::-;-1:-1:-1;;;;;25188:21:0;;;25161:7;25188:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;25091:135;46084:185;;;;;;;;;;-1:-1:-1;46084:185:0;;;;;:::i;:::-;;:::i;26451:641::-;;;;;;;;;;-1:-1:-1;26451:641:0;;;;;:::i;:::-;;:::i;39953:187::-;;;;;;;;;;-1:-1:-1;39953:187:0;;;;;:::i;:::-;;:::i;55635:83::-;;;;;;;;;;-1:-1:-1;55635:83:0;;;;;:::i;:::-;;:::i;43214:124::-;;;;;;;;;;-1:-1:-1;43214:124:0;;;;;:::i;:::-;;:::i;41955:221::-;;;;;;;;;;-1:-1:-1;41955:221:0;;;;;:::i;:::-;;:::i;7626:103::-;;;;;;;;;;;;;:::i;55053:81::-;;;;;;;;;;;;;:::i;25317:100::-;;;;;;;;;;-1:-1:-1;25317:100:0;;;;;:::i;:::-;;:::i;6975:87::-;;;;;;;;;;-1:-1:-1;7048:6:0;;-1:-1:-1;;;;;7048:6:0;6975:87;;55813:82;;;;;;;;;;-1:-1:-1;55813:82:0;;;;;:::i;:::-;;:::i;43574:104::-;;;;;;;;;;;;;:::i;24813:109::-;;;;;;;;;;-1:-1:-1;24813:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;24896:18:0;24869:7;24896:18;;;:9;:18;;;;;;;24813:109;55901:388;;;;;;:::i;:::-;;:::i;45253:288::-;;;;;;;;;;-1:-1:-1;45253:288:0;;;;;:::i;:::-;;:::i;55007:41::-;;;;;;;;;;;;55047:1;55007:41;;46340:355;;;;;;;;;;-1:-1:-1;46340:355:0;;;;;:::i;:::-;;:::i;54919:42::-;;;;;;;;;;;;54959:2;54919:42;;56295:236;;;;;;;;;;-1:-1:-1;56295:236:0;;;;;:::i;:::-;;:::i;24609:105::-;;;;;;;;;;-1:-1:-1;24609:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;24690:16:0;24663:7;24690:16;;;:7;:16;;;;;;;24609:105;24399:119;;;;;;;;;;-1:-1:-1;24399:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;24484:26:0;24457:7;24484:26;;;:19;:26;;;;;;;24399:119;24147:95;;;;;;;;;;-1:-1:-1;24220:14:0;;24147:95;;45612:164;;;;;;;;;;-1:-1:-1;45612:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;45733:25:0;;;45709:4;45733:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;45612:164;54841:32;;;;;;;;;;-1:-1:-1;54841:32:0;;;;-1:-1:-1;;;54841:32:0;;;;;;54966:36;;;;;;;;;;;;54998:4;54966:36;;7884:201;;;;;;;;;;-1:-1:-1;7884:201:0;;;;;:::i;:::-;;:::i;41519:372::-;41621:4;-1:-1:-1;;;;;;41658:40:0;;-1:-1:-1;;;41658:40:0;;:105;;-1:-1:-1;;;;;;;41715:48:0;;-1:-1:-1;;;41715:48:0;41658:105;:172;;;-1:-1:-1;;;;;;;41780:50:0;;-1:-1:-1;;;41780:50:0;41658:172;:225;;;-1:-1:-1;;;;;;;;;;31112:40:0;;;41847:36;41638:245;41519:372;-1:-1:-1;;41519:372:0:o;43405:100::-;43459:13;43492:5;43485:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43405:100;:::o;44967:214::-;45035:7;45063:16;45071:7;47007:4;47041:12;-1:-1:-1;47031:22:0;46950:111;45063:16;45055:74;;;;-1:-1:-1;;;45055:74:0;;7812:2:1;45055:74:0;;;7794:21:1;7851:2;7831:18;;;7824:30;7890:34;7870:18;;;7863:62;-1:-1:-1;;;7941:18:1;;;7934:43;7994:19;;45055:74:0;;;;;;;;;-1:-1:-1;45149:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;45149:24:0;;44967:214::o;44488:413::-;44561:13;44577:24;44593:7;44577:15;:24::i;:::-;44561:40;;44626:5;-1:-1:-1;;;;;44620:11:0;:2;-1:-1:-1;;;;;44620:11:0;;;44612:58;;;;-1:-1:-1;;;44612:58:0;;8226:2:1;44612:58:0;;;8208:21:1;8265:2;8245:18;;;8238:30;8304:34;8284:18;;;8277:62;-1:-1:-1;;;8355:18:1;;;8348:32;8397:19;;44612:58:0;8024:398:1;44612:58:0;5779:10;-1:-1:-1;;;;;44705:21:0;;;;:62;;-1:-1:-1;44730:37:0;44747:5;5779:10;45612:164;:::i;44730:37::-;44683:169;;;;-1:-1:-1;;;44683:169:0;;8629:2:1;44683:169:0;;;8611:21:1;8668:2;8648:18;;;8641:30;8707:34;8687:18;;;8680:62;8778:27;8758:18;;;8751:55;8823:19;;44683:169:0;8427:421:1;44683:169:0;44865:28;44874:2;44878:7;44887:5;44865:8;:28::i;:::-;44550:351;44488:413;;:::o;25617:566::-;-1:-1:-1;;;;;25693:16:0;;25712:1;25693:16;;;:7;:16;;;;;;25685:71;;;;-1:-1:-1;;;25685:71:0;;;;;;;:::i;:::-;25769:21;25817:15;24220:14;;;24147:95;25817:15;25793:39;;:21;:39;:::i;:::-;25769:63;;25843:15;25861:58;25877:7;25886:13;25901:17;25910:7;-1:-1:-1;;;;;24896:18:0;24869:7;24896:18;;;:9;:18;;;;;;;24813:109;25901:17;25861:15;:58::i;:::-;25843:76;-1:-1:-1;25940:12:0;25932:68;;;;-1:-1:-1;;;25932:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26013:18:0;;;;;;:9;:18;;;;;:29;;26035:7;;26013:18;:29;;26035:7;;26013:29;:::i;:::-;;;;;;;;26071:7;26053:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;26091:35:0;;-1:-1:-1;26109:7:0;26118;26091:17;:35::i;:::-;26142:33;;;-1:-1:-1;;;;;206:32:1;;188:51;;270:2;255:18;;248:34;;;26142:33:0;;161:18:1;26142:33:0;;;;;;;25674:509;;25617:566;:::o;45843:170::-;45977:28;45987:4;45993:2;45997:7;45977:9;:28::i;40440:1007::-;40529:7;40565:16;40575:5;40565:9;:16::i;:::-;40557:5;:24;40549:71;;;;-1:-1:-1;;;40549:71:0;;10426:2:1;40549:71:0;;;10408:21:1;10465:2;10445:18;;;10438:30;10504:34;10484:18;;;10477:62;-1:-1:-1;;;10555:18:1;;;10548:32;10597:19;;40549:71:0;10224:398:1;40549:71:0;40631:22;39856:12;;;40631:22;;40894:466;40914:14;40910:1;:18;40894:466;;;40954:31;40988:14;;;:11;:14;;;;;;;;;40954:48;;;;;;;;;-1:-1:-1;;;;;40954:48:0;;;;;-1:-1:-1;;;40954:48:0;;;;;;;;;;;;41025:28;41021:111;;41098:14;;;-1:-1:-1;41021:111:0;41175:5;-1:-1:-1;;;;;41154:26:0;:17;-1:-1:-1;;;;;41154:26:0;;41150:195;;;41224:5;41209:11;:20;41205:85;;;-1:-1:-1;41265:1:0;-1:-1:-1;41258:8:0;;-1:-1:-1;;;41258:8:0;41205:85;41312:13;;;;;41150:195;-1:-1:-1;40930:3:0;;40894:466;;;-1:-1:-1;41383:56:0;;-1:-1:-1;;;41383:56:0;;10829:2:1;41383:56:0;;;10811:21:1;10868:2;10848:18;;;10841:30;10907:34;10887:18;;;10880:62;-1:-1:-1;;;10958:18:1;;;10951:44;11012:19;;41383:56:0;10627:410:1;55724:83:0;7048:6;;-1:-1:-1;;;;;7048:6:0;5779:10;7195:23;7187:68;;;;-1:-1:-1;;;7187:68:0;;;;;;;:::i;:::-;55789:12:::1;::::0;;-1:-1:-1;;;;55773:28:0;::::1;-1:-1:-1::0;;;55789:12:0;;;::::1;;;55788:13;55773:28:::0;;::::1;;::::0;;55724:83::o;55353:167::-;7048:6;;-1:-1:-1;;;;;7048:6:0;5779:10;7195:23;7187:68;;;;-1:-1:-1;;;7187:68:0;;;;;;;:::i;:::-;54998:4:::1;55409:13;39829:7:::0;39856:12;;39776:100;55409:13:::1;:25;55401:67;;;::::0;-1:-1:-1;;;55401:67:0;;11605:2:1;55401:67:0::1;::::0;::::1;11587:21:1::0;11644:2;11624:18;;;11617:30;11683:31;11663:18;;;11656:59;11732:18;;55401:67:0::1;11403:353:1::0;55401:67:0::1;55475:39;55485:10;55047:1;55475:9;:39::i;:::-;55353:167::o:0;46084:185::-;46222:39;46239:4;46245:2;46249:7;46222:39;;;;;;;;;;;;:16;:39::i;26451:641::-;-1:-1:-1;;;;;26533:16:0;;26552:1;26533:16;;;:7;:16;;;;;;26525:71;;;;-1:-1:-1;;;26525:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24484:26:0;;26609:21;24484:26;;;:19;:26;;;;;;26633:30;;-1:-1:-1;;;26633:30:0;;26657:4;26633:30;;;1953:51:1;-1:-1:-1;;;;;26633:15:0;;;;;1926:18:1;;26633:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;26609:77;;26697:15;26715:65;26731:7;26740:13;26755:24;26764:5;26771:7;-1:-1:-1;;;;;25188:21:0;;;25161:7;25188:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;25091:135;26715:65;26697:83;-1:-1:-1;26801:12:0;26793:68;;;;-1:-1:-1;;;26793:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26874:21:0;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;;;:41;;26908:7;;26874:21;:41;;26908:7;;26874:41;:::i;:::-;;;;-1:-1:-1;;;;;;;26926:26:0;;;;;;:19;:26;;;;;:37;;26956:7;;26926:26;:37;;26956:7;;26926:37;:::i;:::-;;;;-1:-1:-1;26976:47:0;;-1:-1:-1;26999:5:0;27006:7;27015;26976:22;:47::i;:::-;27039:45;;;-1:-1:-1;;;;;206:32:1;;;188:51;;270:2;255:18;;248:34;;;27039:45:0;;;;;161:18:1;27039:45:0;;;;;;;26514:578;;26451:641;;:::o;39953:187::-;40020:7;39856:12;;40048:5;:21;40040:69;;;;-1:-1:-1;;;40040:69:0;;12152:2:1;40040:69:0;;;12134:21:1;12191:2;12171:18;;;12164:30;12230:34;12210:18;;;12203:62;-1:-1:-1;;;12281:18:1;;;12274:33;12324:19;;40040:69:0;11950:399:1;40040:69:0;-1:-1:-1;40127:5:0;39953:187::o;55635:83::-;7048:6;;-1:-1:-1;;;;;7048:6:0;5779:10;7195:23;7187:68;;;;-1:-1:-1;;;7187:68:0;;;;;;;:::i;:::-;55698:14;;::::1;::::0;:8:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;:::-;;55635:83:::0;:::o;43214:124::-;43278:7;43305:20;43317:7;43305:11;:20::i;:::-;:25;;43214:124;-1:-1:-1;;43214:124:0:o;41955:221::-;42019:7;-1:-1:-1;;;;;42047:19:0;;42039:75;;;;-1:-1:-1;;;42039:75:0;;12556:2:1;42039:75:0;;;12538:21:1;12595:2;12575:18;;;12568:30;12634:34;12614:18;;;12607:62;-1:-1:-1;;;12685:18:1;;;12678:41;12736:19;;42039:75:0;12354:407:1;42039:75:0;-1:-1:-1;;;;;;42140:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;42140:27:0;;41955:221::o;7626:103::-;7048:6;;-1:-1:-1;;;;;7048:6:0;5779:10;7195:23;7187:68;;;;-1:-1:-1;;;7187:68:0;;;;;;;:::i;:::-;7691:30:::1;7718:1;7691:18;:30::i;55053:81::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25317:100::-;25368:7;25395;25403:5;25395:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;25395:14:0;;25317:100;-1:-1:-1;;25317:100:0:o;55813:82::-;7048:6;;-1:-1:-1;;;;;7048:6:0;5779:10;7195:23;7187:68;;;;-1:-1:-1;;;7187:68:0;;;;;;;:::i;:::-;55870:10:::1;:19:::0;55813:82::o;43574:104::-;43630:13;43663:7;43656:14;;;;;:::i;55901:388::-;55953:12;;-1:-1:-1;;;55953:12:0;;;;55945:45;;;;-1:-1:-1;;;55945:45:0;;13100:2:1;55945:45:0;;;13082:21:1;13139:2;13119:18;;;13112:30;-1:-1:-1;;;13158:18:1;;;13151:50;13218:18;;55945:45:0;12898:344:1;55945:45:0;56009:1;56005;:5;55997:35;;;;-1:-1:-1;;;55997:35:0;;13449:2:1;55997:35:0;;;13431:21:1;13488:2;13468:18;;;13461:30;-1:-1:-1;;;13507:18:1;;;13500:47;13564:18;;55997:35:0;13247:341:1;55997:35:0;54959:2;56047:1;:21;;56039:62;;;;-1:-1:-1;;;56039:62:0;;13795:2:1;56039:62:0;;;13777:21:1;13834:2;13814:18;;;13807:30;13873;13853:18;;;13846:58;13921:18;;56039:62:0;13593:352:1;56039:62:0;54998:4;56132:1;56116:13;39829:7;39856:12;;39776:100;56116:13;:17;;;;:::i;:::-;:31;;56108:72;;;;-1:-1:-1;;;56108:72:0;;14152:2:1;56108:72:0;;;14134:21:1;14191:2;14171:18;;;14164:30;14230;14210:18;;;14203:58;14278:18;;56108:72:0;13950:352:1;56108:72:0;56215:9;56200:10;;56196:1;:14;;;;:::i;:::-;56195:29;;56187:63;;;;-1:-1:-1;;;56187:63:0;;14682:2:1;56187:63:0;;;14664:21:1;14721:2;14701:18;;;14694:30;-1:-1:-1;;;14740:18:1;;;14733:51;14801:18;;56187:63:0;14480:345:1;56187:63:0;56259:24;56269:10;56281:1;56259:9;:24::i;:::-;55901:388;:::o;45253:288::-;-1:-1:-1;;;;;45348:24:0;;5779:10;45348:24;;45340:63;;;;-1:-1:-1;;;45340:63:0;;15032:2:1;45340:63:0;;;15014:21:1;15071:2;15051:18;;;15044:30;15110:28;15090:18;;;15083:56;15156:18;;45340:63:0;14830:350:1;45340:63:0;5779:10;45416:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;45416:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;45416:53:0;;;;;;;;;;45485:48;;819:41:1;;;45416:42:0;;5779:10;45485:48;;792:18:1;45485:48:0;;;;;;;45253:288;;:::o;46340:355::-;46499:28;46509:4;46515:2;46519:7;46499:9;:28::i;:::-;46560:48;46583:4;46589:2;46593:7;46602:5;46560:22;:48::i;:::-;46538:149;;;;-1:-1:-1;;;46538:149:0;;;;;;;:::i;:::-;46340:355;;;;:::o;56295:236::-;56361:13;56391:17;56399:8;47007:4;47041:12;-1:-1:-1;47031:22:0;46950:111;56391:17;56383:62;;;;-1:-1:-1;;;56383:62:0;;15807:2:1;56383:62:0;;;15789:21:1;;;15826:18;;;15819:30;15885:34;15865:18;;;15858:62;15937:18;;56383:62:0;15605:356:1;56383:62:0;56483:10;:8;:10::i;:::-;56495:19;:8;:17;:19::i;:::-;56466:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56452:73;;56295:236;;;:::o;7884:201::-;7048:6;;-1:-1:-1;;;;;7048:6:0;5779:10;7195:23;7187:68;;;;-1:-1:-1;;;7187:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7973:22:0;::::1;7965:73;;;::::0;-1:-1:-1;;;7965:73:0;;16810:2:1;7965:73:0::1;::::0;::::1;16792:21:1::0;16849:2;16829:18;;;16822:30;16888:34;16868:18;;;16861:62;-1:-1:-1;;;16939:18:1;;;16932:36;16985:19;;7965:73:0::1;16608:402:1::0;7965:73:0::1;8049:28;8068:8;8049:18;:28::i;51870:196::-:0;51985:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;51985:29:0;-1:-1:-1;;;;;51985:29:0;;;;;;;;;52030:28;;51985:24;;52030:28;;;;;;;51870:196;;;:::o;27270:248::-;27480:12;;-1:-1:-1;;;;;27460:16:0;;27416:7;27460:16;;;:7;:16;;;;;;27416:7;;27495:15;;27444:32;;:13;:32;:::i;:::-;27443:49;;;;:::i;:::-;:67;;;;:::i;:::-;27436:74;;27270:248;;;;;;:::o;10585:317::-;10700:6;10675:21;:31;;10667:73;;;;-1:-1:-1;;;10667:73:0;;17604:2:1;10667:73:0;;;17586:21:1;17643:2;17623:18;;;17616:30;17682:31;17662:18;;;17655:59;17731:18;;10667:73:0;17402:353:1;10667:73:0;10754:12;10772:9;-1:-1:-1;;;;;10772:14:0;10794:6;10772:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10753:52;;;10824:7;10816:78;;;;-1:-1:-1;;;10816:78:0;;18172:2:1;10816:78:0;;;18154:21:1;18211:2;18191:18;;;18184:30;18250:34;18230:18;;;18223:62;18321:28;18301:18;;;18294:56;18367:19;;10816:78:0;17970:422:1;49750:2002:0;49865:35;49903:20;49915:7;49903:11;:20::i;:::-;49978:18;;49865:58;;-1:-1:-1;49936:22:0;;-1:-1:-1;;;;;49962:34:0;5779:10;-1:-1:-1;;;;;49962:34:0;;:87;;;-1:-1:-1;5779:10:0;50013:20;50025:7;50013:11;:20::i;:::-;-1:-1:-1;;;;;50013:36:0;;49962:87;:154;;;-1:-1:-1;50083:18:0;;50066:50;;5779:10;45612:164;:::i;50066:50::-;49936:181;;50138:17;50130:80;;;;-1:-1:-1;;;50130:80:0;;18599:2:1;50130:80:0;;;18581:21:1;18638:2;18618:18;;;18611:30;18677:34;18657:18;;;18650:62;-1:-1:-1;;;18728:18:1;;;18721:48;18786:19;;50130:80:0;18397:414:1;50130:80:0;50253:4;-1:-1:-1;;;;;50231:26:0;:13;:18;;;-1:-1:-1;;;;;50231:26:0;;50223:77;;;;-1:-1:-1;;;50223:77:0;;19018:2:1;50223:77:0;;;19000:21:1;19057:2;19037:18;;;19030:30;19096:34;19076:18;;;19069:62;-1:-1:-1;;;19147:18:1;;;19140:36;19193:19;;50223:77:0;18816:402:1;50223:77:0;-1:-1:-1;;;;;50319:16:0;;50311:66;;;;-1:-1:-1;;;50311:66:0;;19425:2:1;50311:66:0;;;19407:21:1;19464:2;19444:18;;;19437:30;19503:34;19483:18;;;19476:62;-1:-1:-1;;;19554:18:1;;;19547:35;19599:19;;50311:66:0;19223:401:1;50311:66:0;50498:49;50515:1;50519:7;50528:13;:18;;;50498:8;:49::i;:::-;-1:-1:-1;;;;;50843:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;50843:31:0;;;-1:-1:-1;;;;;50843:31:0;;;-1:-1:-1;;50843:31:0;;;;;;;50889:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;50889:29:0;;;;;;;;;;;;;50935:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;50980:61:0;;;;-1:-1:-1;;;51025:15:0;50980:61;;;;;;51315:11;;;51345:24;;;;;:29;51315:11;;51345:29;51341:295;;51413:20;51421:11;47007:4;47041:12;-1:-1:-1;47031:22:0;46950:111;51413:20;51409:212;;;51490:18;;;51458:24;;;:11;:24;;;;;;;;:50;;51573:28;;;;51531:70;;-1:-1:-1;;;51531:70:0;-1:-1:-1;;;;;;51531:70:0;;;-1:-1:-1;;;;;51458:50:0;;;51531:70;;;;;;;51409:212;50818:829;51683:7;51679:2;-1:-1:-1;;;;;51664:27:0;51673:4;-1:-1:-1;;;;;51664:27:0;;;;;;;;;;;51702:42;49854:1898;;49750:2002;;;:::o;47069:104::-;47138:27;47148:2;47152:8;47138:27;;;;;;;;;;;;:9;:27::i;17291:211::-;17435:58;;;-1:-1:-1;;;;;206:32:1;;17435:58:0;;;188:51:1;255:18;;;;248:34;;;17435:58:0;;;;;;;;;;161:18:1;;;;17435:58:0;;;;;;;;-1:-1:-1;;;;;17435:58:0;-1:-1:-1;;;17435:58:0;;;17408:86;;17428:5;;17408:19;:86::i;42615:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;42718:16:0;42726:7;47007:4;47041:12;-1:-1:-1;47031:22:0;46950:111;42718:16;42710:71;;;;-1:-1:-1;;;42710:71:0;;19831:2:1;42710:71:0;;;19813:21:1;19870:2;19850:18;;;19843:30;19909:34;19889:18;;;19882:62;-1:-1:-1;;;19960:18:1;;;19953:40;20010:19;;42710:71:0;19629:406:1;42710:71:0;42839:7;42819:245;42886:31;42920:17;;;:11;:17;;;;;;;;;42886:51;;;;;;;;;-1:-1:-1;;;;;42886:51:0;;;;;-1:-1:-1;;;42886:51:0;;;;;;;;;;;;42960:28;42956:93;;43020:9;42615:537;-1:-1:-1;;;42615:537:0:o;42956:93::-;-1:-1:-1;;;42859:6:0;42819:245;;8245:191;8338:6;;;-1:-1:-1;;;;;8355:17:0;;;-1:-1:-1;;;;;;8355:17:0;;;;;;;8388:40;;8338:6;;;8355:17;8338:6;;8388:40;;8319:16;;8388:40;8308:128;8245:191;:::o;52631:804::-;52786:4;-1:-1:-1;;;;;52807:13:0;;9586:20;9634:8;52803:625;;52843:72;;-1:-1:-1;;;52843:72:0;;-1:-1:-1;;;;;52843:36:0;;;;;:72;;5779:10;;52894:4;;52900:7;;52909:5;;52843:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52843:72:0;;;;;;;;-1:-1:-1;;52843:72:0;;;;;;;;;;;;:::i;:::-;;;52839:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53089:13:0;;53085:273;;53132:61;;-1:-1:-1;;;53132:61:0;;;;;;;:::i;53085:273::-;53308:6;53302:13;53293:6;53289:2;53285:15;53278:38;52839:534;-1:-1:-1;;;;;;52966:55:0;-1:-1:-1;;;52966:55:0;;-1:-1:-1;52959:62:0;;52803:625;-1:-1:-1;53412:4:0;52803:625;52631:804;;;;;;:::o;55526:103::-;55586:13;55615:8;55608:15;;;;;:::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;;47536:163;47659:32;47665:2;47669:8;47679:5;47686:4;47659:5;:32::i;19864:716::-;20288:23;20314:69;20342:4;20314:69;;;;;;;;;;;;;;;;;20322:5;-1:-1:-1;;;;;20314:27:0;;;:69;;;;;:::i;:::-;20398:17;;20288:95;;-1:-1:-1;20398:21:0;20394:179;;20495:10;20484:30;;;;;;;;;;;;:::i;:::-;20476:85;;;;-1:-1:-1;;;20476:85:0;;21913:2:1;20476:85:0;;;21895:21:1;21952:2;21932:18;;;21925:30;21991:34;21971:18;;;21964:62;-1:-1:-1;;;22042:18:1;;;22035:40;22092:19;;20476:85:0;21711:406:1;47958:1538:0;48097:20;48120:12;-1:-1:-1;;;;;48151:16:0;;48143:62;;;;-1:-1:-1;;;48143:62:0;;22324:2:1;48143:62:0;;;22306:21:1;22363:2;22343:18;;;22336:30;22402:34;22382:18;;;22375:62;-1:-1:-1;;;22453:18:1;;;22446:31;22494:19;;48143:62:0;22122:397:1;48143:62:0;48224:13;48216:66;;;;-1:-1:-1;;;48216:66:0;;22726:2:1;48216:66:0;;;22708:21:1;22765:2;22745:18;;;22738:30;22804:34;22784:18;;;22777:62;-1:-1:-1;;;22855:18:1;;;22848:38;22903:19;;48216:66:0;22524:404:1;48216:66:0;-1:-1:-1;;;;;48634:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;48634:45:0;;-1:-1:-1;;;;;48634:45:0;;;;;;;;;;48694:50;;;;;;;;;;;;;;48761:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;48811:66:0;;;;-1:-1:-1;;;48861:15:0;48811:66;;;;;;;48761:25;;48946:415;48966:8;48962:1;:12;48946:415;;;49005:38;;49030:12;;-1:-1:-1;;;;;49005:38:0;;;49022:1;;49005:38;;49022:1;;49005:38;49066:4;49062:249;;;49129:59;49160:1;49164:2;49168:12;49182:5;49129:22;:59::i;:::-;49095:196;;;;-1:-1:-1;;;49095:196:0;;;;;;;:::i;:::-;49331:14;;;;;48976:3;48946:415;;;-1:-1:-1;49377:12:0;:27;49428:60;46340:355;12069:229;12206:12;12238:52;12260:6;12268:4;12274:1;12277:12;12206;9586:20;;13476:60;;;;-1:-1:-1;;;13476:60:0;;23542:2:1;13476:60:0;;;23524:21:1;23581:2;23561:18;;;23554:30;23620:31;23600:18;;;23593:59;23669:18;;13476:60:0;23340:353:1;13476:60:0;13550:12;13564:23;13591:6;-1:-1:-1;;;;;13591:11:0;13610:5;13617:4;13591:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13549:73;;;;13640:51;13657:7;13666:10;13678:12;13640:16;:51::i;:::-;13633:58;13189:510;-1:-1:-1;;;;;;;13189:510:0:o;15875:712::-;16025:12;16054:7;16050:530;;;-1:-1:-1;16085:10:0;16078:17;;16050:530;16199:17;;:21;16195:374;;16397:10;16391:17;16458:15;16445:10;16441:2;16437:19;16430:44;16195:374;16540:12;16533:20;;-1:-1:-1;;;16533:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;293:131:1;-1:-1:-1;;;;;;367:32:1;;357:43;;347:71;;414:1;411;404:12;429:245;487:6;540:2;528:9;519:7;515:23;511:32;508:52;;;556:1;553;546:12;508:52;595:9;582:23;614:30;638:5;614:30;:::i;871:258::-;943:1;953:113;967:6;964:1;961:13;953:113;;;1043:11;;;1037:18;1024:11;;;1017:39;989:2;982:10;953:113;;;1084:6;1081:1;1078:13;1075:48;;;-1:-1:-1;;1119:1:1;1101:16;;1094:27;871:258::o;1134:::-;1176:3;1214:5;1208:12;1241:6;1236:3;1229:19;1257:63;1313:6;1306:4;1301:3;1297:14;1290:4;1283:5;1279:16;1257:63;:::i;:::-;1374:2;1353:15;-1:-1:-1;;1349:29:1;1340:39;;;;1381:4;1336:50;;1134:258;-1:-1:-1;;1134:258:1:o;1397:220::-;1546:2;1535:9;1528:21;1509:4;1566:45;1607:2;1596:9;1592:18;1584:6;1566:45;:::i;1622:180::-;1681:6;1734:2;1722:9;1713:7;1709:23;1705:32;1702:52;;;1750:1;1747;1740:12;1702:52;-1:-1:-1;1773:23:1;;1622:180;-1:-1:-1;1622:180:1:o;2015:131::-;-1:-1:-1;;;;;2090:31:1;;2080:42;;2070:70;;2136:1;2133;2126:12;2151:315;2219:6;2227;2280:2;2268:9;2259:7;2255:23;2251:32;2248:52;;;2296:1;2293;2286:12;2248:52;2335:9;2322:23;2354:31;2379:5;2354:31;:::i;:::-;2404:5;2456:2;2441:18;;;;2428:32;;-1:-1:-1;;;2151:315:1:o;2653:255::-;2720:6;2773:2;2761:9;2752:7;2748:23;2744:32;2741:52;;;2789:1;2786;2779:12;2741:52;2828:9;2815:23;2847:31;2872:5;2847:31;:::i;2913:456::-;2990:6;2998;3006;3059:2;3047:9;3038:7;3034:23;3030:32;3027:52;;;3075:1;3072;3065:12;3027:52;3114:9;3101:23;3133:31;3158:5;3133:31;:::i;:::-;3183:5;-1:-1:-1;3240:2:1;3225:18;;3212:32;3253:33;3212:32;3253:33;:::i;:::-;2913:456;;3305:7;;-1:-1:-1;;;3359:2:1;3344:18;;;;3331:32;;2913:456::o;3374:401::-;3455:6;3463;3516:2;3504:9;3495:7;3491:23;3487:32;3484:52;;;3532:1;3529;3522:12;3484:52;3571:9;3558:23;3590:31;3615:5;3590:31;:::i;:::-;3640:5;-1:-1:-1;3697:2:1;3682:18;;3669:32;3710:33;3669:32;3710:33;:::i;:::-;3762:7;3752:17;;;3374:401;;;;;:::o;3780:127::-;3841:10;3836:3;3832:20;3829:1;3822:31;3872:4;3869:1;3862:15;3896:4;3893:1;3886:15;3912:632;3977:5;4007:18;4048:2;4040:6;4037:14;4034:40;;;4054:18;;:::i;:::-;4129:2;4123:9;4097:2;4183:15;;-1:-1:-1;;4179:24:1;;;4205:2;4175:33;4171:42;4159:55;;;4229:18;;;4249:22;;;4226:46;4223:72;;;4275:18;;:::i;:::-;4315:10;4311:2;4304:22;4344:6;4335:15;;4374:6;4366;4359:22;4414:3;4405:6;4400:3;4396:16;4393:25;4390:45;;;4431:1;4428;4421:12;4390:45;4481:6;4476:3;4469:4;4461:6;4457:17;4444:44;4536:1;4529:4;4520:6;4512;4508:19;4504:30;4497:41;;;;3912:632;;;;;:::o;4549:451::-;4618:6;4671:2;4659:9;4650:7;4646:23;4642:32;4639:52;;;4687:1;4684;4677:12;4639:52;4727:9;4714:23;4760:18;4752:6;4749:30;4746:50;;;4792:1;4789;4782:12;4746:50;4815:22;;4868:4;4860:13;;4856:27;-1:-1:-1;4846:55:1;;4897:1;4894;4887:12;4846:55;4920:74;4986:7;4981:2;4968:16;4963:2;4959;4955:11;4920:74;:::i;5257:118::-;5343:5;5336:13;5329:21;5322:5;5319:32;5309:60;;5365:1;5362;5355:12;5380:382;5445:6;5453;5506:2;5494:9;5485:7;5481:23;5477:32;5474:52;;;5522:1;5519;5512:12;5474:52;5561:9;5548:23;5580:31;5605:5;5580:31;:::i;:::-;5630:5;-1:-1:-1;5687:2:1;5672:18;;5659:32;5700:30;5659:32;5700:30;:::i;5767:795::-;5862:6;5870;5878;5886;5939:3;5927:9;5918:7;5914:23;5910:33;5907:53;;;5956:1;5953;5946:12;5907:53;5995:9;5982:23;6014:31;6039:5;6014:31;:::i;:::-;6064:5;-1:-1:-1;6121:2:1;6106:18;;6093:32;6134:33;6093:32;6134:33;:::i;:::-;6186:7;-1:-1:-1;6240:2:1;6225:18;;6212:32;;-1:-1:-1;6295:2:1;6280:18;;6267:32;6322:18;6311:30;;6308:50;;;6354:1;6351;6344:12;6308:50;6377:22;;6430:4;6422:13;;6418:27;-1:-1:-1;6408:55:1;;6459:1;6456;6449:12;6408:55;6482:74;6548:7;6543:2;6530:16;6525:2;6521;6517:11;6482:74;:::i;:::-;6472:84;;;5767:795;;;;;;;:::o;7225:380::-;7304:1;7300:12;;;;7347;;;7368:61;;7422:4;7414:6;7410:17;7400:27;;7368:61;7475:2;7467:6;7464:14;7444:18;7441:38;7438:161;;;7521:10;7516:3;7512:20;7509:1;7502:31;7556:4;7553:1;7546:15;7584:4;7581:1;7574:15;7438:161;;7225:380;;;:::o;8853:402::-;9055:2;9037:21;;;9094:2;9074:18;;;9067:30;9133:34;9128:2;9113:18;;9106:62;-1:-1:-1;;;9199:2:1;9184:18;;9177:36;9245:3;9230:19;;8853:402::o;9260:127::-;9321:10;9316:3;9312:20;9309:1;9302:31;9352:4;9349:1;9342:15;9376:4;9373:1;9366:15;9392:128;9432:3;9463:1;9459:6;9456:1;9453:13;9450:39;;;9469:18;;:::i;:::-;-1:-1:-1;9505:9:1;;9392:128::o;9525:407::-;9727:2;9709:21;;;9766:2;9746:18;;;9739:30;9805:34;9800:2;9785:18;;9778:62;-1:-1:-1;;;9871:2:1;9856:18;;9849:41;9922:3;9907:19;;9525:407::o;11042:356::-;11244:2;11226:21;;;11263:18;;;11256:30;11322:34;11317:2;11302:18;;11295:62;11389:2;11374:18;;11042:356::o;11761:184::-;11831:6;11884:2;11872:9;11863:7;11859:23;11855:32;11852:52;;;11900:1;11897;11890:12;11852:52;-1:-1:-1;11923:16:1;;11761:184;-1:-1:-1;11761:184:1:o;12766:127::-;12827:10;12822:3;12818:20;12815:1;12808:31;12858:4;12855:1;12848:15;12882:4;12879:1;12872:15;14307:168;14347:7;14413:1;14409;14405:6;14401:14;14398:1;14395:21;14390:1;14383:9;14376:17;14372:45;14369:71;;;14420:18;;:::i;:::-;-1:-1:-1;14460:9:1;;14307:168::o;15185:415::-;15387:2;15369:21;;;15426:2;15406:18;;;15399:30;15465:34;15460:2;15445:18;;15438:62;-1:-1:-1;;;15531:2:1;15516:18;;15509:49;15590:3;15575:19;;15185:415::o;15966:637::-;16246:3;16284:6;16278:13;16300:53;16346:6;16341:3;16334:4;16326:6;16322:17;16300:53;:::i;:::-;16416:13;;16375:16;;;;16438:57;16416:13;16375:16;16472:4;16460:17;;16438:57;:::i;:::-;-1:-1:-1;;;16517:20:1;;16546:22;;;16595:1;16584:13;;15966:637;-1:-1:-1;;;;15966:637:1:o;17015:127::-;17076:10;17071:3;17067:20;17064:1;17057:31;17107:4;17104:1;17097:15;17131:4;17128:1;17121:15;17147:120;17187:1;17213;17203:35;;17218:18;;:::i;:::-;-1:-1:-1;17252:9:1;;17147:120::o;17272:125::-;17312:4;17340:1;17337;17334:8;17331:34;;;17345:18;;:::i;:::-;-1:-1:-1;17382:9:1;;17272:125::o;20456:489::-;-1:-1:-1;;;;;20725:15:1;;;20707:34;;20777:15;;20772:2;20757:18;;20750:43;20824:2;20809:18;;20802:34;;;20872:3;20867:2;20852:18;;20845:31;;;20650:4;;20893:46;;20919:19;;20911:6;20893:46;:::i;:::-;20885:54;20456:489;-1:-1:-1;;;;;;20456:489:1:o;20950:249::-;21019:6;21072:2;21060:9;21051:7;21047:23;21043:32;21040:52;;;21088:1;21085;21078:12;21040:52;21120:9;21114:16;21139:30;21163:5;21139:30;:::i;21204:135::-;21243:3;-1:-1:-1;;21264:17:1;;21261:43;;;21284:18;;:::i;:::-;-1:-1:-1;21331:1:1;21320:13;;21204:135::o;21344:112::-;21376:1;21402;21392:35;;21407:18;;:::i;:::-;-1:-1:-1;21441:9:1;;21344:112::o;21461:245::-;21528:6;21581:2;21569:9;21560:7;21556:23;21552:32;21549:52;;;21597:1;21594;21587:12;21549:52;21629:9;21623:16;21648:28;21670:5;21648:28;:::i;23698:274::-;23827:3;23865:6;23859:13;23881:53;23927:6;23922:3;23915:4;23907:6;23903:17;23881:53;:::i;:::-;23950:16;;;;;23698:274;-1:-1:-1;;23698:274:1:o

Swarm Source

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