ETH Price: $3,015.01 (+4.65%)
Gas: 1 Gwei

Token

MofosNFT (MOFO)
 

Overview

Max Total Supply

2,001 MOFO

Holders

654

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
mavs4177.eth
Balance
1 MOFO
0xb88815930b61aa78eaa1dad711e72b128c03f7f7
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:
MofosNft

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// 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 v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
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 0;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @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) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        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 {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _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 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);

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

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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: contracts/mofos.sol


pragma solidity ^0.8.7;




contract MofosNft is ERC721A, Ownable {
    using Strings for uint256;
    address breedingContract;

    string public baseApiURI;
    bytes32 private whitelistRoot;


    //General Settings
    uint16 public maxMintAmountPerTransaction = 10;
    uint16 public maxMintAmountPerWallet = 10;

    //whitelisting Settings
    uint16 public maxMintAmountPerWhitelist = 10;


    //Inventory
    uint256 public maxSupply = 10011;

    //Prices
    uint256 public cost = 0.052 ether;
    uint256 public whitelistCost = 0.042 ether;

    //Utility
    bool public paused = false;
    bool public whiteListingSale = true;

    //mapping
    mapping(address => uint256) private whitelistedMints;

    constructor(string memory _baseUrl) ERC721A("MofosNFT", "MOFO") {
        baseApiURI = _baseUrl;
    }

    //This function will be used to extend the project with more capabilities
    function setBreedingContractAddress(address _bAddress) public onlyOwner {
        breedingContract = _bAddress;
    }

   

    //this function can be called only from the extending contract
    function mintExternal(address _address, uint256 _mintAmount) external {
        require(
            msg.sender == breedingContract,
            "Sorry you dont have permission to mint"
        );
        _safeMint(_address, _mintAmount);
    }

    function setWhitelistingRoot(bytes32 _root) public onlyOwner {
        whitelistRoot = _root;
    }




    // Verify that a given leaf is in the tree.
    function _verify(
        bytes32 _leafNode,
        bytes32[] memory proof
    ) internal view returns (bool) {
        return MerkleProof.verify(proof, whitelistRoot, _leafNode);
    }

    // Generate the leaf node (just the hash of tokenID concatenated with the account address)
    function _leaf(address account) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(account));
    }

    //whitelist mint
    function mintWhitelist(
        bytes32[] calldata proof,
        uint256 _mintAmount
    ) public payable {



                //Normal WL Verifications
                require(
                    _verify(_leaf(msg.sender), proof),
                    "Invalid proof"
                );
                require(
                    (whitelistedMints[msg.sender] + _mintAmount) <=
                        maxMintAmountPerWhitelist,
                    "Exceeds Max Mint amount"
                );

                require(
                    msg.value >= (whitelistCost * _mintAmount),
                    "Insuffient funds"
                );

                //END WL Verifications

                //Mint
                _mintLoop(msg.sender, _mintAmount);
                whitelistedMints[msg.sender] =
                    whitelistedMints[msg.sender] +
                    _mintAmount;
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    // public
    function mint(uint256 _mintAmount) public payable {
        if (msg.sender != owner()) {
            uint256 ownerTokenCount = balanceOf(msg.sender);

            require(!paused);
            require(!whiteListingSale, "You cant mint on Presale");
            require(_mintAmount > 0, "Mint amount should be greater than 0");
            require(
                _mintAmount <= maxMintAmountPerTransaction,
                "Sorry you cant mint this amount at once"
            );
            require(
                totalSupply() + _mintAmount <= maxSupply,
                "Exceeds Max Supply"
            );
            require(
                (ownerTokenCount + _mintAmount) <= maxMintAmountPerWallet,
                "Sorry you cant mint more"
            );

            require(msg.value >= cost * _mintAmount, "Insuffient funds");
        }

        _mintLoop(msg.sender, _mintAmount);
    }

    function gift(address _to, uint256 _mintAmount) public onlyOwner {
        _mintLoop(_to, _mintAmount);
    }

    function airdrop(address[] memory _airdropAddresses) public onlyOwner {
        for (uint256 i = 0; i < _airdropAddresses.length; i++) {
            address to = _airdropAddresses[i];
            _mintLoop(to, 1);
        }
    }

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

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

    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setWhitelistingCost(uint256 _newCost) public onlyOwner {
        whitelistCost = _newCost;
    }

    function setmaxMintAmountPerTransaction(uint16 _amount) public onlyOwner {
        maxMintAmountPerTransaction = _amount;
    }

    function setMaxMintAmountPerWallet(uint16 _amount) public onlyOwner {
        maxMintAmountPerWallet = _amount;
    }

    function setMaxMintAmountPerWhitelist(uint16 _amount) public onlyOwner {
        maxMintAmountPerWhitelist = _amount;
    }

    function setMaxSupply(uint256 _supply) public onlyOwner {
        maxSupply = _supply;
    }

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

    function togglePause() public onlyOwner {
        paused = !paused;
    }

    function toggleWhiteSale() public onlyOwner {
        whiteListingSale = !whiteListingSale;
    }

    function _mintLoop(address _receiver, uint256 _mintAmount) internal {
        _safeMint(_receiver, _mintAmount);
    }

    function getOwnershipData(uint256 tokenId)
        external
        view
        returns (TokenOwnership memory)
    {
        return ownershipOf(tokenId);
    }

    function withdraw() public payable onlyOwner {
         uint256 balance = address(this).balance;

        uint256 share1 = (balance * 9) / 200;
        uint256 share2 = (balance * 20) / 200;
       
        
         (bool shareholder3, ) = payable(
            0x16c7Fbd3D3f4d212624ba005D25B4e7Bcd1A65c7
        ).call{value: share1}("");
        require(shareholder3);

       
         (bool shareholder2, ) = payable(
            0xf226E4A2779a0a2850dCBAE91130Fd285a6343Bc
        ).call{value: share2}("");
        require(shareholder2);

        (bool os, ) = payable(0x097EAA98fF7386164CCB612D7DE5DdBF5651EA17).call{value: address(this).balance}("");
        require(os);

    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseUrl","type":"string"}],"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":"MintedQueryForZeroAddress","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":[{"internalType":"address[]","name":"_airdropAddresses","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseApiURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTransaction","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWhitelist","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintExternal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_bAddress","type":"address"}],"name":"setBreedingContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"setMaxMintAmountPerWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setWhitelistingCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setWhitelistingRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"setmaxMintAmountPerTransaction","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":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhiteSale","outputs":[],"stateMutability":"nonpayable","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":"whiteListingSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600a600c60006101000a81548161ffff021916908361ffff160217905550600a600c60026101000a81548161ffff021916908361ffff160217905550600a600c60046101000a81548161ffff021916908361ffff16021790555061271b600d5566b8bdb978520000600e55669536c708910000600f556000601060006101000a81548160ff0219169083151502179055506001601060016101000a81548160ff021916908315150217905550348015620000bd57600080fd5b5060405162005247380380620052478339818101604052810190620000e39190620003da565b6040518060400160405280600881526020017f4d6f666f734e46540000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d4f464f00000000000000000000000000000000000000000000000000000000815250816002908051906020019062000167929190620002ac565b50806003908051906020019062000180929190620002ac565b5062000191620001d960201b60201c565b6000819055505050620001b9620001ad620001de60201b60201c565b620001e660201b60201c565b80600a9080519060200190620001d1929190620002ac565b5050620005af565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002ba90620004c0565b90600052602060002090601f016020900481019282620002de57600085556200032a565b82601f10620002f957805160ff19168380011785556200032a565b828001600101855582156200032a579182015b82811115620003295782518255916020019190600101906200030c565b5b5090506200033991906200033d565b5090565b5b80821115620003585760008160009055506001016200033e565b5090565b6000620003736200036d8462000454565b6200042b565b9050828152602081018484840111156200039257620003916200058f565b5b6200039f8482856200048a565b509392505050565b600082601f830112620003bf57620003be6200058a565b5b8151620003d18482602086016200035c565b91505092915050565b600060208284031215620003f357620003f262000599565b5b600082015167ffffffffffffffff81111562000414576200041362000594565b5b6200042284828501620003a7565b91505092915050565b6000620004376200044a565b9050620004458282620004f6565b919050565b6000604051905090565b600067ffffffffffffffff8211156200047257620004716200055b565b5b6200047d826200059e565b9050602081019050919050565b60005b83811015620004aa5780820151818401526020810190506200048d565b83811115620004ba576000848401525b50505050565b60006002820490506001821680620004d957607f821691505b60208210811415620004f057620004ef6200052c565b5b50919050565b62000501826200059e565b810181811067ffffffffffffffff821117156200052357620005226200055b565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b614c8880620005bf6000396000f3fe6080604052600436106102725760003560e01c806395d89b411161014f578063d5abeb01116100c1578063e985e9c51161007a578063e985e9c5146108ff578063ea4446221461093c578063ed81617914610965578063ee8912121461097c578063f2fde38b146109a5578063f4da1846146109ce57610272565b8063d5abeb01146107ef578063dc33e6811461081a578063dfc33dd114610857578063e5a88cdb14610880578063e7b99ec7146108ab578063e97800cb146108d657610272565b8063bbb8974411610113578063bbb89744146106f3578063bc951b911461071e578063c4ae316814610749578063c87b56dd14610760578063cbce4c971461079d578063cef11729146107c657610272565b806395d89b411461063e578063a0712d6814610669578063a22cb46514610685578063a6d612f9146106ae578063b88d4fde146106ca57610272565b806344a0d68a116101e85780636f8b44b0116101ac5780636f8b44b01461053057806370a0823114610559578063715018a614610596578063729ad39e146105ad5780638da5cb5b146105d65780639231ab2a1461060157610272565b806344a0d68a1461044d57806355f804b3146104765780635c975abb1461049f5780636352211e146104ca57806368570bd61461050757610272565b806318160ddd1161023a57806318160ddd1461037057806323b872dd1461039b5780632cefffa7146103c45780633ccfd60b146103ef57806341827f13146103f957806342842e0e1461042457610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c57806313faede614610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613d09565b6109f7565b6040516102ab91906141ed565b60405180910390f35b3480156102c057600080fd5b506102c9610ad9565b6040516102d69190614208565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613dd9565b610b6b565b6040516103139190614186565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613bf3565b610be7565b005b34801561035157600080fd5b5061035a610cf2565b60405161036791906143e0565b60405180910390f35b34801561037c57600080fd5b50610385610cf8565b60405161039291906143e0565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd9190613add565b610d0f565b005b3480156103d057600080fd5b506103d9610d1f565b6040516103e691906143c5565b60405180910390f35b6103f7610d33565b005b34801561040557600080fd5b5061040e610f94565b60405161041b9190614208565b60405180910390f35b34801561043057600080fd5b5061044b60048036038101906104469190613add565b611022565b005b34801561045957600080fd5b50610474600480360381019061046f9190613dd9565b611042565b005b34801561048257600080fd5b5061049d60048036038101906104989190613d63565b6110c8565b005b3480156104ab57600080fd5b506104b461115e565b6040516104c191906141ed565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec9190613dd9565b611171565b6040516104fe9190614186565b60405180910390f35b34801561051357600080fd5b5061052e60048036038101906105299190613a70565b611187565b005b34801561053c57600080fd5b5061055760048036038101906105529190613dd9565b611247565b005b34801561056557600080fd5b50610580600480360381019061057b9190613a70565b6112cd565b60405161058d91906143e0565b60405180910390f35b3480156105a257600080fd5b506105ab61139d565b005b3480156105b957600080fd5b506105d460048036038101906105cf9190613c33565b611425565b005b3480156105e257600080fd5b506105eb6114ef565b6040516105f89190614186565b60405180910390f35b34801561060d57600080fd5b5061062860048036038101906106239190613dd9565b611519565b60405161063591906143aa565b60405180910390f35b34801561064a57600080fd5b50610653611531565b6040516106609190614208565b60405180910390f35b610683600480360381019061067e9190613dd9565b6115c3565b005b34801561069157600080fd5b506106ac60048036038101906106a79190613bb3565b611826565b005b6106c860048036038101906106c39190613c7c565b61199e565b005b3480156106d657600080fd5b506106f160048036038101906106ec9190613b30565b611bbe565b005b3480156106ff57600080fd5b50610708611c3a565b60405161071591906143c5565b60405180910390f35b34801561072a57600080fd5b50610733611c4e565b60405161074091906143c5565b60405180910390f35b34801561075557600080fd5b5061075e611c62565b005b34801561076c57600080fd5b5061078760048036038101906107829190613dd9565b611d0a565b6040516107949190614208565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190613bf3565b611db1565b005b3480156107d257600080fd5b506107ed60048036038101906107e89190613dac565b611e3b565b005b3480156107fb57600080fd5b50610804611ed7565b60405161081191906143e0565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c9190613a70565b611edd565b60405161084e91906143e0565b60405180910390f35b34801561086357600080fd5b5061087e60048036038101906108799190613dd9565b611eef565b005b34801561088c57600080fd5b50610895611f75565b6040516108a291906141ed565b60405180910390f35b3480156108b757600080fd5b506108c0611f88565b6040516108cd91906143e0565b60405180910390f35b3480156108e257600080fd5b506108fd60048036038101906108f89190613dac565b611f8e565b005b34801561090b57600080fd5b5061092660048036038101906109219190613a9d565b61202a565b60405161093391906141ed565b60405180910390f35b34801561094857600080fd5b50610963600480360381019061095e9190613dac565b6120be565b005b34801561097157600080fd5b5061097a61215a565b005b34801561098857600080fd5b506109a3600480360381019061099e9190613cdc565b612202565b005b3480156109b157600080fd5b506109cc60048036038101906109c79190613a70565b612288565b005b3480156109da57600080fd5b506109f560048036038101906109f09190613bf3565b612380565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ac257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ad25750610ad18261241e565b5b9050919050565b606060028054610ae8906146f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610b14906146f3565b8015610b615780601f10610b3657610100808354040283529160200191610b61565b820191906000526020600020905b815481529060010190602001808311610b4457829003601f168201915b5050505050905090565b6000610b7682612488565b610bac576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bf282611171565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c5a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c796124d6565b73ffffffffffffffffffffffffffffffffffffffff1614158015610cab5750610ca981610ca46124d6565b61202a565b155b15610ce2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ced8383836124de565b505050565b600e5481565b6000610d02612590565b6001546000540303905090565b610d1a838383612595565b505050565b600c60049054906101000a900461ffff1681565b610d3b6124d6565b73ffffffffffffffffffffffffffffffffffffffff16610d596114ef565b73ffffffffffffffffffffffffffffffffffffffff1614610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da6906142ea565b60405180910390fd5b6000479050600060c8600983610dc59190614583565b610dcf9190614552565b9050600060c8601484610de29190614583565b610dec9190614552565b905060007316c7fbd3d3f4d212624ba005d25b4e7bcd1a65c773ffffffffffffffffffffffffffffffffffffffff1683604051610e2890614171565b60006040518083038185875af1925050503d8060008114610e65576040519150601f19603f3d011682016040523d82523d6000602084013e610e6a565b606091505b5050905080610e7857600080fd5b600073f226e4a2779a0a2850dcbae91130fd285a6343bc73ffffffffffffffffffffffffffffffffffffffff1683604051610eb290614171565b60006040518083038185875af1925050503d8060008114610eef576040519150601f19603f3d011682016040523d82523d6000602084013e610ef4565b606091505b5050905080610f0257600080fd5b600073097eaa98ff7386164ccb612d7de5ddbf5651ea1773ffffffffffffffffffffffffffffffffffffffff1647604051610f3c90614171565b60006040518083038185875af1925050503d8060008114610f79576040519150601f19603f3d011682016040523d82523d6000602084013e610f7e565b606091505b5050905080610f8c57600080fd5b505050505050565b600a8054610fa1906146f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610fcd906146f3565b801561101a5780601f10610fef5761010080835404028352916020019161101a565b820191906000526020600020905b815481529060010190602001808311610ffd57829003601f168201915b505050505081565b61103d83838360405180602001604052806000815250611bbe565b505050565b61104a6124d6565b73ffffffffffffffffffffffffffffffffffffffff166110686114ef565b73ffffffffffffffffffffffffffffffffffffffff16146110be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b5906142ea565b60405180910390fd5b80600e8190555050565b6110d06124d6565b73ffffffffffffffffffffffffffffffffffffffff166110ee6114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b906142ea565b60405180910390fd5b80600a908051906020019061115a929190613723565b5050565b601060009054906101000a900460ff1681565b600061117c82612a86565b600001519050919050565b61118f6124d6565b73ffffffffffffffffffffffffffffffffffffffff166111ad6114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fa906142ea565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61124f6124d6565b73ffffffffffffffffffffffffffffffffffffffff1661126d6114ef565b73ffffffffffffffffffffffffffffffffffffffff16146112c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ba906142ea565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611335576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6113a56124d6565b73ffffffffffffffffffffffffffffffffffffffff166113c36114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611419576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611410906142ea565b60405180910390fd5b6114236000612d15565b565b61142d6124d6565b73ffffffffffffffffffffffffffffffffffffffff1661144b6114ef565b73ffffffffffffffffffffffffffffffffffffffff16146114a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611498906142ea565b60405180910390fd5b60005b81518110156114eb5760008282815181106114c2576114c1614881565b5b602002602001015190506114d7816001612ddb565b5080806114e390614756565b9150506114a4565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115216137a9565b61152a82612a86565b9050919050565b606060038054611540906146f3565b80601f016020809104026020016040519081016040528092919081815260200182805461156c906146f3565b80156115b95780601f1061158e576101008083540402835291602001916115b9565b820191906000526020600020905b81548152906001019060200180831161159c57829003601f168201915b5050505050905090565b6115cb6114ef565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611819576000611608336112cd565b9050601060009054906101000a900460ff161561162457600080fd5b601060019054906101000a900460ff1615611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b9061426a565b60405180910390fd5b600082116116b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ae9061432a565b60405180910390fd5b600c60009054906101000a900461ffff1661ffff1682111561170e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611705906142ca565b60405180910390fd5b600d548261171a610cf8565b61172491906144fc565b1115611765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175c9061422a565b60405180910390fd5b600c60029054906101000a900461ffff1661ffff16828261178691906144fc565b11156117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be9061438a565b60405180910390fd5b81600e546117d59190614583565b341015611817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180e906142aa565b60405180910390fd5b505b6118233382612ddb565b50565b61182e6124d6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611893576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006118a06124d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661194d6124d6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161199291906141ed565b60405180910390a35050565b6119f16119aa33612de9565b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612e19565b611a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a279061434a565b60405180910390fd5b600c60049054906101000a900461ffff1661ffff1681601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a9091906144fc565b1115611ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac89061436a565b60405180910390fd5b80600f54611adf9190614583565b341015611b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b18906142aa565b60405180910390fd5b611b2b3382612ddb565b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b7691906144fc565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b611bc9848484612595565b611be88373ffffffffffffffffffffffffffffffffffffffff16612e30565b8015611bfd5750611bfb84848484612e53565b155b15611c34576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c60009054906101000a900461ffff1681565b600c60029054906101000a900461ffff1681565b611c6a6124d6565b73ffffffffffffffffffffffffffffffffffffffff16611c886114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd5906142ea565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6060611d1582612488565b611d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4b9061430a565b60405180910390fd5b6000611d5e612fb3565b90506000815111611d7e5760405180602001604052806000815250611da9565b80611d8884613045565b604051602001611d9992919061414d565b6040516020818303038152906040525b915050919050565b611db96124d6565b73ffffffffffffffffffffffffffffffffffffffff16611dd76114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e24906142ea565b60405180910390fd5b611e378282612ddb565b5050565b611e436124d6565b73ffffffffffffffffffffffffffffffffffffffff16611e616114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eae906142ea565b60405180910390fd5b80600c60026101000a81548161ffff021916908361ffff16021790555050565b600d5481565b6000611ee8826131a6565b9050919050565b611ef76124d6565b73ffffffffffffffffffffffffffffffffffffffff16611f156114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f62906142ea565b60405180910390fd5b80600f8190555050565b601060019054906101000a900460ff1681565b600f5481565b611f966124d6565b73ffffffffffffffffffffffffffffffffffffffff16611fb46114ef565b73ffffffffffffffffffffffffffffffffffffffff161461200a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612001906142ea565b60405180910390fd5b80600c60006101000a81548161ffff021916908361ffff16021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120c66124d6565b73ffffffffffffffffffffffffffffffffffffffff166120e46114ef565b73ffffffffffffffffffffffffffffffffffffffff161461213a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612131906142ea565b60405180910390fd5b80600c60046101000a81548161ffff021916908361ffff16021790555050565b6121626124d6565b73ffffffffffffffffffffffffffffffffffffffff166121806114ef565b73ffffffffffffffffffffffffffffffffffffffff16146121d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cd906142ea565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b61220a6124d6565b73ffffffffffffffffffffffffffffffffffffffff166122286114ef565b73ffffffffffffffffffffffffffffffffffffffff161461227e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612275906142ea565b60405180910390fd5b80600b8190555050565b6122906124d6565b73ffffffffffffffffffffffffffffffffffffffff166122ae6114ef565b73ffffffffffffffffffffffffffffffffffffffff1614612304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fb906142ea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236b9061424a565b60405180910390fd5b61237d81612d15565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612410576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124079061428a565b60405180910390fd5b61241a8282613276565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612493612590565b111580156124a2575060005482105b80156124cf575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006125a082612a86565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166125c76124d6565b73ffffffffffffffffffffffffffffffffffffffff1614806125fa57506125f982600001516125f46124d6565b61202a565b5b8061263f57506126086124d6565b73ffffffffffffffffffffffffffffffffffffffff1661262784610b6b565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612678576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146126e1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612748576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127558585856001613294565b61276560008484600001516124de565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612a1657600054811015612a155782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a7f858585600161329a565b5050505050565b612a8e6137a9565b600082905080612a9c612590565b11158015612aab575060005481105b15612cde576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612cdc57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612bc0578092505050612d10565b5b600115612cdb57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612cd6578092505050612d10565b612bc1565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612de58282613276565b5050565b600081604051602001612dfc9190614132565b604051602081830303815290604052805190602001209050919050565b6000612e2882600b54856132a0565b905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e796124d6565b8786866040518563ffffffff1660e01b8152600401612e9b94939291906141a1565b602060405180830381600087803b158015612eb557600080fd5b505af1925050508015612ee657506040513d601f19601f82011682018060405250810190612ee39190613d36565b60015b612f60573d8060008114612f16576040519150601f19603f3d011682016040523d82523d6000602084013e612f1b565b606091505b50600081511415612f58576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612fc2906146f3565b80601f0160208091040260200160405190810160405280929190818152602001828054612fee906146f3565b801561303b5780601f106130105761010080835404028352916020019161303b565b820191906000526020600020905b81548152906001019060200180831161301e57829003601f168201915b5050505050905090565b6060600082141561308d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131a1565b600082905060005b600082146130bf5780806130a890614756565b915050600a826130b89190614552565b9150613095565b60008167ffffffffffffffff8111156130db576130da6148b0565b5b6040519080825280601f01601f19166020018201604052801561310d5781602001600182028036833780820191505090505b5090505b6000851461319a5760018261312691906145dd565b9150600a8561313591906147c3565b603061314191906144fc565b60f81b81838151811061315757613156614881565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131939190614552565b9450613111565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561320e576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6132908282604051806020016040528060008152506132b7565b5050565b50505050565b50505050565b6000826132ad85846132c9565b1490509392505050565b6132c4838383600161333e565b505050565b60008082905060005b84518110156133335760008582815181106132f0576132ef614881565b5b602002602001015190508083116133125761330b838261370c565b925061331f565b61331c818461370c565b92505b50808061332b90614756565b9150506132d2565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156133ab576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156133e6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6133f36000868387613294565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156135bd57506135bc8773ffffffffffffffffffffffffffffffffffffffff16612e30565b5b15613683575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136326000888480600101955088612e53565b613668576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156135c357826000541461367e57600080fd5b6136ef565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613684575b816000819055505050613705600086838761329a565b5050505050565b600082600052816020526040600020905092915050565b82805461372f906146f3565b90600052602060002090601f0160209004810192826137515760008555613798565b82601f1061376a57805160ff1916838001178555613798565b82800160010185558215613798579182015b8281111561379757825182559160200191906001019061377c565b5b5090506137a591906137ec565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156138055760008160009055506001016137ed565b5090565b600061381c61381784614420565b6143fb565b9050808382526020820190508285602086028201111561383f5761383e6148e9565b5b60005b8581101561386f578161385588826138fd565b845260208401935060208301925050600181019050613842565b5050509392505050565b600061388c6138878461444c565b6143fb565b9050828152602081018484840111156138a8576138a76148ee565b5b6138b38482856146b1565b509392505050565b60006138ce6138c98461447d565b6143fb565b9050828152602081018484840111156138ea576138e96148ee565b5b6138f58482856146b1565b509392505050565b60008135905061390c81614bc8565b92915050565b600082601f830112613927576139266148e4565b5b8135613937848260208601613809565b91505092915050565b60008083601f840112613956576139556148e4565b5b8235905067ffffffffffffffff811115613973576139726148df565b5b60208301915083602082028301111561398f5761398e6148e9565b5b9250929050565b6000813590506139a581614bdf565b92915050565b6000813590506139ba81614bf6565b92915050565b6000813590506139cf81614c0d565b92915050565b6000815190506139e481614c0d565b92915050565b600082601f8301126139ff576139fe6148e4565b5b8135613a0f848260208601613879565b91505092915050565b600082601f830112613a2d57613a2c6148e4565b5b8135613a3d8482602086016138bb565b91505092915050565b600081359050613a5581614c24565b92915050565b600081359050613a6a81614c3b565b92915050565b600060208284031215613a8657613a856148f8565b5b6000613a94848285016138fd565b91505092915050565b60008060408385031215613ab457613ab36148f8565b5b6000613ac2858286016138fd565b9250506020613ad3858286016138fd565b9150509250929050565b600080600060608486031215613af657613af56148f8565b5b6000613b04868287016138fd565b9350506020613b15868287016138fd565b9250506040613b2686828701613a5b565b9150509250925092565b60008060008060808587031215613b4a57613b496148f8565b5b6000613b58878288016138fd565b9450506020613b69878288016138fd565b9350506040613b7a87828801613a5b565b925050606085013567ffffffffffffffff811115613b9b57613b9a6148f3565b5b613ba7878288016139ea565b91505092959194509250565b60008060408385031215613bca57613bc96148f8565b5b6000613bd8858286016138fd565b9250506020613be985828601613996565b9150509250929050565b60008060408385031215613c0a57613c096148f8565b5b6000613c18858286016138fd565b9250506020613c2985828601613a5b565b9150509250929050565b600060208284031215613c4957613c486148f8565b5b600082013567ffffffffffffffff811115613c6757613c666148f3565b5b613c7384828501613912565b91505092915050565b600080600060408486031215613c9557613c946148f8565b5b600084013567ffffffffffffffff811115613cb357613cb26148f3565b5b613cbf86828701613940565b93509350506020613cd286828701613a5b565b9150509250925092565b600060208284031215613cf257613cf16148f8565b5b6000613d00848285016139ab565b91505092915050565b600060208284031215613d1f57613d1e6148f8565b5b6000613d2d848285016139c0565b91505092915050565b600060208284031215613d4c57613d4b6148f8565b5b6000613d5a848285016139d5565b91505092915050565b600060208284031215613d7957613d786148f8565b5b600082013567ffffffffffffffff811115613d9757613d966148f3565b5b613da384828501613a18565b91505092915050565b600060208284031215613dc257613dc16148f8565b5b6000613dd084828501613a46565b91505092915050565b600060208284031215613def57613dee6148f8565b5b6000613dfd84828501613a5b565b91505092915050565b613e0f81614611565b82525050565b613e1e81614611565b82525050565b613e35613e3082614611565b61479f565b82525050565b613e4481614623565b82525050565b613e5381614623565b82525050565b6000613e64826144ae565b613e6e81856144c4565b9350613e7e8185602086016146c0565b613e87816148fd565b840191505092915050565b6000613e9d826144b9565b613ea781856144e0565b9350613eb78185602086016146c0565b613ec0816148fd565b840191505092915050565b6000613ed6826144b9565b613ee081856144f1565b9350613ef08185602086016146c0565b80840191505092915050565b6000613f096012836144e0565b9150613f148261491b565b602082019050919050565b6000613f2c6026836144e0565b9150613f3782614944565b604082019050919050565b6000613f4f6018836144e0565b9150613f5a82614993565b602082019050919050565b6000613f726026836144e0565b9150613f7d826149bc565b604082019050919050565b6000613f956010836144e0565b9150613fa082614a0b565b602082019050919050565b6000613fb86027836144e0565b9150613fc382614a34565b604082019050919050565b6000613fdb6020836144e0565b9150613fe682614a83565b602082019050919050565b6000613ffe602f836144e0565b915061400982614aac565b604082019050919050565b60006140216000836144d5565b915061402c82614afb565b600082019050919050565b60006140446024836144e0565b915061404f82614afe565b604082019050919050565b6000614067600d836144e0565b915061407282614b4d565b602082019050919050565b600061408a6017836144e0565b915061409582614b76565b602082019050919050565b60006140ad6018836144e0565b91506140b882614b9f565b602082019050919050565b6060820160008201516140d96000850182613e06565b5060208201516140ec6020850182614123565b5060408201516140ff6040850182613e3b565b50505050565b61410e81614665565b82525050565b61411d81614693565b82525050565b61412c8161469d565b82525050565b600061413e8284613e24565b60148201915081905092915050565b60006141598285613ecb565b91506141658284613ecb565b91508190509392505050565b600061417c82614014565b9150819050919050565b600060208201905061419b6000830184613e15565b92915050565b60006080820190506141b66000830187613e15565b6141c36020830186613e15565b6141d06040830185614114565b81810360608301526141e28184613e59565b905095945050505050565b60006020820190506142026000830184613e4a565b92915050565b600060208201905081810360008301526142228184613e92565b905092915050565b6000602082019050818103600083015261424381613efc565b9050919050565b6000602082019050818103600083015261426381613f1f565b9050919050565b6000602082019050818103600083015261428381613f42565b9050919050565b600060208201905081810360008301526142a381613f65565b9050919050565b600060208201905081810360008301526142c381613f88565b9050919050565b600060208201905081810360008301526142e381613fab565b9050919050565b6000602082019050818103600083015261430381613fce565b9050919050565b6000602082019050818103600083015261432381613ff1565b9050919050565b6000602082019050818103600083015261434381614037565b9050919050565b600060208201905081810360008301526143638161405a565b9050919050565b600060208201905081810360008301526143838161407d565b9050919050565b600060208201905081810360008301526143a3816140a0565b9050919050565b60006060820190506143bf60008301846140c3565b92915050565b60006020820190506143da6000830184614105565b92915050565b60006020820190506143f56000830184614114565b92915050565b6000614405614416565b90506144118282614725565b919050565b6000604051905090565b600067ffffffffffffffff82111561443b5761443a6148b0565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614467576144666148b0565b5b614470826148fd565b9050602081019050919050565b600067ffffffffffffffff821115614498576144976148b0565b5b6144a1826148fd565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061450782614693565b915061451283614693565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614547576145466147f4565b5b828201905092915050565b600061455d82614693565b915061456883614693565b92508261457857614577614823565b5b828204905092915050565b600061458e82614693565b915061459983614693565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145d2576145d16147f4565b5b828202905092915050565b60006145e882614693565b91506145f383614693565b925082821015614606576146056147f4565b5b828203905092915050565b600061461c82614673565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156146de5780820151818401526020810190506146c3565b838111156146ed576000848401525b50505050565b6000600282049050600182168061470b57607f821691505b6020821081141561471f5761471e614852565b5b50919050565b61472e826148fd565b810181811067ffffffffffffffff8211171561474d5761474c6148b0565b5b80604052505050565b600061476182614693565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614794576147936147f4565b5b600182019050919050565b60006147aa826147b1565b9050919050565b60006147bc8261490e565b9050919050565b60006147ce82614693565b91506147d983614693565b9250826147e9576147e8614823565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45786365656473204d617820537570706c790000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f752063616e74206d696e74206f6e2050726573616c650000000000000000600082015250565b7f536f72727920796f7520646f6e742068617665207065726d697373696f6e207460008201527f6f206d696e740000000000000000000000000000000000000000000000000000602082015250565b7f496e7375666669656e742066756e647300000000000000000000000000000000600082015250565b7f536f72727920796f752063616e74206d696e74207468697320616d6f756e742060008201527f6174206f6e636500000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d696e7420616d6f756e742073686f756c64206265206772656174657220746860008201527f616e203000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b7f45786365656473204d6178204d696e7420616d6f756e74000000000000000000600082015250565b7f536f72727920796f752063616e74206d696e74206d6f72650000000000000000600082015250565b614bd181614611565b8114614bdc57600080fd5b50565b614be881614623565b8114614bf357600080fd5b50565b614bff8161462f565b8114614c0a57600080fd5b50565b614c1681614639565b8114614c2157600080fd5b50565b614c2d81614665565b8114614c3857600080fd5b50565b614c4481614693565b8114614c4f57600080fd5b5056fea26469706673582212201e53486682d6b3debd0d67e5bd34249a58f8adf89d98964cf60e203c8bbe664864736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003d68747470733a2f2f75732d63656e7472616c312d6d6f666f732d36396136322e636c6f756466756e6374696f6e732e6e65742f6170702f746f6b656e2f000000

Deployed Bytecode

0x6080604052600436106102725760003560e01c806395d89b411161014f578063d5abeb01116100c1578063e985e9c51161007a578063e985e9c5146108ff578063ea4446221461093c578063ed81617914610965578063ee8912121461097c578063f2fde38b146109a5578063f4da1846146109ce57610272565b8063d5abeb01146107ef578063dc33e6811461081a578063dfc33dd114610857578063e5a88cdb14610880578063e7b99ec7146108ab578063e97800cb146108d657610272565b8063bbb8974411610113578063bbb89744146106f3578063bc951b911461071e578063c4ae316814610749578063c87b56dd14610760578063cbce4c971461079d578063cef11729146107c657610272565b806395d89b411461063e578063a0712d6814610669578063a22cb46514610685578063a6d612f9146106ae578063b88d4fde146106ca57610272565b806344a0d68a116101e85780636f8b44b0116101ac5780636f8b44b01461053057806370a0823114610559578063715018a614610596578063729ad39e146105ad5780638da5cb5b146105d65780639231ab2a1461060157610272565b806344a0d68a1461044d57806355f804b3146104765780635c975abb1461049f5780636352211e146104ca57806368570bd61461050757610272565b806318160ddd1161023a57806318160ddd1461037057806323b872dd1461039b5780632cefffa7146103c45780633ccfd60b146103ef57806341827f13146103f957806342842e0e1461042457610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c57806313faede614610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613d09565b6109f7565b6040516102ab91906141ed565b60405180910390f35b3480156102c057600080fd5b506102c9610ad9565b6040516102d69190614208565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613dd9565b610b6b565b6040516103139190614186565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613bf3565b610be7565b005b34801561035157600080fd5b5061035a610cf2565b60405161036791906143e0565b60405180910390f35b34801561037c57600080fd5b50610385610cf8565b60405161039291906143e0565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd9190613add565b610d0f565b005b3480156103d057600080fd5b506103d9610d1f565b6040516103e691906143c5565b60405180910390f35b6103f7610d33565b005b34801561040557600080fd5b5061040e610f94565b60405161041b9190614208565b60405180910390f35b34801561043057600080fd5b5061044b60048036038101906104469190613add565b611022565b005b34801561045957600080fd5b50610474600480360381019061046f9190613dd9565b611042565b005b34801561048257600080fd5b5061049d60048036038101906104989190613d63565b6110c8565b005b3480156104ab57600080fd5b506104b461115e565b6040516104c191906141ed565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec9190613dd9565b611171565b6040516104fe9190614186565b60405180910390f35b34801561051357600080fd5b5061052e60048036038101906105299190613a70565b611187565b005b34801561053c57600080fd5b5061055760048036038101906105529190613dd9565b611247565b005b34801561056557600080fd5b50610580600480360381019061057b9190613a70565b6112cd565b60405161058d91906143e0565b60405180910390f35b3480156105a257600080fd5b506105ab61139d565b005b3480156105b957600080fd5b506105d460048036038101906105cf9190613c33565b611425565b005b3480156105e257600080fd5b506105eb6114ef565b6040516105f89190614186565b60405180910390f35b34801561060d57600080fd5b5061062860048036038101906106239190613dd9565b611519565b60405161063591906143aa565b60405180910390f35b34801561064a57600080fd5b50610653611531565b6040516106609190614208565b60405180910390f35b610683600480360381019061067e9190613dd9565b6115c3565b005b34801561069157600080fd5b506106ac60048036038101906106a79190613bb3565b611826565b005b6106c860048036038101906106c39190613c7c565b61199e565b005b3480156106d657600080fd5b506106f160048036038101906106ec9190613b30565b611bbe565b005b3480156106ff57600080fd5b50610708611c3a565b60405161071591906143c5565b60405180910390f35b34801561072a57600080fd5b50610733611c4e565b60405161074091906143c5565b60405180910390f35b34801561075557600080fd5b5061075e611c62565b005b34801561076c57600080fd5b5061078760048036038101906107829190613dd9565b611d0a565b6040516107949190614208565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190613bf3565b611db1565b005b3480156107d257600080fd5b506107ed60048036038101906107e89190613dac565b611e3b565b005b3480156107fb57600080fd5b50610804611ed7565b60405161081191906143e0565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c9190613a70565b611edd565b60405161084e91906143e0565b60405180910390f35b34801561086357600080fd5b5061087e60048036038101906108799190613dd9565b611eef565b005b34801561088c57600080fd5b50610895611f75565b6040516108a291906141ed565b60405180910390f35b3480156108b757600080fd5b506108c0611f88565b6040516108cd91906143e0565b60405180910390f35b3480156108e257600080fd5b506108fd60048036038101906108f89190613dac565b611f8e565b005b34801561090b57600080fd5b5061092660048036038101906109219190613a9d565b61202a565b60405161093391906141ed565b60405180910390f35b34801561094857600080fd5b50610963600480360381019061095e9190613dac565b6120be565b005b34801561097157600080fd5b5061097a61215a565b005b34801561098857600080fd5b506109a3600480360381019061099e9190613cdc565b612202565b005b3480156109b157600080fd5b506109cc60048036038101906109c79190613a70565b612288565b005b3480156109da57600080fd5b506109f560048036038101906109f09190613bf3565b612380565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ac257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ad25750610ad18261241e565b5b9050919050565b606060028054610ae8906146f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610b14906146f3565b8015610b615780601f10610b3657610100808354040283529160200191610b61565b820191906000526020600020905b815481529060010190602001808311610b4457829003601f168201915b5050505050905090565b6000610b7682612488565b610bac576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bf282611171565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c5a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c796124d6565b73ffffffffffffffffffffffffffffffffffffffff1614158015610cab5750610ca981610ca46124d6565b61202a565b155b15610ce2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ced8383836124de565b505050565b600e5481565b6000610d02612590565b6001546000540303905090565b610d1a838383612595565b505050565b600c60049054906101000a900461ffff1681565b610d3b6124d6565b73ffffffffffffffffffffffffffffffffffffffff16610d596114ef565b73ffffffffffffffffffffffffffffffffffffffff1614610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da6906142ea565b60405180910390fd5b6000479050600060c8600983610dc59190614583565b610dcf9190614552565b9050600060c8601484610de29190614583565b610dec9190614552565b905060007316c7fbd3d3f4d212624ba005d25b4e7bcd1a65c773ffffffffffffffffffffffffffffffffffffffff1683604051610e2890614171565b60006040518083038185875af1925050503d8060008114610e65576040519150601f19603f3d011682016040523d82523d6000602084013e610e6a565b606091505b5050905080610e7857600080fd5b600073f226e4a2779a0a2850dcbae91130fd285a6343bc73ffffffffffffffffffffffffffffffffffffffff1683604051610eb290614171565b60006040518083038185875af1925050503d8060008114610eef576040519150601f19603f3d011682016040523d82523d6000602084013e610ef4565b606091505b5050905080610f0257600080fd5b600073097eaa98ff7386164ccb612d7de5ddbf5651ea1773ffffffffffffffffffffffffffffffffffffffff1647604051610f3c90614171565b60006040518083038185875af1925050503d8060008114610f79576040519150601f19603f3d011682016040523d82523d6000602084013e610f7e565b606091505b5050905080610f8c57600080fd5b505050505050565b600a8054610fa1906146f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610fcd906146f3565b801561101a5780601f10610fef5761010080835404028352916020019161101a565b820191906000526020600020905b815481529060010190602001808311610ffd57829003601f168201915b505050505081565b61103d83838360405180602001604052806000815250611bbe565b505050565b61104a6124d6565b73ffffffffffffffffffffffffffffffffffffffff166110686114ef565b73ffffffffffffffffffffffffffffffffffffffff16146110be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b5906142ea565b60405180910390fd5b80600e8190555050565b6110d06124d6565b73ffffffffffffffffffffffffffffffffffffffff166110ee6114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b906142ea565b60405180910390fd5b80600a908051906020019061115a929190613723565b5050565b601060009054906101000a900460ff1681565b600061117c82612a86565b600001519050919050565b61118f6124d6565b73ffffffffffffffffffffffffffffffffffffffff166111ad6114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fa906142ea565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61124f6124d6565b73ffffffffffffffffffffffffffffffffffffffff1661126d6114ef565b73ffffffffffffffffffffffffffffffffffffffff16146112c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ba906142ea565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611335576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6113a56124d6565b73ffffffffffffffffffffffffffffffffffffffff166113c36114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611419576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611410906142ea565b60405180910390fd5b6114236000612d15565b565b61142d6124d6565b73ffffffffffffffffffffffffffffffffffffffff1661144b6114ef565b73ffffffffffffffffffffffffffffffffffffffff16146114a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611498906142ea565b60405180910390fd5b60005b81518110156114eb5760008282815181106114c2576114c1614881565b5b602002602001015190506114d7816001612ddb565b5080806114e390614756565b9150506114a4565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115216137a9565b61152a82612a86565b9050919050565b606060038054611540906146f3565b80601f016020809104026020016040519081016040528092919081815260200182805461156c906146f3565b80156115b95780601f1061158e576101008083540402835291602001916115b9565b820191906000526020600020905b81548152906001019060200180831161159c57829003601f168201915b5050505050905090565b6115cb6114ef565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611819576000611608336112cd565b9050601060009054906101000a900460ff161561162457600080fd5b601060019054906101000a900460ff1615611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b9061426a565b60405180910390fd5b600082116116b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ae9061432a565b60405180910390fd5b600c60009054906101000a900461ffff1661ffff1682111561170e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611705906142ca565b60405180910390fd5b600d548261171a610cf8565b61172491906144fc565b1115611765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175c9061422a565b60405180910390fd5b600c60029054906101000a900461ffff1661ffff16828261178691906144fc565b11156117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be9061438a565b60405180910390fd5b81600e546117d59190614583565b341015611817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180e906142aa565b60405180910390fd5b505b6118233382612ddb565b50565b61182e6124d6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611893576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006118a06124d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661194d6124d6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161199291906141ed565b60405180910390a35050565b6119f16119aa33612de9565b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612e19565b611a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a279061434a565b60405180910390fd5b600c60049054906101000a900461ffff1661ffff1681601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a9091906144fc565b1115611ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac89061436a565b60405180910390fd5b80600f54611adf9190614583565b341015611b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b18906142aa565b60405180910390fd5b611b2b3382612ddb565b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b7691906144fc565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b611bc9848484612595565b611be88373ffffffffffffffffffffffffffffffffffffffff16612e30565b8015611bfd5750611bfb84848484612e53565b155b15611c34576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c60009054906101000a900461ffff1681565b600c60029054906101000a900461ffff1681565b611c6a6124d6565b73ffffffffffffffffffffffffffffffffffffffff16611c886114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd5906142ea565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6060611d1582612488565b611d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4b9061430a565b60405180910390fd5b6000611d5e612fb3565b90506000815111611d7e5760405180602001604052806000815250611da9565b80611d8884613045565b604051602001611d9992919061414d565b6040516020818303038152906040525b915050919050565b611db96124d6565b73ffffffffffffffffffffffffffffffffffffffff16611dd76114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e24906142ea565b60405180910390fd5b611e378282612ddb565b5050565b611e436124d6565b73ffffffffffffffffffffffffffffffffffffffff16611e616114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eae906142ea565b60405180910390fd5b80600c60026101000a81548161ffff021916908361ffff16021790555050565b600d5481565b6000611ee8826131a6565b9050919050565b611ef76124d6565b73ffffffffffffffffffffffffffffffffffffffff16611f156114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f62906142ea565b60405180910390fd5b80600f8190555050565b601060019054906101000a900460ff1681565b600f5481565b611f966124d6565b73ffffffffffffffffffffffffffffffffffffffff16611fb46114ef565b73ffffffffffffffffffffffffffffffffffffffff161461200a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612001906142ea565b60405180910390fd5b80600c60006101000a81548161ffff021916908361ffff16021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120c66124d6565b73ffffffffffffffffffffffffffffffffffffffff166120e46114ef565b73ffffffffffffffffffffffffffffffffffffffff161461213a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612131906142ea565b60405180910390fd5b80600c60046101000a81548161ffff021916908361ffff16021790555050565b6121626124d6565b73ffffffffffffffffffffffffffffffffffffffff166121806114ef565b73ffffffffffffffffffffffffffffffffffffffff16146121d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cd906142ea565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b61220a6124d6565b73ffffffffffffffffffffffffffffffffffffffff166122286114ef565b73ffffffffffffffffffffffffffffffffffffffff161461227e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612275906142ea565b60405180910390fd5b80600b8190555050565b6122906124d6565b73ffffffffffffffffffffffffffffffffffffffff166122ae6114ef565b73ffffffffffffffffffffffffffffffffffffffff1614612304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fb906142ea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236b9061424a565b60405180910390fd5b61237d81612d15565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612410576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124079061428a565b60405180910390fd5b61241a8282613276565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612493612590565b111580156124a2575060005482105b80156124cf575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006125a082612a86565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166125c76124d6565b73ffffffffffffffffffffffffffffffffffffffff1614806125fa57506125f982600001516125f46124d6565b61202a565b5b8061263f57506126086124d6565b73ffffffffffffffffffffffffffffffffffffffff1661262784610b6b565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612678576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146126e1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612748576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127558585856001613294565b61276560008484600001516124de565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612a1657600054811015612a155782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a7f858585600161329a565b5050505050565b612a8e6137a9565b600082905080612a9c612590565b11158015612aab575060005481105b15612cde576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612cdc57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612bc0578092505050612d10565b5b600115612cdb57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612cd6578092505050612d10565b612bc1565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612de58282613276565b5050565b600081604051602001612dfc9190614132565b604051602081830303815290604052805190602001209050919050565b6000612e2882600b54856132a0565b905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e796124d6565b8786866040518563ffffffff1660e01b8152600401612e9b94939291906141a1565b602060405180830381600087803b158015612eb557600080fd5b505af1925050508015612ee657506040513d601f19601f82011682018060405250810190612ee39190613d36565b60015b612f60573d8060008114612f16576040519150601f19603f3d011682016040523d82523d6000602084013e612f1b565b606091505b50600081511415612f58576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612fc2906146f3565b80601f0160208091040260200160405190810160405280929190818152602001828054612fee906146f3565b801561303b5780601f106130105761010080835404028352916020019161303b565b820191906000526020600020905b81548152906001019060200180831161301e57829003601f168201915b5050505050905090565b6060600082141561308d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131a1565b600082905060005b600082146130bf5780806130a890614756565b915050600a826130b89190614552565b9150613095565b60008167ffffffffffffffff8111156130db576130da6148b0565b5b6040519080825280601f01601f19166020018201604052801561310d5781602001600182028036833780820191505090505b5090505b6000851461319a5760018261312691906145dd565b9150600a8561313591906147c3565b603061314191906144fc565b60f81b81838151811061315757613156614881565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131939190614552565b9450613111565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561320e576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6132908282604051806020016040528060008152506132b7565b5050565b50505050565b50505050565b6000826132ad85846132c9565b1490509392505050565b6132c4838383600161333e565b505050565b60008082905060005b84518110156133335760008582815181106132f0576132ef614881565b5b602002602001015190508083116133125761330b838261370c565b925061331f565b61331c818461370c565b92505b50808061332b90614756565b9150506132d2565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156133ab576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156133e6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6133f36000868387613294565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156135bd57506135bc8773ffffffffffffffffffffffffffffffffffffffff16612e30565b5b15613683575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136326000888480600101955088612e53565b613668576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156135c357826000541461367e57600080fd5b6136ef565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613684575b816000819055505050613705600086838761329a565b5050505050565b600082600052816020526040600020905092915050565b82805461372f906146f3565b90600052602060002090601f0160209004810192826137515760008555613798565b82601f1061376a57805160ff1916838001178555613798565b82800160010185558215613798579182015b8281111561379757825182559160200191906001019061377c565b5b5090506137a591906137ec565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156138055760008160009055506001016137ed565b5090565b600061381c61381784614420565b6143fb565b9050808382526020820190508285602086028201111561383f5761383e6148e9565b5b60005b8581101561386f578161385588826138fd565b845260208401935060208301925050600181019050613842565b5050509392505050565b600061388c6138878461444c565b6143fb565b9050828152602081018484840111156138a8576138a76148ee565b5b6138b38482856146b1565b509392505050565b60006138ce6138c98461447d565b6143fb565b9050828152602081018484840111156138ea576138e96148ee565b5b6138f58482856146b1565b509392505050565b60008135905061390c81614bc8565b92915050565b600082601f830112613927576139266148e4565b5b8135613937848260208601613809565b91505092915050565b60008083601f840112613956576139556148e4565b5b8235905067ffffffffffffffff811115613973576139726148df565b5b60208301915083602082028301111561398f5761398e6148e9565b5b9250929050565b6000813590506139a581614bdf565b92915050565b6000813590506139ba81614bf6565b92915050565b6000813590506139cf81614c0d565b92915050565b6000815190506139e481614c0d565b92915050565b600082601f8301126139ff576139fe6148e4565b5b8135613a0f848260208601613879565b91505092915050565b600082601f830112613a2d57613a2c6148e4565b5b8135613a3d8482602086016138bb565b91505092915050565b600081359050613a5581614c24565b92915050565b600081359050613a6a81614c3b565b92915050565b600060208284031215613a8657613a856148f8565b5b6000613a94848285016138fd565b91505092915050565b60008060408385031215613ab457613ab36148f8565b5b6000613ac2858286016138fd565b9250506020613ad3858286016138fd565b9150509250929050565b600080600060608486031215613af657613af56148f8565b5b6000613b04868287016138fd565b9350506020613b15868287016138fd565b9250506040613b2686828701613a5b565b9150509250925092565b60008060008060808587031215613b4a57613b496148f8565b5b6000613b58878288016138fd565b9450506020613b69878288016138fd565b9350506040613b7a87828801613a5b565b925050606085013567ffffffffffffffff811115613b9b57613b9a6148f3565b5b613ba7878288016139ea565b91505092959194509250565b60008060408385031215613bca57613bc96148f8565b5b6000613bd8858286016138fd565b9250506020613be985828601613996565b9150509250929050565b60008060408385031215613c0a57613c096148f8565b5b6000613c18858286016138fd565b9250506020613c2985828601613a5b565b9150509250929050565b600060208284031215613c4957613c486148f8565b5b600082013567ffffffffffffffff811115613c6757613c666148f3565b5b613c7384828501613912565b91505092915050565b600080600060408486031215613c9557613c946148f8565b5b600084013567ffffffffffffffff811115613cb357613cb26148f3565b5b613cbf86828701613940565b93509350506020613cd286828701613a5b565b9150509250925092565b600060208284031215613cf257613cf16148f8565b5b6000613d00848285016139ab565b91505092915050565b600060208284031215613d1f57613d1e6148f8565b5b6000613d2d848285016139c0565b91505092915050565b600060208284031215613d4c57613d4b6148f8565b5b6000613d5a848285016139d5565b91505092915050565b600060208284031215613d7957613d786148f8565b5b600082013567ffffffffffffffff811115613d9757613d966148f3565b5b613da384828501613a18565b91505092915050565b600060208284031215613dc257613dc16148f8565b5b6000613dd084828501613a46565b91505092915050565b600060208284031215613def57613dee6148f8565b5b6000613dfd84828501613a5b565b91505092915050565b613e0f81614611565b82525050565b613e1e81614611565b82525050565b613e35613e3082614611565b61479f565b82525050565b613e4481614623565b82525050565b613e5381614623565b82525050565b6000613e64826144ae565b613e6e81856144c4565b9350613e7e8185602086016146c0565b613e87816148fd565b840191505092915050565b6000613e9d826144b9565b613ea781856144e0565b9350613eb78185602086016146c0565b613ec0816148fd565b840191505092915050565b6000613ed6826144b9565b613ee081856144f1565b9350613ef08185602086016146c0565b80840191505092915050565b6000613f096012836144e0565b9150613f148261491b565b602082019050919050565b6000613f2c6026836144e0565b9150613f3782614944565b604082019050919050565b6000613f4f6018836144e0565b9150613f5a82614993565b602082019050919050565b6000613f726026836144e0565b9150613f7d826149bc565b604082019050919050565b6000613f956010836144e0565b9150613fa082614a0b565b602082019050919050565b6000613fb86027836144e0565b9150613fc382614a34565b604082019050919050565b6000613fdb6020836144e0565b9150613fe682614a83565b602082019050919050565b6000613ffe602f836144e0565b915061400982614aac565b604082019050919050565b60006140216000836144d5565b915061402c82614afb565b600082019050919050565b60006140446024836144e0565b915061404f82614afe565b604082019050919050565b6000614067600d836144e0565b915061407282614b4d565b602082019050919050565b600061408a6017836144e0565b915061409582614b76565b602082019050919050565b60006140ad6018836144e0565b91506140b882614b9f565b602082019050919050565b6060820160008201516140d96000850182613e06565b5060208201516140ec6020850182614123565b5060408201516140ff6040850182613e3b565b50505050565b61410e81614665565b82525050565b61411d81614693565b82525050565b61412c8161469d565b82525050565b600061413e8284613e24565b60148201915081905092915050565b60006141598285613ecb565b91506141658284613ecb565b91508190509392505050565b600061417c82614014565b9150819050919050565b600060208201905061419b6000830184613e15565b92915050565b60006080820190506141b66000830187613e15565b6141c36020830186613e15565b6141d06040830185614114565b81810360608301526141e28184613e59565b905095945050505050565b60006020820190506142026000830184613e4a565b92915050565b600060208201905081810360008301526142228184613e92565b905092915050565b6000602082019050818103600083015261424381613efc565b9050919050565b6000602082019050818103600083015261426381613f1f565b9050919050565b6000602082019050818103600083015261428381613f42565b9050919050565b600060208201905081810360008301526142a381613f65565b9050919050565b600060208201905081810360008301526142c381613f88565b9050919050565b600060208201905081810360008301526142e381613fab565b9050919050565b6000602082019050818103600083015261430381613fce565b9050919050565b6000602082019050818103600083015261432381613ff1565b9050919050565b6000602082019050818103600083015261434381614037565b9050919050565b600060208201905081810360008301526143638161405a565b9050919050565b600060208201905081810360008301526143838161407d565b9050919050565b600060208201905081810360008301526143a3816140a0565b9050919050565b60006060820190506143bf60008301846140c3565b92915050565b60006020820190506143da6000830184614105565b92915050565b60006020820190506143f56000830184614114565b92915050565b6000614405614416565b90506144118282614725565b919050565b6000604051905090565b600067ffffffffffffffff82111561443b5761443a6148b0565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614467576144666148b0565b5b614470826148fd565b9050602081019050919050565b600067ffffffffffffffff821115614498576144976148b0565b5b6144a1826148fd565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061450782614693565b915061451283614693565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614547576145466147f4565b5b828201905092915050565b600061455d82614693565b915061456883614693565b92508261457857614577614823565b5b828204905092915050565b600061458e82614693565b915061459983614693565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145d2576145d16147f4565b5b828202905092915050565b60006145e882614693565b91506145f383614693565b925082821015614606576146056147f4565b5b828203905092915050565b600061461c82614673565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156146de5780820151818401526020810190506146c3565b838111156146ed576000848401525b50505050565b6000600282049050600182168061470b57607f821691505b6020821081141561471f5761471e614852565b5b50919050565b61472e826148fd565b810181811067ffffffffffffffff8211171561474d5761474c6148b0565b5b80604052505050565b600061476182614693565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614794576147936147f4565b5b600182019050919050565b60006147aa826147b1565b9050919050565b60006147bc8261490e565b9050919050565b60006147ce82614693565b91506147d983614693565b9250826147e9576147e8614823565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45786365656473204d617820537570706c790000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f752063616e74206d696e74206f6e2050726573616c650000000000000000600082015250565b7f536f72727920796f7520646f6e742068617665207065726d697373696f6e207460008201527f6f206d696e740000000000000000000000000000000000000000000000000000602082015250565b7f496e7375666669656e742066756e647300000000000000000000000000000000600082015250565b7f536f72727920796f752063616e74206d696e74207468697320616d6f756e742060008201527f6174206f6e636500000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d696e7420616d6f756e742073686f756c64206265206772656174657220746860008201527f616e203000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b7f45786365656473204d6178204d696e7420616d6f756e74000000000000000000600082015250565b7f536f72727920796f752063616e74206d696e74206d6f72650000000000000000600082015250565b614bd181614611565b8114614bdc57600080fd5b50565b614be881614623565b8114614bf357600080fd5b50565b614bff8161462f565b8114614c0a57600080fd5b50565b614c1681614639565b8114614c2157600080fd5b50565b614c2d81614665565b8114614c3857600080fd5b50565b614c4481614693565b8114614c4f57600080fd5b5056fea26469706673582212201e53486682d6b3debd0d67e5bd34249a58f8adf89d98964cf60e203c8bbe664864736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003d68747470733a2f2f75732d63656e7472616c312d6d6f666f732d36396136322e636c6f756466756e6374696f6e732e6e65742f6170702f746f6b656e2f000000

-----Decoded View---------------
Arg [0] : _baseUrl (string): https://us-central1-mofos-69a62.cloudfunctions.net/app/token/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000003d
Arg [2] : 68747470733a2f2f75732d63656e7472616c312d6d6f666f732d36396136322e
Arg [3] : 636c6f756466756e6374696f6e732e6e65742f6170702f746f6b656e2f000000


Deployed Bytecode Sourcemap

48231:6994:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30701:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34086:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35589:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35152:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48695:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29950:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36446:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48568:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54516:706;;;:::i;:::-;;48341:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36687:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53200:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53908:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48801:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33895:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49145:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53806:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31070:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7119:103;;;;;;;;;;;;;:::i;:::-;;52344:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6468:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54341:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34255:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51292:925;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35865:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50220:928;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36943:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48436:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48489:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54023:75;;;;;;;;;;;;;:::i;:::-;;52705:487;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52225:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53546:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48640:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51156:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53294:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48834:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48735:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53409:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36215:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53673:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54106:99;;;;;;;;;;;;;:::i;:::-;;49605:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7377:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49347:250;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30701:305;30803:4;30855:25;30840:40;;;:11;:40;;;;:105;;;;30912:33;30897:48;;;:11;:48;;;;30840:105;:158;;;;30962:36;30986:11;30962:23;:36::i;:::-;30840:158;30820:178;;30701:305;;;:::o;34086:100::-;34140:13;34173:5;34166:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34086:100;:::o;35589:204::-;35657:7;35682:16;35690:7;35682;:16::i;:::-;35677:64;;35707:34;;;;;;;;;;;;;;35677:64;35761:15;:24;35777:7;35761:24;;;;;;;;;;;;;;;;;;;;;35754:31;;35589:204;;;:::o;35152:371::-;35225:13;35241:24;35257:7;35241:15;:24::i;:::-;35225:40;;35286:5;35280:11;;:2;:11;;;35276:48;;;35300:24;;;;;;;;;;;;;;35276:48;35357:5;35341:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;35367:37;35384:5;35391:12;:10;:12::i;:::-;35367:16;:37::i;:::-;35366:38;35341:63;35337:138;;;35428:35;;;;;;;;;;;;;;35337:138;35487:28;35496:2;35500:7;35509:5;35487:8;:28::i;:::-;35214:309;35152:371;;:::o;48695:33::-;;;;:::o;29950:303::-;29994:7;30219:15;:13;:15::i;:::-;30204:12;;30188:13;;:28;:46;30181:53;;29950:303;:::o;36446:170::-;36580:28;36590:4;36596:2;36600:7;36580:9;:28::i;:::-;36446:170;;;:::o;48568:44::-;;;;;;;;;;;;;:::o;54516:706::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54573:15:::1;54591:21;54573:39;;54625:14;54658:3;54653:1;54643:7;:11;;;;:::i;:::-;54642:19;;;;:::i;:::-;54625:36;;54672:14;54706:3;54700:2;54690:7;:12;;;;:::i;:::-;54689:20;;;;:::i;:::-;54672:37;;54741:17;54786:42;54764:80;;54852:6;54764:99;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54740:123;;;54882:12;54874:21;;;::::0;::::1;;54919:17;54964:42;54942:80;;55030:6;54942:99;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54918:123;;;55060:12;55052:21;;;::::0;::::1;;55087:7;55108:42;55100:56;;55164:21;55100:90;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55086:104;;;55209:2;55201:11;;;::::0;::::1;;54561:661;;;;;;54516:706::o:0;48341:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36687:185::-;36825:39;36842:4;36848:2;36852:7;36825:39;;;;;;;;;;;;:16;:39::i;:::-;36687:185;;;:::o;53200:86::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53270:8:::1;53263:4;:15;;;;53200:86:::0;:::o;53908:107::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53996:11:::1;53983:10;:24;;;;;;;;;;;;:::i;:::-;;53908:107:::0;:::o;48801:26::-;;;;;;;;;;;;;:::o;33895:124::-;33959:7;33986:20;33998:7;33986:11;:20::i;:::-;:25;;;33979:32;;33895:124;;;:::o;49145:119::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49247:9:::1;49228:16;;:28;;;;;;;;;;;;;;;;;;49145:119:::0;:::o;53806:94::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53885:7:::1;53873:9;:19;;;;53806:94:::0;:::o;31070:206::-;31134:7;31175:1;31158:19;;:5;:19;;;31154:60;;;31186:28;;;;;;;;;;;;;;31154:60;31240:12;:19;31253:5;31240:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;31232:36;;31225:43;;31070:206;;;:::o;7119:103::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7184:30:::1;7211:1;7184:18;:30::i;:::-;7119:103::o:0;52344:234::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52430:9:::1;52425:146;52449:17;:24;52445:1;:28;52425:146;;;52495:10;52508:17;52526:1;52508:20;;;;;;;;:::i;:::-;;;;;;;;52495:33;;52543:16;52553:2;52557:1;52543:9;:16::i;:::-;52480:91;52475:3;;;;;:::i;:::-;;;;52425:146;;;;52344:234:::0;:::o;6468:87::-;6514:7;6541:6;;;;;;;;;;;6534:13;;6468:87;:::o;54341:167::-;54434:21;;:::i;:::-;54480:20;54492:7;54480:11;:20::i;:::-;54473:27;;54341:167;;;:::o;34255:104::-;34311:13;34344:7;34337:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34255:104;:::o;51292:925::-;51371:7;:5;:7::i;:::-;51357:21;;:10;:21;;;51353:810;;51395:23;51421:21;51431:10;51421:9;:21::i;:::-;51395:47;;51468:6;;;;;;;;;;;51467:7;51459:16;;;;;;51499;;;;;;;;;;;51498:17;51490:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;51581:1;51567:11;:15;51559:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;51679:27;;;;;;;;;;;51664:42;;:11;:42;;51638:143;;;;;;;;;;;;:::i;:::-;;;;;;;;;51853:9;;51838:11;51822:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;51796:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;51992:22;;;;;;;;;;;51957:57;;51976:11;51958:15;:29;;;;:::i;:::-;51957:57;;51931:143;;;;;;;;;;;;:::i;:::-;;;;;;;;;52119:11;52112:4;;:18;;;;:::i;:::-;52099:9;:31;;52091:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;51380:783;51353:810;52175:34;52185:10;52197:11;52175:9;:34::i;:::-;51292:925;:::o;35865:279::-;35968:12;:10;:12::i;:::-;35956:24;;:8;:24;;;35952:54;;;35989:17;;;;;;;;;;;;;;35952:54;36064:8;36019:18;:32;36038:12;:10;:12::i;:::-;36019:32;;;;;;;;;;;;;;;:42;36052:8;36019:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;36117:8;36088:48;;36103:12;:10;:12::i;:::-;36088:48;;;36127:8;36088:48;;;;;;:::i;:::-;;;;;;;;35865:279;;:::o;50220:928::-;50428:33;50436:17;50442:10;50436:5;:17::i;:::-;50455:5;;50428:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:7;:33::i;:::-;50398:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;50640:25;;;;;;;;;;;50567:98;;50599:11;50568:16;:28;50585:10;50568:28;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;50567:98;;50537:195;;;;;;;;;;;;:::i;:::-;;;;;;;;;50813:11;50797:13;;:27;;;;:::i;:::-;50783:9;:42;;50753:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;50972:34;50982:10;50994:11;50972:9;:34::i;:::-;51129:11;51077:16;:28;51094:10;51077:28;;;;;;;;;;;;;;;;:63;;;;:::i;:::-;51025:16;:28;51042:10;51025:28;;;;;;;;;;;;;;;:115;;;;50220:928;;;:::o;36943:369::-;37110:28;37120:4;37126:2;37130:7;37110:9;:28::i;:::-;37153:15;:2;:13;;;:15::i;:::-;:76;;;;;37173:56;37204:4;37210:2;37214:7;37223:5;37173:30;:56::i;:::-;37172:57;37153:76;37149:156;;;37253:40;;;;;;;;;;;;;;37149:156;36943:369;;;;:::o;48436:46::-;;;;;;;;;;;;;:::o;48489:41::-;;;;;;;;;;;;;:::o;54023:75::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54084:6:::1;;;;;;;;;;;54083:7;54074:6;;:16;;;;;;;;;;;;;;;;;;54023:75::o:0;52705:487::-;52823:13;52876:16;52884:7;52876;:16::i;:::-;52854:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;52978:28;53009:10;:8;:10::i;:::-;52978:41;;53081:1;53056:14;53050:28;:32;:134;;;;;;;;;;;;;;;;;53126:14;53142:18;:7;:16;:18::i;:::-;53109:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53050:134;53030:154;;;52705:487;;;:::o;52225:111::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52301:27:::1;52311:3;52316:11;52301:9;:27::i;:::-;52225:111:::0;;:::o;53546:119::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53650:7:::1;53625:22;;:32;;;;;;;;;;;;;;;;;;53546:119:::0;:::o;48640:32::-;;;;:::o;51156:113::-;51214:7;51241:20;51255:5;51241:13;:20::i;:::-;51234:27;;51156:113;;;:::o;53294:107::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53385:8:::1;53369:13;:24;;;;53294:107:::0;:::o;48834:35::-;;;;;;;;;;;;;:::o;48735:42::-;;;;:::o;53409:129::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53523:7:::1;53493:27;;:37;;;;;;;;;;;;;;;;;;53409:129:::0;:::o;36215:164::-;36312:4;36336:18;:25;36355:5;36336:25;;;;;;;;;;;;;;;:35;36362:8;36336:35;;;;;;;;;;;;;;;;;;;;;;;;;36329:42;;36215:164;;;;:::o;53673:125::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53783:7:::1;53755:25;;:35;;;;;;;;;;;;;;;;;;53673:125:::0;:::o;54106:99::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54181:16:::1;;;;;;;;;;;54180:17;54161:16;;:36;;;;;;;;;;;;;;;;;;54106:99::o:0;49605:101::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49693:5:::1;49677:13;:21;;;;49605:101:::0;:::o;7377:201::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7486:1:::1;7466:22;;:8;:22;;;;7458:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7542:28;7561:8;7542:18;:28::i;:::-;7377:201:::0;:::o;49347:250::-;49464:16;;;;;;;;;;;49450:30;;:10;:30;;;49428:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;49557:32;49567:8;49577:11;49557:9;:32::i;:::-;49347:250;;:::o;19252:157::-;19337:4;19376:25;19361:40;;;:11;:40;;;;19354:47;;19252:157;;;:::o;37567:187::-;37624:4;37667:7;37648:15;:13;:15::i;:::-;:26;;:53;;;;;37688:13;;37678:7;:23;37648:53;:98;;;;;37719:11;:20;37731:7;37719:20;;;;;;;;;;;:27;;;;;;;;;;;;37718:28;37648:98;37641:105;;37567:187;;;:::o;5192:98::-;5245:7;5272:10;5265:17;;5192:98;:::o;45178:196::-;45320:2;45293:15;:24;45309:7;45293:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45358:7;45354:2;45338:28;;45347:5;45338:28;;;;;;;;;;;;45178:196;;;:::o;29674:92::-;29730:7;29674:92;:::o;40680:2112::-;40795:35;40833:20;40845:7;40833:11;:20::i;:::-;40795:58;;40866:22;40908:13;:18;;;40892:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;40943:50;40960:13;:18;;;40980:12;:10;:12::i;:::-;40943:16;:50::i;:::-;40892:101;:154;;;;41034:12;:10;:12::i;:::-;41010:36;;:20;41022:7;41010:11;:20::i;:::-;:36;;;40892:154;40866:181;;41065:17;41060:66;;41091:35;;;;;;;;;;;;;;41060:66;41163:4;41141:26;;:13;:18;;;:26;;;41137:67;;41176:28;;;;;;;;;;;;;;41137:67;41233:1;41219:16;;:2;:16;;;41215:52;;;41244:23;;;;;;;;;;;;;;41215:52;41280:43;41302:4;41308:2;41312:7;41321:1;41280:21;:43::i;:::-;41388:49;41405:1;41409:7;41418:13;:18;;;41388:8;:49::i;:::-;41763:1;41733:12;:18;41746:4;41733:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41807:1;41779:12;:16;41792:2;41779:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41853:2;41825:11;:20;41837:7;41825:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;41915:15;41870:11;:20;41882:7;41870:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;42183:19;42215:1;42205:7;:11;42183:33;;42276:1;42235:43;;:11;:24;42247:11;42235:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;42231:445;;;42460:13;;42446:11;:27;42442:219;;;42530:13;:18;;;42498:11;:24;42510:11;42498:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;42613:13;:28;;;42571:11;:24;42583:11;42571:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;42442:219;42231:445;41708:979;42723:7;42719:2;42704:27;;42713:4;42704:27;;;;;;;;;;;;42742:42;42763:4;42769:2;42773:7;42782:1;42742:20;:42::i;:::-;40784:2008;;40680:2112;;;:::o;32725:1108::-;32786:21;;:::i;:::-;32820:12;32835:7;32820:22;;32903:4;32884:15;:13;:15::i;:::-;:23;;:47;;;;;32918:13;;32911:4;:20;32884:47;32880:886;;;32952:31;32986:11;:17;32998:4;32986:17;;;;;;;;;;;32952:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33027:9;:16;;;33022:729;;33098:1;33072:28;;:9;:14;;;:28;;;33068:101;;33136:9;33129:16;;;;;;33068:101;33471:261;33478:4;33471:261;;;33511:6;;;;;;;;33556:11;:17;33568:4;33556:17;;;;;;;;;;;33544:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33630:1;33604:28;;:9;:14;;;:28;;;33600:109;;33672:9;33665:16;;;;;;33600:109;33471:261;;;33022:729;32933:833;32880:886;33794:31;;;;;;;;;;;;;;32725:1108;;;;:::o;7738:191::-;7812:16;7831:6;;;;;;;;;;;7812:25;;7857:8;7848:6;;:17;;;;;;;;;;;;;;;;;;7912:8;7881:40;;7902:8;7881:40;;;;;;;;;;;;7801:128;7738:191;:::o;54213:120::-;54292:33;54302:9;54313:11;54292:9;:33::i;:::-;54213:120;;:::o;50064:126::-;50119:7;50173;50156:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;50146:36;;;;;;50139:43;;50064:126;;;:::o;49769:191::-;49877:4;49901:51;49920:5;49927:13;;49942:9;49901:18;:51::i;:::-;49894:58;;49769:191;;;;:::o;9169:326::-;9229:4;9486:1;9464:7;:19;;;:23;9457:30;;9169:326;;;:::o;45866:667::-;46029:4;46066:2;46050:36;;;46087:12;:10;:12::i;:::-;46101:4;46107:7;46116:5;46050:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46046:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46301:1;46284:6;:13;:18;46280:235;;;46330:40;;;;;;;;;;;;;;46280:235;46473:6;46467:13;46458:6;46454:2;46450:15;46443:38;46046:480;46179:45;;;46169:55;;;:6;:55;;;;46162:62;;;45866:667;;;;;;:::o;52586:111::-;52646:13;52679:10;52672:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52586:111;:::o;2754:723::-;2810:13;3040:1;3031:5;:10;3027:53;;;3058:10;;;;;;;;;;;;;;;;;;;;;3027:53;3090:12;3105:5;3090:20;;3121:14;3146:78;3161:1;3153:4;:9;3146:78;;3179:8;;;;;:::i;:::-;;;;3210:2;3202:10;;;;;:::i;:::-;;;3146:78;;;3234:19;3266:6;3256:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3234:39;;3284:154;3300:1;3291:5;:10;3284:154;;3328:1;3318:11;;;;;:::i;:::-;;;3395:2;3387:5;:10;;;;:::i;:::-;3374:2;:24;;;;:::i;:::-;3361:39;;3344:6;3351;3344:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3424:2;3415:11;;;;;:::i;:::-;;;3284:154;;;3462:6;3448:21;;;;;2754:723;;;;:::o;31358:207::-;31419:7;31460:1;31443:19;;:5;:19;;;31439:59;;;31471:27;;;;;;;;;;;;;;31439:59;31524:12;:19;31537:5;31524:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;31516:41;;31509:48;;31358:207;;;:::o;37762:104::-;37831:27;37841:2;37845:8;37831:27;;;;;;;;;;;;:9;:27::i;:::-;37762:104;;:::o;47181:159::-;;;;;:::o;47999:158::-;;;;;:::o;923:190::-;1048:4;1101;1072:25;1085:5;1092:4;1072:12;:25::i;:::-;:33;1065:40;;923:190;;;;;:::o;38229:163::-;38352:32;38358:2;38362:8;38372:5;38379:4;38352:5;:32::i;:::-;38229:163;;;:::o;1475:675::-;1558:7;1578:20;1601:4;1578:27;;1621:9;1616:497;1640:5;:12;1636:1;:16;1616:497;;;1674:20;1697:5;1703:1;1697:8;;;;;;;;:::i;:::-;;;;;;;;1674:31;;1740:12;1724;:28;1720:382;;1867:42;1882:12;1896;1867:14;:42::i;:::-;1852:57;;1720:382;;;2044:42;2059:12;2073;2044:14;:42::i;:::-;2029:57;;1720:382;1659:454;1654:3;;;;;:::i;:::-;;;;1616:497;;;;2130:12;2123:19;;;1475:675;;;;:::o;38651:1775::-;38790:20;38813:13;;38790:36;;38855:1;38841:16;;:2;:16;;;38837:48;;;38866:19;;;;;;;;;;;;;;38837:48;38912:1;38900:8;:13;38896:44;;;38922:18;;;;;;;;;;;;;;38896:44;38953:61;38983:1;38987:2;38991:12;39005:8;38953:21;:61::i;:::-;39326:8;39291:12;:16;39304:2;39291:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39390:8;39350:12;:16;39363:2;39350:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39449:2;39416:11;:25;39428:12;39416:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;39516:15;39466:11;:25;39478:12;39466:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;39549:20;39572:12;39549:35;;39599:11;39628:8;39613:12;:23;39599:37;;39657:4;:23;;;;;39665:15;:2;:13;;;:15::i;:::-;39657:23;39653:641;;;39701:314;39757:12;39753:2;39732:38;;39749:1;39732:38;;;;;;;;;;;;39798:69;39837:1;39841:2;39845:14;;;;;;39861:5;39798:30;:69::i;:::-;39793:174;;39903:40;;;;;;;;;;;;;;39793:174;40010:3;39994:12;:19;;39701:314;;40096:12;40079:13;;:29;40075:43;;40110:8;;;40075:43;39653:641;;;40159:120;40215:14;;;;;;40211:2;40190:40;;40207:1;40190:40;;;;;;;;;;;;40274:3;40258:12;:19;;40159:120;;39653:641;40324:12;40308:13;:28;;;;39266:1082;;40358:60;40387:1;40391:2;40395:12;40409:8;40358:20;:60::i;:::-;38779:1647;38651:1775;;;;:::o;2158:224::-;2226:13;2289:1;2283:4;2276:15;2318:1;2312:4;2305:15;2359:4;2353;2343:21;2334:30;;2158:224;;;;:::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;2141:568::-;2214:8;2224:6;2274:3;2267:4;2259:6;2255:17;2251:27;2241:122;;2282:79;;:::i;:::-;2241:122;2395:6;2382:20;2372:30;;2425:18;2417:6;2414:30;2411:117;;;2447:79;;:::i;:::-;2411:117;2561:4;2553:6;2549:17;2537:29;;2615:3;2607:4;2599:6;2595:17;2585:8;2581:32;2578:41;2575:128;;;2622:79;;:::i;:::-;2575:128;2141:568;;;;;:::o;2715:133::-;2758:5;2796:6;2783:20;2774:29;;2812:30;2836:5;2812:30;:::i;:::-;2715:133;;;;:::o;2854:139::-;2900:5;2938:6;2925:20;2916:29;;2954:33;2981:5;2954:33;:::i;:::-;2854:139;;;;:::o;2999:137::-;3044:5;3082:6;3069:20;3060:29;;3098:32;3124:5;3098:32;:::i;:::-;2999:137;;;;:::o;3142:141::-;3198:5;3229:6;3223:13;3214:22;;3245:32;3271:5;3245:32;:::i;:::-;3142:141;;;;:::o;3302:338::-;3357:5;3406:3;3399:4;3391:6;3387:17;3383:27;3373:122;;3414:79;;:::i;:::-;3373:122;3531:6;3518:20;3556:78;3630:3;3622:6;3615:4;3607:6;3603:17;3556:78;:::i;:::-;3547:87;;3363:277;3302:338;;;;:::o;3660:340::-;3716:5;3765:3;3758:4;3750:6;3746:17;3742:27;3732:122;;3773:79;;:::i;:::-;3732:122;3890:6;3877:20;3915:79;3990:3;3982:6;3975:4;3967:6;3963:17;3915:79;:::i;:::-;3906:88;;3722:278;3660:340;;;;:::o;4006:137::-;4051:5;4089:6;4076:20;4067:29;;4105:32;4131:5;4105:32;:::i;:::-;4006:137;;;;:::o;4149:139::-;4195:5;4233:6;4220:20;4211:29;;4249:33;4276:5;4249:33;:::i;:::-;4149:139;;;;:::o;4294:329::-;4353:6;4402:2;4390:9;4381:7;4377:23;4373:32;4370:119;;;4408:79;;:::i;:::-;4370:119;4528:1;4553:53;4598:7;4589:6;4578:9;4574:22;4553:53;:::i;:::-;4543:63;;4499:117;4294:329;;;;:::o;4629:474::-;4697:6;4705;4754:2;4742:9;4733:7;4729:23;4725:32;4722:119;;;4760:79;;:::i;:::-;4722:119;4880:1;4905:53;4950:7;4941:6;4930:9;4926:22;4905:53;:::i;:::-;4895:63;;4851:117;5007:2;5033:53;5078:7;5069:6;5058:9;5054:22;5033:53;:::i;:::-;5023:63;;4978:118;4629:474;;;;;:::o;5109:619::-;5186:6;5194;5202;5251:2;5239:9;5230:7;5226:23;5222:32;5219:119;;;5257:79;;:::i;:::-;5219:119;5377:1;5402:53;5447:7;5438:6;5427:9;5423:22;5402:53;:::i;:::-;5392:63;;5348:117;5504:2;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5475:118;5632:2;5658:53;5703:7;5694:6;5683:9;5679:22;5658:53;:::i;:::-;5648:63;;5603:118;5109:619;;;;;:::o;5734:943::-;5829:6;5837;5845;5853;5902:3;5890:9;5881:7;5877:23;5873:33;5870:120;;;5909:79;;:::i;:::-;5870:120;6029:1;6054:53;6099:7;6090:6;6079:9;6075:22;6054:53;:::i;:::-;6044:63;;6000:117;6156:2;6182:53;6227:7;6218:6;6207:9;6203:22;6182:53;:::i;:::-;6172:63;;6127:118;6284:2;6310:53;6355:7;6346:6;6335:9;6331:22;6310:53;:::i;:::-;6300:63;;6255:118;6440:2;6429:9;6425:18;6412:32;6471:18;6463:6;6460:30;6457:117;;;6493:79;;:::i;:::-;6457:117;6598:62;6652:7;6643:6;6632:9;6628:22;6598:62;:::i;:::-;6588:72;;6383:287;5734:943;;;;;;;:::o;6683:468::-;6748:6;6756;6805:2;6793:9;6784:7;6780:23;6776:32;6773:119;;;6811:79;;:::i;:::-;6773:119;6931:1;6956:53;7001:7;6992:6;6981:9;6977:22;6956:53;:::i;:::-;6946:63;;6902:117;7058:2;7084:50;7126:7;7117:6;7106:9;7102:22;7084:50;:::i;:::-;7074:60;;7029:115;6683:468;;;;;:::o;7157:474::-;7225:6;7233;7282:2;7270:9;7261:7;7257:23;7253:32;7250:119;;;7288:79;;:::i;:::-;7250:119;7408:1;7433:53;7478:7;7469:6;7458:9;7454:22;7433:53;:::i;:::-;7423:63;;7379:117;7535:2;7561:53;7606:7;7597:6;7586:9;7582:22;7561:53;:::i;:::-;7551:63;;7506:118;7157:474;;;;;:::o;7637:539::-;7721:6;7770:2;7758:9;7749:7;7745:23;7741:32;7738:119;;;7776:79;;:::i;:::-;7738:119;7924:1;7913:9;7909:17;7896:31;7954:18;7946:6;7943:30;7940:117;;;7976:79;;:::i;:::-;7940:117;8081:78;8151:7;8142:6;8131:9;8127:22;8081:78;:::i;:::-;8071:88;;7867:302;7637:539;;;;:::o;8182:704::-;8277:6;8285;8293;8342:2;8330:9;8321:7;8317:23;8313:32;8310:119;;;8348:79;;:::i;:::-;8310:119;8496:1;8485:9;8481:17;8468:31;8526:18;8518:6;8515:30;8512:117;;;8548:79;;:::i;:::-;8512:117;8661:80;8733:7;8724:6;8713:9;8709:22;8661:80;:::i;:::-;8643:98;;;;8439:312;8790:2;8816:53;8861:7;8852:6;8841:9;8837:22;8816:53;:::i;:::-;8806:63;;8761:118;8182:704;;;;;:::o;8892:329::-;8951:6;9000:2;8988:9;8979:7;8975:23;8971:32;8968:119;;;9006:79;;:::i;:::-;8968:119;9126:1;9151:53;9196:7;9187:6;9176:9;9172:22;9151:53;:::i;:::-;9141:63;;9097:117;8892:329;;;;:::o;9227:327::-;9285:6;9334:2;9322:9;9313:7;9309:23;9305:32;9302:119;;;9340:79;;:::i;:::-;9302:119;9460:1;9485:52;9529:7;9520:6;9509:9;9505:22;9485:52;:::i;:::-;9475:62;;9431:116;9227:327;;;;:::o;9560:349::-;9629:6;9678:2;9666:9;9657:7;9653:23;9649:32;9646:119;;;9684:79;;:::i;:::-;9646:119;9804:1;9829:63;9884:7;9875:6;9864:9;9860:22;9829:63;:::i;:::-;9819:73;;9775:127;9560:349;;;;:::o;9915:509::-;9984:6;10033:2;10021:9;10012:7;10008:23;10004:32;10001:119;;;10039:79;;:::i;:::-;10001:119;10187:1;10176:9;10172:17;10159:31;10217:18;10209:6;10206:30;10203:117;;;10239:79;;:::i;:::-;10203:117;10344:63;10399:7;10390:6;10379:9;10375:22;10344:63;:::i;:::-;10334:73;;10130:287;9915:509;;;;:::o;10430:327::-;10488:6;10537:2;10525:9;10516:7;10512:23;10508:32;10505:119;;;10543:79;;:::i;:::-;10505:119;10663:1;10688:52;10732:7;10723:6;10712:9;10708:22;10688:52;:::i;:::-;10678:62;;10634:116;10430:327;;;;:::o;10763:329::-;10822:6;10871:2;10859:9;10850:7;10846:23;10842:32;10839:119;;;10877:79;;:::i;:::-;10839:119;10997:1;11022:53;11067:7;11058:6;11047:9;11043:22;11022:53;:::i;:::-;11012:63;;10968:117;10763:329;;;;:::o;11098:108::-;11175:24;11193:5;11175:24;:::i;:::-;11170:3;11163:37;11098:108;;:::o;11212:118::-;11299:24;11317:5;11299:24;:::i;:::-;11294:3;11287:37;11212:118;;:::o;11336:157::-;11441:45;11461:24;11479:5;11461:24;:::i;:::-;11441:45;:::i;:::-;11436:3;11429:58;11336:157;;:::o;11499:99::-;11570:21;11585:5;11570:21;:::i;:::-;11565:3;11558:34;11499:99;;:::o;11604:109::-;11685:21;11700:5;11685:21;:::i;:::-;11680:3;11673:34;11604:109;;:::o;11719:360::-;11805:3;11833:38;11865:5;11833:38;:::i;:::-;11887:70;11950:6;11945:3;11887:70;:::i;:::-;11880:77;;11966:52;12011:6;12006:3;11999:4;11992:5;11988:16;11966:52;:::i;:::-;12043:29;12065:6;12043:29;:::i;:::-;12038:3;12034:39;12027:46;;11809:270;11719:360;;;;:::o;12085:364::-;12173:3;12201:39;12234:5;12201:39;:::i;:::-;12256:71;12320:6;12315:3;12256:71;:::i;:::-;12249:78;;12336:52;12381:6;12376:3;12369:4;12362:5;12358:16;12336:52;:::i;:::-;12413:29;12435:6;12413:29;:::i;:::-;12408:3;12404:39;12397:46;;12177:272;12085:364;;;;:::o;12455:377::-;12561:3;12589:39;12622:5;12589:39;:::i;:::-;12644:89;12726:6;12721:3;12644:89;:::i;:::-;12637:96;;12742:52;12787:6;12782:3;12775:4;12768:5;12764:16;12742:52;:::i;:::-;12819:6;12814:3;12810:16;12803:23;;12565:267;12455:377;;;;:::o;12838:366::-;12980:3;13001:67;13065:2;13060:3;13001:67;:::i;:::-;12994:74;;13077:93;13166:3;13077:93;:::i;:::-;13195:2;13190:3;13186:12;13179:19;;12838:366;;;:::o;13210:::-;13352:3;13373:67;13437:2;13432:3;13373:67;:::i;:::-;13366:74;;13449:93;13538:3;13449:93;:::i;:::-;13567:2;13562:3;13558:12;13551:19;;13210:366;;;:::o;13582:::-;13724:3;13745:67;13809:2;13804:3;13745:67;:::i;:::-;13738:74;;13821:93;13910:3;13821:93;:::i;:::-;13939:2;13934:3;13930:12;13923:19;;13582:366;;;:::o;13954:::-;14096:3;14117:67;14181:2;14176:3;14117:67;:::i;:::-;14110:74;;14193:93;14282:3;14193:93;:::i;:::-;14311:2;14306:3;14302:12;14295:19;;13954:366;;;:::o;14326:::-;14468:3;14489:67;14553:2;14548:3;14489:67;:::i;:::-;14482:74;;14565:93;14654:3;14565:93;:::i;:::-;14683:2;14678:3;14674:12;14667:19;;14326:366;;;:::o;14698:::-;14840:3;14861:67;14925:2;14920:3;14861:67;:::i;:::-;14854:74;;14937:93;15026:3;14937:93;:::i;:::-;15055:2;15050:3;15046:12;15039:19;;14698:366;;;:::o;15070:::-;15212:3;15233:67;15297:2;15292:3;15233:67;:::i;:::-;15226:74;;15309:93;15398:3;15309:93;:::i;:::-;15427:2;15422:3;15418:12;15411:19;;15070:366;;;:::o;15442:::-;15584:3;15605:67;15669:2;15664:3;15605:67;:::i;:::-;15598:74;;15681:93;15770:3;15681:93;:::i;:::-;15799:2;15794:3;15790:12;15783:19;;15442:366;;;:::o;15814:398::-;15973:3;15994:83;16075:1;16070:3;15994:83;:::i;:::-;15987:90;;16086:93;16175:3;16086:93;:::i;:::-;16204:1;16199:3;16195:11;16188:18;;15814:398;;;:::o;16218:366::-;16360:3;16381:67;16445:2;16440:3;16381:67;:::i;:::-;16374:74;;16457:93;16546:3;16457:93;:::i;:::-;16575:2;16570:3;16566:12;16559:19;;16218:366;;;:::o;16590:::-;16732:3;16753:67;16817:2;16812:3;16753:67;:::i;:::-;16746:74;;16829:93;16918:3;16829:93;:::i;:::-;16947:2;16942:3;16938:12;16931:19;;16590:366;;;:::o;16962:::-;17104:3;17125:67;17189:2;17184:3;17125:67;:::i;:::-;17118:74;;17201:93;17290:3;17201:93;:::i;:::-;17319:2;17314:3;17310:12;17303:19;;16962:366;;;:::o;17334:::-;17476:3;17497:67;17561:2;17556:3;17497:67;:::i;:::-;17490:74;;17573:93;17662:3;17573:93;:::i;:::-;17691:2;17686:3;17682:12;17675:19;;17334:366;;;:::o;17776:697::-;17935:4;17930:3;17926:14;18022:4;18015:5;18011:16;18005:23;18041:63;18098:4;18093:3;18089:14;18075:12;18041:63;:::i;:::-;17950:164;18206:4;18199:5;18195:16;18189:23;18225:61;18280:4;18275:3;18271:14;18257:12;18225:61;:::i;:::-;18124:172;18380:4;18373:5;18369:16;18363:23;18399:57;18450:4;18445:3;18441:14;18427:12;18399:57;:::i;:::-;18306:160;17904:569;17776:697;;:::o;18479:115::-;18564:23;18581:5;18564:23;:::i;:::-;18559:3;18552:36;18479:115;;:::o;18600:118::-;18687:24;18705:5;18687:24;:::i;:::-;18682:3;18675:37;18600:118;;:::o;18724:105::-;18799:23;18816:5;18799:23;:::i;:::-;18794:3;18787:36;18724:105;;:::o;18835:256::-;18947:3;18962:75;19033:3;19024:6;18962:75;:::i;:::-;19062:2;19057:3;19053:12;19046:19;;19082:3;19075:10;;18835:256;;;;:::o;19097:435::-;19277:3;19299:95;19390:3;19381:6;19299:95;:::i;:::-;19292:102;;19411:95;19502:3;19493:6;19411:95;:::i;:::-;19404:102;;19523:3;19516:10;;19097:435;;;;;:::o;19538:379::-;19722:3;19744:147;19887:3;19744:147;:::i;:::-;19737:154;;19908:3;19901:10;;19538:379;;;:::o;19923:222::-;20016:4;20054:2;20043:9;20039:18;20031:26;;20067:71;20135:1;20124:9;20120:17;20111:6;20067:71;:::i;:::-;19923:222;;;;:::o;20151:640::-;20346:4;20384:3;20373:9;20369:19;20361:27;;20398:71;20466:1;20455:9;20451:17;20442:6;20398:71;:::i;:::-;20479:72;20547:2;20536:9;20532:18;20523:6;20479:72;:::i;:::-;20561;20629:2;20618:9;20614:18;20605:6;20561:72;:::i;:::-;20680:9;20674:4;20670:20;20665:2;20654:9;20650:18;20643:48;20708:76;20779:4;20770:6;20708:76;:::i;:::-;20700:84;;20151:640;;;;;;;:::o;20797:210::-;20884:4;20922:2;20911:9;20907:18;20899:26;;20935:65;20997:1;20986:9;20982:17;20973:6;20935:65;:::i;:::-;20797:210;;;;:::o;21013:313::-;21126:4;21164:2;21153:9;21149:18;21141:26;;21213:9;21207:4;21203:20;21199:1;21188:9;21184:17;21177:47;21241:78;21314:4;21305:6;21241:78;:::i;:::-;21233:86;;21013:313;;;;:::o;21332:419::-;21498:4;21536:2;21525:9;21521:18;21513:26;;21585:9;21579:4;21575:20;21571:1;21560:9;21556:17;21549:47;21613:131;21739:4;21613:131;:::i;:::-;21605:139;;21332:419;;;:::o;21757:::-;21923:4;21961:2;21950:9;21946:18;21938:26;;22010:9;22004:4;22000:20;21996:1;21985:9;21981:17;21974:47;22038:131;22164:4;22038:131;:::i;:::-;22030:139;;21757:419;;;:::o;22182:::-;22348:4;22386:2;22375:9;22371:18;22363:26;;22435:9;22429:4;22425:20;22421:1;22410:9;22406:17;22399:47;22463:131;22589:4;22463:131;:::i;:::-;22455:139;;22182:419;;;:::o;22607:::-;22773:4;22811:2;22800:9;22796:18;22788:26;;22860:9;22854:4;22850:20;22846:1;22835:9;22831:17;22824:47;22888:131;23014:4;22888:131;:::i;:::-;22880:139;;22607:419;;;:::o;23032:::-;23198:4;23236:2;23225:9;23221:18;23213:26;;23285:9;23279:4;23275:20;23271:1;23260:9;23256:17;23249:47;23313:131;23439:4;23313:131;:::i;:::-;23305:139;;23032:419;;;:::o;23457:::-;23623:4;23661:2;23650:9;23646:18;23638:26;;23710:9;23704:4;23700:20;23696:1;23685:9;23681:17;23674:47;23738:131;23864:4;23738:131;:::i;:::-;23730:139;;23457:419;;;:::o;23882:::-;24048:4;24086:2;24075:9;24071:18;24063:26;;24135:9;24129:4;24125:20;24121:1;24110:9;24106:17;24099:47;24163:131;24289:4;24163:131;:::i;:::-;24155:139;;23882:419;;;:::o;24307:::-;24473:4;24511:2;24500:9;24496:18;24488:26;;24560:9;24554:4;24550:20;24546:1;24535:9;24531:17;24524:47;24588:131;24714:4;24588:131;:::i;:::-;24580:139;;24307:419;;;:::o;24732:::-;24898:4;24936:2;24925:9;24921:18;24913:26;;24985:9;24979:4;24975:20;24971:1;24960:9;24956:17;24949:47;25013:131;25139:4;25013:131;:::i;:::-;25005:139;;24732:419;;;:::o;25157:::-;25323:4;25361:2;25350:9;25346:18;25338:26;;25410:9;25404:4;25400:20;25396:1;25385:9;25381:17;25374:47;25438:131;25564:4;25438:131;:::i;:::-;25430:139;;25157:419;;;:::o;25582:::-;25748:4;25786:2;25775:9;25771:18;25763:26;;25835:9;25829:4;25825:20;25821:1;25810:9;25806:17;25799:47;25863:131;25989:4;25863:131;:::i;:::-;25855:139;;25582:419;;;:::o;26007:::-;26173:4;26211:2;26200:9;26196:18;26188:26;;26260:9;26254:4;26250:20;26246:1;26235:9;26231:17;26224:47;26288:131;26414:4;26288:131;:::i;:::-;26280:139;;26007:419;;;:::o;26432:346::-;26587:4;26625:2;26614:9;26610:18;26602:26;;26638:133;26768:1;26757:9;26753:17;26744:6;26638:133;:::i;:::-;26432:346;;;;:::o;26784:218::-;26875:4;26913:2;26902:9;26898:18;26890:26;;26926:69;26992:1;26981:9;26977:17;26968:6;26926:69;:::i;:::-;26784:218;;;;:::o;27008:222::-;27101:4;27139:2;27128:9;27124:18;27116:26;;27152:71;27220:1;27209:9;27205:17;27196:6;27152:71;:::i;:::-;27008:222;;;;:::o;27236:129::-;27270:6;27297:20;;:::i;:::-;27287:30;;27326:33;27354:4;27346:6;27326:33;:::i;:::-;27236:129;;;:::o;27371:75::-;27404:6;27437:2;27431:9;27421:19;;27371:75;:::o;27452:311::-;27529:4;27619:18;27611:6;27608:30;27605:56;;;27641:18;;:::i;:::-;27605:56;27691:4;27683:6;27679:17;27671:25;;27751:4;27745;27741:15;27733:23;;27452:311;;;:::o;27769:307::-;27830:4;27920:18;27912:6;27909:30;27906:56;;;27942:18;;:::i;:::-;27906:56;27980:29;28002:6;27980:29;:::i;:::-;27972:37;;28064:4;28058;28054:15;28046:23;;27769:307;;;:::o;28082:308::-;28144:4;28234:18;28226:6;28223:30;28220:56;;;28256:18;;:::i;:::-;28220:56;28294:29;28316:6;28294:29;:::i;:::-;28286:37;;28378:4;28372;28368:15;28360:23;;28082:308;;;:::o;28396:98::-;28447:6;28481:5;28475:12;28465:22;;28396:98;;;:::o;28500:99::-;28552:6;28586:5;28580:12;28570:22;;28500:99;;;:::o;28605:168::-;28688:11;28722:6;28717:3;28710:19;28762:4;28757:3;28753:14;28738:29;;28605:168;;;;:::o;28779:147::-;28880:11;28917:3;28902:18;;28779:147;;;;:::o;28932:169::-;29016:11;29050:6;29045:3;29038:19;29090:4;29085:3;29081:14;29066:29;;28932:169;;;;:::o;29107:148::-;29209:11;29246:3;29231:18;;29107:148;;;;:::o;29261:305::-;29301:3;29320:20;29338:1;29320:20;:::i;:::-;29315:25;;29354:20;29372:1;29354:20;:::i;:::-;29349:25;;29508:1;29440:66;29436:74;29433:1;29430:81;29427:107;;;29514:18;;:::i;:::-;29427:107;29558:1;29555;29551:9;29544:16;;29261:305;;;;:::o;29572:185::-;29612:1;29629:20;29647:1;29629:20;:::i;:::-;29624:25;;29663:20;29681:1;29663:20;:::i;:::-;29658:25;;29702:1;29692:35;;29707:18;;:::i;:::-;29692:35;29749:1;29746;29742:9;29737:14;;29572:185;;;;:::o;29763:348::-;29803:7;29826:20;29844:1;29826:20;:::i;:::-;29821:25;;29860:20;29878:1;29860:20;:::i;:::-;29855:25;;30048:1;29980:66;29976:74;29973:1;29970:81;29965:1;29958:9;29951:17;29947:105;29944:131;;;30055:18;;:::i;:::-;29944:131;30103:1;30100;30096:9;30085:20;;29763:348;;;;:::o;30117:191::-;30157:4;30177:20;30195:1;30177:20;:::i;:::-;30172:25;;30211:20;30229:1;30211:20;:::i;:::-;30206:25;;30250:1;30247;30244:8;30241:34;;;30255:18;;:::i;:::-;30241:34;30300:1;30297;30293:9;30285:17;;30117:191;;;;:::o;30314:96::-;30351:7;30380:24;30398:5;30380:24;:::i;:::-;30369:35;;30314:96;;;:::o;30416:90::-;30450:7;30493:5;30486:13;30479:21;30468:32;;30416:90;;;:::o;30512:77::-;30549:7;30578:5;30567:16;;30512:77;;;:::o;30595:149::-;30631:7;30671:66;30664:5;30660:78;30649:89;;30595:149;;;:::o;30750:89::-;30786:7;30826:6;30819:5;30815:18;30804:29;;30750:89;;;:::o;30845:126::-;30882:7;30922:42;30915:5;30911:54;30900:65;;30845:126;;;:::o;30977:77::-;31014:7;31043:5;31032:16;;30977:77;;;:::o;31060:101::-;31096:7;31136:18;31129:5;31125:30;31114:41;;31060:101;;;:::o;31167:154::-;31251:6;31246:3;31241;31228:30;31313:1;31304:6;31299:3;31295:16;31288:27;31167:154;;;:::o;31327:307::-;31395:1;31405:113;31419:6;31416:1;31413:13;31405:113;;;31504:1;31499:3;31495:11;31489:18;31485:1;31480:3;31476:11;31469:39;31441:2;31438:1;31434:10;31429:15;;31405:113;;;31536:6;31533:1;31530:13;31527:101;;;31616:1;31607:6;31602:3;31598:16;31591:27;31527:101;31376:258;31327:307;;;:::o;31640:320::-;31684:6;31721:1;31715:4;31711:12;31701:22;;31768:1;31762:4;31758:12;31789:18;31779:81;;31845:4;31837:6;31833:17;31823:27;;31779:81;31907:2;31899:6;31896:14;31876:18;31873:38;31870:84;;;31926:18;;:::i;:::-;31870:84;31691:269;31640:320;;;:::o;31966:281::-;32049:27;32071:4;32049:27;:::i;:::-;32041:6;32037:40;32179:6;32167:10;32164:22;32143:18;32131:10;32128:34;32125:62;32122:88;;;32190:18;;:::i;:::-;32122:88;32230:10;32226:2;32219:22;32009:238;31966:281;;:::o;32253:233::-;32292:3;32315:24;32333:5;32315:24;:::i;:::-;32306:33;;32361:66;32354:5;32351:77;32348:103;;;32431:18;;:::i;:::-;32348:103;32478:1;32471:5;32467:13;32460:20;;32253:233;;;:::o;32492:100::-;32531:7;32560:26;32580:5;32560:26;:::i;:::-;32549:37;;32492:100;;;:::o;32598:94::-;32637:7;32666:20;32680:5;32666:20;:::i;:::-;32655:31;;32598:94;;;:::o;32698:176::-;32730:1;32747:20;32765:1;32747:20;:::i;:::-;32742:25;;32781:20;32799:1;32781:20;:::i;:::-;32776:25;;32820:1;32810:35;;32825:18;;:::i;:::-;32810:35;32866:1;32863;32859:9;32854:14;;32698:176;;;;:::o;32880:180::-;32928:77;32925:1;32918:88;33025:4;33022:1;33015:15;33049:4;33046:1;33039:15;33066:180;33114:77;33111:1;33104:88;33211:4;33208:1;33201:15;33235:4;33232:1;33225:15;33252:180;33300:77;33297:1;33290:88;33397:4;33394:1;33387:15;33421:4;33418:1;33411:15;33438:180;33486:77;33483:1;33476:88;33583:4;33580:1;33573:15;33607:4;33604:1;33597:15;33624:180;33672:77;33669:1;33662:88;33769:4;33766:1;33759:15;33793:4;33790:1;33783:15;33810:117;33919:1;33916;33909:12;33933:117;34042:1;34039;34032:12;34056:117;34165:1;34162;34155:12;34179:117;34288:1;34285;34278:12;34302:117;34411:1;34408;34401:12;34425:117;34534:1;34531;34524:12;34548:102;34589:6;34640:2;34636:7;34631:2;34624:5;34620:14;34616:28;34606:38;;34548:102;;;:::o;34656:94::-;34689:8;34737:5;34733:2;34729:14;34708:35;;34656:94;;;:::o;34756:168::-;34896:20;34892:1;34884:6;34880:14;34873:44;34756:168;:::o;34930:225::-;35070:34;35066:1;35058:6;35054:14;35047:58;35139:8;35134:2;35126:6;35122:15;35115:33;34930:225;:::o;35161:174::-;35301:26;35297:1;35289:6;35285:14;35278:50;35161:174;:::o;35341:225::-;35481:34;35477:1;35469:6;35465:14;35458:58;35550:8;35545:2;35537:6;35533:15;35526:33;35341:225;:::o;35572:166::-;35712:18;35708:1;35700:6;35696:14;35689:42;35572:166;:::o;35744:226::-;35884:34;35880:1;35872:6;35868:14;35861:58;35953:9;35948:2;35940:6;35936:15;35929:34;35744:226;:::o;35976:182::-;36116:34;36112:1;36104:6;36100:14;36093:58;35976:182;:::o;36164:234::-;36304:34;36300:1;36292:6;36288:14;36281:58;36373:17;36368:2;36360:6;36356:15;36349:42;36164:234;:::o;36404:114::-;;:::o;36524:223::-;36664:34;36660:1;36652:6;36648:14;36641:58;36733:6;36728:2;36720:6;36716:15;36709:31;36524:223;:::o;36753:163::-;36893:15;36889:1;36881:6;36877:14;36870:39;36753:163;:::o;36922:173::-;37062:25;37058:1;37050:6;37046:14;37039:49;36922:173;:::o;37101:174::-;37241:26;37237:1;37229:6;37225:14;37218:50;37101:174;:::o;37281:122::-;37354:24;37372:5;37354:24;:::i;:::-;37347:5;37344:35;37334:63;;37393:1;37390;37383:12;37334:63;37281:122;:::o;37409:116::-;37479:21;37494:5;37479:21;:::i;:::-;37472:5;37469:32;37459:60;;37515:1;37512;37505:12;37459:60;37409:116;:::o;37531:122::-;37604:24;37622:5;37604:24;:::i;:::-;37597:5;37594:35;37584:63;;37643:1;37640;37633:12;37584:63;37531:122;:::o;37659:120::-;37731:23;37748:5;37731:23;:::i;:::-;37724:5;37721:34;37711:62;;37769:1;37766;37759:12;37711:62;37659:120;:::o;37785:::-;37857:23;37874:5;37857:23;:::i;:::-;37850:5;37847:34;37837:62;;37895:1;37892;37885:12;37837:62;37785:120;:::o;37911:122::-;37984:24;38002:5;37984:24;:::i;:::-;37977:5;37974:35;37964:63;;38023:1;38020;38013:12;37964:63;37911:122;:::o

Swarm Source

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