ETH Price: $2,517.77 (-0.99%)
Gas: 1.33 Gwei

Token

PIZZABOT (PBOT)
 

Overview

Max Total Supply

1,554 PBOT

Holders

448

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PBOT
0xe699025cdceb9a1c0c97a64ec0e1151077301611
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Created by Seth Green. PizzaBot is a sentient pizza loving robot trying to make his home in the Pizzaverse. Born in Mr. Pizza’s arcade, after getting his citizenship, PizzaBot embarked on a journey to create 6,969 friends to help him in his mission to deliver the best, fastest pizza in the world!

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PizzaBot

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 20000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-20
*/

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

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}
// File: ECDSA.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}
// File: Context.sol



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
// File: Address.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
// File: Payment.sol


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

pragma solidity ^0.8.0;



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

    uint256 private _totalShares;
    uint256 private _totalReleased;

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

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

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

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

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

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


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

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


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

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

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

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

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

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


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

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

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



pragma solidity ^0.8.0;

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



pragma solidity ^0.8.0;

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



pragma solidity ^0.8.0;


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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

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



pragma solidity ^0.8.0;


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

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

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


pragma solidity ^0.8.0;









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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

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

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.2;

contract PizzaBot is ERC721A, Payment, Ownable {  
    using Strings for uint256;
    string public _baseURIextended;

    // Sale States
    bool public isPhase1Active = false;
    bool public isPhase2Active = false;
    bool public isPhase3Active = false;
    bool public isPublicActive = false;

    //allowlist Switch
    bool public isPhase1Public = false;

    //signature
    address private signer = 0x74C16afC1153c577D2A3825daa8DEE2e2eC61934;

    //settings
    uint256 public MAX_SUPPLY = 6969;
    uint256 public MAX_SUPPLY_PHASE1 = 421; //420 with token 0 aidrop
    uint256 public PRICE_PER_TOKEN = 0.042 ether;
    
    //phase1
    uint256 private maxMintPerWalletPhase1 = 2;
	uint256 private maxMintPerTxPhase1 = 2;

    //phase1-Public
    uint256 private maxMintPerWalletPhase1Public = 5;
	uint256 private maxMintPerTxPhase1Public = 3;

    //phase2
    uint256 private maxMintPerWalletPhase2 = 3;
	uint256 private maxMintPerTxPhase2 = 3;

    //phase3
    uint256 private maxMintPerWalletPhase3 = 3;
	uint256 private maxMintPerTxPhase3 = 3;

    //public
	uint256 private maxMintPerTxPublic = 5;
    
    //shares
	address[] private addressList = [
	0xb56B8A2E18868B2b3bFC3C8D37a26b7789c9D044,
	0xEcc03efB7C0A7BD09A5cC7e954Ac42E8f949A0B5
	];

	uint[] private shareList = [
	925,
    725
	];

	//mappings
    mapping(address => uint256) public numMintedPerPerson;
	
	constructor() ERC721A("PIZZABOT", "PBOT") Payment(addressList, shareList) {}

 	function mintPhase1(address _address, bytes calldata _voucher, uint256 _tokenAmount) external payable {
  	    uint256 ts = totalSupply();
        require(isPhase1Active);
  		require(_tokenAmount <= maxMintPerTxPhase1, "Purchase would exceed max tokens per Wallet in this Phase");
        require(ts + _tokenAmount <= MAX_SUPPLY, "Purchase would exceed max tokens");
        require(ts + _tokenAmount <= MAX_SUPPLY_PHASE1, "Purchase would exceed max tokens");
        require(msg.value >= PRICE_PER_TOKEN * _tokenAmount, "Ether value sent is not correct");
        require(msg.sender == _address, "Not your voucher");
        require(msg.sender == tx.origin);
    	require(numMintedPerPerson[_address] + _tokenAmount <= maxMintPerWalletPhase1, "Purchase would exceed max tokens per Wallet");

        bytes32 hash = keccak256(
            abi.encodePacked(_address)
        );
        require(_verifySignature(signer, hash, _voucher), "Invalid voucher");

        _safeMint(_address, _tokenAmount);
        numMintedPerPerson[_address] += _tokenAmount;
    }

	function mintPhase2(address _address, bytes calldata _voucher, uint256 _tokenAmount) external payable {
  	    uint256 ts = totalSupply();
        require(isPhase2Active);
  		require(_tokenAmount <= maxMintPerTxPhase2, "Purchase would exceed max tokens per Wallet in this Phase");
        require(ts + _tokenAmount <= MAX_SUPPLY, "Purchase would exceed max tokens");
        require(msg.value >= PRICE_PER_TOKEN * _tokenAmount, "Ether value sent is not correct");
        require(msg.sender == _address, "Not your voucher");
        require(msg.sender == tx.origin);
    	require(numMintedPerPerson[_address] + _tokenAmount <= maxMintPerWalletPhase2, "Purchase would exceed max tokens per Wallet");

        bytes32 hash = keccak256(
            abi.encodePacked(_address)
        );
        require(_verifySignature(signer, hash, _voucher), "Invalid voucher");

        _safeMint(_address, _tokenAmount);
        numMintedPerPerson[_address] += _tokenAmount;
    }

	function mintPhase3(address _address, bytes calldata _voucher, uint256 _tokenAmount) external payable {
  	    uint256 ts = totalSupply();
        require(isPhase3Active);
  		require(_tokenAmount <= maxMintPerTxPhase3, "Purchase would exceed max tokens per Wallet in this Phase");
        require(ts + _tokenAmount <= MAX_SUPPLY, "Purchase would exceed max tokens");
        require(msg.value >= PRICE_PER_TOKEN * _tokenAmount, "Ether value sent is not correct");
        require(msg.sender == _address, "Not your voucher");
    	require(numMintedPerPerson[_address] + _tokenAmount <= maxMintPerWalletPhase3, "Purchase would exceed max tokens per Wallet");

        bytes32 hash = keccak256(
            abi.encodePacked(_address)
        );
        require(_verifySignature(signer, hash, _voucher), "Invalid voucher");

        _safeMint(_address, _tokenAmount);
        numMintedPerPerson[_address] += _tokenAmount;
    }

	function mintPublic(uint256 _tokenAmount) external payable {
  	    uint256 ts = totalSupply();
        require(isPublicActive);
        require(_tokenAmount > 0, "Mint more than 0" );
  		require(_tokenAmount <= maxMintPerTxPublic, "Purchase would exceed max tokens per Wallet in this Phase");
        require(ts + _tokenAmount <= MAX_SUPPLY, "Purchase would exceed max tokens");
        require(msg.sender == tx.origin);
        require(msg.value >= PRICE_PER_TOKEN * _tokenAmount, "Ether value sent is not correct");

        _safeMint(msg.sender, _tokenAmount);
        numMintedPerPerson[msg.sender] += _tokenAmount;
    }

 	function mintPublic420(uint256 _tokenAmount) external payable {
  	    uint256 ts = totalSupply();
        require(isPhase1Public);
  		require(_tokenAmount <= maxMintPerWalletPhase1Public, "Purchase would exceed max tokens per Wallet in this Phase");
        require(ts + _tokenAmount <= MAX_SUPPLY, "Purchase would exceed max tokens");
        require(ts + _tokenAmount <= MAX_SUPPLY_PHASE1, "Purchase would exceed max tokens");
        require(msg.value >= PRICE_PER_TOKEN * _tokenAmount, "Ether value sent is not correct");
        require(msg.sender == tx.origin);
    	require(numMintedPerPerson[msg.sender] + _tokenAmount <= maxMintPerWalletPhase1Public, "Purchase would exceed max tokens per Wallet");

        _safeMint(msg.sender, _tokenAmount);
        numMintedPerPerson[msg.sender] += _tokenAmount;
    }

    //airdrops
 	function airdrop(address addr, uint256 _tokenAmount) public onlyOwner {
  	    uint256 ts = totalSupply();
	    require(ts + _tokenAmount <= MAX_SUPPLY);
        _safeMint(addr, _tokenAmount);
    }


    //signatures
    function _verifySignature(address _signer, bytes32 _hash, bytes memory _signature) private pure returns (bool) {
        return _signer == ECDSA.recover(ECDSA.toEthSignedMessageHash(_hash), _signature);
    }

    function setSigner(address _signer) external onlyOwner {
        signer = _signer;
    }

    // Set  price
    function setPrice(uint256 _newPrice) external onlyOwner {
        PRICE_PER_TOKEN = _newPrice;
    }

    function setPhase1Public(bool _status) external onlyOwner {
        isPhase1Public = _status;
    }

     // Allowed Minting
    function setPhase1Active(bool _status) external onlyOwner {
        isPhase1Active = _status;
    }

    function setPhase2Active(bool _status) external onlyOwner {
        isPhase2Active = _status;
    }

    function setPhase3Active(bool _status) external onlyOwner {
        isPhase3Active = _status;
    }

    function setPublicActive(bool _status) external onlyOwner {
        isPublicActive = _status;
    }

     // Max Per Wallet
    function setMaxMintPerWalletPhase1(uint256 _amount) external onlyOwner {
        maxMintPerWalletPhase1 = _amount;
    }

    function setMaxMintPerWalletPhase1Public(uint256 _amount) external onlyOwner {
        maxMintPerWalletPhase1Public = _amount;
    }

    function setMaxMintPerWalletPhase2(uint256 _amount) external onlyOwner {
        maxMintPerWalletPhase2 = _amount;
    }

    function setMaxMintPerWalletPhase3(uint256 _amount) external onlyOwner {
        maxMintPerWalletPhase3 = _amount;
    }


     // Max tx per Phase
    function setMaxMintPerTxPhase1(uint256 _amount) external onlyOwner {
        maxMintPerTxPhase1 = _amount;
    }

    function setMaxMintPerTxPhase1Public(uint256 _amount) external onlyOwner {
        maxMintPerTxPhase1Public = _amount;
    }

    function setMaxMintPerTxPhase2(uint256 _amount) external onlyOwner {
        maxMintPerTxPhase2 = _amount;
    }

    function setMaxMintPerTxPhase3(uint256 _amount) external onlyOwner {
        maxMintPerTxPhase3 = _amount;
    }

    function setMaxMintPerTxPublic(uint256 _amount) external onlyOwner {
        maxMintPerTxPublic= _amount;
    }

    //metadata
    function setBaseURI(string memory baseURI_) external onlyOwner {
        _baseURIextended = baseURI_;
    }

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

    function withdraw() public payable onlyOwner {
	(bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
		require(success);
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY_PHASE1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_PER_TOKEN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseURIextended","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPhase1Active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPhase1Public","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPhase2Active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPhase3Active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bytes","name":"_voucher","type":"bytes"},{"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"mintPhase1","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bytes","name":"_voucher","type":"bytes"},{"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"mintPhase2","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bytes","name":"_voucher","type":"bytes"},{"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"mintPhase3","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"mintPublic420","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numMintedPerPerson","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxMintPerTxPhase1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxMintPerTxPhase1Public","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxMintPerTxPhase2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxMintPerTxPhase3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxMintPerTxPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxMintPerWalletPhase1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxMintPerWalletPhase1Public","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxMintPerWalletPhase2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxMintPerWalletPhase3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setPhase1Active","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setPhase1Public","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setPhase2Active","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setPhase3Active","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setPublicActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setSigner","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":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

600e80546001600160c81b0319167874c16afc1153c577d2a3825daa8dee2e2ec619340000000000179055611b39600f556101a5601055669536c7089100006011556002601281905560138190556005601481905560036015819055601681905560178190556018819055601955601a5560c060405273b56b8a2e18868b2b3bfc3c8d37a26b7789c9d044608090815273ecc03efb7c0a7bd09a5cc7e954ac42e8f949a0b560a052620000b691601b91906200059c565b506040805180820190915261039d81526102d56020820152620000de90601c90600262000606565b50348015620000ec57600080fd5b50601b8054806020026020016040519081016040528092919081815260200182805480156200014557602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000126575b5050505050601c8054806020026020016040519081016040528092919081815260200182805480156200019857602002820191906000526020600020905b81548152602001906001019080831162000183575b5050604080518082018252600881526714125696905093d560c21b602080830191825283518085019094526004845263141093d560e21b908401528151919550919350620001eb9250600191906200064a565b508051620002019060029060208401906200064a565b5050508051825114620002765760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620002c95760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f2070617965657300000000000060448201526064016200026d565b60005b8251811015620003355762000320838281518110620002ef57620002ef620006de565b60200260200101518383815181106200030c576200030c620006de565b60200260200101516200035860201b60201c565b806200032c816200070a565b915050620002cc565b505050620003526200034c6200054660201b60201c565b6200054a565b6200077d565b6001600160a01b038216620003c55760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016200026d565b60008111620004175760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a2073686172657320617265203000000060448201526064016200026d565b6001600160a01b03821660009081526009602052604090205415620004935760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b60648201526084016200026d565b600b8054600181019091557f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319166001600160a01b0384169081179091556000908152600960205260409020819055600754620004fd90829062000726565b600755604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b3390565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054828255906000526020600020908101928215620005f4579160200282015b82811115620005f457825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620005bd565b5062000602929150620006c7565b5090565b828054828255906000526020600020908101928215620005f4579160200282015b82811115620005f4578251829061ffff1690559160200191906001019062000627565b828054620006589062000741565b90600052602060002090601f0160209004810192826200067c5760008555620005f4565b82601f106200069757805160ff1916838001178555620005f4565b82800160010185558215620005f4579182015b82811115620005f4578251825591602001919060010190620006aa565b5b80821115620006025760008155600101620006c8565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016200071f576200071f620006f4565b5060010190565b600082198211156200073c576200073c620006f4565b500190565b600181811c908216806200075657607f821691505b6020821081036200077757634e487b7160e01b600052602260045260246000fd5b50919050565b6148bb806200078d6000396000f3fe6080604052600436106103905760003560e01c8063833b9499116101dc578063a8979f5411610102578063e33b7de3116100a0578063efd0cbf91161006f578063efd0cbf914610af9578063f2fde38b14610b0c578063f6be33f914610b2c578063f99aa9ba14610b4c57600080fd5b8063e33b7de314610a5b578063e985e9c514610a70578063eb62e2b414610ac6578063ef01c81b14610ae657600080fd5b8063b88d4fde116100dc578063b88d4fde146109b8578063c87b56dd146109d8578063ce7c2ac2146109f8578063d1a6610314610a3b57600080fd5b8063a8979f5414610959578063aaee143214610979578063b5917fb81461099857600080fd5b806390bcd1541161017a5780639852595c116101495780639852595c146108b55780639c134998146108f8578063a22cb46514610918578063a3330d251461093857600080fd5b806390bcd1541461084657806391b7f5ed1461086057806395d89b4114610880578063972a79c61461089557600080fd5b80638b83209b116101b65780638b83209b146107c55780638ba4cc3c146107e55780638da5cb5b146108055780638f526cfd1461083057600080fd5b8063833b94991461076f578063874da338146107855780638aca408c146107a557600080fd5b806337777e30116102c15780635073dafe1161025f5780636c19e7831161022e5780636c19e783146106fa57806370a082311461071a578063715018a61461073a5780637969c2e21461074f57600080fd5b80635073dafe1461069457806355f804b3146106a75780636352211e146106c757806364326329146106e757600080fd5b806342842e0e1161029b57806342842e0e14610621578063482e198f146106415780634ae879b6146106545780634f6ccce71461067457600080fd5b806337777e30146105e45780633a98ef39146106045780633ccfd60b1461061957600080fd5b806318160ddd1161032e57806323b872dd1161030857806323b872dd1461056e5780632f745c591461058e57806332cb6b0c146105ae578063352d9dd5146105c457600080fd5b806318160ddd14610519578063191655871461052e57806322e46d281461054e57600080fd5b8063081812fc1161036a578063081812fc1461047d5780630928fc22146104c2578063095ea7b3146104d7578063119f5215146104f957600080fd5b806301ffc9a7146103eb578063066589fb1461042057806306fdde031461045b57600080fd5b366103e6577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770336040805173ffffffffffffffffffffffffffffffffffffffff90921682523460208301520160405180910390a1005b600080fd5b3480156103f757600080fd5b5061040b6104063660046141f5565b610b6e565b60405190151581526020015b60405180910390f35b34801561042c57600080fd5b5061044d61043b366004614234565b601d6020526000908152604090205481565b604051908152602001610417565b34801561046757600080fd5b50610470610c9f565b60405161041791906142c7565b34801561048957600080fd5b5061049d6104983660046142da565b610d31565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610417565b3480156104ce57600080fd5b50610470610dde565b3480156104e357600080fd5b506104f76104f23660046142f3565b610e6c565b005b34801561050557600080fd5b506104f76105143660046142da565b610fc5565b34801561052557600080fd5b5060005461044d565b34801561053a57600080fd5b506104f7610549366004614234565b611031565b34801561055a57600080fd5b506104f7610569366004614334565b611242565b34801561057a57600080fd5b506104f761058936600461434f565b6112e0565b34801561059a57600080fd5b5061044d6105a93660046142f3565b6112eb565b3480156105ba57600080fd5b5061044d600f5481565b3480156105d057600080fd5b506104f76105df366004614334565b6114a8565b3480156105f057600080fd5b506104f76105ff366004614334565b611549565b34801561061057600080fd5b5060075461044d565b6104f76115e1565b34801561062d57600080fd5b506104f761063c36600461434f565b6116a0565b6104f761064f366004614390565b6116bb565b34801561066057600080fd5b506104f761066f3660046142da565b611a58565b34801561068057600080fd5b5061044d61068f3660046142da565b611ac4565b6104f76106a2366004614390565b611b40565b3480156106b357600080fd5b506104f76106c23660046144de565b611d2c565b3480156106d357600080fd5b5061049d6106e23660046142da565b611daa565b6104f76106f5366004614390565b611dbc565b34801561070657600080fd5b506104f7610715366004614234565b611ffe565b34801561072657600080fd5b5061044d610735366004614234565b6120b5565b34801561074657600080fd5b506104f761217b565b34801561075b57600080fd5b506104f761076a3660046142da565b6121ee565b34801561077b57600080fd5b5061044d60115481565b34801561079157600080fd5b506104f76107a03660046142da565b61225a565b3480156107b157600080fd5b506104f76107c0366004614334565b6122c6565b3480156107d157600080fd5b5061049d6107e03660046142da565b612366565b3480156107f157600080fd5b506104f76108003660046142f3565b6123a3565b34801561081157600080fd5b50600c5473ffffffffffffffffffffffffffffffffffffffff1661049d565b34801561083c57600080fd5b5061044d60105481565b34801561085257600080fd5b50600e5461040b9060ff1681565b34801561086c57600080fd5b506104f761087b3660046142da565b61242f565b34801561088c57600080fd5b5061047061249b565b3480156108a157600080fd5b506104f76108b03660046142da565b6124aa565b3480156108c157600080fd5b5061044d6108d0366004614234565b73ffffffffffffffffffffffffffffffffffffffff166000908152600a602052604090205490565b34801561090457600080fd5b50600e5461040b9062010000900460ff1681565b34801561092457600080fd5b506104f7610933366004614527565b612516565b34801561094457600080fd5b50600e5461040b906301000000900460ff1681565b34801561096557600080fd5b506104f76109743660046142da565b612612565b34801561098557600080fd5b50600e5461040b90610100900460ff1681565b3480156109a457600080fd5b506104f76109b33660046142da565b61267e565b3480156109c457600080fd5b506104f76109d336600461455c565b6126ea565b3480156109e457600080fd5b506104706109f33660046142da565b612779565b348015610a0457600080fd5b5061044d610a13366004614234565b73ffffffffffffffffffffffffffffffffffffffff1660009081526009602052604090205490565b348015610a4757600080fd5b506104f7610a56366004614334565b612854565b348015610a6757600080fd5b5060085461044d565b348015610a7c57600080fd5b5061040b610a8b3660046145dc565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260066020908152604080832093909416825291909152205460ff1690565b348015610ad257600080fd5b506104f7610ae13660046142da565b6128f3565b6104f7610af43660046142da565b61295f565b6104f7610b073660046142da565b612bd4565b348015610b1857600080fd5b506104f7610b27366004614234565b612d79565b348015610b3857600080fd5b506104f7610b473660046142da565b612e72565b348015610b5857600080fd5b50600e5461040b90640100000000900460ff1681565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480610c0157507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610c4d57507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b80610c9957507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b606060018054610cae90614615565b80601f0160208091040260200160405190810160405280929190818152602001828054610cda90614615565b8015610d275780601f10610cfc57610100808354040283529160200191610d27565b820191906000526020600020905b815481529060010190602001808311610d0a57829003601f168201915b5050505050905090565b6000610d3e826000541190565b610db55760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e0000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600d8054610deb90614615565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1790614615565b8015610e645780601f10610e3957610100808354040283529160200191610e64565b820191906000526020600020905b815481529060010190602001808311610e4757829003601f168201915b505050505081565b6000610e7782611daa565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f1a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610dac565b3373ffffffffffffffffffffffffffffffffffffffff82161480610f435750610f438133610a8b565b610fb55760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610dac565b610fc0838383612ede565b505050565b600c5473ffffffffffffffffffffffffffffffffffffffff16331461102c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b601255565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600960205260409020546110c95760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610dac565b60006110d460085490565b6110de9047614697565b9050600061111883836111138673ffffffffffffffffffffffffffffffffffffffff166000908152600a602052604090205490565b612f5f565b9050806000036111905760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610dac565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600a6020526040812080548392906111c5908490614697565b9250508190555080600860008282546111de9190614697565b909155506111ee90508382612fb2565b6040805173ffffffffffffffffffffffffffffffffffffffff85168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146112a95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b600e8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b610fc08383836130d8565b60006112f6836120b5565b821061136a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152608401610dac565b600080549080805b838110156114395760008181526003602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff1691830191909152156113e357805192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114305786840361142957509350610c9992505050565b6001909301925b50600101611372565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610dac565b600c5473ffffffffffffffffffffffffffffffffffffffff16331461150f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b600e8054911515640100000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffff909216919091179055565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146115b05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146116485760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b604051600090339047908381818185875af1925050503d806000811461168a576040519150601f19603f3d011682016040523d82523d6000602084013e61168f565b606091505b505090508061169d57600080fd5b50565b610fc0838383604051806020016040528060008152506126ea565b600054600e5462010000900460ff166116d357600080fd5b60195482111561174b5760405162461bcd60e51b815260206004820152603960248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201527f207065722057616c6c657420696e2074686973205068617365000000000000006064820152608401610dac565b600f546117588383614697565b11156117a65760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e736044820152606401610dac565b816011546117b491906146af565b3410156118035760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610dac565b3373ffffffffffffffffffffffffffffffffffffffff8616146118685760405162461bcd60e51b815260206004820152601060248201527f4e6f7420796f757220766f7563686572000000000000000000000000000000006044820152606401610dac565b60185473ffffffffffffffffffffffffffffffffffffffff86166000908152601d602052604090205461189c908490614697565b11156119105760405162461bcd60e51b815260206004820152602b60248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201527f207065722057616c6c65740000000000000000000000000000000000000000006064820152608401610dac565b6040517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606087901b1660208201526000906034016040516020818303038152906040528051906020012090506119c0600e60059054906101000a900473ffffffffffffffffffffffffffffffffffffffff168287878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061350a92505050565b611a0c5760405162461bcd60e51b815260206004820152600f60248201527f496e76616c696420766f756368657200000000000000000000000000000000006044820152606401610dac565b611a1686846135a3565b73ffffffffffffffffffffffffffffffffffffffff86166000908152601d602052604081208054859290611a4b908490614697565b9091555050505050505050565b600c5473ffffffffffffffffffffffffffffffffffffffff163314611abf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b601455565b600080548210611b3c5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e647300000000000000000000000000000000000000000000000000000000006064820152608401610dac565b5090565b600054600e54610100900460ff16611b5757600080fd5b601754821115611bcf5760405162461bcd60e51b815260206004820152603960248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201527f207065722057616c6c657420696e2074686973205068617365000000000000006064820152608401610dac565b600f54611bdc8383614697565b1115611c2a5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e736044820152606401610dac565b81601154611c3891906146af565b341015611c875760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610dac565b3373ffffffffffffffffffffffffffffffffffffffff861614611cec5760405162461bcd60e51b815260206004820152601060248201527f4e6f7420796f757220766f7563686572000000000000000000000000000000006044820152606401610dac565b333214611cf857600080fd5b60165473ffffffffffffffffffffffffffffffffffffffff86166000908152601d602052604090205461189c908490614697565b600c5473ffffffffffffffffffffffffffffffffffffffff163314611d935760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b8051611da690600d906020840190614137565b5050565b6000611db5826135bd565b5192915050565b600054600e5460ff16611dce57600080fd5b601354821115611e465760405162461bcd60e51b815260206004820152603960248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201527f207065722057616c6c657420696e2074686973205068617365000000000000006064820152608401610dac565b600f54611e538383614697565b1115611ea15760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e736044820152606401610dac565b601054611eae8383614697565b1115611efc5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e736044820152606401610dac565b81601154611f0a91906146af565b341015611f595760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610dac565b3373ffffffffffffffffffffffffffffffffffffffff861614611fbe5760405162461bcd60e51b815260206004820152601060248201527f4e6f7420796f757220766f7563686572000000000000000000000000000000006044820152606401610dac565b333214611fca57600080fd5b60125473ffffffffffffffffffffffffffffffffffffffff86166000908152601d602052604090205461189c908490614697565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146120655760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b600e805473ffffffffffffffffffffffffffffffffffffffff90921665010000000000027fffffffffffffff0000000000000000000000000000000000000000ffffffffff909216919091179055565b600073ffffffffffffffffffffffffffffffffffffffff82166121405760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610dac565b5073ffffffffffffffffffffffffffffffffffffffff166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146121e25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b6121ec60006136e3565b565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146122555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b601355565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146122c15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b601555565b600c5473ffffffffffffffffffffffffffffffffffffffff16331461232d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b600e80549115156301000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff909216919091179055565b6000600b828154811061237b5761237b6146ec565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1692915050565b600c5473ffffffffffffffffffffffffffffffffffffffff16331461240a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b600054600f5461241a8383614697565b111561242557600080fd5b610fc083836135a3565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146124965760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b601155565b606060028054610cae90614615565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146125115760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b601855565b3373ffffffffffffffffffffffffffffffffffffffff83160361257b5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610dac565b33600081815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146126795760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b601955565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146126e55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b601655565b6126f58484846130d8565b6127018484848461375a565b6127735760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610dac565b50505050565b6060612786826000541190565b6127f85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610dac565b6000612802613933565b90508051600003612822576040518060200160405280600081525061284d565b8061282c84613942565b60405160200161283d92919061471b565b6040516020818303038152906040525b9392505050565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146128bb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b600e805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b600c5473ffffffffffffffffffffffffffffffffffffffff16331461295a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b601a55565b600054600e54640100000000900460ff1661297957600080fd5b6014548211156129f15760405162461bcd60e51b815260206004820152603960248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201527f207065722057616c6c657420696e2074686973205068617365000000000000006064820152608401610dac565b600f546129fe8383614697565b1115612a4c5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e736044820152606401610dac565b601054612a598383614697565b1115612aa75760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e736044820152606401610dac565b81601154612ab591906146af565b341015612b045760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610dac565b333214612b1057600080fd5b601454336000908152601d6020526040902054612b2e908490614697565b1115612ba25760405162461bcd60e51b815260206004820152602b60248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201527f207065722057616c6c65740000000000000000000000000000000000000000006064820152608401610dac565b612bac33836135a3565b336000908152601d602052604081208054849290612bcb908490614697565b90915550505050565b600054600e546301000000900460ff16612bed57600080fd5b60008211612c3d5760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610dac565b601a54821115612cb55760405162461bcd60e51b815260206004820152603960248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201527f207065722057616c6c657420696e2074686973205068617365000000000000006064820152608401610dac565b600f54612cc28383614697565b1115612d105760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e736044820152606401610dac565b333214612d1c57600080fd5b81601154612d2a91906146af565b341015612ba25760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610dac565b600c5473ffffffffffffffffffffffffffffffffffffffff163314612de05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b73ffffffffffffffffffffffffffffffffffffffff8116612e695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610dac565b61169d816136e3565b600c5473ffffffffffffffffffffffffffffffffffffffff163314612ed95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b601755565b60008281526005602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60075473ffffffffffffffffffffffffffffffffffffffff841660009081526009602052604081205490918391612f9690866146af565b612fa09190614779565b612faa919061478d565b949350505050565b804710156130025760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610dac565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d806000811461305c576040519150601f19603f3d011682016040523d82523d6000602084013e613061565b606091505b5050905080610fc05760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610dac565b60006130e3826135bd565b805190915060009073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061314157503361312984610d31565b73ffffffffffffffffffffffffffffffffffffffff16145b80613153575081516131539033610a8b565b9050806131c85760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610dac565b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461326d5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e657200000000000000000000000000000000000000000000000000006064820152608401610dac565b73ffffffffffffffffffffffffffffffffffffffff84166132f65760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610dac565b6133066000848460000151612ede565b73ffffffffffffffffffffffffffffffffffffffff858116600090815260046020908152604080832080547fffffffffffffffffffffffffffffffff000000000000000000000000000000008082166fffffffffffffffffffffffffffffffff9283167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080547fffffffff0000000000000000000000000000000000000000000000000000000016909117740100000000000000000000000000000000000000004267ffffffffffffffff16021790559086018083529120549091166134a657613423816000541190565b156134a6578251600082815260036020908152604090912080549186015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090921673ffffffffffffffffffffffffffffffffffffffff909316929092171790555b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600061356c613566846040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b83613a77565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161490509392505050565b611da6828260405180602001604052806000815250613a9b565b60408051808201909152600080825260208201526135dc826000541190565b61364e5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152608401610dac565b815b60008181526003602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff1691830191909152156136bb579392505050565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01613650565b600c805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600073ffffffffffffffffffffffffffffffffffffffff84163b15613928576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906137d19033908990889088906004016147a4565b6020604051808303816000875af192505050801561382a575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252613827918101906147ed565b60015b6138dd573d808015613858576040519150601f19603f3d011682016040523d82523d6000602084013e61385d565b606091505b5080516000036138d55760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610dac565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612faa565b506001949350505050565b6060600d8054610cae90614615565b60608160000361398557505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156139af57806139998161480a565b91506139a89050600a83614779565b9150613989565b60008167ffffffffffffffff8111156139ca576139ca61441b565b6040519080825280601f01601f1916602001820160405280156139f4576020820181803683370190505b5090505b8415612faa57613a0960018361478d565b9150613a16600a86614842565b613a21906030614697565b60f81b818381518110613a3657613a366146ec565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613a70600a86614779565b94506139f8565b6000806000613a868585613aa8565b91509150613a9381613b16565b509392505050565b610fc08383836001613d02565b6000808251604103613ade5760208301516040840151606085015160001a613ad287828585613fcd565b94509450505050613b0f565b8251604003613b075760208301516040840151613afc8683836140e5565b935093505050613b0f565b506000905060025b9250929050565b6000816004811115613b2a57613b2a614856565b03613b325750565b6001816004811115613b4657613b46614856565b03613b935760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610dac565b6002816004811115613ba757613ba7614856565b03613bf45760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610dac565b6003816004811115613c0857613c08614856565b03613c7b5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610dac565b6004816004811115613c8f57613c8f614856565b0361169d5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610dac565b60005473ffffffffffffffffffffffffffffffffffffffff8516613d8e5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610dac565b83600003613e045760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201527f72207468616e20300000000000000000000000000000000000000000000000006064820152608401610dac565b73ffffffffffffffffffffffffffffffffffffffff8516600081815260046020908152604080832080547001000000000000000000000000000000007fffffffffffffffffffffffffffffffff0000000000000000000000000000000082166fffffffffffffffffffffffffffffffff9283168c01831690811782900483168c01909216021790558483526003909152812080547fffffffff0000000000000000000000000000000000000000000000000000000016909217740100000000000000000000000000000000000000004267ffffffffffffffff16021790915581905b85811015613fc457604051829073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315613fb857613f46600088848861375a565b613fb85760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610dac565b60019182019101613ee6565b50600055613503565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561400457506000905060036140dc565b8460ff16601b1415801561401c57508460ff16601c14155b1561402d57506000905060046140dc565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015614081573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff81166140d5576000600192509250506140dc565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83168161411b60ff86901c601b614697565b905061412987828885613fcd565b935093505050935093915050565b82805461414390614615565b90600052602060002090601f01602090048101928261416557600085556141ab565b82601f1061417e57805160ff19168380011785556141ab565b828001600101855582156141ab579182015b828111156141ab578251825591602001919060010190614190565b50611b3c9291505b80821115611b3c57600081556001016141b3565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461169d57600080fd5b60006020828403121561420757600080fd5b813561284d816141c7565b73ffffffffffffffffffffffffffffffffffffffff8116811461169d57600080fd5b60006020828403121561424657600080fd5b813561284d81614212565b60005b8381101561426c578181015183820152602001614254565b838111156127735750506000910152565b60008151808452614295816020860160208601614251565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061284d602083018461427d565b6000602082840312156142ec57600080fd5b5035919050565b6000806040838503121561430657600080fd5b823561431181614212565b946020939093013593505050565b8035801515811461432f57600080fd5b919050565b60006020828403121561434657600080fd5b61284d8261431f565b60008060006060848603121561436457600080fd5b833561436f81614212565b9250602084013561437f81614212565b929592945050506040919091013590565b600080600080606085870312156143a657600080fd5b84356143b181614212565b9350602085013567ffffffffffffffff808211156143ce57600080fd5b818701915087601f8301126143e257600080fd5b8135818111156143f157600080fd5b88602082850101111561440357600080fd5b95986020929092019750949560400135945092505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff808411156144655761446561441b565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019082821181831017156144ab576144ab61441b565b816040528093508581528686860111156144c457600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156144f057600080fd5b813567ffffffffffffffff81111561450757600080fd5b8201601f8101841361451857600080fd5b612faa8482356020840161444a565b6000806040838503121561453a57600080fd5b823561454581614212565b91506145536020840161431f565b90509250929050565b6000806000806080858703121561457257600080fd5b843561457d81614212565b9350602085013561458d81614212565b925060408501359150606085013567ffffffffffffffff8111156145b057600080fd5b8501601f810187136145c157600080fd5b6145d08782356020840161444a565b91505092959194509250565b600080604083850312156145ef57600080fd5b82356145fa81614212565b9150602083013561460a81614212565b809150509250929050565b600181811c9082168061462957607f821691505b602082108103614662577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082198211156146aa576146aa614668565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146e7576146e7614668565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000835161472d818460208801614251565b835190830190614741818360208801614251565b01949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826147885761478861474a565b500490565b60008282101561479f5761479f614668565b500390565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526147e3608083018461427d565b9695505050505050565b6000602082840312156147ff57600080fd5b815161284d816141c7565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361483b5761483b614668565b5060010190565b6000826148515761485161474a565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fdfea2646970667358221220353e013a406f3fab2f09f0b92031137781235d8e2609fc7f76997132de156b6e64736f6c634300080d0033

Deployed Bytecode

0x6080604052600436106103905760003560e01c8063833b9499116101dc578063a8979f5411610102578063e33b7de3116100a0578063efd0cbf91161006f578063efd0cbf914610af9578063f2fde38b14610b0c578063f6be33f914610b2c578063f99aa9ba14610b4c57600080fd5b8063e33b7de314610a5b578063e985e9c514610a70578063eb62e2b414610ac6578063ef01c81b14610ae657600080fd5b8063b88d4fde116100dc578063b88d4fde146109b8578063c87b56dd146109d8578063ce7c2ac2146109f8578063d1a6610314610a3b57600080fd5b8063a8979f5414610959578063aaee143214610979578063b5917fb81461099857600080fd5b806390bcd1541161017a5780639852595c116101495780639852595c146108b55780639c134998146108f8578063a22cb46514610918578063a3330d251461093857600080fd5b806390bcd1541461084657806391b7f5ed1461086057806395d89b4114610880578063972a79c61461089557600080fd5b80638b83209b116101b65780638b83209b146107c55780638ba4cc3c146107e55780638da5cb5b146108055780638f526cfd1461083057600080fd5b8063833b94991461076f578063874da338146107855780638aca408c146107a557600080fd5b806337777e30116102c15780635073dafe1161025f5780636c19e7831161022e5780636c19e783146106fa57806370a082311461071a578063715018a61461073a5780637969c2e21461074f57600080fd5b80635073dafe1461069457806355f804b3146106a75780636352211e146106c757806364326329146106e757600080fd5b806342842e0e1161029b57806342842e0e14610621578063482e198f146106415780634ae879b6146106545780634f6ccce71461067457600080fd5b806337777e30146105e45780633a98ef39146106045780633ccfd60b1461061957600080fd5b806318160ddd1161032e57806323b872dd1161030857806323b872dd1461056e5780632f745c591461058e57806332cb6b0c146105ae578063352d9dd5146105c457600080fd5b806318160ddd14610519578063191655871461052e57806322e46d281461054e57600080fd5b8063081812fc1161036a578063081812fc1461047d5780630928fc22146104c2578063095ea7b3146104d7578063119f5215146104f957600080fd5b806301ffc9a7146103eb578063066589fb1461042057806306fdde031461045b57600080fd5b366103e6577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770336040805173ffffffffffffffffffffffffffffffffffffffff90921682523460208301520160405180910390a1005b600080fd5b3480156103f757600080fd5b5061040b6104063660046141f5565b610b6e565b60405190151581526020015b60405180910390f35b34801561042c57600080fd5b5061044d61043b366004614234565b601d6020526000908152604090205481565b604051908152602001610417565b34801561046757600080fd5b50610470610c9f565b60405161041791906142c7565b34801561048957600080fd5b5061049d6104983660046142da565b610d31565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610417565b3480156104ce57600080fd5b50610470610dde565b3480156104e357600080fd5b506104f76104f23660046142f3565b610e6c565b005b34801561050557600080fd5b506104f76105143660046142da565b610fc5565b34801561052557600080fd5b5060005461044d565b34801561053a57600080fd5b506104f7610549366004614234565b611031565b34801561055a57600080fd5b506104f7610569366004614334565b611242565b34801561057a57600080fd5b506104f761058936600461434f565b6112e0565b34801561059a57600080fd5b5061044d6105a93660046142f3565b6112eb565b3480156105ba57600080fd5b5061044d600f5481565b3480156105d057600080fd5b506104f76105df366004614334565b6114a8565b3480156105f057600080fd5b506104f76105ff366004614334565b611549565b34801561061057600080fd5b5060075461044d565b6104f76115e1565b34801561062d57600080fd5b506104f761063c36600461434f565b6116a0565b6104f761064f366004614390565b6116bb565b34801561066057600080fd5b506104f761066f3660046142da565b611a58565b34801561068057600080fd5b5061044d61068f3660046142da565b611ac4565b6104f76106a2366004614390565b611b40565b3480156106b357600080fd5b506104f76106c23660046144de565b611d2c565b3480156106d357600080fd5b5061049d6106e23660046142da565b611daa565b6104f76106f5366004614390565b611dbc565b34801561070657600080fd5b506104f7610715366004614234565b611ffe565b34801561072657600080fd5b5061044d610735366004614234565b6120b5565b34801561074657600080fd5b506104f761217b565b34801561075b57600080fd5b506104f761076a3660046142da565b6121ee565b34801561077b57600080fd5b5061044d60115481565b34801561079157600080fd5b506104f76107a03660046142da565b61225a565b3480156107b157600080fd5b506104f76107c0366004614334565b6122c6565b3480156107d157600080fd5b5061049d6107e03660046142da565b612366565b3480156107f157600080fd5b506104f76108003660046142f3565b6123a3565b34801561081157600080fd5b50600c5473ffffffffffffffffffffffffffffffffffffffff1661049d565b34801561083c57600080fd5b5061044d60105481565b34801561085257600080fd5b50600e5461040b9060ff1681565b34801561086c57600080fd5b506104f761087b3660046142da565b61242f565b34801561088c57600080fd5b5061047061249b565b3480156108a157600080fd5b506104f76108b03660046142da565b6124aa565b3480156108c157600080fd5b5061044d6108d0366004614234565b73ffffffffffffffffffffffffffffffffffffffff166000908152600a602052604090205490565b34801561090457600080fd5b50600e5461040b9062010000900460ff1681565b34801561092457600080fd5b506104f7610933366004614527565b612516565b34801561094457600080fd5b50600e5461040b906301000000900460ff1681565b34801561096557600080fd5b506104f76109743660046142da565b612612565b34801561098557600080fd5b50600e5461040b90610100900460ff1681565b3480156109a457600080fd5b506104f76109b33660046142da565b61267e565b3480156109c457600080fd5b506104f76109d336600461455c565b6126ea565b3480156109e457600080fd5b506104706109f33660046142da565b612779565b348015610a0457600080fd5b5061044d610a13366004614234565b73ffffffffffffffffffffffffffffffffffffffff1660009081526009602052604090205490565b348015610a4757600080fd5b506104f7610a56366004614334565b612854565b348015610a6757600080fd5b5060085461044d565b348015610a7c57600080fd5b5061040b610a8b3660046145dc565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260066020908152604080832093909416825291909152205460ff1690565b348015610ad257600080fd5b506104f7610ae13660046142da565b6128f3565b6104f7610af43660046142da565b61295f565b6104f7610b073660046142da565b612bd4565b348015610b1857600080fd5b506104f7610b27366004614234565b612d79565b348015610b3857600080fd5b506104f7610b473660046142da565b612e72565b348015610b5857600080fd5b50600e5461040b90640100000000900460ff1681565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480610c0157507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610c4d57507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b80610c9957507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b606060018054610cae90614615565b80601f0160208091040260200160405190810160405280929190818152602001828054610cda90614615565b8015610d275780601f10610cfc57610100808354040283529160200191610d27565b820191906000526020600020905b815481529060010190602001808311610d0a57829003601f168201915b5050505050905090565b6000610d3e826000541190565b610db55760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e0000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600d8054610deb90614615565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1790614615565b8015610e645780601f10610e3957610100808354040283529160200191610e64565b820191906000526020600020905b815481529060010190602001808311610e4757829003601f168201915b505050505081565b6000610e7782611daa565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f1a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610dac565b3373ffffffffffffffffffffffffffffffffffffffff82161480610f435750610f438133610a8b565b610fb55760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610dac565b610fc0838383612ede565b505050565b600c5473ffffffffffffffffffffffffffffffffffffffff16331461102c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b601255565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600960205260409020546110c95760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610dac565b60006110d460085490565b6110de9047614697565b9050600061111883836111138673ffffffffffffffffffffffffffffffffffffffff166000908152600a602052604090205490565b612f5f565b9050806000036111905760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610dac565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600a6020526040812080548392906111c5908490614697565b9250508190555080600860008282546111de9190614697565b909155506111ee90508382612fb2565b6040805173ffffffffffffffffffffffffffffffffffffffff85168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146112a95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b600e8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b610fc08383836130d8565b60006112f6836120b5565b821061136a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152608401610dac565b600080549080805b838110156114395760008181526003602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff1691830191909152156113e357805192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114305786840361142957509350610c9992505050565b6001909301925b50600101611372565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610dac565b600c5473ffffffffffffffffffffffffffffffffffffffff16331461150f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b600e8054911515640100000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffff909216919091179055565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146115b05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146116485760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b604051600090339047908381818185875af1925050503d806000811461168a576040519150601f19603f3d011682016040523d82523d6000602084013e61168f565b606091505b505090508061169d57600080fd5b50565b610fc0838383604051806020016040528060008152506126ea565b600054600e5462010000900460ff166116d357600080fd5b60195482111561174b5760405162461bcd60e51b815260206004820152603960248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201527f207065722057616c6c657420696e2074686973205068617365000000000000006064820152608401610dac565b600f546117588383614697565b11156117a65760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e736044820152606401610dac565b816011546117b491906146af565b3410156118035760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610dac565b3373ffffffffffffffffffffffffffffffffffffffff8616146118685760405162461bcd60e51b815260206004820152601060248201527f4e6f7420796f757220766f7563686572000000000000000000000000000000006044820152606401610dac565b60185473ffffffffffffffffffffffffffffffffffffffff86166000908152601d602052604090205461189c908490614697565b11156119105760405162461bcd60e51b815260206004820152602b60248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201527f207065722057616c6c65740000000000000000000000000000000000000000006064820152608401610dac565b6040517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606087901b1660208201526000906034016040516020818303038152906040528051906020012090506119c0600e60059054906101000a900473ffffffffffffffffffffffffffffffffffffffff168287878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061350a92505050565b611a0c5760405162461bcd60e51b815260206004820152600f60248201527f496e76616c696420766f756368657200000000000000000000000000000000006044820152606401610dac565b611a1686846135a3565b73ffffffffffffffffffffffffffffffffffffffff86166000908152601d602052604081208054859290611a4b908490614697565b9091555050505050505050565b600c5473ffffffffffffffffffffffffffffffffffffffff163314611abf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b601455565b600080548210611b3c5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e647300000000000000000000000000000000000000000000000000000000006064820152608401610dac565b5090565b600054600e54610100900460ff16611b5757600080fd5b601754821115611bcf5760405162461bcd60e51b815260206004820152603960248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201527f207065722057616c6c657420696e2074686973205068617365000000000000006064820152608401610dac565b600f54611bdc8383614697565b1115611c2a5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e736044820152606401610dac565b81601154611c3891906146af565b341015611c875760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610dac565b3373ffffffffffffffffffffffffffffffffffffffff861614611cec5760405162461bcd60e51b815260206004820152601060248201527f4e6f7420796f757220766f7563686572000000000000000000000000000000006044820152606401610dac565b333214611cf857600080fd5b60165473ffffffffffffffffffffffffffffffffffffffff86166000908152601d602052604090205461189c908490614697565b600c5473ffffffffffffffffffffffffffffffffffffffff163314611d935760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b8051611da690600d906020840190614137565b5050565b6000611db5826135bd565b5192915050565b600054600e5460ff16611dce57600080fd5b601354821115611e465760405162461bcd60e51b815260206004820152603960248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201527f207065722057616c6c657420696e2074686973205068617365000000000000006064820152608401610dac565b600f54611e538383614697565b1115611ea15760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e736044820152606401610dac565b601054611eae8383614697565b1115611efc5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e736044820152606401610dac565b81601154611f0a91906146af565b341015611f595760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610dac565b3373ffffffffffffffffffffffffffffffffffffffff861614611fbe5760405162461bcd60e51b815260206004820152601060248201527f4e6f7420796f757220766f7563686572000000000000000000000000000000006044820152606401610dac565b333214611fca57600080fd5b60125473ffffffffffffffffffffffffffffffffffffffff86166000908152601d602052604090205461189c908490614697565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146120655760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b600e805473ffffffffffffffffffffffffffffffffffffffff90921665010000000000027fffffffffffffff0000000000000000000000000000000000000000ffffffffff909216919091179055565b600073ffffffffffffffffffffffffffffffffffffffff82166121405760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610dac565b5073ffffffffffffffffffffffffffffffffffffffff166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146121e25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b6121ec60006136e3565b565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146122555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b601355565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146122c15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b601555565b600c5473ffffffffffffffffffffffffffffffffffffffff16331461232d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b600e80549115156301000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff909216919091179055565b6000600b828154811061237b5761237b6146ec565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1692915050565b600c5473ffffffffffffffffffffffffffffffffffffffff16331461240a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b600054600f5461241a8383614697565b111561242557600080fd5b610fc083836135a3565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146124965760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b601155565b606060028054610cae90614615565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146125115760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b601855565b3373ffffffffffffffffffffffffffffffffffffffff83160361257b5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610dac565b33600081815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146126795760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b601955565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146126e55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b601655565b6126f58484846130d8565b6127018484848461375a565b6127735760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610dac565b50505050565b6060612786826000541190565b6127f85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610dac565b6000612802613933565b90508051600003612822576040518060200160405280600081525061284d565b8061282c84613942565b60405160200161283d92919061471b565b6040516020818303038152906040525b9392505050565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146128bb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b600e805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b600c5473ffffffffffffffffffffffffffffffffffffffff16331461295a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b601a55565b600054600e54640100000000900460ff1661297957600080fd5b6014548211156129f15760405162461bcd60e51b815260206004820152603960248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201527f207065722057616c6c657420696e2074686973205068617365000000000000006064820152608401610dac565b600f546129fe8383614697565b1115612a4c5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e736044820152606401610dac565b601054612a598383614697565b1115612aa75760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e736044820152606401610dac565b81601154612ab591906146af565b341015612b045760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610dac565b333214612b1057600080fd5b601454336000908152601d6020526040902054612b2e908490614697565b1115612ba25760405162461bcd60e51b815260206004820152602b60248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201527f207065722057616c6c65740000000000000000000000000000000000000000006064820152608401610dac565b612bac33836135a3565b336000908152601d602052604081208054849290612bcb908490614697565b90915550505050565b600054600e546301000000900460ff16612bed57600080fd5b60008211612c3d5760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610dac565b601a54821115612cb55760405162461bcd60e51b815260206004820152603960248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201527f207065722057616c6c657420696e2074686973205068617365000000000000006064820152608401610dac565b600f54612cc28383614697565b1115612d105760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e736044820152606401610dac565b333214612d1c57600080fd5b81601154612d2a91906146af565b341015612ba25760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610dac565b600c5473ffffffffffffffffffffffffffffffffffffffff163314612de05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b73ffffffffffffffffffffffffffffffffffffffff8116612e695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610dac565b61169d816136e3565b600c5473ffffffffffffffffffffffffffffffffffffffff163314612ed95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dac565b601755565b60008281526005602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60075473ffffffffffffffffffffffffffffffffffffffff841660009081526009602052604081205490918391612f9690866146af565b612fa09190614779565b612faa919061478d565b949350505050565b804710156130025760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610dac565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d806000811461305c576040519150601f19603f3d011682016040523d82523d6000602084013e613061565b606091505b5050905080610fc05760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610dac565b60006130e3826135bd565b805190915060009073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061314157503361312984610d31565b73ffffffffffffffffffffffffffffffffffffffff16145b80613153575081516131539033610a8b565b9050806131c85760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610dac565b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461326d5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e657200000000000000000000000000000000000000000000000000006064820152608401610dac565b73ffffffffffffffffffffffffffffffffffffffff84166132f65760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610dac565b6133066000848460000151612ede565b73ffffffffffffffffffffffffffffffffffffffff858116600090815260046020908152604080832080547fffffffffffffffffffffffffffffffff000000000000000000000000000000008082166fffffffffffffffffffffffffffffffff9283167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080547fffffffff0000000000000000000000000000000000000000000000000000000016909117740100000000000000000000000000000000000000004267ffffffffffffffff16021790559086018083529120549091166134a657613423816000541190565b156134a6578251600082815260036020908152604090912080549186015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090921673ffffffffffffffffffffffffffffffffffffffff909316929092171790555b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600061356c613566846040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b83613a77565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161490509392505050565b611da6828260405180602001604052806000815250613a9b565b60408051808201909152600080825260208201526135dc826000541190565b61364e5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152608401610dac565b815b60008181526003602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff1691830191909152156136bb579392505050565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01613650565b600c805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600073ffffffffffffffffffffffffffffffffffffffff84163b15613928576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906137d19033908990889088906004016147a4565b6020604051808303816000875af192505050801561382a575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252613827918101906147ed565b60015b6138dd573d808015613858576040519150601f19603f3d011682016040523d82523d6000602084013e61385d565b606091505b5080516000036138d55760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610dac565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612faa565b506001949350505050565b6060600d8054610cae90614615565b60608160000361398557505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156139af57806139998161480a565b91506139a89050600a83614779565b9150613989565b60008167ffffffffffffffff8111156139ca576139ca61441b565b6040519080825280601f01601f1916602001820160405280156139f4576020820181803683370190505b5090505b8415612faa57613a0960018361478d565b9150613a16600a86614842565b613a21906030614697565b60f81b818381518110613a3657613a366146ec565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613a70600a86614779565b94506139f8565b6000806000613a868585613aa8565b91509150613a9381613b16565b509392505050565b610fc08383836001613d02565b6000808251604103613ade5760208301516040840151606085015160001a613ad287828585613fcd565b94509450505050613b0f565b8251604003613b075760208301516040840151613afc8683836140e5565b935093505050613b0f565b506000905060025b9250929050565b6000816004811115613b2a57613b2a614856565b03613b325750565b6001816004811115613b4657613b46614856565b03613b935760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610dac565b6002816004811115613ba757613ba7614856565b03613bf45760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610dac565b6003816004811115613c0857613c08614856565b03613c7b5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610dac565b6004816004811115613c8f57613c8f614856565b0361169d5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610dac565b60005473ffffffffffffffffffffffffffffffffffffffff8516613d8e5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610dac565b83600003613e045760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201527f72207468616e20300000000000000000000000000000000000000000000000006064820152608401610dac565b73ffffffffffffffffffffffffffffffffffffffff8516600081815260046020908152604080832080547001000000000000000000000000000000007fffffffffffffffffffffffffffffffff0000000000000000000000000000000082166fffffffffffffffffffffffffffffffff9283168c01831690811782900483168c01909216021790558483526003909152812080547fffffffff0000000000000000000000000000000000000000000000000000000016909217740100000000000000000000000000000000000000004267ffffffffffffffff16021790915581905b85811015613fc457604051829073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315613fb857613f46600088848861375a565b613fb85760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610dac565b60019182019101613ee6565b50600055613503565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561400457506000905060036140dc565b8460ff16601b1415801561401c57508460ff16601c14155b1561402d57506000905060046140dc565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015614081573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff81166140d5576000600192509250506140dc565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83168161411b60ff86901c601b614697565b905061412987828885613fcd565b935093505050935093915050565b82805461414390614615565b90600052602060002090601f01602090048101928261416557600085556141ab565b82601f1061417e57805160ff19168380011785556141ab565b828001600101855582156141ab579182015b828111156141ab578251825591602001919060010190614190565b50611b3c9291505b80821115611b3c57600081556001016141b3565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461169d57600080fd5b60006020828403121561420757600080fd5b813561284d816141c7565b73ffffffffffffffffffffffffffffffffffffffff8116811461169d57600080fd5b60006020828403121561424657600080fd5b813561284d81614212565b60005b8381101561426c578181015183820152602001614254565b838111156127735750506000910152565b60008151808452614295816020860160208601614251565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061284d602083018461427d565b6000602082840312156142ec57600080fd5b5035919050565b6000806040838503121561430657600080fd5b823561431181614212565b946020939093013593505050565b8035801515811461432f57600080fd5b919050565b60006020828403121561434657600080fd5b61284d8261431f565b60008060006060848603121561436457600080fd5b833561436f81614212565b9250602084013561437f81614212565b929592945050506040919091013590565b600080600080606085870312156143a657600080fd5b84356143b181614212565b9350602085013567ffffffffffffffff808211156143ce57600080fd5b818701915087601f8301126143e257600080fd5b8135818111156143f157600080fd5b88602082850101111561440357600080fd5b95986020929092019750949560400135945092505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff808411156144655761446561441b565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019082821181831017156144ab576144ab61441b565b816040528093508581528686860111156144c457600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156144f057600080fd5b813567ffffffffffffffff81111561450757600080fd5b8201601f8101841361451857600080fd5b612faa8482356020840161444a565b6000806040838503121561453a57600080fd5b823561454581614212565b91506145536020840161431f565b90509250929050565b6000806000806080858703121561457257600080fd5b843561457d81614212565b9350602085013561458d81614212565b925060408501359150606085013567ffffffffffffffff8111156145b057600080fd5b8501601f810187136145c157600080fd5b6145d08782356020840161444a565b91505092959194509250565b600080604083850312156145ef57600080fd5b82356145fa81614212565b9150602083013561460a81614212565b809150509250929050565b600181811c9082168061462957607f821691505b602082108103614662577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082198211156146aa576146aa614668565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146e7576146e7614668565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000835161472d818460208801614251565b835190830190614741818360208801614251565b01949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826147885761478861474a565b500490565b60008282101561479f5761479f614668565b500390565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526147e3608083018461427d565b9695505050505050565b6000602082840312156147ff57600080fd5b815161284d816141c7565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361483b5761483b614668565b5060010190565b6000826148515761485161474a565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fdfea2646970667358221220353e013a406f3fab2f09f0b92031137781235d8e2609fc7f76997132de156b6e64736f6c634300080d0033

Deployed Bytecode Sourcemap

53506:8895:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25389:40;12192:10;25389:40;;;218:42:1;206:55;;;188:74;;25419:9:0;293:2:1;278:18;;271:34;161:18;25389:40:0;;;;;;;53506:8895;;;;;40355:372;;;;;;;;;;-1:-1:-1;40355:372:0;;;;;:::i;:::-;;:::i;:::-;;;913:14:1;;906:22;888:41;;876:2;861:18;40355:372:0;;;;;;;;54886:53;;;;;;;;;;-1:-1:-1;54886:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;1497:25:1;;;1485:2;1470:18;54886:53:0;1351:177:1;42241:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;43803:214::-;;;;;;;;;;-1:-1:-1;43803:214:0;;;;;:::i;:::-;;:::i;:::-;;;2704:42:1;2692:55;;;2674:74;;2662:2;2647:18;43803:214:0;2528:226:1;53594:30:0;;;;;;;;;;;;;:::i;43324:413::-;;;;;;;;;;-1:-1:-1;43324:413:0;;;;;:::i;:::-;;:::i;:::-;;60807:122;;;;;;;;;;-1:-1:-1;60807:122:0;;;;;:::i;:::-;;:::i;38612:100::-;;;;;;;;;;-1:-1:-1;38665:7:0;38692:12;38612:100;;26599:566;;;;;;;;;;-1:-1:-1;26599:566:0;;;;;:::i;:::-;;:::i;60456:101::-;;;;;;;;;;-1:-1:-1;60456:101:0;;;;;:::i;:::-;;:::i;44679:162::-;;;;;;;;;;-1:-1:-1;44679:162:0;;;;;:::i;:::-;;:::i;39276:1007::-;;;;;;;;;;-1:-1:-1;39276:1007:0;;;;;:::i;:::-;;:::i;53995:32::-;;;;;;;;;;;;;;;;60213:101;;;;;;;;;;-1:-1:-1;60213:101:0;;;;;:::i;:::-;;:::i;60347:::-;;;;;;;;;;-1:-1:-1;60347:101:0;;;;;:::i;:::-;;:::i;25520:91::-;;;;;;;;;;-1:-1:-1;25591:12:0;;25520:91;;62246:152;;;:::i;44912:177::-;;;;;;;;;;-1:-1:-1;44912:177:0;;;;;:::i;:::-;;:::i;57098:940::-;;;;;;:::i;:::-;;:::i;60937:134::-;;;;;;;;;;-1:-1:-1;60937:134:0;;;;;:::i;:::-;;:::i;38789:187::-;;;;;;;;;;-1:-1:-1;38789:187:0;;;;;:::i;:::-;;:::i;56110:983::-;;;;;;:::i;:::-;;:::i;62004:109::-;;;;;;;;;;-1:-1:-1;62004:109:0;;;;;:::i;:::-;;:::i;42050:124::-;;;;;;;;;;-1:-1:-1;42050:124:0;;;;;:::i;:::-;;:::i;55028:1077::-;;;;;;:::i;:::-;;:::i;59986:90::-;;;;;;;;;;-1:-1:-1;59986:90:0;;;;;:::i;:::-;;:::i;40791:221::-;;;;;;;;;;-1:-1:-1;40791:221:0;;;;;:::i;:::-;;:::i;13942:94::-;;;;;;;;;;;;;:::i;61367:114::-;;;;;;;;;;-1:-1:-1;61367:114:0;;;;;:::i;:::-;;:::i;54105:44::-;;;;;;;;;;;;;;;;61489:126;;;;;;;;;;-1:-1:-1;61489:126:0;;;;;:::i;:::-;;:::i;60674:101::-;;;;;;;;;;-1:-1:-1;60674:101:0;;;;;:::i;:::-;;:::i;26299:100::-;;;;;;;;;;-1:-1:-1;26299:100:0;;;;;:::i;:::-;;:::i;59538:202::-;;;;;;;;;;-1:-1:-1;59538:202:0;;;;;:::i;:::-;;:::i;13291:87::-;;;;;;;;;;-1:-1:-1;13364:6:0;;;;13291:87;;54034:38;;;;;;;;;;;;;;;;53653:34;;;;;;;;;;-1:-1:-1;53653:34:0;;;;;;;;60103:102;;;;;;;;;;-1:-1:-1;60103:102:0;;;;;:::i;:::-;;:::i;42410:104::-;;;;;;;;;;;;;:::i;61209:122::-;;;;;;;;;;-1:-1:-1;61209:122:0;;;;;:::i;:::-;;:::i;26097:109::-;;;;;;;;;;-1:-1:-1;26097:109:0;;;;;:::i;:::-;26180:18;;26153:7;26180:18;;;:9;:18;;;;;;;26097:109;53735:34;;;;;;;;;;-1:-1:-1;53735:34:0;;;;;;;;;;;44089:288;;;;;;;;;;-1:-1:-1;44089:288:0;;;;;:::i;:::-;;:::i;53776:34::-;;;;;;;;;;-1:-1:-1;53776:34:0;;;;;;;;;;;61745:114;;;;;;;;;;-1:-1:-1;61745:114:0;;;;;:::i;:::-;;:::i;53694:34::-;;;;;;;;;;-1:-1:-1;53694:34:0;;;;;;;;;;;61079:122;;;;;;;;;;-1:-1:-1;61079:122:0;;;;;:::i;:::-;;:::i;45160:355::-;;;;;;;;;;-1:-1:-1;45160:355:0;;;;;:::i;:::-;;:::i;42585:335::-;;;;;;;;;;-1:-1:-1;42585:335:0;;;;;:::i;:::-;;:::i;25893:105::-;;;;;;;;;;-1:-1:-1;25893:105:0;;;;;:::i;:::-;25974:16;;25947:7;25974:16;;;:7;:16;;;;;;;25893:105;60565:101;;;;;;;;;;-1:-1:-1;60565:101:0;;;;;:::i;:::-;;:::i;25705:95::-;;;;;;;;;;-1:-1:-1;25778:14:0;;25705:95;;44448:164;;;;;;;;;;-1:-1:-1;44448:164:0;;;;;:::i;:::-;44569:25;;;;44545:4;44569:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;44448:164;61867:113;;;;;;;;;;-1:-1:-1;61867:113:0;;;;;:::i;:::-;;:::i;58687:829::-;;;;;;:::i;:::-;;:::i;58043:638::-;;;;;;:::i;:::-;;:::i;14191:192::-;;;;;;;;;;-1:-1:-1;14191:192:0;;;;;:::i;:::-;;:::i;61623:114::-;;;;;;;;;;-1:-1:-1;61623:114:0;;;;;:::i;:::-;;:::i;53843:34::-;;;;;;;;;;-1:-1:-1;53843:34:0;;;;;;;;;;;40355:372;40457:4;40494:40;;;40509:25;40494:40;;:105;;-1:-1:-1;40551:48:0;;;40566:33;40551:48;40494:105;:172;;;-1:-1:-1;40616:50:0;;;40631:35;40616:50;40494:172;:225;;;-1:-1:-1;30867:25:0;30852:40;;;;40683:36;40474:245;40355:372;-1:-1:-1;;40355:372:0:o;42241:100::-;42295:13;42328:5;42321:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42241:100;:::o;43803:214::-;43871:7;43899:16;43907:7;45827:4;45861:12;-1:-1:-1;45851:22:0;45770:111;43899:16;43891:74;;;;-1:-1:-1;;;43891:74:0;;8447:2:1;43891:74:0;;;8429:21:1;8486:2;8466:18;;;8459:30;8525:34;8505:18;;;8498:62;8596:15;8576:18;;;8569:43;8629:19;;43891:74:0;;;;;;;;;-1:-1:-1;43985:24:0;;;;:15;:24;;;;;;;;;43803:214::o;53594:30::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43324:413::-;43397:13;43413:24;43429:7;43413:15;:24::i;:::-;43397:40;;43462:5;43456:11;;:2;:11;;;43448:58;;;;-1:-1:-1;;;43448:58:0;;8861:2:1;43448:58:0;;;8843:21:1;8900:2;8880:18;;;8873:30;8939:34;8919:18;;;8912:62;9010:4;8990:18;;;8983:32;9032:19;;43448:58:0;8659:398:1;43448:58:0;12192:10;43541:21;;;;;:62;;-1:-1:-1;43566:37:0;43583:5;12192:10;44448:164;:::i;43566:37::-;43519:169;;;;-1:-1:-1;;;43519:169:0;;9264:2:1;43519:169:0;;;9246:21:1;9303:2;9283:18;;;9276:30;9342:34;9322:18;;;9315:62;9413:27;9393:18;;;9386:55;9458:19;;43519:169:0;9062:421:1;43519:169:0;43701:28;43710:2;43714:7;43723:5;43701:8;:28::i;:::-;43386:351;43324:413;;:::o;60807:122::-;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;9690:2:1;13503:68:0;;;9672:21:1;;;9709:18;;;9702:30;9768:34;9748:18;;;9741:62;9820:18;;13503:68:0;9488:356:1;13503:68:0;60889:22:::1;:32:::0;60807:122::o;26599:566::-;26675:16;;;26694:1;26675:16;;;:7;:16;;;;;;26667:71;;;;-1:-1:-1;;;26667:71:0;;10051:2:1;26667:71:0;;;10033:21:1;10090:2;10070:18;;;10063:30;10129:34;10109:18;;;10102:62;10200:8;10180:18;;;10173:36;10226:19;;26667:71:0;9849:402:1;26667:71:0;26751:21;26799:15;25778:14;;;25705:95;26799:15;26775:39;;:21;:39;:::i;:::-;26751:63;;26825:15;26843:58;26859:7;26868:13;26883:17;26892:7;26180:18;;26153:7;26180:18;;;:9;:18;;;;;;;26097:109;26883:17;26843:15;:58::i;:::-;26825:76;;26922:7;26933:1;26922:12;26914:68;;;;-1:-1:-1;;;26914:68:0;;10780:2:1;26914:68:0;;;10762:21:1;10819:2;10799:18;;;10792:30;10858:34;10838:18;;;10831:62;10929:13;10909:18;;;10902:41;10960:19;;26914:68:0;10578:407:1;26914:68:0;26995:18;;;;;;;:9;:18;;;;;:29;;27017:7;;26995:18;:29;;27017:7;;26995:29;:::i;:::-;;;;;;;;27053:7;27035:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;27073:35:0;;-1:-1:-1;27091:7:0;27100;27073:17;:35::i;:::-;27124:33;;;218:42:1;206:55;;188:74;;293:2;278:18;;271:34;;;27124:33:0;;161:18:1;27124:33:0;;;;;;;26656:509;;26599:566;:::o;60456:101::-;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;9690:2:1;13503:68:0;;;9672:21:1;;;9709:18;;;9702:30;9768:34;9748:18;;;9741:62;9820:18;;13503:68:0;9488:356:1;13503:68:0;60525:14:::1;:24:::0;;;::::1;;;;::::0;;;::::1;::::0;;;::::1;::::0;;60456:101::o;44679:162::-;44805:28;44815:4;44821:2;44825:7;44805:9;:28::i;39276:1007::-;39365:7;39401:16;39411:5;39401:9;:16::i;:::-;39393:5;:24;39385:71;;;;-1:-1:-1;;;39385:71:0;;11502:2:1;39385:71:0;;;11484:21:1;11541:2;11521:18;;;11514:30;11580:34;11560:18;;;11553:62;11651:4;11631:18;;;11624:32;11673:19;;39385:71:0;11300:398:1;39385:71:0;39467:22;38692:12;;;39467:22;;39730:466;39750:14;39746:1;:18;39730:466;;;39790:31;39824:14;;;:11;:14;;;;;;;;;39790:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;39861:28;39857:111;;39934:14;;;-1:-1:-1;39857:111:0;40011:5;39990:26;;:17;:26;;;39986:195;;40060:5;40045:11;:20;40041:85;;-1:-1:-1;40101:1:0;-1:-1:-1;40094:8:0;;-1:-1:-1;;;40094:8:0;40041:85;40148:13;;;;;39986:195;-1:-1:-1;39766:3:0;;39730:466;;;-1:-1:-1;40219:56:0;;-1:-1:-1;;;40219:56:0;;11905:2:1;40219:56:0;;;11887:21:1;11944:2;11924:18;;;11917:30;11983:34;11963:18;;;11956:62;12054:16;12034:18;;;12027:44;12088:19;;40219:56:0;11703:410:1;60213:101:0;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;9690:2:1;13503:68:0;;;9672:21:1;;;9709:18;;;9702:30;9768:34;9748:18;;;9741:62;9820:18;;13503:68:0;9488:356:1;13503:68:0;60282:14:::1;:24:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;60213:101::o;60347:::-;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;9690:2:1;13503:68:0;;;9672:21:1;;;9709:18;;;9702:30;9768:34;9748:18;;;9741:62;9820:18;;13503:68:0;9488:356:1;13503:68:0;60416:14:::1;:24:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;60347:101::o;62246:152::-;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;9690:2:1;13503:68:0;;;9672:21:1;;;9709:18;;;9702:30;9768:34;9748:18;;;9741:62;9820:18;;13503:68:0;9488:356:1;13503:68:0;62314:58:::1;::::0;62296:12:::1;::::0;62322:10:::1;::::0;62346:21:::1;::::0;62296:12;62314:58;62296:12;62314:58;62346:21;62322:10;62314:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62295:77;;;62385:7;62377:16;;;::::0;::::1;;62291:107;62246:152::o:0;44912:177::-;45042:39;45059:4;45065:2;45069:7;45042:39;;;;;;;;;;;;:16;:39::i;57098:940::-;57210:10;38692:12;57255:14;;;;;;;57247:23;;;;;;57301:18;;57285:12;:34;;57277:104;;;;-1:-1:-1;;;57277:104:0;;12530:2:1;57277:104:0;;;12512:21:1;12569:2;12549:18;;;12542:30;12608:34;12588:18;;;12581:62;12679:27;12659:18;;;12652:55;12724:19;;57277:104:0;12328:421:1;57277:104:0;57421:10;;57400:17;57405:12;57400:2;:17;:::i;:::-;:31;;57392:76;;;;-1:-1:-1;;;57392:76:0;;12956:2:1;57392:76:0;;;12938:21:1;;;12975:18;;;12968:30;13034:34;13014:18;;;13007:62;13086:18;;57392:76:0;12754:356:1;57392:76:0;57518:12;57500:15;;:30;;;;:::i;:::-;57487:9;:43;;57479:87;;;;-1:-1:-1;;;57479:87:0;;13550:2:1;57479:87:0;;;13532:21:1;13589:2;13569:18;;;13562:30;13628:33;13608:18;;;13601:61;13679:18;;57479:87:0;13348:355:1;57479:87:0;57585:10;:22;;;;57577:51;;;;-1:-1:-1;;;57577:51:0;;13910:2:1;57577:51:0;;;13892:21:1;13949:2;13929:18;;;13922:30;13988:18;13968;;;13961:46;14024:18;;57577:51:0;13708:340:1;57577:51:0;57691:22;;57644:28;;;;;;;:18;:28;;;;;;:43;;57675:12;;57644:43;:::i;:::-;:69;;57636:125;;;;-1:-1:-1;;;57636:125:0;;14255:2:1;57636:125:0;;;14237:21:1;14294:2;14274:18;;;14267:30;14333:34;14313:18;;;14306:62;14404:13;14384:18;;;14377:41;14435:19;;57636:125:0;14053:407:1;57636:125:0;57813:26;;14627:66:1;14614:2;14610:15;;;14606:88;57813:26:0;;;14594:101:1;57774:12:0;;14711::1;;57813:26:0;;;;;;;;;;;;57789:61;;;;;;57774:76;;57869:40;57886:6;;;;;;;;;;;57894:4;57900:8;;57869:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57869:16:0;;-1:-1:-1;;;57869:40:0:i;:::-;57861:68;;;;-1:-1:-1;;;57861:68:0;;14936:2:1;57861:68:0;;;14918:21:1;14975:2;14955:18;;;14948:30;15014:17;14994:18;;;14987:45;15049:18;;57861:68:0;14734:339:1;57861:68:0;57942:33;57952:8;57962:12;57942:9;:33::i;:::-;57986:28;;;;;;;:18;:28;;;;;:44;;58018:12;;57986:28;:44;;58018:12;;57986:44;:::i;:::-;;;;-1:-1:-1;;;;;;;;57098:940:0:o;60937:134::-;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;9690:2:1;13503:68:0;;;9672:21:1;;;9709:18;;;9702:30;9768:34;9748:18;;;9741:62;9820:18;;13503:68:0;9488:356:1;13503:68:0;61025:28:::1;:38:::0;60937:134::o;38789:187::-;38856:7;38692:12;;38884:5;:21;38876:69;;;;-1:-1:-1;;;38876:69:0;;15280:2:1;38876:69:0;;;15262:21:1;15319:2;15299:18;;;15292:30;15358:34;15338:18;;;15331:62;15429:5;15409:18;;;15402:33;15452:19;;38876:69:0;15078:399:1;38876:69:0;-1:-1:-1;38963:5:0;38789:187::o;56110:983::-;56222:10;38692:12;56267:14;;;;;;;56259:23;;;;;;56313:18;;56297:12;:34;;56289:104;;;;-1:-1:-1;;;56289:104:0;;12530:2:1;56289:104:0;;;12512:21:1;12569:2;12549:18;;;12542:30;12608:34;12588:18;;;12581:62;12679:27;12659:18;;;12652:55;12724:19;;56289:104:0;12328:421:1;56289:104:0;56433:10;;56412:17;56417:12;56412:2;:17;:::i;:::-;:31;;56404:76;;;;-1:-1:-1;;;56404:76:0;;12956:2:1;56404:76:0;;;12938:21:1;;;12975:18;;;12968:30;13034:34;13014:18;;;13007:62;13086:18;;56404:76:0;12754:356:1;56404:76:0;56530:12;56512:15;;:30;;;;:::i;:::-;56499:9;:43;;56491:87;;;;-1:-1:-1;;;56491:87:0;;13550:2:1;56491:87:0;;;13532:21:1;13589:2;13569:18;;;13562:30;13628:33;13608:18;;;13601:61;13679:18;;56491:87:0;13348:355:1;56491:87:0;56597:10;:22;;;;56589:51;;;;-1:-1:-1;;;56589:51:0;;13910:2:1;56589:51:0;;;13892:21:1;13949:2;13929:18;;;13922:30;13988:18;13968;;;13961:46;14024:18;;56589:51:0;13708:340:1;56589:51:0;56659:10;56673:9;56659:23;56651:32;;;;;;56746:22;;56699:28;;;;;;;:18;:28;;;;;;:43;;56730:12;;56699:43;:::i;62004:109::-;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;9690:2:1;13503:68:0;;;9672:21:1;;;9709:18;;;9702:30;9768:34;9748:18;;;9741:62;9820:18;;13503:68:0;9488:356:1;13503:68:0;62078:27;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;62004:109:::0;:::o;42050:124::-;42114:7;42141:20;42153:7;42141:11;:20::i;:::-;:25;;42050:124;-1:-1:-1;;42050:124:0:o;55028:1077::-;55140:10;38692:12;55185:14;;;;55177:23;;;;;;55231:18;;55215:12;:34;;55207:104;;;;-1:-1:-1;;;55207:104:0;;12530:2:1;55207:104:0;;;12512:21:1;12569:2;12549:18;;;12542:30;12608:34;12588:18;;;12581:62;12679:27;12659:18;;;12652:55;12724:19;;55207:104:0;12328:421:1;55207:104:0;55351:10;;55330:17;55335:12;55330:2;:17;:::i;:::-;:31;;55322:76;;;;-1:-1:-1;;;55322:76:0;;12956:2:1;55322:76:0;;;12938:21:1;;;12975:18;;;12968:30;13034:34;13014:18;;;13007:62;13086:18;;55322:76:0;12754:356:1;55322:76:0;55438:17;;55417;55422:12;55417:2;:17;:::i;:::-;:38;;55409:83;;;;-1:-1:-1;;;55409:83:0;;12956:2:1;55409:83:0;;;12938:21:1;;;12975:18;;;12968:30;13034:34;13014:18;;;13007:62;13086:18;;55409:83:0;12754:356:1;55409:83:0;55542:12;55524:15;;:30;;;;:::i;:::-;55511:9;:43;;55503:87;;;;-1:-1:-1;;;55503:87:0;;13550:2:1;55503:87:0;;;13532:21:1;13589:2;13569:18;;;13562:30;13628:33;13608:18;;;13601:61;13679:18;;55503:87:0;13348:355:1;55503:87:0;55609:10;:22;;;;55601:51;;;;-1:-1:-1;;;55601:51:0;;13910:2:1;55601:51:0;;;13892:21:1;13949:2;13929:18;;;13922:30;13988:18;13968;;;13961:46;14024:18;;55601:51:0;13708:340:1;55601:51:0;55671:10;55685:9;55671:23;55663:32;;;;;;55758:22;;55711:28;;;;;;;:18;:28;;;;;;:43;;55742:12;;55711:43;:::i;59986:90::-;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;9690:2:1;13503:68:0;;;9672:21:1;;;9709:18;;;9702:30;9768:34;9748:18;;;9741:62;9820:18;;13503:68:0;9488:356:1;13503:68:0;60052:6:::1;:16:::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;59986:90::o;40791:221::-;40855:7;40883:19;;;40875:75;;;;-1:-1:-1;;;40875:75:0;;15684:2:1;40875:75:0;;;15666:21:1;15723:2;15703:18;;;15696:30;15762:34;15742:18;;;15735:62;15833:13;15813:18;;;15806:41;15864:19;;40875:75:0;15482:407:1;40875:75:0;-1:-1:-1;40976:19:0;;;;;;:12;:19;;;;;:27;;;;40791:221::o;13942:94::-;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;9690:2:1;13503:68:0;;;9672:21:1;;;9709:18;;;9702:30;9768:34;9748:18;;;9741:62;9820:18;;13503:68:0;9488:356:1;13503:68:0;14007:21:::1;14025:1;14007:9;:21::i;:::-;13942:94::o:0;61367:114::-;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;9690:2:1;13503:68:0;;;9672:21:1;;;9709:18;;;9702:30;9768:34;9748:18;;;9741:62;9820:18;;13503:68:0;9488:356:1;13503:68:0;61445:18:::1;:28:::0;61367:114::o;61489:126::-;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;9690:2:1;13503:68:0;;;9672:21:1;;;9709:18;;;9702:30;9768:34;9748:18;;;9741:62;9820:18;;13503:68:0;9488:356:1;13503:68:0;61573:24:::1;:34:::0;61489:126::o;60674:101::-;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;9690:2:1;13503:68:0;;;9672:21:1;;;9709:18;;;9702:30;9768:34;9748:18;;;9741:62;9820:18;;13503:68:0;9488:356:1;13503:68:0;60743:14:::1;:24:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;60674:101::o;26299:100::-;26350:7;26377;26385:5;26377:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;26299:100;-1:-1:-1;;26299:100:0:o;59538:202::-;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;9690:2:1;13503:68:0;;;9672:21:1;;;9709:18;;;9702:30;9768:34;9748:18;;;9741:62;9820:18;;13503:68:0;9488:356:1;13503:68:0;59618:10:::1;38692:12:::0;59681:10:::1;::::0;59660:17:::1;59665:12:::0;38692;59660:17:::1;:::i;:::-;:31;;59652:40;;;::::0;::::1;;59703:29;59713:4;59719:12;59703:9;:29::i;60103:102::-:0;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;9690:2:1;13503:68:0;;;9672:21:1;;;9709:18;;;9702:30;9768:34;9748:18;;;9741:62;9820:18;;13503:68:0;9488:356:1;13503:68:0;60170:15:::1;:27:::0;60103:102::o;42410:104::-;42466:13;42499:7;42492:14;;;;;:::i;61209:122::-;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;9690:2:1;13503:68:0;;;9672:21:1;;;9709:18;;;9702:30;9768:34;9748:18;;;9741:62;9820:18;;13503:68:0;9488:356:1;13503:68:0;61291:22:::1;:32:::0;61209:122::o;44089:288::-;12192:10;44184:24;;;;44176:63;;;;-1:-1:-1;;;44176:63:0;;16285:2:1;44176:63:0;;;16267:21:1;16324:2;16304:18;;;16297:30;16363:28;16343:18;;;16336:56;16409:18;;44176:63:0;16083:350:1;44176:63:0;12192:10;44252:32;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;44321:48;;888:41:1;;;44252:42:0;;12192:10;44321:48;;861:18:1;44321:48:0;;;;;;;44089:288;;:::o;61745:114::-;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;9690:2:1;13503:68:0;;;9672:21:1;;;9709:18;;;9702:30;9768:34;9748:18;;;9741:62;9820:18;;13503:68:0;9488:356:1;13503:68:0;61823:18:::1;:28:::0;61745:114::o;61079:122::-;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;9690:2:1;13503:68:0;;;9672:21:1;;;9709:18;;;9702:30;9768:34;9748:18;;;9741:62;9820:18;;13503:68:0;9488:356:1;13503:68:0;61161:22:::1;:32:::0;61079:122::o;45160:355::-;45319:28;45329:4;45335:2;45339:7;45319:9;:28::i;:::-;45380:48;45403:4;45409:2;45413:7;45422:5;45380:22;:48::i;:::-;45358:149;;;;-1:-1:-1;;;45358:149:0;;16640:2:1;45358:149:0;;;16622:21:1;16679:2;16659:18;;;16652:30;16718:34;16698:18;;;16691:62;16789:21;16769:18;;;16762:49;16828:19;;45358:149:0;16438:415:1;45358:149:0;45160:355;;;;:::o;42585:335::-;42658:13;42692:16;42700:7;45827:4;45861:12;-1:-1:-1;45851:22:0;45770:111;42692:16;42684:76;;;;-1:-1:-1;;;42684:76:0;;17060:2:1;42684:76:0;;;17042:21:1;17099:2;17079:18;;;17072:30;17138:34;17118:18;;;17111:62;17209:17;17189:18;;;17182:45;17244:19;;42684:76:0;16858:411:1;42684:76:0;42773:21;42797:10;:8;:10::i;:::-;42773:34;;42831:7;42825:21;42850:1;42825:26;:87;;;;;;;;;;;;;;;;;42878:7;42887:18;:7;:16;:18::i;:::-;42861:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42825:87;42818:94;42585:335;-1:-1:-1;;;42585:335:0:o;60565:101::-;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;9690:2:1;13503:68:0;;;9672:21:1;;;9709:18;;;9702:30;9768:34;9748:18;;;9741:62;9820:18;;13503:68:0;9488:356:1;13503:68:0;60634:14:::1;:24:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;60565:101::o;61867:113::-;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;9690:2:1;13503:68:0;;;9672:21:1;;;9709:18;;;9702:30;9768:34;9748:18;;;9741:62;9820:18;;13503:68:0;9488:356:1;13503:68:0;61945:18:::1;:27:::0;61867:113::o;58687:829::-;58759:10;38692:12;58804:14;;;;;;;58796:23;;;;;;58850:28;;58834:12;:44;;58826:114;;;;-1:-1:-1;;;58826:114:0;;12530:2:1;58826:114:0;;;12512:21:1;12569:2;12549:18;;;12542:30;12608:34;12588:18;;;12581:62;12679:27;12659:18;;;12652:55;12724:19;;58826:114:0;12328:421:1;58826:114:0;58980:10;;58959:17;58964:12;58959:2;:17;:::i;:::-;:31;;58951:76;;;;-1:-1:-1;;;58951:76:0;;12956:2:1;58951:76:0;;;12938:21:1;;;12975:18;;;12968:30;13034:34;13014:18;;;13007:62;13086:18;;58951:76:0;12754:356:1;58951:76:0;59067:17;;59046;59051:12;59046:2;:17;:::i;:::-;:38;;59038:83;;;;-1:-1:-1;;;59038:83:0;;12956:2:1;59038:83:0;;;12938:21:1;;;12975:18;;;12968:30;13034:34;13014:18;;;13007:62;13086:18;;59038:83:0;12754:356:1;59038:83:0;59171:12;59153:15;;:30;;;;:::i;:::-;59140:9;:43;;59132:87;;;;-1:-1:-1;;;59132:87:0;;13550:2:1;59132:87:0;;;13532:21:1;13589:2;13569:18;;;13562:30;13628:33;13608:18;;;13601:61;13679:18;;59132:87:0;13348:355:1;59132:87:0;59238:10;59252:9;59238:23;59230:32;;;;;;59327:28;;59297:10;59278:30;;;;:18;:30;;;;;;:45;;59311:12;;59278:45;:::i;:::-;:77;;59270:133;;;;-1:-1:-1;;;59270:133:0;;14255:2:1;59270:133:0;;;14237:21:1;14294:2;14274:18;;;14267:30;14333:34;14313:18;;;14306:62;14404:13;14384:18;;;14377:41;14435:19;;59270:133:0;14053:407:1;59270:133:0;59416:35;59426:10;59438:12;59416:9;:35::i;:::-;59481:10;59462:30;;;;:18;:30;;;;;:46;;59496:12;;59462:30;:46;;59496:12;;59462:46;:::i;:::-;;;;-1:-1:-1;;;;58687:829:0:o;58043:638::-;58112:10;38692:12;58157:14;;;;;;;58149:23;;;;;;58206:1;58191:12;:16;58183:46;;;;-1:-1:-1;;;58183:46:0;;17951:2:1;58183:46:0;;;17933:21:1;17990:2;17970:18;;;17963:30;18029:18;18009;;;18002:46;18065:18;;58183:46:0;17749:340:1;58183:46:0;58260:18;;58244:12;:34;;58236:104;;;;-1:-1:-1;;;58236:104:0;;12530:2:1;58236:104:0;;;12512:21:1;12569:2;12549:18;;;12542:30;12608:34;12588:18;;;12581:62;12679:27;12659:18;;;12652:55;12724:19;;58236:104:0;12328:421:1;58236:104:0;58380:10;;58359:17;58364:12;58359:2;:17;:::i;:::-;:31;;58351:76;;;;-1:-1:-1;;;58351:76:0;;12956:2:1;58351:76:0;;;12938:21:1;;;12975:18;;;12968:30;13034:34;13014:18;;;13007:62;13086:18;;58351:76:0;12754:356:1;58351:76:0;58446:10;58460:9;58446:23;58438:32;;;;;;58520:12;58502:15;;:30;;;;:::i;:::-;58489:9;:43;;58481:87;;;;-1:-1:-1;;;58481:87:0;;13550:2:1;58481:87:0;;;13532:21:1;13589:2;13569:18;;;13562:30;13628:33;13608:18;;;13601:61;13679:18;;58481:87:0;13348:355:1;14191:192:0;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;9690:2:1;13503:68:0;;;9672:21:1;;;9709:18;;;9702:30;9768:34;9748:18;;;9741:62;9820:18;;13503:68:0;9488:356:1;13503:68:0;14280:22:::1;::::0;::::1;14272:73;;;::::0;-1:-1:-1;;;14272:73:0;;18296:2:1;14272:73:0::1;::::0;::::1;18278:21:1::0;18335:2;18315:18;;;18308:30;18374:34;18354:18;;;18347:62;18445:8;18425:18;;;18418:36;18471:19;;14272:73:0::1;18094:402:1::0;14272:73:0::1;14356:19;14366:8;14356:9;:19::i;61623:114::-:0;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;9690:2:1;13503:68:0;;;9672:21:1;;;9709:18;;;9702:30;9768:34;9748:18;;;9741:62;9820:18;;13503:68:0;9488:356:1;13503:68:0;61701:18:::1;:28:::0;61623:114::o;50690:196::-;50805:24;;;;:15;:24;;;;;;:29;;;;;;;;;;;;;;50850:28;;50805:24;;50850:28;;;;;;;50690:196;;;:::o;27345:248::-;27555:12;;27535:16;;;27491:7;27535:16;;;:7;:16;;;;;;27491:7;;27570:15;;27519:32;;:13;:32;:::i;:::-;27518:49;;;;:::i;:::-;:67;;;;:::i;:::-;27511:74;27345:248;-1:-1:-1;;;;27345:248:0:o;16627:317::-;16742:6;16717:21;:31;;16709:73;;;;-1:-1:-1;;;16709:73:0;;19147:2:1;16709:73:0;;;19129:21:1;19186:2;19166:18;;;19159:30;19225:31;19205:18;;;19198:59;19274:18;;16709:73:0;18945:353:1;16709:73:0;16796:12;16814:9;:14;;16836:6;16814:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16795:52;;;16866:7;16858:78;;;;-1:-1:-1;;;16858:78:0;;19505:2:1;16858:78:0;;;19487:21:1;19544:2;19524:18;;;19517:30;19583:34;19563:18;;;19556:62;19654:28;19634:18;;;19627:56;19700:19;;16858:78:0;19303:422:1;48570:2002:0;48685:35;48723:20;48735:7;48723:11;:20::i;:::-;48798:18;;48685:58;;-1:-1:-1;48756:22:0;;48782:34;;12192:10;48782:34;;;:87;;;-1:-1:-1;12192:10:0;48833:20;48845:7;48833:11;:20::i;:::-;:36;;;48782:87;:154;;;-1:-1:-1;48903:18:0;;48886:50;;12192:10;44448:164;:::i;48886:50::-;48756:181;;48958:17;48950:80;;;;-1:-1:-1;;;48950:80:0;;19932:2:1;48950:80:0;;;19914:21:1;19971:2;19951:18;;;19944:30;20010:34;19990:18;;;19983:62;20081:20;20061:18;;;20054:48;20119:19;;48950:80:0;19730:414:1;48950:80:0;49073:4;49051:26;;:13;:18;;;:26;;;49043:77;;;;-1:-1:-1;;;49043:77:0;;20351:2:1;49043:77:0;;;20333:21:1;20390:2;20370:18;;;20363:30;20429:34;20409:18;;;20402:62;20500:8;20480:18;;;20473:36;20526:19;;49043:77:0;20149:402:1;49043:77:0;49139:16;;;49131:66;;;;-1:-1:-1;;;49131:66:0;;20758:2:1;49131:66:0;;;20740:21:1;20797:2;20777:18;;;20770:30;20836:34;20816:18;;;20809:62;20907:7;20887:18;;;20880:35;20932:19;;49131:66:0;20556:401:1;49131:66:0;49318:49;49335:1;49339:7;49348:13;:18;;;49318:8;:49::i;:::-;49663:18;;;;;;;;:12;:18;;;;;;;;:31;;;;;;;;;;;;;;;;;;49709:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;49709:29:0;;;;;;;;;;;;;49755:20;;;:11;:20;;;;;;:30;;49800:61;;;;;;49845:15;49800:61;;;;;;50135:11;;;50165:24;;;;;:29;50135:11;;50165:29;50161:295;;50233:20;50241:11;45827:4;45861:12;-1:-1:-1;45851:22:0;45770:111;50233:20;50229:212;;;50310:18;;;50278:24;;;:11;:24;;;;;;;;:50;;50393:28;;;;50351:70;;;;;;;;50278:50;;;;50351:70;;;;;;;50229:212;49638:829;50503:7;50499:2;50484:27;;50493:4;50484:27;;;;;;;;;;;;50522:42;48674:1898;;48570:2002;;;:::o;59768:210::-;59873:4;59908:62;59922:35;59951:5;10406:58;;23119:66:1;10406:58:0;;;23107:79:1;23202:12;;;23195:28;;;10273:7:0;;23239:12:1;;10406:58:0;;;;;;;;;;;;10396:69;;;;;;10389:76;;10204:269;;;;59922:35;59959:10;59908:13;:62::i;:::-;59897:73;;:7;:73;;;59890:80;;59768:210;;;;;:::o;45889:104::-;45958:27;45968:2;45972:8;45958:27;;;;;;;;;;;;:9;:27::i;41451:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;41554:16:0;41562:7;45827:4;45861:12;-1:-1:-1;45851:22:0;45770:111;41554:16;41546:71;;;;-1:-1:-1;;;41546:71:0;;21164:2:1;41546:71:0;;;21146:21:1;21203:2;21183:18;;;21176:30;21242:34;21222:18;;;21215:62;21313:12;21293:18;;;21286:40;21343:19;;41546:71:0;20962:406:1;41546:71:0;41675:7;41655:245;41722:31;41756:17;;;:11;:17;;;;;;;;;41722:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;41796:28;41792:93;;41856:9;41451:537;-1:-1:-1;;;41451:537:0:o;41792:93::-;-1:-1:-1;41695:6:0;;41655:245;;14391:173;14466:6;;;;14483:17;;;;;;;;;;;14516:40;;14466:6;;;14483:17;14466:6;;14516:40;;14447:16;;14516:40;14436:128;14391:173;:::o;51451:804::-;51606:4;51627:13;;;15628:20;15676:8;51623:625;;51663:72;;;;;:36;;;;;;:72;;12192:10;;51714:4;;51720:7;;51729:5;;51663:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51663:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51659:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51909:6;:13;51926:1;51909:18;51905:273;;51952:61;;-1:-1:-1;;;51952:61:0;;16640:2:1;51952:61:0;;;16622:21:1;16679:2;16659:18;;;16652:30;16718:34;16698:18;;;16691:62;16789:21;16769:18;;;16762:49;16828:19;;51952:61:0;16438:415:1;51905:273:0;52128:6;52122:13;52113:6;52109:2;52105:15;52098:38;51659:534;51786:55;;51796:45;51786:55;;-1:-1:-1;51779:62:0;;51623:625;-1:-1:-1;52232:4:0;51451:804;;;;;;:::o;62121:117::-;62181:13;62214:16;62207:23;;;;;:::i;286:723::-;342:13;563:5;572:1;563:10;559:53;;-1:-1:-1;;590:10:0;;;;;;;;;;;;;;;;;;286:723::o;559:53::-;637:5;622:12;678:78;685:9;;678:78;;711:8;;;;:::i;:::-;;-1:-1:-1;734:10:0;;-1:-1:-1;742:2:0;734:10;;:::i;:::-;;;678:78;;;766:19;798:6;788:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;788:17:0;;766:39;;816:154;823:10;;816:154;;850:11;860:1;850:11;;:::i;:::-;;-1:-1:-1;919:10:0;927:2;919:5;:10;:::i;:::-;906:24;;:2;:24;:::i;:::-;893:39;;876:6;883;876:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;947:11:0;956:2;947:11;;:::i;:::-;;;816:154;;6402:231;6480:7;6501:17;6520:18;6542:27;6553:4;6559:9;6542:10;:27::i;:::-;6500:69;;;;6580:18;6592:5;6580:11;:18::i;:::-;-1:-1:-1;6616:9:0;6402:231;-1:-1:-1;;;6402:231:0:o;46356:163::-;46479:32;46485:2;46489:8;46499:5;46506:4;46479:5;:32::i;4292:1308::-;4373:7;4382:12;4607:9;:16;4627:2;4607:22;4603:990;;4903:4;4888:20;;4882:27;4953:4;4938:20;;4932:27;5011:4;4996:20;;4990:27;4646:9;4982:36;5054:25;5065:4;4982:36;4882:27;4932;5054:10;:25::i;:::-;5047:32;;;;;;;;;4603:990;5101:9;:16;5121:2;5101:22;5097:496;;5376:4;5361:20;;5355:27;5427:4;5412:20;;5406:27;5469:23;5480:4;5355:27;5406;5469:10;:23::i;:::-;5462:30;;;;;;;;5097:496;-1:-1:-1;5541:1:0;;-1:-1:-1;5545:35:0;5097:496;4292:1308;;;;;:::o;2563:643::-;2641:20;2632:5;:29;;;;;;;;:::i;:::-;;2628:571;;2563:643;:::o;2628:571::-;2739:29;2730:5;:38;;;;;;;;:::i;:::-;;2726:473;;2785:34;;-1:-1:-1;;;2785:34:0;;23653:2:1;2785:34:0;;;23635:21:1;23692:2;23672:18;;;23665:30;23731:26;23711:18;;;23704:54;23775:18;;2785:34:0;23451:348:1;2726:473:0;2850:35;2841:5;:44;;;;;;;;:::i;:::-;;2837:362;;2902:41;;-1:-1:-1;;;2902:41:0;;24006:2:1;2902:41:0;;;23988:21:1;24045:2;24025:18;;;24018:30;24084:33;24064:18;;;24057:61;24135:18;;2902:41:0;23804:355:1;2837:362:0;2974:30;2965:5;:39;;;;;;;;:::i;:::-;;2961:238;;3021:44;;-1:-1:-1;;;3021:44:0;;24366:2:1;3021:44:0;;;24348:21:1;24405:2;24385:18;;;24378:30;24444:34;24424:18;;;24417:62;24515:4;24495:18;;;24488:32;24537:19;;3021:44:0;24164:398:1;2961:238:0;3096:30;3087:5;:39;;;;;;;;:::i;:::-;;3083:116;;3143:44;;-1:-1:-1;;;3143:44:0;;24769:2:1;3143:44:0;;;24751:21:1;24808:2;24788:18;;;24781:30;24847:34;24827:18;;;24820:62;24918:4;24898:18;;;24891:32;24940:19;;3143:44:0;24567:398:1;46778:1538:0;46917:20;46940:12;46971:16;;;46963:62;;;;-1:-1:-1;;;46963:62:0;;25172:2:1;46963:62:0;;;25154:21:1;25211:2;25191:18;;;25184:30;25250:34;25230:18;;;25223:62;25321:3;25301:18;;;25294:31;25342:19;;46963:62:0;24970:397:1;46963:62:0;47044:8;47056:1;47044:13;47036:66;;;;-1:-1:-1;;;47036:66:0;;25574:2:1;47036:66:0;;;25556:21:1;25613:2;25593:18;;;25586:30;25652:34;25632:18;;;25625:62;25723:10;25703:18;;;25696:38;25751:19;;47036:66:0;25372:404:1;47036:66:0;47454:16;;;;;;;:12;:16;;;;;;;;:45;;47514:50;47454:45;;;;;;;;;;;;;;47514:50;;;;;;;;;;;;;;47581:25;;;:11;:25;;;;;:35;;47631:66;;;;;;47681:15;47631:66;;;;;;;47581:25;;47766:415;47786:8;47782:1;:12;47766:415;;;47825:38;;47850:12;;47825:38;;;;47842:1;;47825:38;;47842:1;;47825:38;47886:4;47882:249;;;47949:59;47980:1;47984:2;47988:12;48002:5;47949:22;:59::i;:::-;47915:196;;;;-1:-1:-1;;;47915:196:0;;16640:2:1;47915:196:0;;;16622:21:1;16679:2;16659:18;;;16652:30;16718:34;16698:18;;;16691:62;16789:21;16769:18;;;16762:49;16828:19;;47915:196:0;16438:415:1;47915:196:0;48151:14;;;;;47796:3;47766:415;;;-1:-1:-1;48197:12:0;:27;48248:60;45160:355;7854:1632;7985:7;;8919:66;8906:79;;8902:163;;;-1:-1:-1;9018:1:0;;-1:-1:-1;9022:30:0;9002:51;;8902:163;9079:1;:7;;9084:2;9079:7;;:18;;;;;9090:1;:7;;9095:2;9090:7;;9079:18;9075:102;;;-1:-1:-1;9130:1:0;;-1:-1:-1;9134:30:0;9114:51;;9075:102;9291:24;;;9274:14;9291:24;;;;;;;;;26008:25:1;;;26081:4;26069:17;;26049:18;;;26042:45;;;;26103:18;;;26096:34;;;26146:18;;;26139:34;;;9291:24:0;;25980:19:1;;9291:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;9291:24:0;;;;;;-1:-1:-1;;9330:20:0;;;9326:103;;9383:1;9387:29;9367:50;;;;;;;9326:103;9449:6;-1:-1:-1;9457:20:0;;-1:-1:-1;7854:1632:0;;;;;;;;:::o;6896:344::-;7010:7;;7069:66;7056:80;;7010:7;7163:25;7179:3;7164:18;;;7186:2;7163:25;:::i;:::-;7147:42;;7207:25;7218:4;7224:1;7227;7230;7207:10;:25::i;:::-;7200:32;;;;;;6896:344;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;316:177:1;401:66;394:5;390:78;383:5;380:89;370:117;;483:1;480;473:12;498:245;556:6;609:2;597:9;588:7;584:23;580:32;577:52;;;625:1;622;615:12;577:52;664:9;651:23;683:30;707:5;683:30;:::i;940:154::-;1026:42;1019:5;1015:54;1008:5;1005:65;995:93;;1084:1;1081;1074:12;1099:247;1158:6;1211:2;1199:9;1190:7;1186:23;1182:32;1179:52;;;1227:1;1224;1217:12;1179:52;1266:9;1253:23;1285:31;1310:5;1285:31;:::i;1533:258::-;1605:1;1615:113;1629:6;1626:1;1623:13;1615:113;;;1705:11;;;1699:18;1686:11;;;1679:39;1651:2;1644:10;1615:113;;;1746:6;1743:1;1740:13;1737:48;;;-1:-1:-1;;1781:1:1;1763:16;;1756:27;1533:258::o;1796:317::-;1838:3;1876:5;1870:12;1903:6;1898:3;1891:19;1919:63;1975:6;1968:4;1963:3;1959:14;1952:4;1945:5;1941:16;1919:63;:::i;:::-;2027:2;2015:15;2032:66;2011:88;2002:98;;;;2102:4;1998:109;;1796:317;-1:-1:-1;;1796:317:1:o;2118:220::-;2267:2;2256:9;2249:21;2230:4;2287:45;2328:2;2317:9;2313:18;2305:6;2287:45;:::i;2343:180::-;2402:6;2455:2;2443:9;2434:7;2430:23;2426:32;2423:52;;;2471:1;2468;2461:12;2423:52;-1:-1:-1;2494:23:1;;2343:180;-1:-1:-1;2343:180:1:o;2759:315::-;2827:6;2835;2888:2;2876:9;2867:7;2863:23;2859:32;2856:52;;;2904:1;2901;2894:12;2856:52;2943:9;2930:23;2962:31;2987:5;2962:31;:::i;:::-;3012:5;3064:2;3049:18;;;;3036:32;;-1:-1:-1;;;2759:315:1:o;3339:160::-;3404:20;;3460:13;;3453:21;3443:32;;3433:60;;3489:1;3486;3479:12;3433:60;3339:160;;;:::o;3504:180::-;3560:6;3613:2;3601:9;3592:7;3588:23;3584:32;3581:52;;;3629:1;3626;3619:12;3581:52;3652:26;3668:9;3652:26;:::i;3689:456::-;3766:6;3774;3782;3835:2;3823:9;3814:7;3810:23;3806:32;3803:52;;;3851:1;3848;3841:12;3803:52;3890:9;3877:23;3909:31;3934:5;3909:31;:::i;:::-;3959:5;-1:-1:-1;4016:2:1;4001:18;;3988:32;4029:33;3988:32;4029:33;:::i;:::-;3689:456;;4081:7;;-1:-1:-1;;;4135:2:1;4120:18;;;;4107:32;;3689:456::o;4150:794::-;4238:6;4246;4254;4262;4315:2;4303:9;4294:7;4290:23;4286:32;4283:52;;;4331:1;4328;4321:12;4283:52;4370:9;4357:23;4389:31;4414:5;4389:31;:::i;:::-;4439:5;-1:-1:-1;4495:2:1;4480:18;;4467:32;4518:18;4548:14;;;4545:34;;;4575:1;4572;4565:12;4545:34;4613:6;4602:9;4598:22;4588:32;;4658:7;4651:4;4647:2;4643:13;4639:27;4629:55;;4680:1;4677;4670:12;4629:55;4720:2;4707:16;4746:2;4738:6;4735:14;4732:34;;;4762:1;4759;4752:12;4732:34;4807:7;4802:2;4793:6;4789:2;4785:15;4781:24;4778:37;4775:57;;;4828:1;4825;4818:12;4775:57;4150:794;;4859:2;4851:11;;;;;-1:-1:-1;4881:6:1;;4934:2;4919:18;4906:32;;-1:-1:-1;4150:794:1;-1:-1:-1;;;4150:794:1:o;4949:184::-;5001:77;4998:1;4991:88;5098:4;5095:1;5088:15;5122:4;5119:1;5112:15;5138:691;5203:5;5233:18;5274:2;5266:6;5263:14;5260:40;;;5280:18;;:::i;:::-;5414:2;5408:9;5480:2;5468:15;;5319:66;5464:24;;;5490:2;5460:33;5456:42;5444:55;;;5514:18;;;5534:22;;;5511:46;5508:72;;;5560:18;;:::i;:::-;5600:10;5596:2;5589:22;5629:6;5620:15;;5659:6;5651;5644:22;5699:3;5690:6;5685:3;5681:16;5678:25;5675:45;;;5716:1;5713;5706:12;5675:45;5766:6;5761:3;5754:4;5746:6;5742:17;5729:44;5821:1;5814:4;5805:6;5797;5793:19;5789:30;5782:41;;;;5138:691;;;;;:::o;5834:451::-;5903:6;5956:2;5944:9;5935:7;5931:23;5927:32;5924:52;;;5972:1;5969;5962:12;5924:52;6012:9;5999:23;6045:18;6037:6;6034:30;6031:50;;;6077:1;6074;6067:12;6031:50;6100:22;;6153:4;6145:13;;6141:27;-1:-1:-1;6131:55:1;;6182:1;6179;6172:12;6131:55;6205:74;6271:7;6266:2;6253:16;6248:2;6244;6240:11;6205:74;:::i;6290:315::-;6355:6;6363;6416:2;6404:9;6395:7;6391:23;6387:32;6384:52;;;6432:1;6429;6422:12;6384:52;6471:9;6458:23;6490:31;6515:5;6490:31;:::i;:::-;6540:5;-1:-1:-1;6564:35:1;6595:2;6580:18;;6564:35;:::i;:::-;6554:45;;6290:315;;;;;:::o;6610:795::-;6705:6;6713;6721;6729;6782:3;6770:9;6761:7;6757:23;6753:33;6750:53;;;6799:1;6796;6789:12;6750:53;6838:9;6825:23;6857:31;6882:5;6857:31;:::i;:::-;6907:5;-1:-1:-1;6964:2:1;6949:18;;6936:32;6977:33;6936:32;6977:33;:::i;:::-;7029:7;-1:-1:-1;7083:2:1;7068:18;;7055:32;;-1:-1:-1;7138:2:1;7123:18;;7110:32;7165:18;7154:30;;7151:50;;;7197:1;7194;7187:12;7151:50;7220:22;;7273:4;7265:13;;7261:27;-1:-1:-1;7251:55:1;;7302:1;7299;7292:12;7251:55;7325:74;7391:7;7386:2;7373:16;7368:2;7364;7360:11;7325:74;:::i;:::-;7315:84;;;6610:795;;;;;;;:::o;7410:388::-;7478:6;7486;7539:2;7527:9;7518:7;7514:23;7510:32;7507:52;;;7555:1;7552;7545:12;7507:52;7594:9;7581:23;7613:31;7638:5;7613:31;:::i;:::-;7663:5;-1:-1:-1;7720:2:1;7705:18;;7692:32;7733:33;7692:32;7733:33;:::i;:::-;7785:7;7775:17;;;7410:388;;;;;:::o;7803:437::-;7882:1;7878:12;;;;7925;;;7946:61;;8000:4;7992:6;7988:17;7978:27;;7946:61;8053:2;8045:6;8042:14;8022:18;8019:38;8016:218;;8090:77;8087:1;8080:88;8191:4;8188:1;8181:15;8219:4;8216:1;8209:15;8016:218;;7803:437;;;:::o;10256:184::-;10308:77;10305:1;10298:88;10405:4;10402:1;10395:15;10429:4;10426:1;10419:15;10445:128;10485:3;10516:1;10512:6;10509:1;10506:13;10503:39;;;10522:18;;:::i;:::-;-1:-1:-1;10558:9:1;;10445:128::o;13115:228::-;13155:7;13281:1;13213:66;13209:74;13206:1;13203:81;13198:1;13191:9;13184:17;13180:105;13177:131;;;13288:18;;:::i;:::-;-1:-1:-1;13328:9:1;;13115:228::o;15894:184::-;15946:77;15943:1;15936:88;16043:4;16040:1;16033:15;16067:4;16064:1;16057:15;17274:470;17453:3;17491:6;17485:13;17507:53;17553:6;17548:3;17541:4;17533:6;17529:17;17507:53;:::i;:::-;17623:13;;17582:16;;;;17645:57;17623:13;17582:16;17679:4;17667:17;;17645:57;:::i;:::-;17718:20;;17274:470;-1:-1:-1;;;;17274:470:1:o;18501:184::-;18553:77;18550:1;18543:88;18650:4;18647:1;18640:15;18674:4;18671:1;18664:15;18690:120;18730:1;18756;18746:35;;18761:18;;:::i;:::-;-1:-1:-1;18795:9:1;;18690:120::o;18815:125::-;18855:4;18883:1;18880;18877:8;18874:34;;;18888:18;;:::i;:::-;-1:-1:-1;18925:9:1;;18815:125::o;21789:512::-;21983:4;22012:42;22093:2;22085:6;22081:15;22070:9;22063:34;22145:2;22137:6;22133:15;22128:2;22117:9;22113:18;22106:43;;22185:6;22180:2;22169:9;22165:18;22158:34;22228:3;22223:2;22212:9;22208:18;22201:31;22249:46;22290:3;22279:9;22275:19;22267:6;22249:46;:::i;:::-;22241:54;21789:512;-1:-1:-1;;;;;;21789:512:1:o;22306:249::-;22375:6;22428:2;22416:9;22407:7;22403:23;22399:32;22396:52;;;22444:1;22441;22434:12;22396:52;22476:9;22470:16;22495:30;22519:5;22495:30;:::i;22560:195::-;22599:3;22630:66;22623:5;22620:77;22617:103;;22700:18;;:::i;:::-;-1:-1:-1;22747:1:1;22736:13;;22560:195::o;22760:112::-;22792:1;22818;22808:35;;22823:18;;:::i;:::-;-1:-1:-1;22857:9:1;;22760:112::o;23262:184::-;23314:77;23311:1;23304:88;23411:4;23408:1;23401:15;23435:4;23432:1;23425:15

Swarm Source

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