ETH Price: $3,201.53 (-0.47%)

Token

Secret Money Society (SMS)
 

Overview

Max Total Supply

443 SMS

Holders

151

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
7 SMS
0xd2e31cc27016bdecaf44686dce231ed138930861
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SecretMoneySociety

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 1 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// 
// 
//  .d8888b.                                    888         888b     d888                                           .d8888b.                    d8b          888             
// d88P  Y88b                                   888         8888b   d8888                                          d88P  Y88b                   Y8P          888             
// Y88b.                                        888         88888b.d88888                                          Y88b.                                     888             
//  "Y888b.    .d88b.   .d8888b 888d888 .d88b.  888888      888Y88888P888  .d88b.  88888b.   .d88b.  888  888       "Y888b.    .d88b.   .d8888b 888  .d88b.  888888 888  888 
//     "Y88b. d8P  Y8b d88P"    888P"  d8P  Y8b 888         888 Y888P 888 d88""88b 888 "88b d8P  Y8b 888  888          "Y88b. d88""88b d88P"    888 d8P  Y8b 888    888  888 
//       "888 88888888 888      888    88888888 888         888  Y8P  888 888  888 888  888 88888888 888  888            "888 888  888 888      888 88888888 888    888  888 
// Y88b  d88P Y8b.     Y88b.    888    Y8b.     Y88b.       888   "   888 Y88..88P 888  888 Y8b.     Y88b 888      Y88b  d88P Y88..88P Y88b.    888 Y8b.     Y88b.  Y88b 888 
//  "Y8888P"   "Y8888   "Y8888P 888     "Y8888   "Y888      888       888  "Y88P"  888  888  "Y8888   "Y88888       "Y8888P"   "Y88P"   "Y8888P 888  "Y8888   "Y888  "Y88888 
//                                                                                                        888                                                            888 
//                                                                                                   Y8b d88P                                                       Y8b d88P 
//                                                                                                    "Y88P"                                                         "Y88P"  
//
// [website] https://secretmoneysociety.xyz/
// [discord] https://discord.gg/secretmoneynft
// [twitter] https://twitter.com/secretmoneynft
// 
// [we like the art]

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

// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.0 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


