ETH Price: $3,308.66 (-3.02%)
Gas: 23 Gwei

Token

Lazy Baboons (LB)
 

Overview

Max Total Supply

3,333 LB

Holders

1,884

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
shawnakim.eth
Balance
1 LB
0x4e61712a039ec4a324a6a69a1ce3a06cb368d1e6
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:
LostBaboons_Contract

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-23
*/

/**
 *Submitted for verification at Etherscan.io on 2022-12-09
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/token/common/ERC2981.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

// File: annunakis.sol

/**
 *Submitted for verification at Etherscan.io on 2022-09-13
*/


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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree 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.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */

// File: contracts/rose.sol

/**
 *Submitted for verification at Etherscan.io on 2022-07-22
*/



// OpenZeppelin Contracts v4.4.1 (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 (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

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


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

pragma solidity ^0.8.0;


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

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

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

// File: ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

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

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

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

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

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

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

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

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


pragma solidity ^0.8.7;

contract LostBaboons_Contract is ERC721A, ERC2981, Ownable, ReentrancyGuard {
    using Strings for uint256;
    mapping(address => uint256) public publicClaimed;

    string public baseURI;
    string public hiddenMetadataURILight = "ipfs://QmYQSepVG65MDvsVc1csB47jqyjYCqX2fK5XmxaR8Bc3fm/LostBaboonsLight.json";
    string public hiddenMetadataURIBlack = "ipfs://QmYQSepVG65MDvsVc1csB47jqyjYCqX2fK5XmxaR8Bc3fm/LostBaboonsDark.json";
    bool public revealed;
    bool public paused = true;
    address public ROYALITY__ADDRESS;
    uint96 public ROYALITY__VALUE;
    uint256 public publicPrice = 0.0088 ether;
    uint256 public publicMintPerTx = 20;
    uint256 public maxSupply = 7575;

    constructor() ERC721A("Lazy Baboons", "LB") {
        ROYALITY__ADDRESS = 0x14EaCd261B651d2cc8e4484a3A56C4aA37eE7DFf;
        ROYALITY__VALUE = 550;
        _setDefaultRoyalty(ROYALITY__ADDRESS, ROYALITY__VALUE);
        
    }

     

    // ============ PUBLIC FUNCTIONS FOR MINTING ============
    function mint(uint256 quantity) external payable nonReentrant {
        require(!paused, "The contract is paused!");
        require(quantity > 0 && totalSupply() + quantity <= maxSupply, "Invalid amount!");
        require(publicClaimed[msg.sender] + quantity <= publicMintPerTx, "You can't mint this amount");
        if (publicClaimed[msg.sender] == 0)
        require(msg.value >= publicPrice * (quantity-1), "Insufficient Funds!");
        else
             require(msg.value >= publicPrice * quantity, "Insufficient Funds!");
         publicClaimed[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);
    }

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


    // ============ PUBLIC READ-ONLY FUNCTIONS ============

    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 == false) {
            if (tokenId % 2 == 0 )
                return hiddenMetadataURILight;
        else
            return hiddenMetadataURIBlack;
        }
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        tokenId.toString(),
                        ".json"
                    )
                )
                : "";
    }
    function supportsInterface(bytes4 interfaceId)
    public
    view
    override(ERC721A, ERC2981)
    returns (bool)
    {
        return
            ERC721A.supportsInterface(interfaceId)
            || ERC2981.supportsInterface(interfaceId);
    }
   
    function setRoyalties(address receiver, uint96 royaltyFraction) external onlyOwner {
        _setDefaultRoyalty(receiver, royaltyFraction);
    }
   
   
    function setCost(uint256 _newPublicCost) external onlyOwner {
        publicPrice = _newPublicCost;
    }
   
 
    function setMaxPublic(uint256 _newMaxPublic) external onlyOwner {
        publicMintPerTx = _newMaxPublic;
    }

    function setMaxSuppy(uint256 _amount) external onlyOwner {
        maxSupply = _amount;
    }

    function setPaused(bool _state) external onlyOwner {
        paused = _state;
    }

    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
    }
   
    function airDrop(uint256 quantity, address _address) external onlyOwner {
        _safeMint(_address, quantity);
    }
    

    function airDropBatch(address[] memory _addresses) external onlyOwner {
        for(uint256 i = 0 ;i < _addresses.length; i ++) {
            _safeMint(_addresses[i], 1);
        }
    }

    function withdraw() public onlyOwner {
         // Do not remove this otherwise you will not be able to withdraw the funds.
        // =============================================================================
        (bool ts, ) = payable(owner()).call{value: address(this).balance}("");
        require(ts);
        // =============================================================================
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ROYALITY__ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROYALITY__VALUE","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"airDropBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataURIBlack","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataURILight","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","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":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"_newPublicCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxPublic","type":"uint256"}],"name":"setMaxPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxSuppy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"royaltyFraction","type":"uint96"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060800160405280604b815260200162004e72604b9139600e908051906020019062000035929190620004e6565b506040518060800160405280604a815260200162004ebd604a9139600f908051906020019062000067929190620004e6565b506001601060016101000a81548160ff021916908315150217905550661f438daa0600006012556014601355611d97601455348015620000a657600080fd5b506040518060400160405280600c81526020017f4c617a79204261626f6f6e7300000000000000000000000000000000000000008152506040518060400160405280600281526020017f4c4200000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200012b929190620004e6565b50806003908051906020019062000144929190620004e6565b50620001556200026160201b60201c565b60008190555050506200017d620001716200026a60201b60201c565b6200027260201b60201c565b6001600b819055507314eacd261b651d2cc8e4484a3a56c4aa37ee7dff601060026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610226601160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055506200025b601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601160009054906101000a90046bffffffffffffffffffffffff166200033860201b60201c565b62000716565b60006001905090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000348620004dc60201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115620003a9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003a090620005e4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200041c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004139062000606565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000612710905090565b828054620004f49062000639565b90600052602060002090601f01602090048101928262000518576000855562000564565b82601f106200053357805160ff191683800117855562000564565b8280016001018555821562000564579182015b828111156200056357825182559160200191906001019062000546565b5b50905062000573919062000577565b5090565b5b808211156200059257600081600090555060010162000578565b5090565b6000620005a5602a8362000628565b9150620005b2826200069e565b604082019050919050565b6000620005cc60198362000628565b9150620005d982620006ed565b602082019050919050565b60006020820190508181036000830152620005ff8162000596565b9050919050565b600060208201905081810360008301526200062181620005bd565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200065257607f821691505b602082108114156200066957620006686200066f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b61474c80620007266000396000f3fe6080604052600436106102305760003560e01c80636c0360eb1161012e578063aed38015116100ab578063d5abeb011161006f578063d5abeb011461081d578063e985e9c514610848578063f2fde38b14610885578063fae1f6e2146108ae578063fbdb8494146108d757610230565b8063aed3801514610728578063b5b1cd7c14610751578063b88d4fde1461078e578063c21b471b146107b7578063c87b56dd146107e057610230565b80639a87a46d116100f25780639a87a46d146106645780639ec571d51461068f578063a0712d68146106b8578063a22cb465146106d4578063a945bf80146106fd57610230565b80636c0360eb1461058f57806370a08231146105ba578063715018a6146105f75780638da5cb5b1461060e57806395d89b411461063957610230565b806323b872dd116101bc57806344a0d68a1161018057806344a0d68a146104aa57806351830227146104d357806355f804b3146104fe5780635c975abb146105275780636352211e1461055257610230565b806323b872dd146103d85780632a55205a146104015780633ccfd60b1461043f5780633f1199bd1461045657806342842e0e1461048157610230565b80630caea53b116102035780630caea53b146103035780630dc8a4c21461032e57806316c38b3c1461035957806318160ddd146103825780631f32975e146103ad57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c6004803603810190610257919061393b565b610900565b6040516102699190613de2565b60405180910390f35b34801561027e57600080fd5b50610287610922565b6040516102949190613dfd565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf91906139de565b6109b4565b6040516102d19190613d52565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190613845565b610a30565b005b34801561030f57600080fd5b50610318610b3b565b6040516103259190613f5f565b60405180910390f35b34801561033a57600080fd5b50610343610b41565b6040516103509190613dfd565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b919061390e565b610bcf565b005b34801561038e57600080fd5b50610397610c68565b6040516103a49190613f5f565b60405180910390f35b3480156103b957600080fd5b506103c2610c7f565b6040516103cf9190613f7a565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa919061372f565b610c9d565b005b34801561040d57600080fd5b5061042860048036038101906104239190613a4b565b610cad565b604051610436929190613db9565b60405180910390f35b34801561044b57600080fd5b50610454610e98565b005b34801561046257600080fd5b5061046b610f94565b6040516104789190613dfd565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a3919061372f565b611022565b005b3480156104b657600080fd5b506104d160048036038101906104cc91906139de565b611042565b005b3480156104df57600080fd5b506104e86110c8565b6040516104f59190613de2565b60405180910390f35b34801561050a57600080fd5b5061052560048036038101906105209190613995565b6110db565b005b34801561053357600080fd5b5061053c611171565b6040516105499190613de2565b60405180910390f35b34801561055e57600080fd5b50610579600480360381019061057491906139de565b611184565b6040516105869190613d52565b60405180910390f35b34801561059b57600080fd5b506105a461119a565b6040516105b19190613dfd565b60405180910390f35b3480156105c657600080fd5b506105e160048036038101906105dc91906136c2565b611228565b6040516105ee9190613f5f565b60405180910390f35b34801561060357600080fd5b5061060c6112f8565b005b34801561061a57600080fd5b50610623611380565b6040516106309190613d52565b60405180910390f35b34801561064557600080fd5b5061064e6113aa565b60405161065b9190613dfd565b60405180910390f35b34801561067057600080fd5b5061067961143c565b6040516106869190613d52565b60405180910390f35b34801561069b57600080fd5b506106b660048036038101906106b191906139de565b611462565b005b6106d260048036038101906106cd91906139de565b6114e8565b005b3480156106e057600080fd5b506106fb60048036038101906106f69190613805565b6117dd565b005b34801561070957600080fd5b50610712611955565b60405161071f9190613f5f565b60405180910390f35b34801561073457600080fd5b5061074f600480360381019061074a9190613a0b565b61195b565b005b34801561075d57600080fd5b50610778600480360381019061077391906136c2565b6119e5565b6040516107859190613f5f565b60405180910390f35b34801561079a57600080fd5b506107b560048036038101906107b09190613782565b6119fd565b005b3480156107c357600080fd5b506107de60048036038101906107d99190613885565b611a79565b005b3480156107ec57600080fd5b50610807600480360381019061080291906139de565b611b03565b6040516108149190613dfd565b60405180910390f35b34801561082957600080fd5b50610832611d02565b60405161083f9190613f5f565b60405180910390f35b34801561085457600080fd5b5061086f600480360381019061086a91906136ef565b611d08565b60405161087c9190613de2565b60405180910390f35b34801561089157600080fd5b506108ac60048036038101906108a791906136c2565b611d9c565b005b3480156108ba57600080fd5b506108d560048036038101906108d091906138c5565b611e94565b005b3480156108e357600080fd5b506108fe60048036038101906108f991906139de565b611f58565b005b600061090b82611fde565b8061091b575061091a826120c0565b5b9050919050565b60606002805461093190614279565b80601f016020809104026020016040519081016040528092919081815260200182805461095d90614279565b80156109aa5780601f1061097f576101008083540402835291602001916109aa565b820191906000526020600020905b81548152906001019060200180831161098d57829003601f168201915b5050505050905090565b60006109bf8261213a565b6109f5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3b82611184565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aa3576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ac2612188565b73ffffffffffffffffffffffffffffffffffffffff1614158015610af45750610af281610aed612188565b611d08565b155b15610b2b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b36838383612190565b505050565b60135481565b600f8054610b4e90614279565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7a90614279565b8015610bc75780601f10610b9c57610100808354040283529160200191610bc7565b820191906000526020600020905b815481529060010190602001808311610baa57829003601f168201915b505050505081565b610bd7612188565b73ffffffffffffffffffffffffffffffffffffffff16610bf5611380565b73ffffffffffffffffffffffffffffffffffffffff1614610c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4290613e7f565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000610c72612242565b6001546000540303905090565b601160009054906101000a90046bffffffffffffffffffffffff1681565b610ca883838361224b565b505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610e435760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610e4d612701565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610e79919061411d565b610e8391906140ec565b90508160000151819350935050509250929050565b610ea0612188565b73ffffffffffffffffffffffffffffffffffffffff16610ebe611380565b73ffffffffffffffffffffffffffffffffffffffff1614610f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0b90613e7f565b60405180910390fd5b6000610f1e611380565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f4190613d3d565b60006040518083038185875af1925050503d8060008114610f7e576040519150601f19603f3d011682016040523d82523d6000602084013e610f83565b606091505b5050905080610f9157600080fd5b50565b600e8054610fa190614279565b80601f0160208091040260200160405190810160405280929190818152602001828054610fcd90614279565b801561101a5780601f10610fef5761010080835404028352916020019161101a565b820191906000526020600020905b815481529060010190602001808311610ffd57829003601f168201915b505050505081565b61103d838383604051806020016040528060008152506119fd565b505050565b61104a612188565b73ffffffffffffffffffffffffffffffffffffffff16611068611380565b73ffffffffffffffffffffffffffffffffffffffff16146110be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b590613e7f565b60405180910390fd5b8060128190555050565b601060009054906101000a900460ff1681565b6110e3612188565b73ffffffffffffffffffffffffffffffffffffffff16611101611380565b73ffffffffffffffffffffffffffffffffffffffff1614611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e90613e7f565b60405180910390fd5b80600d908051906020019061116d9291906133e0565b5050565b601060019054906101000a900460ff1681565b600061118f8261270b565b600001519050919050565b600d80546111a790614279565b80601f01602080910402602001604051908101604052809291908181526020018280546111d390614279565b80156112205780601f106111f557610100808354040283529160200191611220565b820191906000526020600020905b81548152906001019060200180831161120357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611290576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611300612188565b73ffffffffffffffffffffffffffffffffffffffff1661131e611380565b73ffffffffffffffffffffffffffffffffffffffff1614611374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136b90613e7f565b60405180910390fd5b61137e600061299a565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546113b990614279565b80601f01602080910402602001604051908101604052809291908181526020018280546113e590614279565b80156114325780601f1061140757610100808354040283529160200191611432565b820191906000526020600020905b81548152906001019060200180831161141557829003601f168201915b5050505050905090565b601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61146a612188565b73ffffffffffffffffffffffffffffffffffffffff16611488611380565b73ffffffffffffffffffffffffffffffffffffffff16146114de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d590613e7f565b60405180910390fd5b8060148190555050565b6002600b54141561152e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152590613f1f565b60405180910390fd5b6002600b81905550601060019054906101000a900460ff1615611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d90613e9f565b60405180910390fd5b6000811180156115aa57506014548161159d610c68565b6115a79190614096565b11155b6115e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e090613e5f565b60405180910390fd5b60135481600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116379190614096565b1115611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f90613eff565b60405180910390fd5b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415611721576001816116cd9190614177565b6012546116da919061411d565b34101561171c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171390613e3f565b60405180910390fd5b611772565b8060125461172f919061411d565b341015611771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176890613e3f565b60405180910390fd5b5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117c19190614096565b925050819055506117d23382612a60565b6001600b8190555050565b6117e5612188565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561184a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611857612188565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611904612188565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119499190613de2565b60405180910390a35050565b60125481565b611963612188565b73ffffffffffffffffffffffffffffffffffffffff16611981611380565b73ffffffffffffffffffffffffffffffffffffffff16146119d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ce90613e7f565b60405180910390fd5b6119e18183612a60565b5050565b600c6020528060005260406000206000915090505481565b611a0884848461224b565b611a278373ffffffffffffffffffffffffffffffffffffffff16612a7e565b8015611a3c5750611a3a84848484612aa1565b155b15611a73576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611a81612188565b73ffffffffffffffffffffffffffffffffffffffff16611a9f611380565b73ffffffffffffffffffffffffffffffffffffffff1614611af5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aec90613e7f565b60405180910390fd5b611aff8282612c01565b5050565b6060611b0e8261213a565b611b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4490613ebf565b60405180910390fd5b6000611b57612d97565b905060001515601060009054906101000a900460ff1615151415611cb0576000600284611b849190614325565b1415611c1d57600e8054611b9790614279565b80601f0160208091040260200160405190810160405280929190818152602001828054611bc390614279565b8015611c105780601f10611be557610100808354040283529160200191611c10565b820191906000526020600020905b815481529060010190602001808311611bf357829003601f168201915b5050505050915050611cfd565b600f8054611c2a90614279565b80601f0160208091040260200160405190810160405280929190818152602001828054611c5690614279565b8015611ca35780601f10611c7857610100808354040283529160200191611ca3565b820191906000526020600020905b815481529060010190602001808311611c8657829003601f168201915b5050505050915050611cfd565b6000815111611cce5760405180602001604052806000815250611cf9565b80611cd884612e29565b604051602001611ce9929190613d0e565b6040516020818303038152906040525b9150505b919050565b60145481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611da4612188565b73ffffffffffffffffffffffffffffffffffffffff16611dc2611380565b73ffffffffffffffffffffffffffffffffffffffff1614611e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0f90613e7f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7f90613e1f565b60405180910390fd5b611e918161299a565b50565b611e9c612188565b73ffffffffffffffffffffffffffffffffffffffff16611eba611380565b73ffffffffffffffffffffffffffffffffffffffff1614611f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0790613e7f565b60405180910390fd5b60005b8151811015611f5457611f41828281518110611f3257611f316143e3565b5b60200260200101516001612a60565b8080611f4c906142dc565b915050611f13565b5050565b611f60612188565b73ffffffffffffffffffffffffffffffffffffffff16611f7e611380565b73ffffffffffffffffffffffffffffffffffffffff1614611fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcb90613e7f565b60405180910390fd5b8060138190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806120a957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806120b957506120b882612f8a565b5b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612133575061213282611fde565b5b9050919050565b600081612145612242565b11158015612154575060005482105b8015612181575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006122568261270b565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122c1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166122e2612188565b73ffffffffffffffffffffffffffffffffffffffff16148061231157506123108561230b612188565b611d08565b5b80612356575061231f612188565b73ffffffffffffffffffffffffffffffffffffffff1661233e846109b4565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061238f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123f6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124038585856001612ff4565b61240f60008487612190565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561268f57600054821461268e57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126fa8585856001612ffa565b5050505050565b6000612710905090565b612713613466565b600082905080612721612242565b11158015612730575060005481105b15612963576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161296157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612845578092505050612995565b5b60011561296057818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461295b578092505050612995565b612846565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a7a828260405180602001604052806000815250613000565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ac7612188565b8786866040518563ffffffff1660e01b8152600401612ae99493929190613d6d565b602060405180830381600087803b158015612b0357600080fd5b505af1925050508015612b3457506040513d601f19601f82011682018060405250810190612b319190613968565b60015b612bae573d8060008114612b64576040519150601f19603f3d011682016040523d82523d6000602084013e612b69565b606091505b50600081511415612ba6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b612c09612701565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115612c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5e90613edf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cce90613f3f565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6060600d8054612da690614279565b80601f0160208091040260200160405190810160405280929190818152602001828054612dd290614279565b8015612e1f5780601f10612df457610100808354040283529160200191612e1f565b820191906000526020600020905b815481529060010190602001808311612e0257829003601f168201915b5050505050905090565b60606000821415612e71576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f85565b600082905060005b60008214612ea3578080612e8c906142dc565b915050600a82612e9c91906140ec565b9150612e79565b60008167ffffffffffffffff811115612ebf57612ebe614412565b5b6040519080825280601f01601f191660200182016040528015612ef15781602001600182028036833780820191505090505b5090505b60008514612f7e57600182612f0a9190614177565b9150600a85612f199190614325565b6030612f259190614096565b60f81b818381518110612f3b57612f3a6143e3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f7791906140ec565b9450612ef5565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b61300d8383836001613012565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561307f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156130ba576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130c76000868387612ff4565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561329157506132908773ffffffffffffffffffffffffffffffffffffffff16612a7e565b5b15613357575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133066000888480600101955088612aa1565b61333c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561329757826000541461335257600080fd5b6133c3565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613358575b8160008190555050506133d96000868387612ffa565b5050505050565b8280546133ec90614279565b90600052602060002090601f01602090048101928261340e5760008555613455565b82601f1061342757805160ff1916838001178555613455565b82800160010185558215613455579182015b82811115613454578251825591602001919060010190613439565b5b50905061346291906134a9565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156134c25760008160009055506001016134aa565b5090565b60006134d96134d484613fba565b613f95565b905080838252602082019050828560208602820111156134fc576134fb614446565b5b60005b8581101561352c578161351288826135ba565b8452602084019350602083019250506001810190506134ff565b5050509392505050565b600061354961354484613fe6565b613f95565b9050828152602081018484840111156135655761356461444b565b5b613570848285614237565b509392505050565b600061358b61358684614017565b613f95565b9050828152602081018484840111156135a7576135a661444b565b5b6135b2848285614237565b509392505050565b6000813590506135c9816146a3565b92915050565b600082601f8301126135e4576135e3614441565b5b81356135f48482602086016134c6565b91505092915050565b60008135905061360c816146ba565b92915050565b600081359050613621816146d1565b92915050565b600081519050613636816146d1565b92915050565b600082601f83011261365157613650614441565b5b8135613661848260208601613536565b91505092915050565b600082601f83011261367f5761367e614441565b5b813561368f848260208601613578565b91505092915050565b6000813590506136a7816146e8565b92915050565b6000813590506136bc816146ff565b92915050565b6000602082840312156136d8576136d7614455565b5b60006136e6848285016135ba565b91505092915050565b6000806040838503121561370657613705614455565b5b6000613714858286016135ba565b9250506020613725858286016135ba565b9150509250929050565b60008060006060848603121561374857613747614455565b5b6000613756868287016135ba565b9350506020613767868287016135ba565b925050604061377886828701613698565b9150509250925092565b6000806000806080858703121561379c5761379b614455565b5b60006137aa878288016135ba565b94505060206137bb878288016135ba565b93505060406137cc87828801613698565b925050606085013567ffffffffffffffff8111156137ed576137ec614450565b5b6137f98782880161363c565b91505092959194509250565b6000806040838503121561381c5761381b614455565b5b600061382a858286016135ba565b925050602061383b858286016135fd565b9150509250929050565b6000806040838503121561385c5761385b614455565b5b600061386a858286016135ba565b925050602061387b85828601613698565b9150509250929050565b6000806040838503121561389c5761389b614455565b5b60006138aa858286016135ba565b92505060206138bb858286016136ad565b9150509250929050565b6000602082840312156138db576138da614455565b5b600082013567ffffffffffffffff8111156138f9576138f8614450565b5b613905848285016135cf565b91505092915050565b60006020828403121561392457613923614455565b5b6000613932848285016135fd565b91505092915050565b60006020828403121561395157613950614455565b5b600061395f84828501613612565b91505092915050565b60006020828403121561397e5761397d614455565b5b600061398c84828501613627565b91505092915050565b6000602082840312156139ab576139aa614455565b5b600082013567ffffffffffffffff8111156139c9576139c8614450565b5b6139d58482850161366a565b91505092915050565b6000602082840312156139f4576139f3614455565b5b6000613a0284828501613698565b91505092915050565b60008060408385031215613a2257613a21614455565b5b6000613a3085828601613698565b9250506020613a41858286016135ba565b9150509250929050565b60008060408385031215613a6257613a61614455565b5b6000613a7085828601613698565b9250506020613a8185828601613698565b9150509250929050565b613a94816141ab565b82525050565b613aa3816141bd565b82525050565b6000613ab482614048565b613abe818561405e565b9350613ace818560208601614246565b613ad78161445a565b840191505092915050565b6000613aed82614053565b613af7818561407a565b9350613b07818560208601614246565b613b108161445a565b840191505092915050565b6000613b2682614053565b613b30818561408b565b9350613b40818560208601614246565b80840191505092915050565b6000613b5960268361407a565b9150613b648261446b565b604082019050919050565b6000613b7c60138361407a565b9150613b87826144ba565b602082019050919050565b6000613b9f600f8361407a565b9150613baa826144e3565b602082019050919050565b6000613bc260058361408b565b9150613bcd8261450c565b600582019050919050565b6000613be560208361407a565b9150613bf082614535565b602082019050919050565b6000613c0860178361407a565b9150613c138261455e565b602082019050919050565b6000613c2b602f8361407a565b9150613c3682614587565b604082019050919050565b6000613c4e60008361406f565b9150613c59826145d6565b600082019050919050565b6000613c71602a8361407a565b9150613c7c826145d9565b604082019050919050565b6000613c94601a8361407a565b9150613c9f82614628565b602082019050919050565b6000613cb7601f8361407a565b9150613cc282614651565b602082019050919050565b6000613cda60198361407a565b9150613ce58261467a565b602082019050919050565b613cf981614215565b82525050565b613d088161421f565b82525050565b6000613d1a8285613b1b565b9150613d268284613b1b565b9150613d3182613bb5565b91508190509392505050565b6000613d4882613c41565b9150819050919050565b6000602082019050613d676000830184613a8b565b92915050565b6000608082019050613d826000830187613a8b565b613d8f6020830186613a8b565b613d9c6040830185613cf0565b8181036060830152613dae8184613aa9565b905095945050505050565b6000604082019050613dce6000830185613a8b565b613ddb6020830184613cf0565b9392505050565b6000602082019050613df76000830184613a9a565b92915050565b60006020820190508181036000830152613e178184613ae2565b905092915050565b60006020820190508181036000830152613e3881613b4c565b9050919050565b60006020820190508181036000830152613e5881613b6f565b9050919050565b60006020820190508181036000830152613e7881613b92565b9050919050565b60006020820190508181036000830152613e9881613bd8565b9050919050565b60006020820190508181036000830152613eb881613bfb565b9050919050565b60006020820190508181036000830152613ed881613c1e565b9050919050565b60006020820190508181036000830152613ef881613c64565b9050919050565b60006020820190508181036000830152613f1881613c87565b9050919050565b60006020820190508181036000830152613f3881613caa565b9050919050565b60006020820190508181036000830152613f5881613ccd565b9050919050565b6000602082019050613f746000830184613cf0565b92915050565b6000602082019050613f8f6000830184613cff565b92915050565b6000613f9f613fb0565b9050613fab82826142ab565b919050565b6000604051905090565b600067ffffffffffffffff821115613fd557613fd4614412565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561400157614000614412565b5b61400a8261445a565b9050602081019050919050565b600067ffffffffffffffff82111561403257614031614412565b5b61403b8261445a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006140a182614215565b91506140ac83614215565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140e1576140e0614356565b5b828201905092915050565b60006140f782614215565b915061410283614215565b92508261411257614111614385565b5b828204905092915050565b600061412882614215565b915061413383614215565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561416c5761416b614356565b5b828202905092915050565b600061418282614215565b915061418d83614215565b9250828210156141a05761419f614356565b5b828203905092915050565b60006141b6826141f5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614264578082015181840152602081019050614249565b83811115614273576000848401525b50505050565b6000600282049050600182168061429157607f821691505b602082108114156142a5576142a46143b4565b5b50919050565b6142b48261445a565b810181811067ffffffffffffffff821117156142d3576142d2614412565b5b80604052505050565b60006142e782614215565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561431a57614319614356565b5b600182019050919050565b600061433082614215565b915061433b83614215565b92508261434b5761434a614385565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742046756e64732100000000000000000000000000600082015250565b7f496e76616c696420616d6f756e74210000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f596f752063616e2774206d696e74207468697320616d6f756e74000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6146ac816141ab565b81146146b757600080fd5b50565b6146c3816141bd565b81146146ce57600080fd5b50565b6146da816141c9565b81146146e557600080fd5b50565b6146f181614215565b81146146fc57600080fd5b50565b6147088161421f565b811461471357600080fd5b5056fea26469706673582212201809f925d3d37d627c33465686453b9d3e9edccaa724bc0f0d15191e7f4e2f1a64736f6c63430008070033697066733a2f2f516d5951536570564736354d44767356633163734234376a71796a5943715832664b35586d78615238426333666d2f4c6f73744261626f6f6e734c696768742e6a736f6e697066733a2f2f516d5951536570564736354d44767356633163734234376a71796a5943715832664b35586d78615238426333666d2f4c6f73744261626f6f6e734461726b2e6a736f6e