// OpenZeppelin Contracts v4.4.0 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;




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

    uint256 private _totalShares;
    uint256 private _totalReleased;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

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

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

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

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

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

    /**
     * @dev See {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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

        _balances[to] += 1;
        _owners[tokenId] = to;

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

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

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

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

// File: contracts/SecretMoneySociety.sol

// [wen coffee]

pragma solidity ^0.8.0;

contract SecretMoneySociety is ERC721, Ownable, ReentrancyGuard, PaymentSplitter {

    using Strings for uint256;
    using MerkleProof for bytes32[];

    string public baseURI;
    string public baseExtension = ".json";

    uint256 public currentPrice = 0.1 ether;
    uint256 public maxSupply = 5555;
    uint256 public totalSupply = 0;
    uint256 public maxWhitelistMintPerWallet = 4;
    uint256 public maxMintPerTxn = 10;

    bool public publicPaused = true;
    bool public whitelistPaused = true;
    bool public revealed = false;

    bytes32 public merkleRoot;

    address t1 = 0xE90256ec73Ec4591fFa86AC99ee03dC664F31f0F; // Community Wallet
    address t2 = 0xbbe43612b9B577d5d9cB786324880c01d5792Ebc; // Artist
    address t3 = 0xab52ddd891F3FED34632c8560b0970A97D306946; // Developer
    address t4 = 0x66021c830939f39eEf8DaB95D6dcF427F2b25658; // Marketing

    address[] addressList = [t1, t2, t3, t4];
    uint256[] shareList = [40, 40, 10, 10];

    mapping(address => uint256) public whitelistMintPerWallet;

    constructor()
    ERC721("Secret Money Society", "SMS")
    PaymentSplitter(addressList, shareList)  {}

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

    function mint(uint256 quantity) public payable nonReentrant {
        require(!publicPaused, "mint: public sale not active");
        require(quantity > 0, "mint: minimum 1");
        require(quantity <= maxMintPerTxn, "mint: exceeded maximum quantity per txn");
        require(totalSupply + quantity <= maxSupply, "mint: would exceed max supply");
        require(msg.value >= currentPrice * quantity, "mint: ether sent is not correct");

        for (uint i = 0; i < quantity; i++) {
            _safeMint(msg.sender, totalSupply + 1);
            totalSupply += 1;
        }
    }

    function mintWhitelist(
        bytes32[] calldata proof,
        uint256 quantity
    ) public payable nonReentrant {
        require(proof.verify(merkleRoot, keccak256(abi.encodePacked(msg.sender))), "mint: not on whitelist");
        require(!whitelistPaused, "mint: whitelist sale not active");
        require(whitelistMintPerWallet[msg.sender] + quantity <= maxWhitelistMintPerWallet, "mint: exceeds maximum quanity per whitelist");
        require(quantity > 0, "mint: minimum 1");
        require(quantity <= maxWhitelistMintPerWallet, "mint: exceeded maximum quantity per txn for whitelist");
        require(totalSupply + quantity <= maxSupply, "mint: would exceed max supply");
        require(msg.value >= currentPrice * quantity, "mint: ether sent is not correct");

        for (uint i = 0; i < quantity; i++) {
            _safeMint(msg.sender, totalSupply + 1);
            whitelistMintPerWallet[msg.sender] += 1;
            totalSupply += 1;
        }
    }

    function gift(
        address _wallet,
        uint256 quantity
    ) public onlyOwner {
        require(quantity > 0, "gift: minimum 1");
        require(totalSupply + quantity <= maxSupply, "gift: would exceed max supply");
        
        for(uint256 i; i < quantity; i++){
            _safeMint(_wallet, totalSupply + 1);
            totalSupply += 1;
        }
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId),"ERC721Metadata: URI query for nonexistent token");
        string memory currentBaseURI = _baseURI();
        if (revealed) {
            return bytes(currentBaseURI).length > 0
                ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
                : "";
        } else {
            return bytes(currentBaseURI).length > 0
                ? string(abi.encodePacked(currentBaseURI, "preview", baseExtension))
                : "";
        }
    }

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

    function setPrice(uint256 _newPrice) public onlyOwner {
        currentPrice = _newPrice;
    }

    function setMaxMintPerTxn(uint256 _newMaxMintPerTxn) public onlyOwner {
        maxMintPerTxn = _newMaxMintPerTxn;
    }

    function setMaxMintPerWhitelist(uint256 _newMaxMintPerWhitelist) public onlyOwner {
        maxWhitelistMintPerWallet = _newMaxMintPerWhitelist;
    }

    function setWhitelistPaused(bool _state) public onlyOwner {
        whitelistPaused = _state;
    }

    function setPublicPaused(bool _state) public onlyOwner {
        publicPaused = _state;
    }

    function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function supportsInterface(bytes4 interfaceId) public view override(ERC721) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

}

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":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentPrice","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":"_wallet","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"maxMintPerTxn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhitelistMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintPerTxn","type":"uint256"}],"name":"setMaxMintPerTxn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintPerWhitelist","type":"uint256"}],"name":"setMaxMintPerWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistPaused","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526005608081905264173539b7b760d91b60a090815262000028916010919062000622565b5067016345785d8a00006011556115b3601255600060135560046014819055600a6015556016805461010162ffffff199091161790556018805473e90256ec73ec4591ffa86ac99ee03dc664f31f0f6001600160a01b031991821681179092556019805473bbe43612b9b577d5d9cb786324880c01d5792ebc9083168117909155601a805473ab52ddd891f3fed34632c8560b0970a97d3069469084168117909155601b80547366021c830939f39eef8dab95d6dcf427f2b256589416841790556040805160808101825294855260208501929092529083015260608201526200011691601c9190620006b1565b506040805160808101825260288082526020820152600a91810182905260608101919091526200014b90601d90600462000709565b503480156200015957600080fd5b50601c805480602002602001604051908101604052809291908181526020018280548015620001b257602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000193575b5050505050601d8054806020026020016040519081016040528092919081815260200182805480156200020557602002820191906000526020600020905b815481526020019060010190808311620001f0575b5050604080518082018252601481527f536563726574204d6f6e657920536f6369657479000000000000000000000000602080830191825283518085019094526003845262534d5360e81b9084015281519195509193506200026c92506000919062000622565b5080516200028290600190602084019062000622565b5050506200029f62000299620003de60201b60201c565b620003e2565b60016007558051825114620003165760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620003695760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f2070617965657300000000000060448201526064016200030d565b60005b8251811015620003d557620003c08382815181106200038f576200038f620007ef565b6020026020010151838381518110620003ac57620003ac620007ef565b60200260200101516200043460201b60201c565b80620003cc81620007bb565b9150506200036c565b50505062000805565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004a15760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016200030d565b60008111620004f35760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a2073686172657320617265203000000060448201526064016200030d565b6001600160a01b0382166000908152600a6020526040902054156200056f5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b60648201526084016200030d565b600c8054600181019091557fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70180546001600160a01b0319166001600160a01b0384169081179091556000908152600a60205260409020819055600854620005d990829062000763565b600855604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b82805462000630906200077e565b90600052602060002090601f0160209004810192826200065457600085556200069f565b82601f106200066f57805160ff19168380011785556200069f565b828001600101855582156200069f579182015b828111156200069f57825182559160200191906001019062000682565b50620006ad9291506200074c565b5090565b8280548282559060005260206000209081019282156200069f579160200282015b828111156200069f57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620006d2565b8280548282559060005260206000209081019282156200069f579160200282015b828111156200069f578251829060ff169055916020019190600101906200072a565b5b80821115620006ad57600081556001016200074d565b60008219821115620007795762000779620007d9565b500190565b600181811c908216806200079357607f821691505b60208210811415620007b557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620007d257620007d2620007d9565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b61306980620008156000396000f3fe6080604052600436106102265760003560e01c8062eb70131461026b57806301ffc9a71461028d57806305026cee146102c257806306fdde03146102e2578063081812fc14610304578063095ea7b3146103315780630bb12bb81461035157806318160ddd1461036b578063191655871461038f5780632392ff53146103af57806323b872dd146103dc5780632eb4a7ab146103fc5780633a98ef39146104125780633ccfd60b14610427578063406072a91461043c57806342842e0e1461045c57806348b750441461047c578063518302271461049c57806355f804b3146104bc57806361e61a25146104dc5780636352211e146104fb5780636c0360eb1461051b57806370a0823114610530578063715018a6146105505780637cb64759146105655780638a54af1d146105855780638b83209b146105a55780638da5cb5b146105c557806391b7f5ed146105da57806395d89b41146105fa5780639852595c1461060f5780639d1b464a1461062f578063a0712d6814610645578063a22cb46514610658578063a6d612f914610678578063b293f2b41461068b578063b7203b8f146106a1578063b88d4fde146106c1578063c6682862146106e1578063c87b56dd146106f6578063caa8078f14610716578063cbce4c971461072c578063ce7c2ac21461074c578063d5abeb0114610782578063d79779b214610798578063e33b7de3146107b8578063e985e9c5146107cd578063f2fde38b146107ed57600080fd5b36610266577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770333460405161025c929190612bd0565b60405180910390a1005b600080fd5b34801561027757600080fd5b5061028b6102863660046129bb565b61080d565b005b34801561029957600080fd5b506102ad6102a83660046129d4565b61084a565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b5061028b6102dd3660046129bb565b61085b565b3480156102ee57600080fd5b506102f761088f565b6040516102b99190612c26565b34801561031057600080fd5b5061032461031f3660046129bb565b610921565b6040516102b99190612bbc565b34801561033d57600080fd5b5061028b61034c3660046128db565b6109a9565b34801561035d57600080fd5b506016546102ad9060ff1681565b34801561037757600080fd5b5061038160135481565b6040519081526020016102b9565b34801561039b57600080fd5b5061028b6103aa366004612797565b610aba565b3480156103bb57600080fd5b506103816103ca366004612797565b601e6020526000908152604090205481565b3480156103e857600080fd5b5061028b6103f73660046127ed565b610bc9565b34801561040857600080fd5b5061038160175481565b34801561041e57600080fd5b50600854610381565b34801561043357600080fd5b5061028b610bfa565b34801561044857600080fd5b506103816104573660046127b4565b610c5c565b34801561046857600080fd5b5061028b6104773660046127ed565b610c87565b34801561048857600080fd5b5061028b6104973660046127b4565b610ca2565b3480156104a857600080fd5b506016546102ad9062010000900460ff1681565b3480156104c857600080fd5b5061028b6104d7366004612a0e565b610e58565b3480156104e857600080fd5b506016546102ad90610100900460ff1681565b34801561050757600080fd5b506103246105163660046129bb565b610e9a565b34801561052757600080fd5b506102f7610f11565b34801561053c57600080fd5b5061038161054b366004612797565b610f9f565b34801561055c57600080fd5b5061028b611026565b34801561057157600080fd5b5061028b6105803660046129bb565b611061565b34801561059157600080fd5b5061028b6105a0366004612981565b611095565b3480156105b157600080fd5b506103246105c03660046129bb565b6110d7565b3480156105d157600080fd5b50610324611107565b3480156105e657600080fd5b5061028b6105f53660046129bb565b611116565b34801561060657600080fd5b506102f761114a565b34801561061b57600080fd5b5061038161062a366004612797565b611159565b34801561063b57600080fd5b5061038160115481565b61028b6106533660046129bb565b611174565b34801561066457600080fd5b5061028b6106733660046128ad565b611311565b61028b610686366004612907565b61131c565b34801561069757600080fd5b5061038160145481565b3480156106ad57600080fd5b5061028b6106bc366004612981565b61162a565b3480156106cd57600080fd5b5061028b6106dc36600461282e565b611673565b3480156106ed57600080fd5b506102f76116ab565b34801561070257600080fd5b506102f76107113660046129bb565b6116b8565b34801561072257600080fd5b5061038160155481565b34801561073857600080fd5b5061028b6107473660046128db565b6117d0565b34801561075857600080fd5b50610381610767366004612797565b6001600160a01b03166000908152600a602052604090205490565b34801561078e57600080fd5b5061038160125481565b3480156107a457600080fd5b506103816107b3366004612797565b6118e9565b3480156107c457600080fd5b50600954610381565b3480156107d957600080fd5b506102ad6107e83660046127b4565b611904565b3480156107f957600080fd5b5061028b610808366004612797565b611932565b33610816611107565b6001600160a01b0316146108455760405162461bcd60e51b815260040161083c90612d45565b60405180910390fd5b601455565b6000610855826119d2565b92915050565b33610864611107565b6001600160a01b03161461088a5760405162461bcd60e51b815260040161083c90612d45565b601555565b60606000805461089e90612efe565b80601f01602080910402602001604051908101604052809291908181526020018280546108ca90612efe565b80156109175780601f106108ec57610100808354040283529160200191610917565b820191906000526020600020905b8154815290600101906020018083116108fa57829003601f168201915b5050505050905090565b600061092c82611a22565b61098d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161083c565b506000908152600460205260409020546001600160a01b031690565b60006109b482610e9a565b9050806001600160a01b0316836001600160a01b03161415610a225760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161083c565b336001600160a01b0382161480610a3e5750610a3e8133611904565b610aab5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b606482015260840161083c565b610ab58383611a3f565b505050565b6001600160a01b0381166000908152600a6020526040902054610aef5760405162461bcd60e51b815260040161083c90612cb4565b6000610afa60095490565b610b049047612e70565b90506000610b1b8383610b1686611159565b611aad565b905080610b3a5760405162461bcd60e51b815260040161083c90612cfa565b6001600160a01b0383166000908152600b602052604081208054839290610b62908490612e70565b925050819055508060096000828254610b7b9190612e70565b90915550610b8b90508382611af3565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610bbc929190612bd0565b60405180910390a1505050565b610bd33382611c09565b610bef5760405162461bcd60e51b815260040161083c90612db1565b610ab5838383611ccb565b33610c03611107565b6001600160a01b031614610c295760405162461bcd60e51b815260040161083c90612d45565b6040514790339082156108fc029083906000818181858888f19350505050158015610c58573d6000803e3d6000fd5b5050565b6001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b610ab583838360405180602001604052806000815250611673565b6001600160a01b0381166000908152600a6020526040902054610cd75760405162461bcd60e51b815260040161083c90612cb4565b6000610ce2836118e9565b6040516370a0823160e01b81526001600160a01b038516906370a0823190610d0e903090600401612bbc565b60206040518083038186803b158015610d2657600080fd5b505afa158015610d3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5e9190612a56565b610d689190612e70565b90506000610d7b8383610b168787610c5c565b905080610d9a5760405162461bcd60e51b815260040161083c90612cfa565b6001600160a01b038085166000908152600e6020908152604080832093871683529290529081208054839290610dd1908490612e70565b90915550506001600160a01b0384166000908152600d602052604081208054839290610dfe908490612e70565b90915550610e0f9050848483611e59565b836001600160a01b03167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a8483604051610e4a929190612bd0565b60405180910390a250505050565b33610e61611107565b6001600160a01b031614610e875760405162461bcd60e51b815260040161083c90612d45565b8051610c5890600f906020840190612689565b6000818152600260205260408120546001600160a01b0316806108555760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161083c565b600f8054610f1e90612efe565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4a90612efe565b8015610f975780601f10610f6c57610100808354040283529160200191610f97565b820191906000526020600020905b815481529060010190602001808311610f7a57829003601f168201915b505050505081565b60006001600160a01b03821661100a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161083c565b506001600160a01b031660009081526003602052604090205490565b3361102f611107565b6001600160a01b0316146110555760405162461bcd60e51b815260040161083c90612d45565b61105f6000611eaf565b565b3361106a611107565b6001600160a01b0316146110905760405162461bcd60e51b815260040161083c90612d45565b601755565b3361109e611107565b6001600160a01b0316146110c45760405162461bcd60e51b815260040161083c90612d45565b6016805460ff1916911515919091179055565b6000600c82815481106110ec576110ec612f8e565b6000918252602090912001546001600160a01b031692915050565b6006546001600160a01b031690565b3361111f611107565b6001600160a01b0316146111455760405162461bcd60e51b815260040161083c90612d45565b601155565b60606001805461089e90612efe565b6001600160a01b03166000908152600b602052604090205490565b600260075414156111975760405162461bcd60e51b815260040161083c90612e02565b600260075560165460ff16156111ee5760405162461bcd60e51b815260206004820152601c60248201527b6d696e743a207075626c69632073616c65206e6f742061637469766560201b604482015260640161083c565b6000811161120e5760405162461bcd60e51b815260040161083c90612c8b565b60155481111561125e5760405162461bcd60e51b81526020600482015260276024820152600080516020612ff48339815191526044820152663832b9103a3c3760c91b606482015260840161083c565b6012548160135461126f9190612e70565b111561128d5760405162461bcd60e51b815260040161083c90612e39565b8060115461129b9190612e9c565b3410156112ba5760405162461bcd60e51b815260040161083c90612d7a565b60005b81811015611308576112dd3360135460016112d89190612e70565b611f01565b6001601360008282546112f09190612e70565b9091555081905061130081612f33565b9150506112bd565b50506001600755565b610c58338383611f1b565b6002600754141561133f5760405162461bcd60e51b815260040161083c90612e02565b60026007556017546040516001600160601b03193360601b1660208201526113b8919060340160405160208183030381529060405280519060200120858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929493925050611fe69050565b6113fd5760405162461bcd60e51b81526020600482015260166024820152751b5a5b9d0e881b9bdd081bdb881dda1a5d195b1a5cdd60521b604482015260640161083c565b601654610100900460ff16156114555760405162461bcd60e51b815260206004820152601f60248201527f6d696e743a2077686974656c6973742073616c65206e6f742061637469766500604482015260640161083c565b601454336000908152601e6020526040902054611473908390612e70565b11156114d55760405162461bcd60e51b815260206004820152602b60248201527f6d696e743a2065786365656473206d6178696d756d207175616e69747920706560448201526a1c881dda1a5d195b1a5cdd60aa1b606482015260840161083c565b600081116114f55760405162461bcd60e51b815260040161083c90612c8b565b6014548111156115535760405162461bcd60e51b81526020600482015260356024820152600080516020612ff48339815191526044820152741c195c881d1e1b88199bdc881dda1a5d195b1a5cdd605a1b606482015260840161083c565b601254816013546115649190612e70565b11156115825760405162461bcd60e51b815260040161083c90612e39565b806011546115909190612e9c565b3410156115af5760405162461bcd60e51b815260040161083c90612d7a565b60005b8181101561161f576115cd3360135460016112d89190612e70565b336000908152601e602052604081208054600192906115ed908490612e70565b925050819055506001601360008282546116079190612e70565b9091555081905061161781612f33565b9150506115b2565b505060016007555050565b33611633611107565b6001600160a01b0316146116595760405162461bcd60e51b815260040161083c90612d45565b601680549115156101000261ff0019909216919091179055565b61167d3383611c09565b6116995760405162461bcd60e51b815260040161083c90612db1565b6116a584848484611ffc565b50505050565b60108054610f1e90612efe565b60606116c382611a22565b6117275760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161083c565b600061173161202f565b60165490915062010000900460ff16156117985760008151116117635760405180602001604052806000815250611791565b8061176d8461203e565b601060405160200161178193929190612b51565b6040516020818303038152906040525b9392505050565b60008151116117b65760405180602001604052806000815250611791565b806010604051602001611781929190612b83565b50919050565b336117d9611107565b6001600160a01b0316146117ff5760405162461bcd60e51b815260040161083c90612d45565b600081116118415760405162461bcd60e51b815260206004820152600f60248201526e676966743a206d696e696d756d203160881b604482015260640161083c565b601254816013546118529190612e70565b11156118a05760405162461bcd60e51b815260206004820152601d60248201527f676966743a20776f756c6420657863656564206d617820737570706c79000000604482015260640161083c565b60005b81811015610ab5576118be8360135460016112d89190612e70565b6001601360008282546118d19190612e70565b909155508190506118e181612f33565b9150506118a3565b6001600160a01b03166000908152600d602052604090205490565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3361193b611107565b6001600160a01b0316146119615760405162461bcd60e51b815260040161083c90612d45565b6001600160a01b0381166119c65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161083c565b6119cf81611eaf565b50565b60006001600160e01b031982166380ac58cd60e01b1480611a0357506001600160e01b03198216635b5e139f60e01b145b8061085557506301ffc9a760e01b6001600160e01b0319831614610855565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a7482610e9a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6008546001600160a01b0384166000908152600a602052604081205490918391611ad79086612e9c565b611ae19190612e88565b611aeb9190612ebb565b949350505050565b80471015611b435760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161083c565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611b90576040519150601f19603f3d011682016040523d82523d6000602084013e611b95565b606091505b5050905080610ab55760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c20726044820152791958da5c1a595b9d081b585e481a185d99481c995d995c9d195960321b606482015260840161083c565b6000611c1482611a22565b611c755760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161083c565b6000611c8083610e9a565b9050806001600160a01b0316846001600160a01b03161480611cbb5750836001600160a01b0316611cb084610921565b6001600160a01b0316145b80611aeb5750611aeb8185611904565b826001600160a01b0316611cde82610e9a565b6001600160a01b031614611d465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161083c565b6001600160a01b038216611da85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161083c565b611db3600082611a3f565b6001600160a01b0383166000908152600360205260408120805460019290611ddc908490612ebb565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e0a908490612e70565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03868116918217909255915184939187169160008051602061301483398151915291a4505050565b610ab58363a9059cbb60e01b8484604051602401611e78929190612bd0565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915261213b565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c5882826040518060200160405280600081525061220d565b816001600160a01b0316836001600160a01b03161415611f795760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b604482015260640161083c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b600082611ff38584612240565b14949350505050565b612007848484611ccb565b612013848484846122ec565b6116a55760405162461bcd60e51b815260040161083c90612c39565b6060600f805461089e90612efe565b6060816120625750506040805180820190915260018152600360fc1b602082015290565b8160005b811561208c578061207681612f33565b91506120859050600a83612e88565b9150612066565b6000816001600160401b038111156120a6576120a6612fa4565b6040519080825280601f01601f1916602001820160405280156120d0576020820181803683370190505b5090505b8415611aeb576120e5600183612ebb565b91506120f2600a86612f4e565b6120fd906030612e70565b60f81b81838151811061211257612112612f8e565b60200101906001600160f81b031916908160001a905350612134600a86612e88565b94506120d4565b6000612190826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166123f99092919063ffffffff16565b805190915015610ab557808060200190518101906121ae919061299e565b610ab55760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161083c565b6122178383612408565b61222460008484846122ec565b610ab55760405162461bcd60e51b815260040161083c90612c39565b600081815b84518110156122e457600085828151811061226257612262612f8e565b602002602001015190508083116122a45760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506122d1565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806122dc81612f33565b915050612245565b509392505050565b60006001600160a01b0384163b156123ee57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612330903390899088908890600401612be9565b602060405180830381600087803b15801561234a57600080fd5b505af192505050801561237a575060408051601f3d908101601f19168201909252612377918101906129f1565b60015b6123d4573d8080156123a8576040519150601f19603f3d011682016040523d82523d6000602084013e6123ad565b606091505b5080516123cc5760405162461bcd60e51b815260040161083c90612c39565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611aeb565b506001949350505050565b6060611aeb8484600085612528565b6001600160a01b03821661245e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161083c565b61246781611a22565b156124b35760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b604482015260640161083c565b6001600160a01b03821660009081526003602052604081208054600192906124dc908490612e70565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386169081179091559051839290600080516020613014833981519152908290a45050565b6060824710156125895760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161083c565b843b6125d75760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161083c565b600080866001600160a01b031685876040516125f39190612b35565b60006040518083038185875af1925050503d8060008114612630576040519150601f19603f3d011682016040523d82523d6000602084013e612635565b606091505b5091509150612645828286612650565b979650505050505050565b6060831561265f575081611791565b82511561266f5782518084602001fd5b8160405162461bcd60e51b815260040161083c9190612c26565b82805461269590612efe565b90600052602060002090601f0160209004810192826126b757600085556126fd565b82601f106126d057805160ff19168380011785556126fd565b828001600101855582156126fd579182015b828111156126fd5782518255916020019190600101906126e2565b5061270992915061270d565b5090565b5b80821115612709576000815560010161270e565b60006001600160401b038084111561273c5761273c612fa4565b604051601f8501601f19908116603f0116810190828211818310171561276457612764612fa4565b8160405280935085815286868601111561277d57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156127a957600080fd5b813561179181612fba565b600080604083850312156127c757600080fd5b82356127d281612fba565b915060208301356127e281612fba565b809150509250929050565b60008060006060848603121561280257600080fd5b833561280d81612fba565b9250602084013561281d81612fba565b929592945050506040919091013590565b6000806000806080858703121561284457600080fd5b843561284f81612fba565b9350602085013561285f81612fba565b92506040850135915060608501356001600160401b0381111561288157600080fd5b8501601f8101871361289257600080fd5b6128a187823560208401612722565b91505092959194509250565b600080604083850312156128c057600080fd5b82356128cb81612fba565b915060208301356127e281612fcf565b600080604083850312156128ee57600080fd5b82356128f981612fba565b946020939093013593505050565b60008060006040848603121561291c57600080fd5b83356001600160401b038082111561293357600080fd5b818601915086601f83011261294757600080fd5b81358181111561295657600080fd5b8760208260051b850101111561296b57600080fd5b6020928301989097509590910135949350505050565b60006020828403121561299357600080fd5b813561179181612fcf565b6000602082840312156129b057600080fd5b815161179181612fcf565b6000602082840312156129cd57600080fd5b5035919050565b6000602082840312156129e657600080fd5b813561179181612fdd565b600060208284031215612a0357600080fd5b815161179181612fdd565b600060208284031215612a2057600080fd5b81356001600160401b03811115612a3657600080fd5b8201601f81018413612a4757600080fd5b611aeb84823560208401612722565b600060208284031215612a6857600080fd5b5051919050565b60008151808452612a87816020860160208601612ed2565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680612ab557607f831692505b6020808410821415612ad757634e487b7160e01b600052602260045260246000fd5b818015612aeb5760018114612afc57612b29565b60ff19861689528489019650612b29565b60008881526020902060005b86811015612b215781548b820152908501908301612b08565b505084890196505b50505050505092915050565b60008251612b47818460208701612ed2565b9190910192915050565b60008451612b63818460208901612ed2565b845190830190612b77818360208901612ed2565b61264581830186612a9b565b60008351612b95818460208801612ed2565b667072657669657760c81b908301908152612bb36007820185612a9b565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c1c90830184612a6f565b9695505050505050565b6020815260006117916020830184612a6f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600f908201526e6d696e743a206d696e696d756d203160881b604082015260600190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f6d696e743a2065746865722073656e74206973206e6f7420636f727265637400604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601d908201527f6d696e743a20776f756c6420657863656564206d617820737570706c79000000604082015260600190565b60008219821115612e8357612e83612f62565b500190565b600082612e9757612e97612f78565b500490565b6000816000190483118215151615612eb657612eb6612f62565b500290565b600082821015612ecd57612ecd612f62565b500390565b60005b83811015612eed578181015183820152602001612ed5565b838111156116a55750506000910152565b600181811c90821680612f1257607f821691505b602082108114156117ca57634e487b7160e01b600052602260045260246000fd5b6000600019821415612f4757612f47612f62565b5060010190565b600082612f5d57612f5d612f78565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146119cf57600080fd5b80151581146119cf57600080fd5b6001600160e01b0319811681146119cf57600080fdfe6d696e743a206578636565646564206d6178696d756d207175616e7469747920ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220ad82cb51f4388ffc21e1e6a22fcdca16e8078f3b081c928b7a1cb6d5438d7cad64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102265760003560e01c8062eb70131461026b57806301ffc9a71461028d57806305026cee146102c257806306fdde03146102e2578063081812fc14610304578063095ea7b3146103315780630bb12bb81461035157806318160ddd1461036b578063191655871461038f5780632392ff53146103af57806323b872dd146103dc5780632eb4a7ab146103fc5780633a98ef39146104125780633ccfd60b14610427578063406072a91461043c57806342842e0e1461045c57806348b750441461047c578063518302271461049c57806355f804b3146104bc57806361e61a25146104dc5780636352211e146104fb5780636c0360eb1461051b57806370a0823114610530578063715018a6146105505780637cb64759146105655780638a54af1d146105855780638b83209b146105a55780638da5cb5b146105c557806391b7f5ed146105da57806395d89b41146105fa5780639852595c1461060f5780639d1b464a1461062f578063a0712d6814610645578063a22cb46514610658578063a6d612f914610678578063b293f2b41461068b578063b7203b8f146106a1578063b88d4fde146106c1578063c6682862146106e1578063c87b56dd146106f6578063caa8078f14610716578063cbce4c971461072c578063ce7c2ac21461074c578063d5abeb0114610782578063d79779b214610798578063e33b7de3146107b8578063e985e9c5146107cd578063f2fde38b146107ed57600080fd5b36610266577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770333460405161025c929190612bd0565b60405180910390a1005b600080fd5b34801561027757600080fd5b5061028b6102863660046129bb565b61080d565b005b34801561029957600080fd5b506102ad6102a83660046129d4565b61084a565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b5061028b6102dd3660046129bb565b61085b565b3480156102ee57600080fd5b506102f761088f565b6040516102b99190612c26565b34801561031057600080fd5b5061032461031f3660046129bb565b610921565b6040516102b99190612bbc565b34801561033d57600080fd5b5061028b61034c3660046128db565b6109a9565b34801561035d57600080fd5b506016546102ad9060ff1681565b34801561037757600080fd5b5061038160135481565b6040519081526020016102b9565b34801561039b57600080fd5b5061028b6103aa366004612797565b610aba565b3480156103bb57600080fd5b506103816103ca366004612797565b601e6020526000908152604090205481565b3480156103e857600080fd5b5061028b6103f73660046127ed565b610bc9565b34801561040857600080fd5b5061038160175481565b34801561041e57600080fd5b50600854610381565b34801561043357600080fd5b5061028b610bfa565b34801561044857600080fd5b506103816104573660046127b4565b610c5c565b34801561046857600080fd5b5061028b6104773660046127ed565b610c87565b34801561048857600080fd5b5061028b6104973660046127b4565b610ca2565b3480156104a857600080fd5b506016546102ad9062010000900460ff1681565b3480156104c857600080fd5b5061028b6104d7366004612a0e565b610e58565b3480156104e857600080fd5b506016546102ad90610100900460ff1681565b34801561050757600080fd5b506103246105163660046129bb565b610e9a565b34801561052757600080fd5b506102f7610f11565b34801561053c57600080fd5b5061038161054b366004612797565b610f9f565b34801561055c57600080fd5b5061028b611026565b34801561057157600080fd5b5061028b6105803660046129bb565b611061565b34801561059157600080fd5b5061028b6105a0366004612981565b611095565b3480156105b157600080fd5b506103246105c03660046129bb565b6110d7565b3480156105d157600080fd5b50610324611107565b3480156105e657600080fd5b5061028b6105f53660046129bb565b611116565b34801561060657600080fd5b506102f761114a565b34801561061b57600080fd5b5061038161062a366004612797565b611159565b34801561063b57600080fd5b5061038160115481565b61028b6106533660046129bb565b611174565b34801561066457600080fd5b5061028b6106733660046128ad565b611311565b61028b610686366004612907565b61131c565b34801561069757600080fd5b5061038160145481565b3480156106ad57600080fd5b5061028b6106bc366004612981565b61162a565b3480156106cd57600080fd5b5061028b6106dc36600461282e565b611673565b3480156106ed57600080fd5b506102f76116ab565b34801561070257600080fd5b506102f76107113660046129bb565b6116b8565b34801561072257600080fd5b5061038160155481565b34801561073857600080fd5b5061028b6107473660046128db565b6117d0565b34801561075857600080fd5b50610381610767366004612797565b6001600160a01b03166000908152600a602052604090205490565b34801561078e57600080fd5b5061038160125481565b3480156107a457600080fd5b506103816107b3366004612797565b6118e9565b3480156107c457600080fd5b50600954610381565b3480156107d957600080fd5b506102ad6107e83660046127b4565b611904565b3480156107f957600080fd5b5061028b610808366004612797565b611932565b33610816611107565b6001600160a01b0316146108455760405162461bcd60e51b815260040161083c90612d45565b60405180910390fd5b601455565b6000610855826119d2565b92915050565b33610864611107565b6001600160a01b03161461088a5760405162461bcd60e51b815260040161083c90612d45565b601555565b60606000805461089e90612efe565b80601f01602080910402602001604051908101604052809291908181526020018280546108ca90612efe565b80156109175780601f106108ec57610100808354040283529160200191610917565b820191906000526020600020905b8154815290600101906020018083116108fa57829003601f168201915b5050505050905090565b600061092c82611a22565b61098d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161083c565b506000908152600460205260409020546001600160a01b031690565b60006109b482610e9a565b9050806001600160a01b0316836001600160a01b03161415610a225760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161083c565b336001600160a01b0382161480610a3e5750610a3e8133611904565b610aab5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b606482015260840161083c565b610ab58383611a3f565b505050565b6001600160a01b0381166000908152600a6020526040902054610aef5760405162461bcd60e51b815260040161083c90612cb4565b6000610afa60095490565b610b049047612e70565b90506000610b1b8383610b1686611159565b611aad565b905080610b3a5760405162461bcd60e51b815260040161083c90612cfa565b6001600160a01b0383166000908152600b602052604081208054839290610b62908490612e70565b925050819055508060096000828254610b7b9190612e70565b90915550610b8b90508382611af3565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610bbc929190612bd0565b60405180910390a1505050565b610bd33382611c09565b610bef5760405162461bcd60e51b815260040161083c90612db1565b610ab5838383611ccb565b33610c03611107565b6001600160a01b031614610c295760405162461bcd60e51b815260040161083c90612d45565b6040514790339082156108fc029083906000818181858888f19350505050158015610c58573d6000803e3d6000fd5b5050565b6001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b610ab583838360405180602001604052806000815250611673565b6001600160a01b0381166000908152600a6020526040902054610cd75760405162461bcd60e51b815260040161083c90612cb4565b6000610ce2836118e9565b6040516370a0823160e01b81526001600160a01b038516906370a0823190610d0e903090600401612bbc565b60206040518083038186803b158015610d2657600080fd5b505afa158015610d3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5e9190612a56565b610d689190612e70565b90506000610d7b8383610b168787610c5c565b905080610d9a5760405162461bcd60e51b815260040161083c90612cfa565b6001600160a01b038085166000908152600e6020908152604080832093871683529290529081208054839290610dd1908490612e70565b90915550506001600160a01b0384166000908152600d602052604081208054839290610dfe908490612e70565b90915550610e0f9050848483611e59565b836001600160a01b03167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a8483604051610e4a929190612bd0565b60405180910390a250505050565b33610e61611107565b6001600160a01b031614610e875760405162461bcd60e51b815260040161083c90612d45565b8051610c5890600f906020840190612689565b6000818152600260205260408120546001600160a01b0316806108555760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161083c565b600f8054610f1e90612efe565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4a90612efe565b8015610f975780601f10610f6c57610100808354040283529160200191610f97565b820191906000526020600020905b815481529060010190602001808311610f7a57829003601f168201915b505050505081565b60006001600160a01b03821661100a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161083c565b506001600160a01b031660009081526003602052604090205490565b3361102f611107565b6001600160a01b0316146110555760405162461bcd60e51b815260040161083c90612d45565b61105f6000611eaf565b565b3361106a611107565b6001600160a01b0316146110905760405162461bcd60e51b815260040161083c90612d45565b601755565b3361109e611107565b6001600160a01b0316146110c45760405162461bcd60e51b815260040161083c90612d45565b6016805460ff1916911515919091179055565b6000600c82815481106110ec576110ec612f8e565b6000918252602090912001546001600160a01b031692915050565b6006546001600160a01b031690565b3361111f611107565b6001600160a01b0316146111455760405162461bcd60e51b815260040161083c90612d45565b601155565b60606001805461089e90612efe565b6001600160a01b03166000908152600b602052604090205490565b600260075414156111975760405162461bcd60e51b815260040161083c90612e02565b600260075560165460ff16156111ee5760405162461bcd60e51b815260206004820152601c60248201527b6d696e743a207075626c69632073616c65206e6f742061637469766560201b604482015260640161083c565b6000811161120e5760405162461bcd60e51b815260040161083c90612c8b565b60155481111561125e5760405162461bcd60e51b81526020600482015260276024820152600080516020612ff48339815191526044820152663832b9103a3c3760c91b606482015260840161083c565b6012548160135461126f9190612e70565b111561128d5760405162461bcd60e51b815260040161083c90612e39565b8060115461129b9190612e9c565b3410156112ba5760405162461bcd60e51b815260040161083c90612d7a565b60005b81811015611308576112dd3360135460016112d89190612e70565b611f01565b6001601360008282546112f09190612e70565b9091555081905061130081612f33565b9150506112bd565b50506001600755565b610c58338383611f1b565b6002600754141561133f5760405162461bcd60e51b815260040161083c90612e02565b60026007556017546040516001600160601b03193360601b1660208201526113b8919060340160405160208183030381529060405280519060200120858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929493925050611fe69050565b6113fd5760405162461bcd60e51b81526020600482015260166024820152751b5a5b9d0e881b9bdd081bdb881dda1a5d195b1a5cdd60521b604482015260640161083c565b601654610100900460ff16156114555760405162461bcd60e51b815260206004820152601f60248201527f6d696e743a2077686974656c6973742073616c65206e6f742061637469766500604482015260640161083c565b601454336000908152601e6020526040902054611473908390612e70565b11156114d55760405162461bcd60e51b815260206004820152602b60248201527f6d696e743a2065786365656473206d6178696d756d207175616e69747920706560448201526a1c881dda1a5d195b1a5cdd60aa1b606482015260840161083c565b600081116114f55760405162461bcd60e51b815260040161083c90612c8b565b6014548111156115535760405162461bcd60e51b81526020600482015260356024820152600080516020612ff48339815191526044820152741c195c881d1e1b88199bdc881dda1a5d195b1a5cdd605a1b606482015260840161083c565b601254816013546115649190612e70565b11156115825760405162461bcd60e51b815260040161083c90612e39565b806011546115909190612e9c565b3410156115af5760405162461bcd60e51b815260040161083c90612d7a565b60005b8181101561161f576115cd3360135460016112d89190612e70565b336000908152601e602052604081208054600192906115ed908490612e70565b925050819055506001601360008282546116079190612e70565b9091555081905061161781612f33565b9150506115b2565b505060016007555050565b33611633611107565b6001600160a01b0316146116595760405162461bcd60e51b815260040161083c90612d45565b601680549115156101000261ff0019909216919091179055565b61167d3383611c09565b6116995760405162461bcd60e51b815260040161083c90612db1565b6116a584848484611ffc565b50505050565b60108054610f1e90612efe565b60606116c382611a22565b6117275760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161083c565b600061173161202f565b60165490915062010000900460ff16156117985760008151116117635760405180602001604052806000815250611791565b8061176d8461203e565b601060405160200161178193929190612b51565b6040516020818303038152906040525b9392505050565b60008151116117b65760405180602001604052806000815250611791565b806010604051602001611781929190612b83565b50919050565b336117d9611107565b6001600160a01b0316146117ff5760405162461bcd60e51b815260040161083c90612d45565b600081116118415760405162461bcd60e51b815260206004820152600f60248201526e676966743a206d696e696d756d203160881b604482015260640161083c565b601254816013546118529190612e70565b11156118a05760405162461bcd60e51b815260206004820152601d60248201527f676966743a20776f756c6420657863656564206d617820737570706c79000000604482015260640161083c565b60005b81811015610ab5576118be8360135460016112d89190612e70565b6001601360008282546118d19190612e70565b909155508190506118e181612f33565b9150506118a3565b6001600160a01b03166000908152600d602052604090205490565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3361193b611107565b6001600160a01b0316146119615760405162461bcd60e51b815260040161083c90612d45565b6001600160a01b0381166119c65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161083c565b6119cf81611eaf565b50565b60006001600160e01b031982166380ac58cd60e01b1480611a0357506001600160e01b03198216635b5e139f60e01b145b8061085557506301ffc9a760e01b6001600160e01b0319831614610855565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a7482610e9a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6008546001600160a01b0384166000908152600a602052604081205490918391611ad79086612e9c565b611ae19190612e88565b611aeb9190612ebb565b949350505050565b80471015611b435760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161083c565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611b90576040519150601f19603f3d011682016040523d82523d6000602084013e611b95565b606091505b5050905080610ab55760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c20726044820152791958da5c1a595b9d081b585e481a185d99481c995d995c9d195960321b606482015260840161083c565b6000611c1482611a22565b611c755760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161083c565b6000611c8083610e9a565b9050806001600160a01b0316846001600160a01b03161480611cbb5750836001600160a01b0316611cb084610921565b6001600160a01b0316145b80611aeb5750611aeb8185611904565b826001600160a01b0316611cde82610e9a565b6001600160a01b031614611d465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161083c565b6001600160a01b038216611da85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161083c565b611db3600082611a3f565b6001600160a01b0383166000908152600360205260408120805460019290611ddc908490612ebb565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e0a908490612e70565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03868116918217909255915184939187169160008051602061301483398151915291a4505050565b610ab58363a9059cbb60e01b8484604051602401611e78929190612bd0565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915261213b565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c5882826040518060200160405280600081525061220d565b816001600160a01b0316836001600160a01b03161415611f795760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b604482015260640161083c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b600082611ff38584612240565b14949350505050565b612007848484611ccb565b612013848484846122ec565b6116a55760405162461bcd60e51b815260040161083c90612c39565b6060600f805461089e90612efe565b6060816120625750506040805180820190915260018152600360fc1b602082015290565b8160005b811561208c578061207681612f33565b91506120859050600a83612e88565b9150612066565b6000816001600160401b038111156120a6576120a6612fa4565b6040519080825280601f01601f1916602001820160405280156120d0576020820181803683370190505b5090505b8415611aeb576120e5600183612ebb565b91506120f2600a86612f4e565b6120fd906030612e70565b60f81b81838151811061211257612112612f8e565b60200101906001600160f81b031916908160001a905350612134600a86612e88565b94506120d4565b6000612190826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166123f99092919063ffffffff16565b805190915015610ab557808060200190518101906121ae919061299e565b610ab55760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161083c565b6122178383612408565b61222460008484846122ec565b610ab55760405162461bcd60e51b815260040161083c90612c39565b600081815b84518110156122e457600085828151811061226257612262612f8e565b602002602001015190508083116122a45760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506122d1565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806122dc81612f33565b915050612245565b509392505050565b60006001600160a01b0384163b156123ee57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612330903390899088908890600401612be9565b602060405180830381600087803b15801561234a57600080fd5b505af192505050801561237a575060408051601f3d908101601f19168201909252612377918101906129f1565b60015b6123d4573d8080156123a8576040519150601f19603f3d011682016040523d82523d6000602084013e6123ad565b606091505b5080516123cc5760405162461bcd60e51b815260040161083c90612c39565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611aeb565b506001949350505050565b6060611aeb8484600085612528565b6001600160a01b03821661245e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161083c565b61246781611a22565b156124b35760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b604482015260640161083c565b6001600160a01b03821660009081526003602052604081208054600192906124dc908490612e70565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386169081179091559051839290600080516020613014833981519152908290a45050565b6060824710156125895760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161083c565b843b6125d75760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161083c565b600080866001600160a01b031685876040516125f39190612b35565b60006040518083038185875af1925050503d8060008114612630576040519150601f19603f3d011682016040523d82523d6000602084013e612635565b606091505b5091509150612645828286612650565b979650505050505050565b6060831561265f575081611791565b82511561266f5782518084602001fd5b8160405162461bcd60e51b815260040161083c9190612c26565b82805461269590612efe565b90600052602060002090601f0160209004810192826126b757600085556126fd565b82601f106126d057805160ff19168380011785556126fd565b828001600101855582156126fd579182015b828111156126fd5782518255916020019190600101906126e2565b5061270992915061270d565b5090565b5b80821115612709576000815560010161270e565b60006001600160401b038084111561273c5761273c612fa4565b604051601f8501601f19908116603f0116810190828211818310171561276457612764612fa4565b8160405280935085815286868601111561277d57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156127a957600080fd5b813561179181612fba565b600080604083850312156127c757600080fd5b82356127d281612fba565b915060208301356127e281612fba565b809150509250929050565b60008060006060848603121561280257600080fd5b833561280d81612fba565b9250602084013561281d81612fba565b929592945050506040919091013590565b6000806000806080858703121561284457600080fd5b843561284f81612fba565b9350602085013561285f81612fba565b92506040850135915060608501356001600160401b0381111561288157600080fd5b8501601f8101871361289257600080fd5b6128a187823560208401612722565b91505092959194509250565b600080604083850312156128c057600080fd5b82356128cb81612fba565b915060208301356127e281612fcf565b600080604083850312156128ee57600080fd5b82356128f981612fba565b946020939093013593505050565b60008060006040848603121561291c57600080fd5b83356001600160401b038082111561293357600080fd5b818601915086601f83011261294757600080fd5b81358181111561295657600080fd5b8760208260051b850101111561296b57600080fd5b6020928301989097509590910135949350505050565b60006020828403121561299357600080fd5b813561179181612fcf565b6000602082840312156129b057600080fd5b815161179181612fcf565b6000602082840312156129cd57600080fd5b5035919050565b6000602082840312156129e657600080fd5b813561179181612fdd565b600060208284031215612a0357600080fd5b815161179181612fdd565b600060208284031215612a2057600080fd5b81356001600160401b03811115612a3657600080fd5b8201601f81018413612a4757600080fd5b611aeb84823560208401612722565b600060208284031215612a6857600080fd5b5051919050565b60008151808452612a87816020860160208601612ed2565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680612ab557607f831692505b6020808410821415612ad757634e487b7160e01b600052602260045260246000fd5b818015612aeb5760018114612afc57612b29565b60ff19861689528489019650612b29565b60008881526020902060005b86811015612b215781548b820152908501908301612b08565b505084890196505b50505050505092915050565b60008251612b47818460208701612ed2565b9190910192915050565b60008451612b63818460208901612ed2565b845190830190612b77818360208901612ed2565b61264581830186612a9b565b60008351612b95818460208801612ed2565b667072657669657760c81b908301908152612bb36007820185612a9b565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c1c90830184612a6f565b9695505050505050565b6020815260006117916020830184612a6f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600f908201526e6d696e743a206d696e696d756d203160881b604082015260600190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f6d696e743a2065746865722073656e74206973206e6f7420636f727265637400604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601d908201527f6d696e743a20776f756c6420657863656564206d617820737570706c79000000604082015260600190565b60008219821115612e8357612e83612f62565b500190565b600082612e9757612e97612f78565b500490565b6000816000190483118215151615612eb657612eb6612f62565b500290565b600082821015612ecd57612ecd612f62565b500390565b60005b83811015612eed578181015183820152602001612ed5565b838111156116a55750506000910152565b600181811c90821680612f1257607f821691505b602082108114156117ca57634e487b7160e01b600052602260045260246000fd5b6000600019821415612f4757612f47612f62565b5060010190565b600082612f5d57612f5d612f78565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146119cf57600080fd5b80151581146119cf57600080fd5b6001600160e01b0319811681146119cf57600080fdfe6d696e743a206578636565646564206d6178696d756d207175616e7469747920ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220ad82cb51f4388ffc21e1e6a22fcdca16e8078f3b081c928b7a1cb6d5438d7cad64736f6c63430008070033

Deployed Bytecode Sourcemap

57834:5060:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30900:40;12848:10;30930:9;30900:40;;;;;;;:::i;:::-;;;;;;;;57834:5060;;;;;62101:152;;;;;;;;;;-1:-1:-1;62101:152:0;;;;;:::i;:::-;;:::i;:::-;;62736:153;;;;;;;;;;-1:-1:-1;62736:153:0;;;;;:::i;:::-;;:::i;:::-;;;11625:14:1;;11618:22;11600:41;;11588:2;11573:18;62736:153:0;;;;;;;;61971:122;;;;;;;;;;-1:-1:-1;61971:122:0;;;;;:::i;:::-;;:::i;46248:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;47807:221::-;;;;;;;;;;-1:-1:-1;47807:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;47330:411::-;;;;;;;;;;-1:-1:-1;47330:411:0;;;;;:::i;:::-;;:::i;58284:31::-;;;;;;;;;;-1:-1:-1;58284:31:0;;;;;;;;58154:30;;;;;;;;;;;;;;;;;;;11798:25:1;;;11786:2;11771:18;58154:30:0;11652:177:1;32686:566:0;;;;;;;;;;-1:-1:-1;32686:566:0;;;;;:::i;:::-;;:::i;58834:57::-;;;;;;;;;;-1:-1:-1;58834:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;48557:339;;;;;;;;;;-1:-1:-1;48557:339:0;;;;;:::i;:::-;;:::i;58400:25::-;;;;;;;;;;;;;;;;31031:91;;;;;;;;;;-1:-1:-1;31102:12:0;;31031:91;;62585:143;;;;;;;;;;;;;:::i;32160:135::-;;;;;;;;;;-1:-1:-1;32160:135:0;;;;;:::i;:::-;;:::i;48967:185::-;;;;;;;;;;-1:-1:-1;48967:185:0;;;;;:::i;:::-;;:::i;33520:641::-;;;;;;;;;;-1:-1:-1;33520:641:0;;;;;:::i;:::-;;:::i;58363:28::-;;;;;;;;;;-1:-1:-1;58363:28:0;;;;;;;;;;;61754:104;;;;;;;;;;-1:-1:-1;61754:104:0;;;;;:::i;:::-;;:::i;58322:34::-;;;;;;;;;;-1:-1:-1;58322:34:0;;;;;;;;;;;45942:239;;;;;;;;;;-1:-1:-1;45942:239:0;;;;;:::i;:::-;;:::i;57996:21::-;;;;;;;;;;;;;:::i;45672:208::-;;;;;;;;;;-1:-1:-1;45672:208:0;;;;;:::i;:::-;;:::i;14695:103::-;;;;;;;;;;;;;:::i;62473:104::-;;;;;;;;;;-1:-1:-1;62473:104:0;;;;;:::i;:::-;;:::i;62370:95::-;;;;;;;;;;-1:-1:-1;62370:95:0;;;;;:::i;:::-;;:::i;32386:100::-;;;;;;;;;;-1:-1:-1;32386:100:0;;;;;:::i;:::-;;:::i;14044:87::-;;;;;;;;;;;;;:::i;61866:97::-;;;;;;;;;;-1:-1:-1;61866:97:0;;;;;:::i;:::-;;:::i;46417:104::-;;;;;;;;;;;;;:::i;31882:109::-;;;;;;;;;;-1:-1:-1;31882:109:0;;;;;:::i;:::-;;:::i;58070:39::-;;;;;;;;;;;;;;;;59129:595;;;;;;:::i;:::-;;:::i;48100:155::-;;;;;;;;;;-1:-1:-1;48100:155:0;;;;;:::i;:::-;;:::i;59732:993::-;;;;;;:::i;:::-;;:::i;58191:44::-;;;;;;;;;;;;;;;;62261:101;;;;;;;;;;-1:-1:-1;62261:101:0;;;;;:::i;:::-;;:::i;49223:328::-;;;;;;;;;;-1:-1:-1;49223:328:0;;;;;:::i;:::-;;:::i;58024:37::-;;;;;;;;;;;;;:::i;61125:621::-;;;;;;;;;;-1:-1:-1;61125:621:0;;;;;:::i;:::-;;:::i;58242:33::-;;;;;;;;;;;;;;;;60733:384;;;;;;;;;;-1:-1:-1;60733:384:0;;;;;:::i;:::-;;:::i;31678:105::-;;;;;;;;;;-1:-1:-1;31678:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;31759:16:0;31732:7;31759:16;;;:7;:16;;;;;;;31678:105;58116:31;;;;;;;;;;;;;;;;31468:119;;;;;;;;;;-1:-1:-1;31468:119:0;;;;;:::i;:::-;;:::i;31216:95::-;;;;;;;;;;-1:-1:-1;31289:14:0;;31216:95;;48326:164;;;;;;;;;;-1:-1:-1;48326:164:0;;;;;:::i;:::-;;:::i;14953:201::-;;;;;;;;;;-1:-1:-1;14953:201:0;;;;;:::i;:::-;;:::i;62101:152::-;12848:10;14264:7;:5;:7::i;:::-;-1:-1:-1;;;;;14264:23:0;;14256:68;;;;-1:-1:-1;;;14256:68:0;;;;;;;:::i;:::-;;;;;;;;;62194:25:::1;:51:::0;62101:152::o;62736:153::-;62821:4;62845:36;62869:11;62845:23;:36::i;:::-;62838:43;62736:153;-1:-1:-1;;62736:153:0:o;61971:122::-;12848:10;14264:7;:5;:7::i;:::-;-1:-1:-1;;;;;14264:23:0;;14256:68;;;;-1:-1:-1;;;14256:68:0;;;;;;;:::i;:::-;62052:13:::1;:33:::0;61971:122::o;46248:100::-;46302:13;46335:5;46328:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46248:100;:::o;47807:221::-;47883:7;47911:16;47919:7;47911;:16::i;:::-;47903:73;;;;-1:-1:-1;;;47903:73:0;;20109:2:1;47903:73:0;;;20091:21:1;20148:2;20128:18;;;20121:30;20187:34;20167:18;;;20160:62;-1:-1:-1;;;20238:18:1;;;20231:42;20290:19;;47903:73:0;19907:408:1;47903:73:0;-1:-1:-1;47996:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;47996:24:0;;47807:221::o;47330:411::-;47411:13;47427:23;47442:7;47427:14;:23::i;:::-;47411:39;;47475:5;-1:-1:-1;;;;;47469:11:0;:2;-1:-1:-1;;;;;47469:11:0;;;47461:57;;;;-1:-1:-1;;;47461:57:0;;22429:2:1;47461:57:0;;;22411:21:1;22468:2;22448:18;;;22441:30;22507:34;22487:18;;;22480:62;-1:-1:-1;;;22558:18:1;;;22551:31;22599:19;;47461:57:0;22227:397:1;47461:57:0;12848:10;-1:-1:-1;;;;;47553:21:0;;;;:62;;-1:-1:-1;47578:37:0;47595:5;12848:10;48326:164;:::i;47578:37::-;47531:168;;;;-1:-1:-1;;;47531:168:0;;18502:2:1;47531:168:0;;;18484:21:1;18541:2;18521:18;;;18514:30;18580:34;18560:18;;;18553:62;-1:-1:-1;;;18631:18:1;;;18624:54;18695:19;;47531:168:0;18300:420:1;47531:168:0;47712:21;47721:2;47725:7;47712:8;:21::i;:::-;47400:341;47330:411;;:::o;32686:566::-;-1:-1:-1;;;;;32762:16:0;;32781:1;32762:16;;;:7;:16;;;;;;32754:71;;;;-1:-1:-1;;;32754:71:0;;;;;;;:::i;:::-;32838:21;32886:15;31289:14;;;31216:95;32886:15;32862:39;;:21;:39;:::i;:::-;32838:63;;32912:15;32930:58;32946:7;32955:13;32970:17;32979:7;32970:8;:17::i;:::-;32930:15;:58::i;:::-;32912:76;-1:-1:-1;33009:12:0;33001:68;;;;-1:-1:-1;;;33001:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33082:18:0;;;;;;:9;:18;;;;;:29;;33104:7;;33082:18;:29;;33104:7;;33082:29;:::i;:::-;;;;;;;;33140:7;33122:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;33160:35:0;;-1:-1:-1;33178:7:0;33187;33160:17;:35::i;:::-;33211:33;33227:7;33236;33211:33;;;;;;;:::i;:::-;;;;;;;;32743:509;;32686:566;:::o;48557:339::-;48752:41;12848:10;48785:7;48752:18;:41::i;:::-;48744:103;;;;-1:-1:-1;;;48744:103:0;;;;;;;:::i;:::-;48860:28;48870:4;48876:2;48880:7;48860:9;:28::i;62585:143::-;12848:10;14264:7;:5;:7::i;:::-;-1:-1:-1;;;;;14264:23:0;;14256:68;;;;-1:-1:-1;;;14256:68:0;;;;;;;:::i;:::-;62683:37:::1;::::0;62651:21:::1;::::0;62691:10:::1;::::0;62683:37;::::1;;;::::0;62651:21;;62633:15:::1;62683:37:::0;62633:15;62683:37;62651:21;62691:10;62683:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;62622:106;62585:143::o:0;32160:135::-;-1:-1:-1;;;;;32257:21:0;;;32230:7;32257:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;32160:135::o;48967:185::-;49105:39;49122:4;49128:2;49132:7;49105:39;;;;;;;;;;;;:16;:39::i;33520:641::-;-1:-1:-1;;;;;33602:16:0;;33621:1;33602:16;;;:7;:16;;;;;;33594:71;;;;-1:-1:-1;;;33594:71:0;;;;;;;:::i;:::-;33678:21;33735:20;33749:5;33735:13;:20::i;:::-;33702:30;;-1:-1:-1;;;33702:30:0;;-1:-1:-1;;;;;33702:15:0;;;;;:30;;33726:4;;33702:30;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;33678:77;;33766:15;33784:65;33800:7;33809:13;33824:24;33833:5;33840:7;33824:8;:24::i;33784:65::-;33766:83;-1:-1:-1;33870:12:0;33862:68;;;;-1:-1:-1;;;33862:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33943:21:0;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;;;:41;;33977:7;;33943:21;:41;;33977:7;;33943:41;:::i;:::-;;;;-1:-1:-1;;;;;;;33995:26:0;;;;;;:19;:26;;;;;:37;;34025:7;;33995:26;:37;;34025:7;;33995:37;:::i;:::-;;;;-1:-1:-1;34045:47:0;;-1:-1:-1;34068:5:0;34075:7;34084;34045:22;:47::i;:::-;34129:5;-1:-1:-1;;;;;34108:45:0;;34136:7;34145;34108:45;;;;;;;:::i;:::-;;;;;;;;33583:578;;33520:641;;:::o;61754:104::-;12848:10;14264:7;:5;:7::i;:::-;-1:-1:-1;;;;;14264:23:0;;14256:68;;;;-1:-1:-1;;;14256:68:0;;;;;;;:::i;:::-;61829:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;45942:239::-:0;46014:7;46050:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46050:16:0;46085:19;46077:73;;;;-1:-1:-1;;;46077:73:0;;19338:2:1;46077:73:0;;;19320:21:1;19377:2;19357:18;;;19350:30;19416:34;19396:18;;;19389:62;-1:-1:-1;;;19467:18:1;;;19460:39;19516:19;;46077:73:0;19136:405:1;57996:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45672:208::-;45744:7;-1:-1:-1;;;;;45772:19:0;;45764:74;;;;-1:-1:-1;;;45764:74:0;;18927:2:1;45764:74:0;;;18909:21:1;18966:2;18946:18;;;18939:30;19005:34;18985:18;;;18978:62;-1:-1:-1;;;19056:18:1;;;19049:40;19106:19;;45764:74:0;18725:406:1;45764:74:0;-1:-1:-1;;;;;;45856:16:0;;;;;:9;:16;;;;;;;45672:208::o;14695:103::-;12848:10;14264:7;:5;:7::i;:::-;-1:-1:-1;;;;;14264:23:0;;14256:68;;;;-1:-1:-1;;;14256:68:0;;;;;;;:::i;:::-;14760:30:::1;14787:1;14760:18;:30::i;:::-;14695:103::o:0;62473:104::-;12848:10;14264:7;:5;:7::i;:::-;-1:-1:-1;;;;;14264:23:0;;14256:68;;;;-1:-1:-1;;;14256:68:0;;;;;;;:::i;:::-;62545:10:::1;:24:::0;62473:104::o;62370:95::-;12848:10;14264:7;:5;:7::i;:::-;-1:-1:-1;;;;;14264:23:0;;14256:68;;;;-1:-1:-1;;;14256:68:0;;;;;;;:::i;:::-;62436:12:::1;:21:::0;;-1:-1:-1;;62436:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;62370:95::o;32386:100::-;32437:7;32464;32472:5;32464:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;32464:14:0;;32386:100;-1:-1:-1;;32386:100:0:o;14044:87::-;14117:6;;-1:-1:-1;;;;;14117:6:0;;14044:87::o;61866:97::-;12848:10;14264:7;:5;:7::i;:::-;-1:-1:-1;;;;;14264:23:0;;14256:68;;;;-1:-1:-1;;;14256:68:0;;;;;;;:::i;:::-;61931:12:::1;:24:::0;61866:97::o;46417:104::-;46473:13;46506:7;46499:14;;;;;:::i;31882:109::-;-1:-1:-1;;;;;31965:18:0;31938:7;31965:18;;;:9;:18;;;;;;;31882:109::o;59129:595::-;6850:1;7448:7;;:19;;7440:63;;;;-1:-1:-1;;;7440:63:0;;;;;;;:::i;:::-;6850:1;7581:7;:18;59209:12:::1;::::0;::::1;;59208:13;59200:54;;;::::0;-1:-1:-1;;;59200:54:0;;24019:2:1;59200:54:0::1;::::0;::::1;24001:21:1::0;24058:2;24038:18;;;24031:30;-1:-1:-1;;;24077:18:1;;;24070:58;24145:18;;59200:54:0::1;23817:352:1::0;59200:54:0::1;59284:1;59273:8;:12;59265:40;;;;-1:-1:-1::0;;;59265:40:0::1;;;;;;;:::i;:::-;59336:13;;59324:8;:25;;59316:77;;;::::0;-1:-1:-1;;;59316:77:0;;13026:2:1;59316:77:0::1;::::0;::::1;13008:21:1::0;13065:2;13045:18;;;13038:30;-1:-1:-1;;;;;;;;;;;13084:18:1;;;13077:62;-1:-1:-1;;;13155:18:1;;;13148:37;13202:19;;59316:77:0::1;12824:403:1::0;59316:77:0::1;59438:9;;59426:8;59412:11;;:22;;;;:::i;:::-;:35;;59404:77;;;;-1:-1:-1::0;;;59404:77:0::1;;;;;;;:::i;:::-;59528:8;59513:12;;:23;;;;:::i;:::-;59500:9;:36;;59492:80;;;;-1:-1:-1::0;;;59492:80:0::1;;;;;;;:::i;:::-;59590:6;59585:132;59606:8;59602:1;:12;59585:132;;;59636:38;59646:10;59658:11;;59672:1;59658:15;;;;:::i;:::-;59636:9;:38::i;:::-;59704:1;59689:11;;:16;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;59616:3:0;;-1:-1:-1;59616:3:0::1;::::0;::::1;:::i;:::-;;;;59585:132;;;-1:-1:-1::0;;6806:1:0;7760:7;:22;59129:595::o;48100:155::-;48195:52;12848:10;48228:8;48238;48195:18;:52::i;59732:993::-;6850:1;7448:7;;:19;;7440:63;;;;-1:-1:-1;;;7440:63:0;;;;;;;:::i;:::-;6850:1;7581:7;:18;59884:10:::1;::::0;59906:28:::1;::::0;-1:-1:-1;;;;;;59923:10:0::1;8315:2:1::0;8286:15;8282:45;59906:28:0::1;::::0;::::1;8270:58:1::0;59871:65:0::1;::::0;59884:10;8344:12:1;;59906:28:0::1;;;;;;;;;;;;59896:39;;;;;;59871:5;;:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;59871:12:0;;:65;;-1:-1:-1;;59871:12:0::1;:65:::0;-1:-1:-1;59871:65:0:i:1;:::-;59863:100;;;::::0;-1:-1:-1;;;59863:100:0;;24787:2:1;59863:100:0::1;::::0;::::1;24769:21:1::0;24826:2;24806:18;;;24799:30;-1:-1:-1;;;24845:18:1;;;24838:52;24907:18;;59863:100:0::1;24585:346:1::0;59863:100:0::1;59983:15;::::0;::::1;::::0;::::1;;;59982:16;59974:60;;;::::0;-1:-1:-1;;;59974:60:0;;22069:2:1;59974:60:0::1;::::0;::::1;22051:21:1::0;22108:2;22088:18;;;22081:30;22147:33;22127:18;;;22120:61;22198:18;;59974:60:0::1;21867:355:1::0;59974:60:0::1;60102:25;::::0;60076:10:::1;60053:34;::::0;;;:22:::1;:34;::::0;;;;;:45:::1;::::0;60090:8;;60053:45:::1;:::i;:::-;:74;;60045:130;;;::::0;-1:-1:-1;;;60045:130:0;;22831:2:1;60045:130:0::1;::::0;::::1;22813:21:1::0;22870:2;22850:18;;;22843:30;22909:34;22889:18;;;22882:62;-1:-1:-1;;;22960:18:1;;;22953:41;23011:19;;60045:130:0::1;22629:407:1::0;60045:130:0::1;60205:1;60194:8;:12;60186:40;;;;-1:-1:-1::0;;;60186:40:0::1;;;;;;;:::i;:::-;60257:25;;60245:8;:37;;60237:103;;;::::0;-1:-1:-1;;;60237:103:0;;12604:2:1;60237:103:0::1;::::0;::::1;12586:21:1::0;12643:2;12623:18;;;12616:30;-1:-1:-1;;;;;;;;;;;12662:18:1;;;12655:62;-1:-1:-1;;;12733:18:1;;;12726:51;12794:19;;60237:103:0::1;12402:417:1::0;60237:103:0::1;60385:9;;60373:8;60359:11;;:22;;;;:::i;:::-;:35;;60351:77;;;;-1:-1:-1::0;;;60351:77:0::1;;;;;;;:::i;:::-;60475:8;60460:12;;:23;;;;:::i;:::-;60447:9;:36;;60439:80;;;;-1:-1:-1::0;;;60439:80:0::1;;;;;;;:::i;:::-;60537:6;60532:186;60553:8;60549:1;:12;60532:186;;;60583:38;60593:10;60605:11;;60619:1;60605:15;;;;:::i;60583:38::-;60659:10;60636:34;::::0;;;:22:::1;:34;::::0;;;;:39;;60674:1:::1;::::0;60636:34;:39:::1;::::0;60674:1;;60636:39:::1;:::i;:::-;;;;;;;;60705:1;60690:11;;:16;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;60563:3:0;;-1:-1:-1;60563:3:0::1;::::0;::::1;:::i;:::-;;;;60532:186;;;-1:-1:-1::0;;6806:1:0;7760:7;:22;-1:-1:-1;;59732:993:0:o;62261:101::-;12848:10;14264:7;:5;:7::i;:::-;-1:-1:-1;;;;;14264:23:0;;14256:68;;;;-1:-1:-1;;;14256:68:0;;;;;;;:::i;:::-;62330:15:::1;:24:::0;;;::::1;;;;-1:-1:-1::0;;62330:24:0;;::::1;::::0;;;::::1;::::0;;62261:101::o;49223:328::-;49398:41;12848:10;49431:7;49398:18;:41::i;:::-;49390:103;;;;-1:-1:-1;;;49390:103:0;;;;;;;:::i;:::-;49504:39;49518:4;49524:2;49528:7;49537:5;49504:13;:39::i;:::-;49223:328;;;;:::o;58024:37::-;;;;;;;:::i;61125:621::-;61198:13;61232:16;61240:7;61232;:16::i;:::-;61224:75;;;;-1:-1:-1;;;61224:75:0;;21293:2:1;61224:75:0;;;21275:21:1;21332:2;21312:18;;;21305:30;21371:34;21351:18;;;21344:62;-1:-1:-1;;;21422:18:1;;;21415:45;21477:19;;61224:75:0;21091:411:1;61224:75:0;61310:28;61341:10;:8;:10::i;:::-;61366:8;;61310:41;;-1:-1:-1;61366:8:0;;;;;61362:377;;;61429:1;61404:14;61398:28;:32;:149;;;;;;;;;;;;;;;;;61474:14;61490:18;:7;:16;:18::i;:::-;61510:13;61457:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61398:149;61391:156;61125:621;-1:-1:-1;;;61125:621:0:o;61362:377::-;61618:1;61593:14;61587:28;:32;:140;;;;;;;;;;;;;;;;;61663:14;61690:13;61646:58;;;;;;;;;:::i;61362:377::-;61213:533;61125:621;;;:::o;60733:384::-;12848:10;14264:7;:5;:7::i;:::-;-1:-1:-1;;;;;14264:23:0;;14256:68;;;;-1:-1:-1;;;14256:68:0;;;;;;;:::i;:::-;60854:1:::1;60843:8;:12;60835:40;;;::::0;-1:-1:-1;;;60835:40:0;;12260:2:1;60835:40:0::1;::::0;::::1;12242:21:1::0;12299:2;12279:18;;;12272:30;-1:-1:-1;;;12318:18:1;;;12311:45;12373:18;;60835:40:0::1;12058:339:1::0;60835:40:0::1;60920:9;;60908:8;60894:11;;:22;;;;:::i;:::-;:35;;60886:77;;;::::0;-1:-1:-1;;;60886:77:0;;14961:2:1;60886:77:0::1;::::0;::::1;14943:21:1::0;15000:2;14980:18;;;14973:30;15039:31;15019:18;;;15012:59;15088:18;;60886:77:0::1;14759:353:1::0;60886:77:0::1;60988:9;60984:126;61003:8;60999:1;:12;60984:126;;;61032:35;61042:7;61051:11;;61065:1;61051:15;;;;:::i;61032:35::-;61097:1;61082:11;;:16;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;61013:3:0;;-1:-1:-1;61013:3:0::1;::::0;::::1;:::i;:::-;;;;60984:126;;31468:119:::0;-1:-1:-1;;;;;31553:26:0;31526:7;31553:26;;;:19;:26;;;;;;;31468:119::o;48326:164::-;-1:-1:-1;;;;;48447:25:0;;;48423:4;48447:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;48326:164::o;14953:201::-;12848:10;14264:7;:5;:7::i;:::-;-1:-1:-1;;;;;14264:23:0;;14256:68;;;;-1:-1:-1;;;14256:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15042:22:0;::::1;15034:73;;;::::0;-1:-1:-1;;;15034:73:0;;13853:2:1;15034:73:0::1;::::0;::::1;13835:21:1::0;13892:2;13872:18;;;13865:30;13931:34;13911:18;;;13904:62;-1:-1:-1;;;13982:18:1;;;13975:36;14028:19;;15034:73:0::1;13651:402:1::0;15034:73:0::1;15118:28;15137:8;15118:18;:28::i;:::-;14953:201:::0;:::o;45303:305::-;45405:4;-1:-1:-1;;;;;;45442:40:0;;-1:-1:-1;;;45442:40:0;;:105;;-1:-1:-1;;;;;;;45499:48:0;;-1:-1:-1;;;45499:48:0;45442:105;:158;;;-1:-1:-1;;;;;;;;;;38181:40:0;;;45564:36;38072:157;51061:127;51126:4;51150:16;;;:7;:16;;;;;;-1:-1:-1;;;;;51150:16:0;:30;;;51061:127::o;55043:174::-;55118:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;55118:29:0;-1:-1:-1;;;;;55118:29:0;;;;;;;;:24;;55172:23;55118:24;55172:14;:23::i;:::-;-1:-1:-1;;;;;55163:46:0;;;;;;;;;;;55043:174;;:::o;34339:248::-;34549:12;;-1:-1:-1;;;;;34529:16:0;;34485:7;34529:16;;;:7;:16;;;;;;34485:7;;34564:15;;34513:32;;:13;:32;:::i;:::-;34512:49;;;;:::i;:::-;:67;;;;:::i;:::-;34505:74;34339:248;-1:-1:-1;;;;34339:248:0:o;17654:317::-;17769:6;17744:21;:31;;17736:73;;;;-1:-1:-1;;;17736:73:0;;16912:2:1;17736:73:0;;;16894:21:1;16951:2;16931:18;;;16924:30;16990:31;16970:18;;;16963:59;17039:18;;17736:73:0;16710:353:1;17736:73:0;17823:12;17841:9;-1:-1:-1;;;;;17841:14:0;17863:6;17841:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17822:52;;;17893:7;17885:78;;;;-1:-1:-1;;;17885:78:0;;16485:2:1;17885:78:0;;;16467:21:1;16524:2;16504:18;;;16497:30;16563:34;16543:18;;;16536:62;-1:-1:-1;;;16614:18:1;;;16607:56;16680:19;;17885:78:0;16283:422:1;51355:348:0;51448:4;51473:16;51481:7;51473;:16::i;:::-;51465:73;;;;-1:-1:-1;;;51465:73:0;;17677:2:1;51465:73:0;;;17659:21:1;17716:2;17696:18;;;17689:30;17755:34;17735:18;;;17728:62;-1:-1:-1;;;17806:18:1;;;17799:42;17858:19;;51465:73:0;17475:408:1;51465:73:0;51549:13;51565:23;51580:7;51565:14;:23::i;:::-;51549:39;;51618:5;-1:-1:-1;;;;;51607:16:0;:7;-1:-1:-1;;;;;51607:16:0;;:51;;;;51651:7;-1:-1:-1;;;;;51627:31:0;:20;51639:7;51627:11;:20::i;:::-;-1:-1:-1;;;;;51627:31:0;;51607:51;:87;;;;51662:32;51679:5;51686:7;51662:16;:32::i;54347:578::-;54506:4;-1:-1:-1;;;;;54479:31:0;:23;54494:7;54479:14;:23::i;:::-;-1:-1:-1;;;;;54479:31:0;;54471:85;;;;-1:-1:-1;;;54471:85:0;;20883:2:1;54471:85:0;;;20865:21:1;20922:2;20902:18;;;20895:30;20961:34;20941:18;;;20934:62;-1:-1:-1;;;21012:18:1;;;21005:39;21061:19;;54471:85:0;20681:405:1;54471:85:0;-1:-1:-1;;;;;54575:16:0;;54567:65;;;;-1:-1:-1;;;54567:65:0;;15726:2:1;54567:65:0;;;15708:21:1;15765:2;15745:18;;;15738:30;15804:34;15784:18;;;15777:62;-1:-1:-1;;;15855:18:1;;;15848:34;15899:19;;54567:65:0;15524:400:1;54567:65:0;54749:29;54766:1;54770:7;54749:8;:29::i;:::-;-1:-1:-1;;;;;54791:15:0;;;;;;:9;:15;;;;;:20;;54810:1;;54791:15;:20;;54810:1;;54791:20;:::i;:::-;;;;-1:-1:-1;;;;;;;54822:13:0;;;;;;:9;:13;;;;;:18;;54839:1;;54822:13;:18;;54839:1;;54822:18;:::i;:::-;;;;-1:-1:-1;;54851:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;54851:21:0;-1:-1:-1;;;;;54851:21:0;;;;;;;;;54890:27;;54851:16;;54890:27;;;;-1:-1:-1;;;;;;;;;;;54890:27:0;;54347:578;;;:::o;24360:211::-;24477:86;24497:5;24527:23;;;24552:2;24556:5;24504:58;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;24504:58:0;;;;;;;;;;;;;;-1:-1:-1;;;;;24504:58:0;-1:-1:-1;;;;;;24504:58:0;;;;;;;;;;24477:19;:86::i;15314:191::-;15407:6;;;-1:-1:-1;;;;;15424:17:0;;;-1:-1:-1;;;;;;15424:17:0;;;;;;;15457:40;;15407:6;;;15424:17;15407:6;;15457:40;;15388:16;;15457:40;15377:128;15314:191;:::o;52045:110::-;52121:26;52131:2;52135:7;52121:26;;;;;;;;;;;;:9;:26::i;55359:315::-;55514:8;-1:-1:-1;;;;;55505:17:0;:5;-1:-1:-1;;;;;55505:17:0;;;55497:55;;;;-1:-1:-1;;;55497:55:0;;16131:2:1;55497:55:0;;;16113:21:1;16170:2;16150:18;;;16143:30;-1:-1:-1;;;16189:18:1;;;16182:55;16254:18;;55497:55:0;15929:349:1;55497:55:0;-1:-1:-1;;;;;55563:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;55563:46:0;;;;;;;;;;55625:41;;11600::1;;;55625::0;;11573:18:1;55625:41:0;;;;;;;55359:315;;;:::o;8705:190::-;8830:4;8883;8854:25;8867:5;8874:4;8854:12;:25::i;:::-;:33;;8705:190;-1:-1:-1;;;;8705:190:0:o;50433:315::-;50590:28;50600:4;50606:2;50610:7;50590:9;:28::i;:::-;50637:48;50660:4;50666:2;50670:7;50679:5;50637:22;:48::i;:::-;50629:111;;;;-1:-1:-1;;;50629:111:0;;;;;;;:::i;59013:108::-;59073:13;59106:7;59099:14;;;;;:::i;10330:723::-;10386:13;10607:10;10603:53;;-1:-1:-1;;10634:10:0;;;;;;;;;;;;-1:-1:-1;;;10634:10:0;;;;;10330:723::o;10603:53::-;10681:5;10666:12;10722:78;10729:9;;10722:78;;10755:8;;;;:::i;:::-;;-1:-1:-1;10778:10:0;;-1:-1:-1;10786:2:0;10778:10;;:::i;:::-;;;10722:78;;;10810:19;10842:6;-1:-1:-1;;;;;10832:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10832:17:0;;10810:39;;10860:154;10867:10;;10860:154;;10894:11;10904:1;10894:11;;:::i;:::-;;-1:-1:-1;10963:10:0;10971:2;10963:5;:10;:::i;:::-;10950:24;;:2;:24;:::i;:::-;10937:39;;10920:6;10927;10920:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;10920:56:0;;;;;;;;-1:-1:-1;10991:11:0;11000:2;10991:11;;:::i;:::-;;;10860:154;;26933:716;27357:23;27383:69;27411:4;27383:69;;;;;;;;;;;;;;;;;27391:5;-1:-1:-1;;;;;27383:27:0;;;:69;;;;;:::i;:::-;27467:17;;27357:95;;-1:-1:-1;27467:21:0;27463:179;;27564:10;27553:30;;;;;;;;;;;;:::i;:::-;27545:85;;;;-1:-1:-1;;;27545:85:0;;24376:2:1;27545:85:0;;;24358:21:1;24415:2;24395:18;;;24388:30;24454:34;24434:18;;;24427:62;-1:-1:-1;;;24505:18:1;;;24498:40;24555:19;;27545:85:0;24174:406:1;52382:321:0;52512:18;52518:2;52522:7;52512:5;:18::i;:::-;52563:54;52594:1;52598:2;52602:7;52611:5;52563:22;:54::i;:::-;52541:154;;;;-1:-1:-1;;;52541:154:0;;;;;;;:::i;9257:701::-;9340:7;9383:4;9340:7;9398:523;9422:5;:12;9418:1;:16;9398:523;;;9456:20;9479:5;9485:1;9479:8;;;;;;;;:::i;:::-;;;;;;;9456:31;;9522:12;9506;:28;9502:408;;9659:44;;;;;;8524:19:1;;;8559:12;;;8552:28;;;8596:12;;9659:44:0;;;;;;;;;;;;9649:55;;;;;;9634:70;;9502:408;;;9849:44;;;;;;8524:19:1;;;8559:12;;;8552:28;;;8596:12;;9849:44:0;;;;;;;;;;;;9839:55;;;;;;9824:70;;9502:408;-1:-1:-1;9436:3:0;;;;:::i;:::-;;;;9398:523;;;-1:-1:-1;9938:12:0;9257:701;-1:-1:-1;;;9257:701:0:o;56239:799::-;56394:4;-1:-1:-1;;;;;56415:13:0;;16655:20;16703:8;56411:620;;56451:72;;-1:-1:-1;;;56451:72:0;;-1:-1:-1;;;;;56451:36:0;;;;;:72;;12848:10;;56502:4;;56508:7;;56517:5;;56451:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56451:72:0;;;;;;;;-1:-1:-1;;56451:72:0;;;;;;;;;;;;:::i;:::-;;;56447:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56693:13:0;;56689:272;;56736:60;;-1:-1:-1;;;56736:60:0;;;;;;;:::i;56689:272::-;56911:6;56905:13;56896:6;56892:2;56888:15;56881:38;56447:529;-1:-1:-1;;;;;;56574:51:0;-1:-1:-1;;;56574:51:0;;-1:-1:-1;56567:58:0;;56411:620;-1:-1:-1;57015:4:0;56239:799;;;;;;:::o;19138:229::-;19275:12;19307:52;19329:6;19337:4;19343:1;19346:12;19307:21;:52::i;53039:382::-;-1:-1:-1;;;;;53119:16:0;;53111:61;;;;-1:-1:-1;;;53111:61:0;;19748:2:1;53111:61:0;;;19730:21:1;;;19767:18;;;19760:30;19826:34;19806:18;;;19799:62;19878:18;;53111:61:0;19546:356:1;53111:61:0;53192:16;53200:7;53192;:16::i;:::-;53191:17;53183:58;;;;-1:-1:-1;;;53183:58:0;;14604:2:1;53183:58:0;;;14586:21:1;14643:2;14623:18;;;14616:30;-1:-1:-1;;;14662:18:1;;;14655:58;14730:18;;53183:58:0;14402:352:1;53183:58:0;-1:-1:-1;;;;;53312:13:0;;;;;;:9;:13;;;;;:18;;53329:1;;53312:13;:18;;53329:1;;53312:18;:::i;:::-;;;;-1:-1:-1;;53341:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;53341:21:0;-1:-1:-1;;;;;53341:21:0;;;;;;;;53380:33;;53341:16;;;-1:-1:-1;;;;;;;;;;;53380:33:0;53341:16;;53380:33;53039:382;;:::o;20258:510::-;20428:12;20486:5;20461:21;:30;;20453:81;;;;-1:-1:-1;;;20453:81:0;;17270:2:1;20453:81:0;;;17252:21:1;17309:2;17289:18;;;17282:30;17348:34;17328:18;;;17321:62;-1:-1:-1;;;17399:18:1;;;17392:36;17445:19;;20453:81:0;17068:402:1;20453:81:0;16655:20;;20545:60;;;;-1:-1:-1;;;20545:60:0;;23661:2:1;20545:60:0;;;23643:21:1;23700:2;23680:18;;;23673:30;23739:31;23719:18;;;23712:59;23788:18;;20545:60:0;23459:353:1;20545:60:0;20619:12;20633:23;20660:6;-1:-1:-1;;;;;20660:11:0;20679:5;20686:4;20660:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20618:73;;;;20709:51;20726:7;20735:10;20747:12;20709:16;:51::i;:::-;20702:58;20258:510;-1:-1:-1;;;;;;;20258:510:0:o;22944:712::-;23094:12;23123:7;23119:530;;;-1:-1:-1;23154:10:0;23147:17;;23119:530;23268:17;;:21;23264:374;;23466:10;23460:17;23527:15;23514:10;23510:2;23506:19;23499:44;23264:374;23609:12;23602:20;;-1:-1:-1;;;23602:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;138:14:1;;;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:52;;;778:1;775;768:12;730:52;817:9;804:23;836:31;861:5;836:31;:::i;1162:388::-;1230:6;1238;1291:2;1279:9;1270:7;1266:23;1262:32;1259:52;;;1307:1;1304;1297:12;1259:52;1346:9;1333:23;1365:31;1390:5;1365:31;:::i;:::-;1415:5;-1:-1:-1;1472:2:1;1457:18;;1444:32;1485:33;1444:32;1485:33;:::i;:::-;1537:7;1527:17;;;1162:388;;;;;:::o;1555:456::-;1632:6;1640;1648;1701:2;1689:9;1680:7;1676:23;1672:32;1669:52;;;1717:1;1714;1707:12;1669:52;1756:9;1743:23;1775:31;1800:5;1775:31;:::i;:::-;1825:5;-1:-1:-1;1882:2:1;1867:18;;1854:32;1895:33;1854:32;1895:33;:::i;:::-;1555:456;;1947:7;;-1:-1:-1;;;2001:2:1;1986:18;;;;1973:32;;1555:456::o;2016:794::-;2111:6;2119;2127;2135;2188:3;2176:9;2167:7;2163:23;2159:33;2156:53;;;2205:1;2202;2195:12;2156:53;2244:9;2231:23;2263:31;2288:5;2263:31;:::i;:::-;2313:5;-1:-1:-1;2370:2:1;2355:18;;2342:32;2383:33;2342:32;2383:33;:::i;:::-;2435:7;-1:-1:-1;2489:2:1;2474:18;;2461:32;;-1:-1:-1;2544:2:1;2529:18;;2516:32;-1:-1:-1;;;;;2560:30:1;;2557:50;;;2603:1;2600;2593:12;2557:50;2626:22;;2679:4;2671:13;;2667:27;-1:-1:-1;2657:55:1;;2708:1;2705;2698:12;2657:55;2731:73;2796:7;2791:2;2778:16;2773:2;2769;2765:11;2731:73;:::i;:::-;2721:83;;;2016:794;;;;;;;:::o;2815:382::-;2880:6;2888;2941:2;2929:9;2920:7;2916:23;2912:32;2909:52;;;2957:1;2954;2947:12;2909:52;2996:9;2983:23;3015:31;3040:5;3015:31;:::i;:::-;3065:5;-1:-1:-1;3122:2:1;3107:18;;3094:32;3135:30;3094:32;3135:30;:::i;3202:315::-;3270:6;3278;3331:2;3319:9;3310:7;3306:23;3302:32;3299:52;;;3347:1;3344;3337:12;3299:52;3386:9;3373:23;3405:31;3430:5;3405:31;:::i;:::-;3455:5;3507:2;3492:18;;;;3479:32;;-1:-1:-1;;;3202:315:1:o;3522:689::-;3617:6;3625;3633;3686:2;3674:9;3665:7;3661:23;3657:32;3654:52;;;3702:1;3699;3692:12;3654:52;3729:23;;-1:-1:-1;;;;;3801:14:1;;;3798:34;;;3828:1;3825;3818:12;3798:34;3866:6;3855:9;3851:22;3841:32;;3911:7;3904:4;3900:2;3896:13;3892:27;3882:55;;3933:1;3930;3923:12;3882:55;3973:2;3960:16;3999:2;3991:6;3988:14;3985:34;;;4015:1;4012;4005:12;3985:34;4070:7;4063:4;4053:6;4050:1;4046:14;4042:2;4038:23;4034:34;4031:47;4028:67;;;4091:1;4088;4081:12;4028:67;4122:4;4114:13;;;;4146:6;;-1:-1:-1;4184:20:1;;;;4171:34;;3522:689;-1:-1:-1;;;;3522:689:1:o;4216:241::-;4272:6;4325:2;4313:9;4304:7;4300:23;4296:32;4293:52;;;4341:1;4338;4331:12;4293:52;4380:9;4367:23;4399:28;4421:5;4399:28;:::i;4462:245::-;4529:6;4582:2;4570:9;4561:7;4557:23;4553:32;4550:52;;;4598:1;4595;4588:12;4550:52;4630:9;4624:16;4649:28;4671:5;4649:28;:::i;4712:180::-;4771:6;4824:2;4812:9;4803:7;4799:23;4795:32;4792:52;;;4840:1;4837;4830:12;4792:52;-1:-1:-1;4863:23:1;;4712:180;-1:-1:-1;4712:180:1:o;4897:245::-;4955:6;5008:2;4996:9;4987:7;4983:23;4979:32;4976:52;;;5024:1;5021;5014:12;4976:52;5063:9;5050:23;5082:30;5106:5;5082:30;:::i;5147:249::-;5216:6;5269:2;5257:9;5248:7;5244:23;5240:32;5237:52;;;5285:1;5282;5275:12;5237:52;5317:9;5311:16;5336:30;5360:5;5336:30;:::i;6072:450::-;6141:6;6194:2;6182:9;6173:7;6169:23;6165:32;6162:52;;;6210:1;6207;6200:12;6162:52;6237:23;;-1:-1:-1;;;;;6272:30:1;;6269:50;;;6315:1;6312;6305:12;6269:50;6338:22;;6391:4;6383:13;;6379:27;-1:-1:-1;6369:55:1;;6420:1;6417;6410:12;6369:55;6443:73;6508:7;6503:2;6490:16;6485:2;6481;6477:11;6443:73;:::i;6712:184::-;6782:6;6835:2;6823:9;6814:7;6810:23;6806:32;6803:52;;;6851:1;6848;6841:12;6803:52;-1:-1:-1;6874:16:1;;6712:184;-1:-1:-1;6712:184:1:o;6901:257::-;6942:3;6980:5;6974:12;7007:6;7002:3;6995:19;7023:63;7079:6;7072:4;7067:3;7063:14;7056:4;7049:5;7045:16;7023:63;:::i;:::-;7140:2;7119:15;-1:-1:-1;;7115:29:1;7106:39;;;;7147:4;7102:50;;6901:257;-1:-1:-1;;6901:257:1:o;7163:973::-;7248:12;;7213:3;;7303:1;7323:18;;;;7376;;;;7403:61;;7457:4;7449:6;7445:17;7435:27;;7403:61;7483:2;7531;7523:6;7520:14;7500:18;7497:38;7494:161;;;7577:10;7572:3;7568:20;7565:1;7558:31;7612:4;7609:1;7602:15;7640:4;7637:1;7630:15;7494:161;7671:18;7698:104;;;;7816:1;7811:319;;;;7664:466;;7698:104;-1:-1:-1;;7731:24:1;;7719:37;;7776:16;;;;-1:-1:-1;7698:104:1;;7811:319;25909:1;25902:14;;;25946:4;25933:18;;7905:1;7919:165;7933:6;7930:1;7927:13;7919:165;;;8011:14;;7998:11;;;7991:35;8054:16;;;;7948:10;;7919:165;;;7923:3;;8113:6;8108:3;8104:16;8097:23;;7664:466;;;;;;;7163:973;;;;:::o;8619:274::-;8748:3;8786:6;8780:13;8802:53;8848:6;8843:3;8836:4;8828:6;8824:17;8802:53;:::i;:::-;8871:16;;;;;8619:274;-1:-1:-1;;8619:274:1:o;8898:550::-;9122:3;9160:6;9154:13;9176:53;9222:6;9217:3;9210:4;9202:6;9198:17;9176:53;:::i;:::-;9292:13;;9251:16;;;;9314:57;9292:13;9251:16;9348:4;9336:17;;9314:57;:::i;:::-;9387:55;9432:8;9425:5;9421:20;9413:6;9387:55;:::i;9453:525::-;9730:3;9768:6;9762:13;9784:53;9830:6;9825:3;9818:4;9810:6;9806:17;9784:53;:::i;:::-;-1:-1:-1;;;9859:16:1;;;9884:24;;;9924:48;9969:1;9958:13;;9950:6;9924:48;:::i;:::-;9917:55;9453:525;-1:-1:-1;;;;;9453:525:1:o;10193:203::-;-1:-1:-1;;;;;10357:32:1;;;;10339:51;;10327:2;10312:18;;10193:203::o;10401:282::-;-1:-1:-1;;;;;10601:32:1;;;;10583:51;;10665:2;10650:18;;10643:34;10571:2;10556:18;;10401:282::o;10688:488::-;-1:-1:-1;;;;;10957:15:1;;;10939:34;;11009:15;;11004:2;10989:18;;10982:43;11056:2;11041:18;;11034:34;;;11104:3;11099:2;11084:18;;11077:31;;;10882:4;;11125:45;;11150:19;;11142:6;11125:45;:::i;:::-;11117:53;10688:488;-1:-1:-1;;;;;;10688:488:1:o;11834:219::-;11983:2;11972:9;11965:21;11946:4;12003:44;12043:2;12032:9;12028:18;12020:6;12003:44;:::i;13232:414::-;13434:2;13416:21;;;13473:2;13453:18;;;13446:30;13512:34;13507:2;13492:18;;13485:62;-1:-1:-1;;;13578:2:1;13563:18;;13556:48;13636:3;13621:19;;13232:414::o;14058:339::-;14260:2;14242:21;;;14299:2;14279:18;;;14272:30;-1:-1:-1;;;14333:2:1;14318:18;;14311:45;14388:2;14373:18;;14058:339::o;15117:402::-;15319:2;15301:21;;;15358:2;15338:18;;;15331:30;15397:34;15392:2;15377:18;;15370:62;-1:-1:-1;;;15463:2:1;15448:18;;15441:36;15509:3;15494:19;;15117:402::o;17888:407::-;18090:2;18072:21;;;18129:2;18109:18;;;18102:30;18168:34;18163:2;18148:18;;18141:62;-1:-1:-1;;;18234:2:1;18219:18;;18212:41;18285:3;18270:19;;17888:407::o;20320:356::-;20522:2;20504:21;;;20541:18;;;20534:30;20600:34;20595:2;20580:18;;20573:62;20667:2;20652:18;;20320:356::o;21507:355::-;21709:2;21691:21;;;21748:2;21728:18;;;21721:30;21787:33;21782:2;21767:18;;21760:61;21853:2;21838:18;;21507:355::o;23041:413::-;23243:2;23225:21;;;23282:2;23262:18;;;23255:30;23321:34;23316:2;23301:18;;23294:62;-1:-1:-1;;;23387:2:1;23372:18;;23365:47;23444:3;23429:19;;23041:413::o;24936:355::-;25138:2;25120:21;;;25177:2;25157:18;;;25150:30;25216:33;25211:2;25196:18;;25189:61;25282:2;25267:18;;24936:355::o;25296:353::-;25498:2;25480:21;;;25537:2;25517:18;;;25510:30;25576:31;25571:2;25556:18;;25549:59;25640:2;25625:18;;25296:353::o;25962:128::-;26002:3;26033:1;26029:6;26026:1;26023:13;26020:39;;;26039:18;;:::i;:::-;-1:-1:-1;26075:9:1;;25962:128::o;26095:120::-;26135:1;26161;26151:35;;26166:18;;:::i;:::-;-1:-1:-1;26200:9:1;;26095:120::o;26220:168::-;26260:7;26326:1;26322;26318:6;26314:14;26311:1;26308:21;26303:1;26296:9;26289:17;26285:45;26282:71;;;26333:18;;:::i;:::-;-1:-1:-1;26373:9:1;;26220:168::o;26393:125::-;26433:4;26461:1;26458;26455:8;26452:34;;;26466:18;;:::i;:::-;-1:-1:-1;26503:9:1;;26393:125::o;26523:258::-;26595:1;26605:113;26619:6;26616:1;26613:13;26605:113;;;26695:11;;;26689:18;26676:11;;;26669:39;26641:2;26634:10;26605:113;;;26736:6;26733:1;26730:13;26727:48;;;-1:-1:-1;;26771:1:1;26753:16;;26746:27;26523:258::o;26786:380::-;26865:1;26861:12;;;;26908;;;26929:61;;26983:4;26975:6;26971:17;26961:27;;26929:61;27036:2;27028:6;27025:14;27005:18;27002:38;26999:161;;;27082:10;27077:3;27073:20;27070:1;27063:31;27117:4;27114:1;27107:15;27145:4;27142:1;27135:15;27171:135;27210:3;-1:-1:-1;;27231:17:1;;27228:43;;;27251:18;;:::i;:::-;-1:-1:-1;27298:1:1;27287:13;;27171:135::o;27311:112::-;27343:1;27369;27359:35;;27374:18;;:::i;:::-;-1:-1:-1;27408:9:1;;27311:112::o;27428:127::-;27489:10;27484:3;27480:20;27477:1;27470:31;27520:4;27517:1;27510:15;27544:4;27541:1;27534:15;27560:127;27621:10;27616:3;27612:20;27609:1;27602:31;27652:4;27649:1;27642:15;27676:4;27673:1;27666:15;27692:127;27753:10;27748:3;27744:20;27741:1;27734:31;27784:4;27781:1;27774:15;27808:4;27805:1;27798:15;27824:127;27885:10;27880:3;27876:20;27873:1;27866:31;27916:4;27913:1;27906:15;27940:4;27937:1;27930:15;27956:131;-1:-1:-1;;;;;28031:31:1;;28021:42;;28011:70;;28077:1;28074;28067:12;28092:118;28178:5;28171:13;28164:21;28157:5;28154:32;28144:60;;28200:1;28197;28190:12;28215:131;-1:-1:-1;;;;;;28289:32:1;;28279:43;;28269:71;;28336:1;28333;28326:12

Swarm Source

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