Deployed Bytecode

0x6080604052600436106102305760003560e01c80636c0360eb1161012e578063aed38015116100ab578063d5abeb011161006f578063d5abeb011461081d578063e985e9c514610848578063f2fde38b14610885578063fae1f6e2146108ae578063fbdb8494146108d757610230565b8063aed3801514610728578063b5b1cd7c14610751578063b88d4fde1461078e578063c21b471b146107b7578063c87b56dd146107e057610230565b80639a87a46d116100f25780639a87a46d146106645780639ec571d51461068f578063a0712d68146106b8578063a22cb465146106d4578063a945bf80146106fd57610230565b80636c0360eb1461058f57806370a08231146105ba578063715018a6146105f75780638da5cb5b1461060e57806395d89b411461063957610230565b806323b872dd116101bc57806344a0d68a1161018057806344a0d68a146104aa57806351830227146104d357806355f804b3146104fe5780635c975abb146105275780636352211e1461055257610230565b806323b872dd146103d85780632a55205a146104015780633ccfd60b1461043f5780633f1199bd1461045657806342842e0e1461048157610230565b80630caea53b116102035780630caea53b146103035780630dc8a4c21461032e57806316c38b3c1461035957806318160ddd146103825780631f32975e146103ad57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c6004803603810190610257919061393b565b610900565b6040516102699190613de2565b60405180910390f35b34801561027e57600080fd5b50610287610922565b6040516102949190613dfd565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf91906139de565b6109b4565b6040516102d19190613d52565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190613845565b610a30565b005b34801561030f57600080fd5b50610318610b3b565b6040516103259190613f5f565b60405180910390f35b34801561033a57600080fd5b50610343610b41565b6040516103509190613dfd565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b919061390e565b610bcf565b005b34801561038e57600080fd5b50610397610c68565b6040516103a49190613f5f565b60405180910390f35b3480156103b957600080fd5b506103c2610c7f565b6040516103cf9190613f7a565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa919061372f565b610c9d565b005b34801561040d57600080fd5b5061042860048036038101906104239190613a4b565b610cad565b604051610436929190613db9565b60405180910390f35b34801561044b57600080fd5b50610454610e98565b005b34801561046257600080fd5b5061046b610f94565b6040516104789190613dfd565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a3919061372f565b611022565b005b3480156104b657600080fd5b506104d160048036038101906104cc91906139de565b611042565b005b3480156104df57600080fd5b506104e86110c8565b6040516104f59190613de2565b60405180910390f35b34801561050a57600080fd5b5061052560048036038101906105209190613995565b6110db565b005b34801561053357600080fd5b5061053c611171565b6040516105499190613de2565b60405180910390f35b34801561055e57600080fd5b50610579600480360381019061057491906139de565b611184565b6040516105869190613d52565b60405180910390f35b34801561059b57600080fd5b506105a461119a565b6040516105b19190613dfd565b60405180910390f35b3480156105c657600080fd5b506105e160048036038101906105dc91906136c2565b611228565b6040516105ee9190613f5f565b60405180910390f35b34801561060357600080fd5b5061060c6112f8565b005b34801561061a57600080fd5b50610623611380565b6040516106309190613d52565b60405180910390f35b34801561064557600080fd5b5061064e6113aa565b60405161065b9190613dfd565b60405180910390f35b34801561067057600080fd5b5061067961143c565b6040516106869190613d52565b60405180910390f35b34801561069b57600080fd5b506106b660048036038101906106b191906139de565b611462565b005b6106d260048036038101906106cd91906139de565b6114e8565b005b3480156106e057600080fd5b506106fb60048036038101906106f69190613805565b6117dd565b005b34801561070957600080fd5b50610712611955565b60405161071f9190613f5f565b60405180910390f35b34801561073457600080fd5b5061074f600480360381019061074a9190613a0b565b61195b565b005b34801561075d57600080fd5b50610778600480360381019061077391906136c2565b6119e5565b6040516107859190613f5f565b60405180910390f35b34801561079a57600080fd5b506107b560048036038101906107b09190613782565b6119fd565b005b3480156107c357600080fd5b506107de60048036038101906107d99190613885565b611a79565b005b3480156107ec57600080fd5b50610807600480360381019061080291906139de565b611b03565b6040516108149190613dfd565b60405180910390f35b34801561082957600080fd5b50610832611d02565b60405161083f9190613f5f565b60405180910390f35b34801561085457600080fd5b5061086f600480360381019061086a91906136ef565b611d08565b60405161087c9190613de2565b60405180910390f35b34801561089157600080fd5b506108ac60048036038101906108a791906136c2565b611d9c565b005b3480156108ba57600080fd5b506108d560048036038101906108d091906138c5565b611e94565b005b3480156108e357600080fd5b506108fe60048036038101906108f991906139de565b611f58565b005b600061090b82611fde565b8061091b575061091a826120c0565b5b9050919050565b60606002805461093190614279565b80601f016020809104026020016040519081016040528092919081815260200182805461095d90614279565b80156109aa5780601f1061097f576101008083540402835291602001916109aa565b820191906000526020600020905b81548152906001019060200180831161098d57829003601f168201915b5050505050905090565b60006109bf8261213a565b6109f5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3b82611184565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aa3576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ac2612188565b73ffffffffffffffffffffffffffffffffffffffff1614158015610af45750610af281610aed612188565b611d08565b155b15610b2b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b36838383612190565b505050565b60135481565b600f8054610b4e90614279565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7a90614279565b8015610bc75780601f10610b9c57610100808354040283529160200191610bc7565b820191906000526020600020905b815481529060010190602001808311610baa57829003601f168201915b505050505081565b610bd7612188565b73ffffffffffffffffffffffffffffffffffffffff16610bf5611380565b73ffffffffffffffffffffffffffffffffffffffff1614610c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4290613e7f565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000610c72612242565b6001546000540303905090565b601160009054906101000a90046bffffffffffffffffffffffff1681565b610ca883838361224b565b505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610e435760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610e4d612701565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610e79919061411d565b610e8391906140ec565b90508160000151819350935050509250929050565b610ea0612188565b73ffffffffffffffffffffffffffffffffffffffff16610ebe611380565b73ffffffffffffffffffffffffffffffffffffffff1614610f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0b90613e7f565b60405180910390fd5b6000610f1e611380565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f4190613d3d565b60006040518083038185875af1925050503d8060008114610f7e576040519150601f19603f3d011682016040523d82523d6000602084013e610f83565b606091505b5050905080610f9157600080fd5b50565b600e8054610fa190614279565b80601f0160208091040260200160405190810160405280929190818152602001828054610fcd90614279565b801561101a5780601f10610fef5761010080835404028352916020019161101a565b820191906000526020600020905b815481529060010190602001808311610ffd57829003601f168201915b505050505081565b61103d838383604051806020016040528060008152506119fd565b505050565b61104a612188565b73ffffffffffffffffffffffffffffffffffffffff16611068611380565b73ffffffffffffffffffffffffffffffffffffffff16146110be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b590613e7f565b60405180910390fd5b8060128190555050565b601060009054906101000a900460ff1681565b6110e3612188565b73ffffffffffffffffffffffffffffffffffffffff16611101611380565b73ffffffffffffffffffffffffffffffffffffffff1614611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e90613e7f565b60405180910390fd5b80600d908051906020019061116d9291906133e0565b5050565b601060019054906101000a900460ff1681565b600061118f8261270b565b600001519050919050565b600d80546111a790614279565b80601f01602080910402602001604051908101604052809291908181526020018280546111d390614279565b80156112205780601f106111f557610100808354040283529160200191611220565b820191906000526020600020905b81548152906001019060200180831161120357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611290576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611300612188565b73ffffffffffffffffffffffffffffffffffffffff1661131e611380565b73ffffffffffffffffffffffffffffffffffffffff1614611374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136b90613e7f565b60405180910390fd5b61137e600061299a565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546113b990614279565b80601f01602080910402602001604051908101604052809291908181526020018280546113e590614279565b80156114325780601f1061140757610100808354040283529160200191611432565b820191906000526020600020905b81548152906001019060200180831161141557829003601f168201915b5050505050905090565b601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61146a612188565b73ffffffffffffffffffffffffffffffffffffffff16611488611380565b73ffffffffffffffffffffffffffffffffffffffff16146114de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d590613e7f565b60405180910390fd5b8060148190555050565b6002600b54141561152e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152590613f1f565b60405180910390fd5b6002600b81905550601060019054906101000a900460ff1615611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d90613e9f565b60405180910390fd5b6000811180156115aa57506014548161159d610c68565b6115a79190614096565b11155b6115e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e090613e5f565b60405180910390fd5b60135481600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116379190614096565b1115611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f90613eff565b60405180910390fd5b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415611721576001816116cd9190614177565b6012546116da919061411d565b34101561171c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171390613e3f565b60405180910390fd5b611772565b8060125461172f919061411d565b341015611771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176890613e3f565b60405180910390fd5b5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117c19190614096565b925050819055506117d23382612a60565b6001600b8190555050565b6117e5612188565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561184a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611857612188565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611904612188565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119499190613de2565b60405180910390a35050565b60125481565b611963612188565b73ffffffffffffffffffffffffffffffffffffffff16611981611380565b73ffffffffffffffffffffffffffffffffffffffff16146119d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ce90613e7f565b60405180910390fd5b6119e18183612a60565b5050565b600c6020528060005260406000206000915090505481565b611a0884848461224b565b611a278373ffffffffffffffffffffffffffffffffffffffff16612a7e565b8015611a3c5750611a3a84848484612aa1565b155b15611a73576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611a81612188565b73ffffffffffffffffffffffffffffffffffffffff16611a9f611380565b73ffffffffffffffffffffffffffffffffffffffff1614611af5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aec90613e7f565b60405180910390fd5b611aff8282612c01565b5050565b6060611b0e8261213a565b611b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4490613ebf565b60405180910390fd5b6000611b57612d97565b905060001515601060009054906101000a900460ff1615151415611cb0576000600284611b849190614325565b1415611c1d57600e8054611b9790614279565b80601f0160208091040260200160405190810160405280929190818152602001828054611bc390614279565b8015611c105780601f10611be557610100808354040283529160200191611c10565b820191906000526020600020905b815481529060010190602001808311611bf357829003601f168201915b5050505050915050611cfd565b600f8054611c2a90614279565b80601f0160208091040260200160405190810160405280929190818152602001828054611c5690614279565b8015611ca35780601f10611c7857610100808354040283529160200191611ca3565b820191906000526020600020905b815481529060010190602001808311611c8657829003601f168201915b5050505050915050611cfd565b6000815111611cce5760405180602001604052806000815250611cf9565b80611cd884612e29565b604051602001611ce9929190613d0e565b6040516020818303038152906040525b9150505b919050565b60145481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611da4612188565b73ffffffffffffffffffffffffffffffffffffffff16611dc2611380565b73ffffffffffffffffffffffffffffffffffffffff1614611e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0f90613e7f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7f90613e1f565b60405180910390fd5b611e918161299a565b50565b611e9c612188565b73ffffffffffffffffffffffffffffffffffffffff16611eba611380565b73ffffffffffffffffffffffffffffffffffffffff1614611f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0790613e7f565b60405180910390fd5b60005b8151811015611f5457611f41828281518110611f3257611f316143e3565b5b60200260200101516001612a60565b8080611f4c906142dc565b915050611f13565b5050565b611f60612188565b73ffffffffffffffffffffffffffffffffffffffff16611f7e611380565b73ffffffffffffffffffffffffffffffffffffffff1614611fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcb90613e7f565b60405180910390fd5b8060138190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806120a957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806120b957506120b882612f8a565b5b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612133575061213282611fde565b5b9050919050565b600081612145612242565b11158015612154575060005482105b8015612181575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006122568261270b565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122c1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166122e2612188565b73ffffffffffffffffffffffffffffffffffffffff16148061231157506123108561230b612188565b611d08565b5b80612356575061231f612188565b73ffffffffffffffffffffffffffffffffffffffff1661233e846109b4565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061238f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123f6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124038585856001612ff4565b61240f60008487612190565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561268f57600054821461268e57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126fa8585856001612ffa565b5050505050565b6000612710905090565b612713613466565b600082905080612721612242565b11158015612730575060005481105b15612963576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161296157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612845578092505050612995565b5b60011561296057818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461295b578092505050612995565b612846565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a7a828260405180602001604052806000815250613000565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ac7612188565b8786866040518563ffffffff1660e01b8152600401612ae99493929190613d6d565b602060405180830381600087803b158015612b0357600080fd5b505af1925050508015612b3457506040513d601f19601f82011682018060405250810190612b319190613968565b60015b612bae573d8060008114612b64576040519150601f19603f3d011682016040523d82523d6000602084013e612b69565b606091505b50600081511415612ba6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b612c09612701565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115612c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5e90613edf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cce90613f3f565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6060600d8054612da690614279565b80601f0160208091040260200160405190810160405280929190818152602001828054612dd290614279565b8015612e1f5780601f10612df457610100808354040283529160200191612e1f565b820191906000526020600020905b815481529060010190602001808311612e0257829003601f168201915b5050505050905090565b60606000821415612e71576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f85565b600082905060005b60008214612ea3578080612e8c906142dc565b915050600a82612e9c91906140ec565b9150612e79565b60008167ffffffffffffffff811115612ebf57612ebe614412565b5b6040519080825280601f01601f191660200182016040528015612ef15781602001600182028036833780820191505090505b5090505b60008514612f7e57600182612f0a9190614177565b9150600a85612f199190614325565b6030612f259190614096565b60f81b818381518110612f3b57612f3a6143e3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f7791906140ec565b9450612ef5565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b61300d8383836001613012565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561307f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156130ba576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130c76000868387612ff4565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561329157506132908773ffffffffffffffffffffffffffffffffffffffff16612a7e565b5b15613357575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133066000888480600101955088612aa1565b61333c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561329757826000541461335257600080fd5b6133c3565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613358575b8160008190555050506133d96000868387612ffa565b5050505050565b8280546133ec90614279565b90600052602060002090601f01602090048101928261340e5760008555613455565b82601f1061342757805160ff1916838001178555613455565b82800160010185558215613455579182015b82811115613454578251825591602001919060010190613439565b5b50905061346291906134a9565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156134c25760008160009055506001016134aa565b5090565b60006134d96134d484613fba565b613f95565b905080838252602082019050828560208602820111156134fc576134fb614446565b5b60005b8581101561352c578161351288826135ba565b8452602084019350602083019250506001810190506134ff565b5050509392505050565b600061354961354484613fe6565b613f95565b9050828152602081018484840111156135655761356461444b565b5b613570848285614237565b509392505050565b600061358b61358684614017565b613f95565b9050828152602081018484840111156135a7576135a661444b565b5b6135b2848285614237565b509392505050565b6000813590506135c9816146a3565b92915050565b600082601f8301126135e4576135e3614441565b5b81356135f48482602086016134c6565b91505092915050565b60008135905061360c816146ba565b92915050565b600081359050613621816146d1565b92915050565b600081519050613636816146d1565b92915050565b600082601f83011261365157613650614441565b5b8135613661848260208601613536565b91505092915050565b600082601f83011261367f5761367e614441565b5b813561368f848260208601613578565b91505092915050565b6000813590506136a7816146e8565b92915050565b6000813590506136bc816146ff565b92915050565b6000602082840312156136d8576136d7614455565b5b60006136e6848285016135ba565b91505092915050565b6000806040838503121561370657613705614455565b5b6000613714858286016135ba565b9250506020613725858286016135ba565b9150509250929050565b60008060006060848603121561374857613747614455565b5b6000613756868287016135ba565b9350506020613767868287016135ba565b925050604061377886828701613698565b9150509250925092565b6000806000806080858703121561379c5761379b614455565b5b60006137aa878288016135ba565b94505060206137bb878288016135ba565b93505060406137cc87828801613698565b925050606085013567ffffffffffffffff8111156137ed576137ec614450565b5b6137f98782880161363c565b91505092959194509250565b6000806040838503121561381c5761381b614455565b5b600061382a858286016135ba565b925050602061383b858286016135fd565b9150509250929050565b6000806040838503121561385c5761385b614455565b5b600061386a858286016135ba565b925050602061387b85828601613698565b9150509250929050565b6000806040838503121561389c5761389b614455565b5b60006138aa858286016135ba565b92505060206138bb858286016136ad565b9150509250929050565b6000602082840312156138db576138da614455565b5b600082013567ffffffffffffffff8111156138f9576138f8614450565b5b613905848285016135cf565b91505092915050565b60006020828403121561392457613923614455565b5b6000613932848285016135fd565b91505092915050565b60006020828403121561395157613950614455565b5b600061395f84828501613612565b91505092915050565b60006020828403121561397e5761397d614455565b5b600061398c84828501613627565b91505092915050565b6000602082840312156139ab576139aa614455565b5b600082013567ffffffffffffffff8111156139c9576139c8614450565b5b6139d58482850161366a565b91505092915050565b6000602082840312156139f4576139f3614455565b5b6000613a0284828501613698565b91505092915050565b60008060408385031215613a2257613a21614455565b5b6000613a3085828601613698565b9250506020613a41858286016135ba565b9150509250929050565b60008060408385031215613a6257613a61614455565b5b6000613a7085828601613698565b9250506020613a8185828601613698565b9150509250929050565b613a94816141ab565b82525050565b613aa3816141bd565b82525050565b6000613ab482614048565b613abe818561405e565b9350613ace818560208601614246565b613ad78161445a565b840191505092915050565b6000613aed82614053565b613af7818561407a565b9350613b07818560208601614246565b613b108161445a565b840191505092915050565b6000613b2682614053565b613b30818561408b565b9350613b40818560208601614246565b80840191505092915050565b6000613b5960268361407a565b9150613b648261446b565b604082019050919050565b6000613b7c60138361407a565b9150613b87826144ba565b602082019050919050565b6000613b9f600f8361407a565b9150613baa826144e3565b602082019050919050565b6000613bc260058361408b565b9150613bcd8261450c565b600582019050919050565b6000613be560208361407a565b9150613bf082614535565b602082019050919050565b6000613c0860178361407a565b9150613c138261455e565b602082019050919050565b6000613c2b602f8361407a565b9150613c3682614587565b604082019050919050565b6000613c4e60008361406f565b9150613c59826145d6565b600082019050919050565b6000613c71602a8361407a565b9150613c7c826145d9565b604082019050919050565b6000613c94601a8361407a565b9150613c9f82614628565b602082019050919050565b6000613cb7601f8361407a565b9150613cc282614651565b602082019050919050565b6000613cda60198361407a565b9150613ce58261467a565b602082019050919050565b613cf981614215565b82525050565b613d088161421f565b82525050565b6000613d1a8285613b1b565b9150613d268284613b1b565b9150613d3182613bb5565b91508190509392505050565b6000613d4882613c41565b9150819050919050565b6000602082019050613d676000830184613a8b565b92915050565b6000608082019050613d826000830187613a8b565b613d8f6020830186613a8b565b613d9c6040830185613cf0565b8181036060830152613dae8184613aa9565b905095945050505050565b6000604082019050613dce6000830185613a8b565b613ddb6020830184613cf0565b9392505050565b6000602082019050613df76000830184613a9a565b92915050565b60006020820190508181036000830152613e178184613ae2565b905092915050565b60006020820190508181036000830152613e3881613b4c565b9050919050565b60006020820190508181036000830152613e5881613b6f565b9050919050565b60006020820190508181036000830152613e7881613b92565b9050919050565b60006020820190508181036000830152613e9881613bd8565b9050919050565b60006020820190508181036000830152613eb881613bfb565b9050919050565b60006020820190508181036000830152613ed881613c1e565b9050919050565b60006020820190508181036000830152613ef881613c64565b9050919050565b60006020820190508181036000830152613f1881613c87565b9050919050565b60006020820190508181036000830152613f3881613caa565b9050919050565b60006020820190508181036000830152613f5881613ccd565b9050919050565b6000602082019050613f746000830184613cf0565b92915050565b6000602082019050613f8f6000830184613cff565b92915050565b6000613f9f613fb0565b9050613fab82826142ab565b919050565b6000604051905090565b600067ffffffffffffffff821115613fd557613fd4614412565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561400157614000614412565b5b61400a8261445a565b9050602081019050919050565b600067ffffffffffffffff82111561403257614031614412565b5b61403b8261445a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006140a182614215565b91506140ac83614215565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140e1576140e0614356565b5b828201905092915050565b60006140f782614215565b915061410283614215565b92508261411257614111614385565b5b828204905092915050565b600061412882614215565b915061413383614215565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561416c5761416b614356565b5b828202905092915050565b600061418282614215565b915061418d83614215565b9250828210156141a05761419f614356565b5b828203905092915050565b60006141b6826141f5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614264578082015181840152602081019050614249565b83811115614273576000848401525b50505050565b6000600282049050600182168061429157607f821691505b602082108114156142a5576142a46143b4565b5b50919050565b6142b48261445a565b810181811067ffffffffffffffff821117156142d3576142d2614412565b5b80604052505050565b60006142e782614215565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561431a57614319614356565b5b600182019050919050565b600061433082614215565b915061433b83614215565b92508261434b5761434a614385565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742046756e64732100000000000000000000000000600082015250565b7f496e76616c696420616d6f756e74210000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f596f752063616e2774206d696e74207468697320616d6f756e74000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6146ac816141ab565b81146146b757600080fd5b50565b6146c3816141bd565b81146146ce57600080fd5b50565b6146da816141c9565b81146146e557600080fd5b50565b6146f181614215565b81146146fc57600080fd5b50565b6147088161421f565b811461471357600080fd5b5056fea26469706673582212201809f925d3d37d627c33465686453b9d3e9edccaa724bc0f0d15191e7f4e2f1a64736f6c63430008070033

Deployed Bytecode Sourcemap

55082:4410:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57756:258;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40398:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41901:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41464:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55709:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55405:115;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58534:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36534:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55625:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42766:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4604:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;59076:413;;;;;;;;;;;;;:::i;:::-;;55282:116;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43007:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58188:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55527:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58627:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55554:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40206:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55254:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37654:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15751:103;;;;;;;;;;;;;:::i;:::-;;15100:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40567:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55586:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58431:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56103:636;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42177:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55661:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58744:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55197:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43263:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58025:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56928:822;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55751:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42535:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16009:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58878:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58309:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57756:258;57871:4;57913:38;57939:11;57913:25;:38::i;:::-;:93;;;;57968:38;57994:11;57968:25;:38::i;:::-;57913:93;57893:113;;57756:258;;;:::o;40398:100::-;40452:13;40485:5;40478:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40398:100;:::o;41901:204::-;41969:7;41994:16;42002:7;41994;:16::i;:::-;41989:64;;42019:34;;;;;;;;;;;;;;41989:64;42073:15;:24;42089:7;42073:24;;;;;;;;;;;;;;;;;;;;;42066:31;;41901:204;;;:::o;41464:371::-;41537:13;41553:24;41569:7;41553:15;:24::i;:::-;41537:40;;41598:5;41592:11;;:2;:11;;;41588:48;;;41612:24;;;;;;;;;;;;;;41588:48;41669:5;41653:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;41679:37;41696:5;41703:12;:10;:12::i;:::-;41679:16;:37::i;:::-;41678:38;41653:63;41649:138;;;41740:35;;;;;;;;;;;;;;41649:138;41799:28;41808:2;41812:7;41821:5;41799:8;:28::i;:::-;41526:309;41464:371;;:::o;55709:35::-;;;;:::o;55405:115::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58534:85::-;15331:12;:10;:12::i;:::-;15320:23;;:7;:5;:7::i;:::-;:23;;;15312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58605:6:::1;58596;;:15;;;;;;;;;;;;;;;;;;58534:85:::0;:::o;36534:303::-;36578:7;36803:15;:13;:15::i;:::-;36788:12;;36772:13;;:28;:46;36765:53;;36534:303;:::o;55625:29::-;;;;;;;;;;;;;:::o;42766:170::-;42900:28;42910:4;42916:2;42920:7;42900:9;:28::i;:::-;42766:170;;;:::o;4604:442::-;4701:7;4710;4730:26;4759:17;:27;4777:8;4759:27;;;;;;;;;;;4730:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4831:1;4803:30;;:7;:16;;;:30;;;4799:92;;;4860:19;4850:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4799:92;4903:21;4968:17;:15;:17::i;:::-;4927:58;;4941:7;:23;;;4928:36;;:10;:36;;;;:::i;:::-;4927:58;;;;:::i;:::-;4903:82;;5006:7;:16;;;5024:13;4998:40;;;;;;4604:442;;;;;:::o;59076:413::-;15331:12;:10;:12::i;:::-;15320:23;;:7;:5;:7::i;:::-;:23;;;15312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59301:7:::1;59322;:5;:7::i;:::-;59314:21;;59343;59314:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59300:69;;;59388:2;59380:11;;;::::0;::::1;;59113:376;59076:413::o:0;55282:116::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43007:185::-;43145:39;43162:4;43168:2;43172:7;43145:39;;;;;;;;;;;;:16;:39::i;:::-;43007:185;;;:::o;58188:107::-;15331:12;:10;:12::i;:::-;15320:23;;:7;:5;:7::i;:::-;:23;;;15312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58273:14:::1;58259:11;:28;;;;58188:107:::0;:::o;55527:20::-;;;;;;;;;;;;;:::o;58627:106::-;15331:12;:10;:12::i;:::-;15320:23;;:7;:5;:7::i;:::-;:23;;;15312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58714:11:::1;58704:7;:21;;;;;;;;;;;;:::i;:::-;;58627:106:::0;:::o;55554:25::-;;;;;;;;;;;;;:::o;40206:125::-;40270:7;40297:21;40310:7;40297:12;:21::i;:::-;:26;;;40290:33;;40206:125;;;:::o;55254:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37654:206::-;37718:7;37759:1;37742:19;;:5;:19;;;37738:60;;;37770:28;;;;;;;;;;;;;;37738:60;37824:12;:19;37837:5;37824:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;37816:36;;37809:43;;37654:206;;;:::o;15751:103::-;15331:12;:10;:12::i;:::-;15320:23;;:7;:5;:7::i;:::-;:23;;;15312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15816:30:::1;15843:1;15816:18;:30::i;:::-;15751:103::o:0;15100:87::-;15146:7;15173:6;;;;;;;;;;;15166:13;;15100:87;:::o;40567:104::-;40623:13;40656:7;40649:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40567:104;:::o;55586:32::-;;;;;;;;;;;;;:::o;58431:95::-;15331:12;:10;:12::i;:::-;15320:23;;:7;:5;:7::i;:::-;:23;;;15312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58511:7:::1;58499:9;:19;;;;58431:95:::0;:::o;56103:636::-;9913:1;10511:7;;:19;;10503:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;9913:1;10644:7;:18;;;;56185:6:::1;;;;;;;;;;;56184:7;56176:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;56249:1;56238:8;:12;:53;;;;;56282:9;;56270:8;56254:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;56238:53;56230:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;56370:15;;56358:8;56330:13;:25;56344:10;56330:25;;;;;;;;;;;;;;;;:36;;;;:::i;:::-;:55;;56322:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;56460:1;56431:13;:25;56445:10;56431:25;;;;;;;;;;;;;;;;:30;56427:213;;;56517:1;56508:8;:10;;;;:::i;:::-;56493:11;;:26;;;;:::i;:::-;56480:9;:39;;56472:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;56427:213;;;56608:8;56594:11;;:22;;;;:::i;:::-;56581:9;:35;;56573:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;56427:213;56681:8;56652:13;:25;56666:10;56652:25;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;56700:31;56710:10;56722:8;56700:9;:31::i;:::-;9869:1:::0;10823:7;:22;;;;56103:636;:::o;42177:287::-;42288:12;:10;:12::i;:::-;42276:24;;:8;:24;;;42272:54;;;42309:17;;;;;;;;;;;;;;42272:54;42384:8;42339:18;:32;42358:12;:10;:12::i;:::-;42339:32;;;;;;;;;;;;;;;:42;42372:8;42339:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;42437:8;42408:48;;42423:12;:10;:12::i;:::-;42408:48;;;42447:8;42408:48;;;;;;:::i;:::-;;;;;;;;42177:287;;:::o;55661:41::-;;;;:::o;58744:120::-;15331:12;:10;:12::i;:::-;15320:23;;:7;:5;:7::i;:::-;:23;;;15312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58827:29:::1;58837:8;58847;58827:9;:29::i;:::-;58744:120:::0;;:::o;55197:48::-;;;;;;;;;;;;;;;;;:::o;43263:369::-;43430:28;43440:4;43446:2;43450:7;43430:9;:28::i;:::-;43473:15;:2;:13;;;:15::i;:::-;:76;;;;;43493:56;43524:4;43530:2;43534:7;43543:5;43493:30;:56::i;:::-;43492:57;43473:76;43469:156;;;43573:40;;;;;;;;;;;;;;43469:156;43263:369;;;;:::o;58025:147::-;15331:12;:10;:12::i;:::-;15320:23;;:7;:5;:7::i;:::-;:23;;;15312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58119:45:::1;58138:8;58148:15;58119:18;:45::i;:::-;58025:147:::0;;:::o;56928:822::-;57046:13;57099:16;57107:7;57099;:16::i;:::-;57077:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;57201:28;57232:10;:8;:10::i;:::-;57201:41;;57270:5;57258:17;;:8;;;;;;;;;;;:17;;;57254:177;;;57311:1;57306;57296:7;:11;;;;:::i;:::-;:16;57292:127;;;57339:22;57332:29;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57292:127;57397:22;57390:29;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57254:177;57492:1;57467:14;57461:28;:32;:281;;;;;;;;;;;;;;;;;57585:14;57626:18;:7;:16;:18::i;:::-;57542:159;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57461:281;57441:301;;;56928:822;;;;:::o;55751:31::-;;;;:::o;42535:164::-;42632:4;42656:18;:25;42675:5;42656:25;;;;;;;;;;;;;;;:35;42682:8;42656:35;;;;;;;;;;;;;;;;;;;;;;;;;42649:42;;42535:164;;;;:::o;16009:201::-;15331:12;:10;:12::i;:::-;15320:23;;:7;:5;:7::i;:::-;:23;;;15312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16118:1:::1;16098:22;;:8;:22;;;;16090:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;16174:28;16193:8;16174:18;:28::i;:::-;16009:201:::0;:::o;58878:190::-;15331:12;:10;:12::i;:::-;15320:23;;:7;:5;:7::i;:::-;:23;;;15312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58963:9:::1;58959:102;58982:10;:17;58978:1;:21;58959:102;;;59022:27;59032:10;59043:1;59032:13;;;;;;;;:::i;:::-;;;;;;;;59047:1;59022:9;:27::i;:::-;59001:4;;;;;:::i;:::-;;;;58959:102;;;;58878:190:::0;:::o;58309:114::-;15331:12;:10;:12::i;:::-;15320:23;;:7;:5;:7::i;:::-;:23;;;15312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58402:13:::1;58384:15;:31;;;;58309:114:::0;:::o;37285:305::-;37387:4;37439:25;37424:40;;;:11;:40;;;;:105;;;;37496:33;37481:48;;;:11;:48;;;;37424:105;:158;;;;37546:36;37570:11;37546:23;:36::i;:::-;37424:158;37404:178;;37285:305;;;:::o;4334:215::-;4436:4;4475:26;4460:41;;;:11;:41;;;;:81;;;;4505:36;4529:11;4505:23;:36::i;:::-;4460:81;4453:88;;4334:215;;;:::o;43887:174::-;43944:4;43987:7;43968:15;:13;:15::i;:::-;:26;;:53;;;;;44008:13;;43998:7;:23;43968:53;:85;;;;;44026:11;:20;44038:7;44026:20;;;;;;;;;;;:27;;;;;;;;;;;;44025:28;43968:85;43961:92;;43887:174;;;:::o;13824:98::-;13877:7;13904:10;13897:17;;13824:98;:::o;52044:196::-;52186:2;52159:15;:24;52175:7;52159:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;52224:7;52220:2;52204:28;;52213:5;52204:28;;;;;;;;;;;;52044:196;;;:::o;36308:92::-;36364:7;36391:1;36384:8;;36308:92;:::o;46987:2130::-;47102:35;47140:21;47153:7;47140:12;:21::i;:::-;47102:59;;47200:4;47178:26;;:13;:18;;;:26;;;47174:67;;47213:28;;;;;;;;;;;;;;47174:67;47254:22;47296:4;47280:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;47317:36;47334:4;47340:12;:10;:12::i;:::-;47317:16;:36::i;:::-;47280:73;:126;;;;47394:12;:10;:12::i;:::-;47370:36;;:20;47382:7;47370:11;:20::i;:::-;:36;;;47280:126;47254:153;;47425:17;47420:66;;47451:35;;;;;;;;;;;;;;47420:66;47515:1;47501:16;;:2;:16;;;47497:52;;;47526:23;;;;;;;;;;;;;;47497:52;47562:43;47584:4;47590:2;47594:7;47603:1;47562:21;:43::i;:::-;47670:35;47687:1;47691:7;47700:4;47670:8;:35::i;:::-;48031:1;48001:12;:18;48014:4;48001:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48075:1;48047:12;:16;48060:2;48047:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48093:31;48127:11;:20;48139:7;48127:20;;;;;;;;;;;48093:54;;48178:2;48162:8;:13;;;:18;;;;;;;;;;;;;;;;;;48228:15;48195:8;:23;;;:49;;;;;;;;;;;;;;;;;;48496:19;48528:1;48518:7;:11;48496:33;;48544:31;48578:11;:24;48590:11;48578:24;;;;;;;;;;;48544:58;;48646:1;48621:27;;:8;:13;;;;;;;;;;;;:27;;;48617:384;;;48831:13;;48816:11;:28;48812:174;;48885:4;48869:8;:13;;;:20;;;;;;;;;;;;;;;;;;48938:13;:28;;;48912:8;:23;;;:54;;;;;;;;;;;;;;;;;;48812:174;48617:384;47976:1036;;;49048:7;49044:2;49029:27;;49038:4;49029:27;;;;;;;;;;;;49067:42;49088:4;49094:2;49098:7;49107:1;49067:20;:42::i;:::-;47091:2026;;46987:2130;;;:::o;5328:97::-;5386:6;5412:5;5405:12;;5328:97;:::o;39035:1109::-;39097:21;;:::i;:::-;39131:12;39146:7;39131:22;;39214:4;39195:15;:13;:15::i;:::-;:23;;:47;;;;;39229:13;;39222:4;:20;39195:47;39191:886;;;39263:31;39297:11;:17;39309:4;39297:17;;;;;;;;;;;39263:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39338:9;:16;;;39333:729;;39409:1;39383:28;;:9;:14;;;:28;;;39379:101;;39447:9;39440:16;;;;;;39379:101;39782:261;39789:4;39782:261;;;39822:6;;;;;;;;39867:11;:17;39879:4;39867:17;;;;;;;;;;;39855:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39941:1;39915:28;;:9;:14;;;:28;;;39911:109;;39983:9;39976:16;;;;;;39911:109;39782:261;;;39333:729;39244:833;39191:886;40105:31;;;;;;;;;;;;;;39035:1109;;;;:::o;16370:191::-;16444:16;16463:6;;;;;;;;;;;16444:25;;16489:8;16480:6;;:17;;;;;;;;;;;;;;;;;;16544:8;16513:40;;16534:8;16513:40;;;;;;;;;;;;16433:128;16370:191;:::o;44069:104::-;44138:27;44148:2;44152:8;44138:27;;;;;;;;;;;;:9;:27::i;:::-;44069:104;;:::o;17801:326::-;17861:4;18118:1;18096:7;:19;;;:23;18089:30;;17801:326;;;:::o;52732:667::-;52895:4;52932:2;52916:36;;;52953:12;:10;:12::i;:::-;52967:4;52973:7;52982:5;52916:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;52912:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53167:1;53150:6;:13;:18;53146:235;;;53196:40;;;;;;;;;;;;;;53146:235;53339:6;53333:13;53324:6;53320:2;53316:15;53309:38;52912:480;53045:45;;;53035:55;;;:6;:55;;;;53028:62;;;52732:667;;;;;;:::o;5696:332::-;5815:17;:15;:17::i;:::-;5799:33;;:12;:33;;;;5791:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;5918:1;5898:22;;:8;:22;;;;5890:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;5985:35;;;;;;;;5997:8;5985:35;;;;;;6007:12;5985:35;;;;;5963:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5696:332;;:::o;56747:108::-;56807:13;56840:7;56833:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56747:108;:::o;11386:723::-;11442:13;11672:1;11663:5;:10;11659:53;;;11690:10;;;;;;;;;;;;;;;;;;;;;11659:53;11722:12;11737:5;11722:20;;11753:14;11778:78;11793:1;11785:4;:9;11778:78;;11811:8;;;;;:::i;:::-;;;;11842:2;11834:10;;;;;:::i;:::-;;;11778:78;;;11866:19;11898:6;11888:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11866:39;;11916:154;11932:1;11923:5;:10;11916:154;;11960:1;11950:11;;;;;:::i;:::-;;;12027:2;12019:5;:10;;;;:::i;:::-;12006:2;:24;;;;:::i;:::-;11993:39;;11976:6;11983;11976:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;12056:2;12047:11;;;;;:::i;:::-;;;11916:154;;;12094:6;12080:21;;;;;11386:723;;;;:::o;1886:157::-;1971:4;2010:25;1995:40;;;:11;:40;;;;1988:47;;1886:157;;;:::o;54047:159::-;;;;;:::o;54865:158::-;;;;;:::o;44536:163::-;44659:32;44665:2;44669:8;44679:5;44686:4;44659:5;:32::i;:::-;44536:163;;;:::o;44958:1775::-;45097:20;45120:13;;45097:36;;45162:1;45148:16;;:2;:16;;;45144:48;;;45173:19;;;;;;;;;;;;;;45144:48;45219:1;45207:8;:13;45203:44;;;45229:18;;;;;;;;;;;;;;45203:44;45260:61;45290:1;45294:2;45298:12;45312:8;45260:21;:61::i;:::-;45633:8;45598:12;:16;45611:2;45598:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45697:8;45657:12;:16;45670:2;45657:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45756:2;45723:11;:25;45735:12;45723:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;45823:15;45773:11;:25;45785:12;45773:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;45856:20;45879:12;45856:35;;45906:11;45935:8;45920:12;:23;45906:37;;45964:4;:23;;;;;45972:15;:2;:13;;;:15::i;:::-;45964:23;45960:641;;;46008:314;46064:12;46060:2;46039:38;;46056:1;46039:38;;;;;;;;;;;;46105:69;46144:1;46148:2;46152:14;;;;;;46168:5;46105:30;:69::i;:::-;46100:174;;46210:40;;;;;;;;;;;;;;46100:174;46317:3;46301:12;:19;;46008:314;;46403:12;46386:13;;:29;46382:43;;46417:8;;;46382:43;45960:641;;;46466:120;46522:14;;;;;;46518:2;46497:40;;46514:1;46497:40;;;;;;;;;;;;46581:3;46565:12;:19;;46466:120;;45960:641;46631:12;46615:13;:28;;;;45573:1082;;46665:60;46694:1;46698:2;46702:12;46716:8;46665:20;:60::i;:::-;45086:1647;44958:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2924:340::-;2980:5;3029:3;3022:4;3014:6;3010:17;3006:27;2996:122;;3037:79;;:::i;:::-;2996:122;3154:6;3141:20;3179:79;3254:3;3246:6;3239:4;3231:6;3227:17;3179:79;:::i;:::-;3170:88;;2986:278;2924:340;;;;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:137::-;3460:5;3498:6;3485:20;3476:29;;3514:32;3540:5;3514:32;:::i;:::-;3415:137;;;;:::o;3558:329::-;3617:6;3666:2;3654:9;3645:7;3641:23;3637:32;3634:119;;;3672:79;;:::i;:::-;3634:119;3792:1;3817:53;3862:7;3853:6;3842:9;3838:22;3817:53;:::i;:::-;3807:63;;3763:117;3558:329;;;;:::o;3893:474::-;3961:6;3969;4018:2;4006:9;3997:7;3993:23;3989:32;3986:119;;;4024:79;;:::i;:::-;3986:119;4144:1;4169:53;4214:7;4205:6;4194:9;4190:22;4169:53;:::i;:::-;4159:63;;4115:117;4271:2;4297:53;4342:7;4333:6;4322:9;4318:22;4297:53;:::i;:::-;4287:63;;4242:118;3893:474;;;;;:::o;4373:619::-;4450:6;4458;4466;4515:2;4503:9;4494:7;4490:23;4486:32;4483:119;;;4521:79;;:::i;:::-;4483:119;4641:1;4666:53;4711:7;4702:6;4691:9;4687:22;4666:53;:::i;:::-;4656:63;;4612:117;4768:2;4794:53;4839:7;4830:6;4819:9;4815:22;4794:53;:::i;:::-;4784:63;;4739:118;4896:2;4922:53;4967:7;4958:6;4947:9;4943:22;4922:53;:::i;:::-;4912:63;;4867:118;4373:619;;;;;:::o;4998:943::-;5093:6;5101;5109;5117;5166:3;5154:9;5145:7;5141:23;5137:33;5134:120;;;5173:79;;:::i;:::-;5134:120;5293:1;5318:53;5363:7;5354:6;5343:9;5339:22;5318:53;:::i;:::-;5308:63;;5264:117;5420:2;5446:53;5491:7;5482:6;5471:9;5467:22;5446:53;:::i;:::-;5436:63;;5391:118;5548:2;5574:53;5619:7;5610:6;5599:9;5595:22;5574:53;:::i;:::-;5564:63;;5519:118;5704:2;5693:9;5689:18;5676:32;5735:18;5727:6;5724:30;5721:117;;;5757:79;;:::i;:::-;5721:117;5862:62;5916:7;5907:6;5896:9;5892:22;5862:62;:::i;:::-;5852:72;;5647:287;4998:943;;;;;;;:::o;5947:468::-;6012:6;6020;6069:2;6057:9;6048:7;6044:23;6040:32;6037:119;;;6075:79;;:::i;:::-;6037:119;6195:1;6220:53;6265:7;6256:6;6245:9;6241:22;6220:53;:::i;:::-;6210:63;;6166:117;6322:2;6348:50;6390:7;6381:6;6370:9;6366:22;6348:50;:::i;:::-;6338:60;;6293:115;5947:468;;;;;:::o;6421:474::-;6489:6;6497;6546:2;6534:9;6525:7;6521:23;6517:32;6514:119;;;6552:79;;:::i;:::-;6514:119;6672:1;6697:53;6742:7;6733:6;6722:9;6718:22;6697:53;:::i;:::-;6687:63;;6643:117;6799:2;6825:53;6870:7;6861:6;6850:9;6846:22;6825:53;:::i;:::-;6815:63;;6770:118;6421:474;;;;;:::o;6901:472::-;6968:6;6976;7025:2;7013:9;7004:7;7000:23;6996:32;6993:119;;;7031:79;;:::i;:::-;6993:119;7151:1;7176:53;7221:7;7212:6;7201:9;7197:22;7176:53;:::i;:::-;7166:63;;7122:117;7278:2;7304:52;7348:7;7339:6;7328:9;7324:22;7304:52;:::i;:::-;7294:62;;7249:117;6901:472;;;;;:::o;7379:539::-;7463:6;7512:2;7500:9;7491:7;7487:23;7483:32;7480:119;;;7518:79;;:::i;:::-;7480:119;7666:1;7655:9;7651:17;7638:31;7696:18;7688:6;7685:30;7682:117;;;7718:79;;:::i;:::-;7682:117;7823:78;7893:7;7884:6;7873:9;7869:22;7823:78;:::i;:::-;7813:88;;7609:302;7379:539;;;;:::o;7924:323::-;7980:6;8029:2;8017:9;8008:7;8004:23;8000:32;7997:119;;;8035:79;;:::i;:::-;7997:119;8155:1;8180:50;8222:7;8213:6;8202:9;8198:22;8180:50;:::i;:::-;8170:60;;8126:114;7924:323;;;;:::o;8253:327::-;8311:6;8360:2;8348:9;8339:7;8335:23;8331:32;8328:119;;;8366:79;;:::i;:::-;8328:119;8486:1;8511:52;8555:7;8546:6;8535:9;8531:22;8511:52;:::i;:::-;8501:62;;8457:116;8253:327;;;;:::o;8586:349::-;8655:6;8704:2;8692:9;8683:7;8679:23;8675:32;8672:119;;;8710:79;;:::i;:::-;8672:119;8830:1;8855:63;8910:7;8901:6;8890:9;8886:22;8855:63;:::i;:::-;8845:73;;8801:127;8586:349;;;;:::o;8941:509::-;9010:6;9059:2;9047:9;9038:7;9034:23;9030:32;9027:119;;;9065:79;;:::i;:::-;9027:119;9213:1;9202:9;9198:17;9185:31;9243:18;9235:6;9232:30;9229:117;;;9265:79;;:::i;:::-;9229:117;9370:63;9425:7;9416:6;9405:9;9401:22;9370:63;:::i;:::-;9360:73;;9156:287;8941:509;;;;:::o;9456:329::-;9515:6;9564:2;9552:9;9543:7;9539:23;9535:32;9532:119;;;9570:79;;:::i;:::-;9532:119;9690:1;9715:53;9760:7;9751:6;9740:9;9736:22;9715:53;:::i;:::-;9705:63;;9661:117;9456:329;;;;:::o;9791:474::-;9859:6;9867;9916:2;9904:9;9895:7;9891:23;9887:32;9884:119;;;9922:79;;:::i;:::-;9884:119;10042:1;10067:53;10112:7;10103:6;10092:9;10088:22;10067:53;:::i;:::-;10057:63;;10013:117;10169:2;10195:53;10240:7;10231:6;10220:9;10216:22;10195:53;:::i;:::-;10185:63;;10140:118;9791:474;;;;;:::o;10271:::-;10339:6;10347;10396:2;10384:9;10375:7;10371:23;10367:32;10364:119;;;10402:79;;:::i;:::-;10364:119;10522:1;10547:53;10592:7;10583:6;10572:9;10568:22;10547:53;:::i;:::-;10537:63;;10493:117;10649:2;10675:53;10720:7;10711:6;10700:9;10696:22;10675:53;:::i;:::-;10665:63;;10620:118;10271:474;;;;;:::o;10751:118::-;10838:24;10856:5;10838:24;:::i;:::-;10833:3;10826:37;10751:118;;:::o;10875:109::-;10956:21;10971:5;10956:21;:::i;:::-;10951:3;10944:34;10875:109;;:::o;10990:360::-;11076:3;11104:38;11136:5;11104:38;:::i;:::-;11158:70;11221:6;11216:3;11158:70;:::i;:::-;11151:77;;11237:52;11282:6;11277:3;11270:4;11263:5;11259:16;11237:52;:::i;:::-;11314:29;11336:6;11314:29;:::i;:::-;11309:3;11305:39;11298:46;;11080:270;10990:360;;;;:::o;11356:364::-;11444:3;11472:39;11505:5;11472:39;:::i;:::-;11527:71;11591:6;11586:3;11527:71;:::i;:::-;11520:78;;11607:52;11652:6;11647:3;11640:4;11633:5;11629:16;11607:52;:::i;:::-;11684:29;11706:6;11684:29;:::i;:::-;11679:3;11675:39;11668:46;;11448:272;11356:364;;;;:::o;11726:377::-;11832:3;11860:39;11893:5;11860:39;:::i;:::-;11915:89;11997:6;11992:3;11915:89;:::i;:::-;11908:96;;12013:52;12058:6;12053:3;12046:4;12039:5;12035:16;12013:52;:::i;:::-;12090:6;12085:3;12081:16;12074:23;;11836:267;11726:377;;;;:::o;12109:366::-;12251:3;12272:67;12336:2;12331:3;12272:67;:::i;:::-;12265:74;;12348:93;12437:3;12348:93;:::i;:::-;12466:2;12461:3;12457:12;12450:19;;12109:366;;;:::o;12481:::-;12623:3;12644:67;12708:2;12703:3;12644:67;:::i;:::-;12637:74;;12720:93;12809:3;12720:93;:::i;:::-;12838:2;12833:3;12829:12;12822:19;;12481:366;;;:::o;12853:::-;12995:3;13016:67;13080:2;13075:3;13016:67;:::i;:::-;13009:74;;13092:93;13181:3;13092:93;:::i;:::-;13210:2;13205:3;13201:12;13194:19;;12853:366;;;:::o;13225:400::-;13385:3;13406:84;13488:1;13483:3;13406:84;:::i;:::-;13399:91;;13499:93;13588:3;13499:93;:::i;:::-;13617:1;13612:3;13608:11;13601:18;;13225:400;;;:::o;13631:366::-;13773:3;13794:67;13858:2;13853:3;13794:67;:::i;:::-;13787:74;;13870:93;13959:3;13870:93;:::i;:::-;13988:2;13983:3;13979:12;13972:19;;13631:366;;;:::o;14003:::-;14145:3;14166:67;14230:2;14225:3;14166:67;:::i;:::-;14159:74;;14242:93;14331:3;14242:93;:::i;:::-;14360:2;14355:3;14351:12;14344:19;;14003:366;;;:::o;14375:::-;14517:3;14538:67;14602:2;14597:3;14538:67;:::i;:::-;14531:74;;14614:93;14703:3;14614:93;:::i;:::-;14732:2;14727:3;14723:12;14716:19;;14375:366;;;:::o;14747:398::-;14906:3;14927:83;15008:1;15003:3;14927:83;:::i;:::-;14920:90;;15019:93;15108:3;15019:93;:::i;:::-;15137:1;15132:3;15128:11;15121:18;;14747:398;;;:::o;15151:366::-;15293:3;15314:67;15378:2;15373:3;15314:67;:::i;:::-;15307:74;;15390:93;15479:3;15390:93;:::i;:::-;15508:2;15503:3;15499:12;15492:19;;15151:366;;;:::o;15523:::-;15665:3;15686:67;15750:2;15745:3;15686:67;:::i;:::-;15679:74;;15762:93;15851:3;15762:93;:::i;:::-;15880:2;15875:3;15871:12;15864:19;;15523:366;;;:::o;15895:::-;16037:3;16058:67;16122:2;16117:3;16058:67;:::i;:::-;16051:74;;16134:93;16223:3;16134:93;:::i;:::-;16252:2;16247:3;16243:12;16236:19;;15895:366;;;:::o;16267:::-;16409:3;16430:67;16494:2;16489:3;16430:67;:::i;:::-;16423:74;;16506:93;16595:3;16506:93;:::i;:::-;16624:2;16619:3;16615:12;16608:19;;16267:366;;;:::o;16639:118::-;16726:24;16744:5;16726:24;:::i;:::-;16721:3;16714:37;16639:118;;:::o;16763:115::-;16848:23;16865:5;16848:23;:::i;:::-;16843:3;16836:36;16763:115;;:::o;16884:701::-;17165:3;17187:95;17278:3;17269:6;17187:95;:::i;:::-;17180:102;;17299:95;17390:3;17381:6;17299:95;:::i;:::-;17292:102;;17411:148;17555:3;17411:148;:::i;:::-;17404:155;;17576:3;17569:10;;16884:701;;;;;:::o;17591:379::-;17775:3;17797:147;17940:3;17797:147;:::i;:::-;17790:154;;17961:3;17954:10;;17591:379;;;:::o;17976:222::-;18069:4;18107:2;18096:9;18092:18;18084:26;;18120:71;18188:1;18177:9;18173:17;18164:6;18120:71;:::i;:::-;17976:222;;;;:::o;18204:640::-;18399:4;18437:3;18426:9;18422:19;18414:27;;18451:71;18519:1;18508:9;18504:17;18495:6;18451:71;:::i;:::-;18532:72;18600:2;18589:9;18585:18;18576:6;18532:72;:::i;:::-;18614;18682:2;18671:9;18667:18;18658:6;18614:72;:::i;:::-;18733:9;18727:4;18723:20;18718:2;18707:9;18703:18;18696:48;18761:76;18832:4;18823:6;18761:76;:::i;:::-;18753:84;;18204:640;;;;;;;:::o;18850:332::-;18971:4;19009:2;18998:9;18994:18;18986:26;;19022:71;19090:1;19079:9;19075:17;19066:6;19022:71;:::i;:::-;19103:72;19171:2;19160:9;19156:18;19147:6;19103:72;:::i;:::-;18850:332;;;;;:::o;19188:210::-;19275:4;19313:2;19302:9;19298:18;19290:26;;19326:65;19388:1;19377:9;19373:17;19364:6;19326:65;:::i;:::-;19188:210;;;;:::o;19404:313::-;19517:4;19555:2;19544:9;19540:18;19532:26;;19604:9;19598:4;19594:20;19590:1;19579:9;19575:17;19568:47;19632:78;19705:4;19696:6;19632:78;:::i;:::-;19624:86;;19404:313;;;;:::o;19723:419::-;19889:4;19927:2;19916:9;19912:18;19904:26;;19976:9;19970:4;19966:20;19962:1;19951:9;19947:17;19940:47;20004:131;20130:4;20004:131;:::i;:::-;19996:139;;19723:419;;;:::o;20148:::-;20314:4;20352:2;20341:9;20337:18;20329:26;;20401:9;20395:4;20391:20;20387:1;20376:9;20372:17;20365:47;20429:131;20555:4;20429:131;:::i;:::-;20421:139;;20148:419;;;:::o;20573:::-;20739:4;20777:2;20766:9;20762:18;20754:26;;20826:9;20820:4;20816:20;20812:1;20801:9;20797:17;20790:47;20854:131;20980:4;20854:131;:::i;:::-;20846:139;;20573:419;;;:::o;20998:::-;21164:4;21202:2;21191:9;21187:18;21179:26;;21251:9;21245:4;21241:20;21237:1;21226:9;21222:17;21215:47;21279:131;21405:4;21279:131;:::i;:::-;21271:139;;20998:419;;;:::o;21423:::-;21589:4;21627:2;21616:9;21612:18;21604:26;;21676:9;21670:4;21666:20;21662:1;21651:9;21647:17;21640:47;21704:131;21830:4;21704:131;:::i;:::-;21696:139;;21423:419;;;:::o;21848:::-;22014:4;22052:2;22041:9;22037:18;22029:26;;22101:9;22095:4;22091:20;22087:1;22076:9;22072:17;22065:47;22129:131;22255:4;22129:131;:::i;:::-;22121:139;;21848:419;;;:::o;22273:::-;22439:4;22477:2;22466:9;22462:18;22454:26;;22526:9;22520:4;22516:20;22512:1;22501:9;22497:17;22490:47;22554:131;22680:4;22554:131;:::i;:::-;22546:139;;22273:419;;;:::o;22698:::-;22864:4;22902:2;22891:9;22887:18;22879:26;;22951:9;22945:4;22941:20;22937:1;22926:9;22922:17;22915:47;22979:131;23105:4;22979:131;:::i;:::-;22971:139;;22698:419;;;:::o;23123:::-;23289:4;23327:2;23316:9;23312:18;23304:26;;23376:9;23370:4;23366:20;23362:1;23351:9;23347:17;23340:47;23404:131;23530:4;23404:131;:::i;:::-;23396:139;;23123:419;;;:::o;23548:::-;23714:4;23752:2;23741:9;23737:18;23729:26;;23801:9;23795:4;23791:20;23787:1;23776:9;23772:17;23765:47;23829:131;23955:4;23829:131;:::i;:::-;23821:139;;23548:419;;;:::o;23973:222::-;24066:4;24104:2;24093:9;24089:18;24081:26;;24117:71;24185:1;24174:9;24170:17;24161:6;24117:71;:::i;:::-;23973:222;;;;:::o;24201:218::-;24292:4;24330:2;24319:9;24315:18;24307:26;;24343:69;24409:1;24398:9;24394:17;24385:6;24343:69;:::i;:::-;24201:218;;;;:::o;24425:129::-;24459:6;24486:20;;:::i;:::-;24476:30;;24515:33;24543:4;24535:6;24515:33;:::i;:::-;24425:129;;;:::o;24560:75::-;24593:6;24626:2;24620:9;24610:19;;24560:75;:::o;24641:311::-;24718:4;24808:18;24800:6;24797:30;24794:56;;;24830:18;;:::i;:::-;24794:56;24880:4;24872:6;24868:17;24860:25;;24940:4;24934;24930:15;24922:23;;24641:311;;;:::o;24958:307::-;25019:4;25109:18;25101:6;25098:30;25095:56;;;25131:18;;:::i;:::-;25095:56;25169:29;25191:6;25169:29;:::i;:::-;25161:37;;25253:4;25247;25243:15;25235:23;;24958:307;;;:::o;25271:308::-;25333:4;25423:18;25415:6;25412:30;25409:56;;;25445:18;;:::i;:::-;25409:56;25483:29;25505:6;25483:29;:::i;:::-;25475:37;;25567:4;25561;25557:15;25549:23;;25271:308;;;:::o;25585:98::-;25636:6;25670:5;25664:12;25654:22;;25585:98;;;:::o;25689:99::-;25741:6;25775:5;25769:12;25759:22;;25689:99;;;:::o;25794:168::-;25877:11;25911:6;25906:3;25899:19;25951:4;25946:3;25942:14;25927:29;;25794:168;;;;:::o;25968:147::-;26069:11;26106:3;26091:18;;25968:147;;;;:::o;26121:169::-;26205:11;26239:6;26234:3;26227:19;26279:4;26274:3;26270:14;26255:29;;26121:169;;;;:::o;26296:148::-;26398:11;26435:3;26420:18;;26296:148;;;;:::o;26450:305::-;26490:3;26509:20;26527:1;26509:20;:::i;:::-;26504:25;;26543:20;26561:1;26543:20;:::i;:::-;26538:25;;26697:1;26629:66;26625:74;26622:1;26619:81;26616:107;;;26703:18;;:::i;:::-;26616:107;26747:1;26744;26740:9;26733:16;;26450:305;;;;:::o;26761:185::-;26801:1;26818:20;26836:1;26818:20;:::i;:::-;26813:25;;26852:20;26870:1;26852:20;:::i;:::-;26847:25;;26891:1;26881:35;;26896:18;;:::i;:::-;26881:35;26938:1;26935;26931:9;26926:14;;26761:185;;;;:::o;26952:348::-;26992:7;27015:20;27033:1;27015:20;:::i;:::-;27010:25;;27049:20;27067:1;27049:20;:::i;:::-;27044:25;;27237:1;27169:66;27165:74;27162:1;27159:81;27154:1;27147:9;27140:17;27136:105;27133:131;;;27244:18;;:::i;:::-;27133:131;27292:1;27289;27285:9;27274:20;;26952:348;;;;:::o;27306:191::-;27346:4;27366:20;27384:1;27366:20;:::i;:::-;27361:25;;27400:20;27418:1;27400:20;:::i;:::-;27395:25;;27439:1;27436;27433:8;27430:34;;;27444:18;;:::i;:::-;27430:34;27489:1;27486;27482:9;27474:17;;27306:191;;;;:::o;27503:96::-;27540:7;27569:24;27587:5;27569:24;:::i;:::-;27558:35;;27503:96;;;:::o;27605:90::-;27639:7;27682:5;27675:13;27668:21;27657:32;;27605:90;;;:::o;27701:149::-;27737:7;27777:66;27770:5;27766:78;27755:89;;27701:149;;;:::o;27856:126::-;27893:7;27933:42;27926:5;27922:54;27911:65;;27856:126;;;:::o;27988:77::-;28025:7;28054:5;28043:16;;27988:77;;;:::o;28071:109::-;28107:7;28147:26;28140:5;28136:38;28125:49;;28071:109;;;:::o;28186:154::-;28270:6;28265:3;28260;28247:30;28332:1;28323:6;28318:3;28314:16;28307:27;28186:154;;;:::o;28346:307::-;28414:1;28424:113;28438:6;28435:1;28432:13;28424:113;;;28523:1;28518:3;28514:11;28508:18;28504:1;28499:3;28495:11;28488:39;28460:2;28457:1;28453:10;28448:15;;28424:113;;;28555:6;28552:1;28549:13;28546:101;;;28635:1;28626:6;28621:3;28617:16;28610:27;28546:101;28395:258;28346:307;;;:::o;28659:320::-;28703:6;28740:1;28734:4;28730:12;28720:22;;28787:1;28781:4;28777:12;28808:18;28798:81;;28864:4;28856:6;28852:17;28842:27;;28798:81;28926:2;28918:6;28915:14;28895:18;28892:38;28889:84;;;28945:18;;:::i;:::-;28889:84;28710:269;28659:320;;;:::o;28985:281::-;29068:27;29090:4;29068:27;:::i;:::-;29060:6;29056:40;29198:6;29186:10;29183:22;29162:18;29150:10;29147:34;29144:62;29141:88;;;29209:18;;:::i;:::-;29141:88;29249:10;29245:2;29238:22;29028:238;28985:281;;:::o;29272:233::-;29311:3;29334:24;29352:5;29334:24;:::i;:::-;29325:33;;29380:66;29373:5;29370:77;29367:103;;;29450:18;;:::i;:::-;29367:103;29497:1;29490:5;29486:13;29479:20;;29272:233;;;:::o;29511:176::-;29543:1;29560:20;29578:1;29560:20;:::i;:::-;29555:25;;29594:20;29612:1;29594:20;:::i;:::-;29589:25;;29633:1;29623:35;;29638:18;;:::i;:::-;29623:35;29679:1;29676;29672:9;29667:14;;29511:176;;;;:::o;29693:180::-;29741:77;29738:1;29731:88;29838:4;29835:1;29828:15;29862:4;29859:1;29852:15;29879:180;29927:77;29924:1;29917:88;30024:4;30021:1;30014:15;30048:4;30045:1;30038:15;30065:180;30113:77;30110:1;30103:88;30210:4;30207:1;30200:15;30234:4;30231:1;30224:15;30251:180;30299:77;30296:1;30289:88;30396:4;30393:1;30386:15;30420:4;30417:1;30410:15;30437:180;30485:77;30482:1;30475:88;30582:4;30579:1;30572:15;30606:4;30603:1;30596:15;30623:117;30732:1;30729;30722:12;30746:117;30855:1;30852;30845:12;30869:117;30978:1;30975;30968:12;30992:117;31101:1;31098;31091:12;31115:117;31224:1;31221;31214:12;31238:102;31279:6;31330:2;31326:7;31321:2;31314:5;31310:14;31306:28;31296:38;;31238:102;;;:::o;31346:225::-;31486:34;31482:1;31474:6;31470:14;31463:58;31555:8;31550:2;31542:6;31538:15;31531:33;31346:225;:::o;31577:169::-;31717:21;31713:1;31705:6;31701:14;31694:45;31577:169;:::o;31752:165::-;31892:17;31888:1;31880:6;31876:14;31869:41;31752:165;:::o;31923:155::-;32063:7;32059:1;32051:6;32047:14;32040:31;31923:155;:::o;32084:182::-;32224:34;32220:1;32212:6;32208:14;32201:58;32084:182;:::o;32272:173::-;32412:25;32408:1;32400:6;32396:14;32389:49;32272:173;:::o;32451:234::-;32591:34;32587:1;32579:6;32575:14;32568:58;32660:17;32655:2;32647:6;32643:15;32636:42;32451:234;:::o;32691:114::-;;:::o;32811:229::-;32951:34;32947:1;32939:6;32935:14;32928:58;33020:12;33015:2;33007:6;33003:15;32996:37;32811:229;:::o;33046:176::-;33186:28;33182:1;33174:6;33170:14;33163:52;33046:176;:::o;33228:181::-;33368:33;33364:1;33356:6;33352:14;33345:57;33228:181;:::o;33415:175::-;33555:27;33551:1;33543:6;33539:14;33532:51;33415:175;:::o;33596:122::-;33669:24;33687:5;33669:24;:::i;:::-;33662:5;33659:35;33649:63;;33708:1;33705;33698:12;33649:63;33596:122;:::o;33724:116::-;33794:21;33809:5;33794:21;:::i;:::-;33787:5;33784:32;33774:60;;33830:1;33827;33820:12;33774:60;33724:116;:::o;33846:120::-;33918:23;33935:5;33918:23;:::i;:::-;33911:5;33908:34;33898:62;;33956:1;33953;33946:12;33898:62;33846:120;:::o;33972:122::-;34045:24;34063:5;34045:24;:::i;:::-;34038:5;34035:35;34025:63;;34084:1;34081;34074:12;34025:63;33972:122;:::o;34100:120::-;34172:23;34189:5;34172:23;:::i;:::-;34165:5;34162:34;34152:62;;34210:1;34207;34200:12;34152:62;34100:120;:::o

Swarm Source

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