ETH Price: $3,244.42 (+2.32%)
Gas: 2 Gwei

Token

MofosStudios (MOFOSTUDIOS)
 

Overview

Max Total Supply

1,185 MOFOSTUDIOS

Holders

321

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MOFOSTUDIOS
0xb1C784a6aacFd3e170EB4ddB67f48d619034BAca
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:
MofosStudioNft

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-04-06
*/

// 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/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 MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/mofos/moofosstudio.sol


pragma solidity ^0.8.7;




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

    string public baseApiURI;
    bytes32 private studioRoot;


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

    //whitelisting Settings
    uint16 public maxMintAmountPerWhitelist = 10;


    //Inventory
    uint256 public maxSupply = 2000;

    //Prices
    uint256 public cost = 1 ether;
    uint256 public whitelistCost = 1 ether;

    //Utility
    bool public paused = false;
   

    //mapping
    mapping(address => uint256) public studiosClaimed;

    constructor(string memory _baseUrl) ERC721A("MofosStudios", "MOFOSTUDIOS") {
        baseApiURI = _baseUrl;
    }

    
    function setStudioRoot(bytes32 _root) public onlyOwner {
        studioRoot = _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, studioRoot, _leafNode);
    }

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

    

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

    
    function claimStudios(uint256 _mintAmount, uint256 _amount,  bytes32[] calldata proof) public {
        require(!paused, "Contract is paused");
        require(_mintAmount > 0, "Mint amount should be greater than 0");
         require(
                    _verify(_leaf(msg.sender, _amount), proof),
                    "Invalid proof"
                );

         require(studiosClaimed[msg.sender] < _amount, "You have already Claimed Studios");
         require((studiosClaimed[msg.sender] + _mintAmount) <= _amount, "Mint exceeds claimable value");
            _mintLoop(msg.sender, _mintAmount);
            studiosClaimed[msg.sender] += _mintAmount;
    }
    // public
    function mint(uint256 _mintAmount) public payable {
        if (msg.sender != owner()) {
            uint256 ownerTokenCount = balanceOf(msg.sender);

            require(!paused);
            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 _mintLoop(address _receiver, uint256 _mintAmount) internal {
        _safeMint(_receiver, _mintAmount);
    }

   

    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":"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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"claimStudios","outputs":[],"stateMutability":"nonpayable","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":"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":[],"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":"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":"bytes32","name":"_root","type":"bytes32"}],"name":"setStudioRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setWhitelistingCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"setmaxMintAmountPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"studiosClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePause","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":"whitelistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600a600c60006101000a81548161ffff021916908361ffff160217905550600a600c60026101000a81548161ffff021916908361ffff160217905550600a600c60046101000a81548161ffff021916908361ffff1602179055506107d0600d55670de0b6b3a7640000600e55670de0b6b3a7640000600f556000601060006101000a81548160ff021916908315150217905550348015620000a457600080fd5b5060405162004e7038038062004e708339818101604052810190620000ca9190620003c1565b6040518060400160405280600c81526020017f4d6f666f7353747564696f7300000000000000000000000000000000000000008152506040518060400160405280600b81526020017f4d4f464f53545544494f5300000000000000000000000000000000000000000081525081600290805190602001906200014e92919062000293565b5080600390805190602001906200016792919062000293565b5062000178620001c060201b60201c565b6000819055505050620001a062000194620001c560201b60201c565b620001cd60201b60201c565b80600a9080519060200190620001b892919062000293565b505062000596565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002a190620004a7565b90600052602060002090601f016020900481019282620002c5576000855562000311565b82601f10620002e057805160ff191683800117855562000311565b8280016001018555821562000311579182015b8281111562000310578251825591602001919060010190620002f3565b5b50905062000320919062000324565b5090565b5b808211156200033f57600081600090555060010162000325565b5090565b60006200035a62000354846200043b565b62000412565b90508281526020810184848401111562000379576200037862000576565b5b6200038684828562000471565b509392505050565b600082601f830112620003a657620003a562000571565b5b8151620003b884826020860162000343565b91505092915050565b600060208284031215620003da57620003d962000580565b5b600082015167ffffffffffffffff811115620003fb57620003fa6200057b565b5b62000409848285016200038e565b91505092915050565b60006200041e62000431565b90506200042c8282620004dd565b919050565b6000604051905090565b600067ffffffffffffffff82111562000459576200045862000542565b5b620004648262000585565b9050602081019050919050565b60005b838110156200049157808201518184015260208101905062000474565b83811115620004a1576000848401525b50505050565b60006002820490506001821680620004c057607f821691505b60208210811415620004d757620004d662000513565b5b50919050565b620004e88262000585565b810181811067ffffffffffffffff821117156200050a576200050962000542565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6148ca80620005a66000396000f3fe6080604052600436106102465760003560e01c80638da5cb5b11610139578063cef11729116100b6578063dfc33dd11161007a578063dfc33dd114610838578063e7b99ec714610861578063e97800cb1461088c578063e985e9c5146108b5578063ea444622146108f2578063f2fde38b1461091b57610246565b8063cef1172914610741578063cfea7f441461076a578063d4167ef0146107a7578063d5abeb01146107d0578063dc33e681146107fb57610246565b8063bbb89744116100fd578063bbb897441461066e578063bc951b9114610699578063c4ae3168146106c4578063c87b56dd146106db578063cbce4c971461071857610246565b80638da5cb5b146105aa57806395d89b41146105d5578063a0712d6814610600578063a22cb4651461061c578063b88d4fde1461064557610246565b806341827f13116101c75780636352211e1161018b5780636352211e146104c75780636f8b44b01461050457806370a082311461052d578063715018a61461056a578063729ad39e1461058157610246565b806341827f13146103f657806342842e0e1461042157806344a0d68a1461044a57806355f804b3146104735780635c975abb1461049c57610246565b806318160ddd1161020e57806318160ddd1461034457806321389c761461036f57806323b872dd146103985780632cefffa7146103c15780633ccfd60b146103ec57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806313faede614610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613969565b610944565b60405161027f9190613e7a565b60405180910390f35b34801561029457600080fd5b5061029d610a26565b6040516102aa9190613e95565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613a39565b610ab8565b6040516102e79190613e13565b60405180910390f35b3480156102fc57600080fd5b50610317600480360381019061031291906138b3565b610b34565b005b34801561032557600080fd5b5061032e610c3f565b60405161033b9190614052565b60405180910390f35b34801561035057600080fd5b50610359610c45565b6040516103669190614052565b60405180910390f35b34801561037b57600080fd5b506103966004803603810190610391919061393c565b610c5c565b005b3480156103a457600080fd5b506103bf60048036038101906103ba919061379d565b610ce2565b005b3480156103cd57600080fd5b506103d6610cf2565b6040516103e39190614037565b60405180910390f35b6103f4610d06565b005b34801561040257600080fd5b5061040b610f67565b6040516104189190613e95565b60405180910390f35b34801561042d57600080fd5b506104486004803603810190610443919061379d565b610ff5565b005b34801561045657600080fd5b50610471600480360381019061046c9190613a39565b611015565b005b34801561047f57600080fd5b5061049a600480360381019061049591906139c3565b61109b565b005b3480156104a857600080fd5b506104b1611131565b6040516104be9190613e7a565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e99190613a39565b611144565b6040516104fb9190613e13565b60405180910390f35b34801561051057600080fd5b5061052b60048036038101906105269190613a39565b61115a565b005b34801561053957600080fd5b50610554600480360381019061054f9190613730565b6111e0565b6040516105619190614052565b60405180910390f35b34801561057657600080fd5b5061057f6112b0565b005b34801561058d57600080fd5b506105a860048036038101906105a391906138f3565b611338565b005b3480156105b657600080fd5b506105bf611402565b6040516105cc9190613e13565b60405180910390f35b3480156105e157600080fd5b506105ea61142c565b6040516105f79190613e95565b60405180910390f35b61061a60048036038101906106159190613a39565b6114be565b005b34801561062857600080fd5b50610643600480360381019061063e9190613873565b6116d1565b005b34801561065157600080fd5b5061066c600480360381019061066791906137f0565b611849565b005b34801561067a57600080fd5b506106836118c5565b6040516106909190614037565b60405180910390f35b3480156106a557600080fd5b506106ae6118d9565b6040516106bb9190614037565b60405180910390f35b3480156106d057600080fd5b506106d96118ed565b005b3480156106e757600080fd5b5061070260048036038101906106fd9190613a39565b611995565b60405161070f9190613e95565b60405180910390f35b34801561072457600080fd5b5061073f600480360381019061073a91906138b3565b611a3c565b005b34801561074d57600080fd5b5061076860048036038101906107639190613a0c565b611ac6565b005b34801561077657600080fd5b50610791600480360381019061078c9190613730565b611b62565b60405161079e9190614052565b60405180910390f35b3480156107b357600080fd5b506107ce60048036038101906107c99190613a66565b611b7a565b005b3480156107dc57600080fd5b506107e5611e14565b6040516107f29190614052565b60405180910390f35b34801561080757600080fd5b50610822600480360381019061081d9190613730565b611e1a565b60405161082f9190614052565b60405180910390f35b34801561084457600080fd5b5061085f600480360381019061085a9190613a39565b611e2c565b005b34801561086d57600080fd5b50610876611eb2565b6040516108839190614052565b60405180910390f35b34801561089857600080fd5b506108b360048036038101906108ae9190613a0c565b611eb8565b005b3480156108c157600080fd5b506108dc60048036038101906108d7919061375d565b611f54565b6040516108e99190613e7a565b60405180910390f35b3480156108fe57600080fd5b5061091960048036038101906109149190613a0c565b611fe8565b005b34801561092757600080fd5b50610942600480360381019061093d9190613730565b612084565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a0f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a1f5750610a1e8261217c565b5b9050919050565b606060028054610a3590614351565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6190614351565b8015610aae5780601f10610a8357610100808354040283529160200191610aae565b820191906000526020600020905b815481529060010190602001808311610a9157829003601f168201915b5050505050905090565b6000610ac3826121e6565b610af9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b3f82611144565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bc6612234565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bf85750610bf681610bf1612234565b611f54565b155b15610c2f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c3a83838361223c565b505050565b600e5481565b6000610c4f6122ee565b6001546000540303905090565b610c64612234565b73ffffffffffffffffffffffffffffffffffffffff16610c82611402565b73ffffffffffffffffffffffffffffffffffffffff1614610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf90613f77565b60405180910390fd5b80600b8190555050565b610ced8383836122f3565b505050565b600c60049054906101000a900461ffff1681565b610d0e612234565b73ffffffffffffffffffffffffffffffffffffffff16610d2c611402565b73ffffffffffffffffffffffffffffffffffffffff1614610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7990613f77565b60405180910390fd5b6000479050600060c8600983610d9891906141f5565b610da291906141c4565b9050600060c8601484610db591906141f5565b610dbf91906141c4565b905060007316c7fbd3d3f4d212624ba005d25b4e7bcd1a65c773ffffffffffffffffffffffffffffffffffffffff1683604051610dfb90613dfe565b60006040518083038185875af1925050503d8060008114610e38576040519150601f19603f3d011682016040523d82523d6000602084013e610e3d565b606091505b5050905080610e4b57600080fd5b600073f226e4a2779a0a2850dcbae91130fd285a6343bc73ffffffffffffffffffffffffffffffffffffffff1683604051610e8590613dfe565b60006040518083038185875af1925050503d8060008114610ec2576040519150601f19603f3d011682016040523d82523d6000602084013e610ec7565b606091505b5050905080610ed557600080fd5b600073097eaa98ff7386164ccb612d7de5ddbf5651ea1773ffffffffffffffffffffffffffffffffffffffff1647604051610f0f90613dfe565b60006040518083038185875af1925050503d8060008114610f4c576040519150601f19603f3d011682016040523d82523d6000602084013e610f51565b606091505b5050905080610f5f57600080fd5b505050505050565b600a8054610f7490614351565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa090614351565b8015610fed5780601f10610fc257610100808354040283529160200191610fed565b820191906000526020600020905b815481529060010190602001808311610fd057829003601f168201915b505050505081565b61101083838360405180602001604052806000815250611849565b505050565b61101d612234565b73ffffffffffffffffffffffffffffffffffffffff1661103b611402565b73ffffffffffffffffffffffffffffffffffffffff1614611091576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108890613f77565b60405180910390fd5b80600e8190555050565b6110a3612234565b73ffffffffffffffffffffffffffffffffffffffff166110c1611402565b73ffffffffffffffffffffffffffffffffffffffff1614611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e90613f77565b60405180910390fd5b80600a908051906020019061112d9291906133e3565b5050565b601060009054906101000a900460ff1681565b600061114f826127a9565b600001519050919050565b611162612234565b73ffffffffffffffffffffffffffffffffffffffff16611180611402565b73ffffffffffffffffffffffffffffffffffffffff16146111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd90613f77565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611248576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6112b8612234565b73ffffffffffffffffffffffffffffffffffffffff166112d6611402565b73ffffffffffffffffffffffffffffffffffffffff161461132c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132390613f77565b60405180910390fd5b6113366000612a38565b565b611340612234565b73ffffffffffffffffffffffffffffffffffffffff1661135e611402565b73ffffffffffffffffffffffffffffffffffffffff16146113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab90613f77565b60405180910390fd5b60005b81518110156113fe5760008282815181106113d5576113d46144e9565b5b602002602001015190506113ea816001612afe565b5080806113f6906143b4565b9150506113b7565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461143b90614351565b80601f016020809104026020016040519081016040528092919081815260200182805461146790614351565b80156114b45780601f10611489576101008083540402835291602001916114b4565b820191906000526020600020905b81548152906001019060200180831161149757829003601f168201915b5050505050905090565b6114c6611402565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116c4576000611503336111e0565b9050601060009054906101000a900460ff161561151f57600080fd5b60008211611562576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155990613fb7565b60405180910390fd5b600c60009054906101000a900461ffff1661ffff168211156115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b090613f57565b60405180910390fd5b600d54826115c5610c45565b6115cf919061416e565b1115611610576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160790613ed7565b60405180910390fd5b600c60029054906101000a900461ffff1661ffff168282611631919061416e565b1115611672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166990614017565b60405180910390fd5b81600e5461168091906141f5565b3410156116c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b990613f17565b60405180910390fd5b505b6116ce3382612afe565b50565b6116d9612234565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561173e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061174b612234565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117f8612234565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161183d9190613e7a565b60405180910390a35050565b6118548484846122f3565b6118738373ffffffffffffffffffffffffffffffffffffffff16612b0c565b8015611888575061188684848484612b2f565b155b156118bf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c60009054906101000a900461ffff1681565b600c60029054906101000a900461ffff1681565b6118f5612234565b73ffffffffffffffffffffffffffffffffffffffff16611913611402565b73ffffffffffffffffffffffffffffffffffffffff1614611969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196090613f77565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b60606119a0826121e6565b6119df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d690613f97565b60405180910390fd5b60006119e9612c8f565b90506000815111611a095760405180602001604052806000815250611a34565b80611a1384612d21565b604051602001611a24929190613dda565b6040516020818303038152906040525b915050919050565b611a44612234565b73ffffffffffffffffffffffffffffffffffffffff16611a62611402565b73ffffffffffffffffffffffffffffffffffffffff1614611ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaf90613f77565b60405180910390fd5b611ac28282612afe565b5050565b611ace612234565b73ffffffffffffffffffffffffffffffffffffffff16611aec611402565b73ffffffffffffffffffffffffffffffffffffffff1614611b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3990613f77565b60405180910390fd5b80600c60026101000a81548161ffff021916908361ffff16021790555050565b60116020528060005260406000206000915090505481565b601060009054906101000a900460ff1615611bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc190613ff7565b60405180910390fd5b60008411611c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0490613fb7565b60405180910390fd5b611c61611c1a3385612e82565b838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612eb5565b611ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9790613fd7565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1890613f37565b60405180910390fd5b8284601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d6d919061416e565b1115611dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da590613eb7565b60405180910390fd5b611db83385612afe565b83601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e07919061416e565b9250508190555050505050565b600d5481565b6000611e2582612ecc565b9050919050565b611e34612234565b73ffffffffffffffffffffffffffffffffffffffff16611e52611402565b73ffffffffffffffffffffffffffffffffffffffff1614611ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9f90613f77565b60405180910390fd5b80600f8190555050565b600f5481565b611ec0612234565b73ffffffffffffffffffffffffffffffffffffffff16611ede611402565b73ffffffffffffffffffffffffffffffffffffffff1614611f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2b90613f77565b60405180910390fd5b80600c60006101000a81548161ffff021916908361ffff16021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ff0612234565b73ffffffffffffffffffffffffffffffffffffffff1661200e611402565b73ffffffffffffffffffffffffffffffffffffffff1614612064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205b90613f77565b60405180910390fd5b80600c60046101000a81548161ffff021916908361ffff16021790555050565b61208c612234565b73ffffffffffffffffffffffffffffffffffffffff166120aa611402565b73ffffffffffffffffffffffffffffffffffffffff1614612100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f790613f77565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216790613ef7565b60405180910390fd5b61217981612a38565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816121f16122ee565b11158015612200575060005482105b801561222d575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006122fe826127a9565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612369576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661238a612234565b73ffffffffffffffffffffffffffffffffffffffff1614806123b957506123b8856123b3612234565b611f54565b5b806123fe57506123c7612234565b73ffffffffffffffffffffffffffffffffffffffff166123e684610ab8565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612437576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561249e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124ab8585856001612f36565b6124b76000848761223c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561273757600054821461273657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127a28585856001612f3c565b5050505050565b6127b1613469565b6000829050806127bf6122ee565b111580156127ce575060005481105b15612a01576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516129ff57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128e3578092505050612a33565b5b6001156129fe57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129f9578092505050612a33565b6128e4565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612b088282612f42565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b55612234565b8786866040518563ffffffff1660e01b8152600401612b779493929190613e2e565b602060405180830381600087803b158015612b9157600080fd5b505af1925050508015612bc257506040513d601f19601f82011682018060405250810190612bbf9190613996565b60015b612c3c573d8060008114612bf2576040519150601f19603f3d011682016040523d82523d6000602084013e612bf7565b606091505b50600081511415612c34576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612c9e90614351565b80601f0160208091040260200160405190810160405280929190818152602001828054612cca90614351565b8015612d175780601f10612cec57610100808354040283529160200191612d17565b820191906000526020600020905b815481529060010190602001808311612cfa57829003601f168201915b5050505050905090565b60606000821415612d69576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e7d565b600082905060005b60008214612d9b578080612d84906143b4565b915050600a82612d9491906141c4565b9150612d71565b60008167ffffffffffffffff811115612db757612db6614518565b5b6040519080825280601f01601f191660200182016040528015612de95781602001600182028036833780820191505090505b5090505b60008514612e7657600182612e02919061424f565b9150600a85612e11919061442b565b6030612e1d919061416e565b60f81b818381518110612e3357612e326144e9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e6f91906141c4565b9450612ded565b8093505050505b919050565b60008282604051602001612e97929190613dae565b60405160208183030381529060405280519060200120905092915050565b6000612ec482600b5485612f60565b905092915050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b612f5c828260405180602001604052806000815250612f77565b5050565b600082612f6d8584612f89565b1490509392505050565b612f848383836001612ffe565b505050565b60008082905060005b8451811015612ff3576000858281518110612fb057612faf6144e9565b5b60200260200101519050808311612fd257612fcb83826133cc565b9250612fdf565b612fdc81846133cc565b92505b508080612feb906143b4565b915050612f92565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561306b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156130a6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130b36000868387612f36565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561327d575061327c8773ffffffffffffffffffffffffffffffffffffffff16612b0c565b5b15613343575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132f26000888480600101955088612b2f565b613328576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561328357826000541461333e57600080fd5b6133af565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613344575b8160008190555050506133c56000868387612f3c565b5050505050565b600082600052816020526040600020905092915050565b8280546133ef90614351565b90600052602060002090601f0160209004810192826134115760008555613458565b82601f1061342a57805160ff1916838001178555613458565b82800160010185558215613458579182015b8281111561345757825182559160200191906001019061343c565b5b50905061346591906134ac565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156134c55760008160009055506001016134ad565b5090565b60006134dc6134d784614092565b61406d565b905080838252602082019050828560208602820111156134ff576134fe614551565b5b60005b8581101561352f578161351588826135bd565b845260208401935060208301925050600181019050613502565b5050509392505050565b600061354c613547846140be565b61406d565b90508281526020810184848401111561356857613567614556565b5b61357384828561430f565b509392505050565b600061358e613589846140ef565b61406d565b9050828152602081018484840111156135aa576135a9614556565b5b6135b584828561430f565b509392505050565b6000813590506135cc8161480a565b92915050565b600082601f8301126135e7576135e661454c565b5b81356135f78482602086016134c9565b91505092915050565b60008083601f8401126136165761361561454c565b5b8235905067ffffffffffffffff81111561363357613632614547565b5b60208301915083602082028301111561364f5761364e614551565b5b9250929050565b60008135905061366581614821565b92915050565b60008135905061367a81614838565b92915050565b60008135905061368f8161484f565b92915050565b6000815190506136a48161484f565b92915050565b600082601f8301126136bf576136be61454c565b5b81356136cf848260208601613539565b91505092915050565b600082601f8301126136ed576136ec61454c565b5b81356136fd84826020860161357b565b91505092915050565b60008135905061371581614866565b92915050565b60008135905061372a8161487d565b92915050565b60006020828403121561374657613745614560565b5b6000613754848285016135bd565b91505092915050565b6000806040838503121561377457613773614560565b5b6000613782858286016135bd565b9250506020613793858286016135bd565b9150509250929050565b6000806000606084860312156137b6576137b5614560565b5b60006137c4868287016135bd565b93505060206137d5868287016135bd565b92505060406137e68682870161371b565b9150509250925092565b6000806000806080858703121561380a57613809614560565b5b6000613818878288016135bd565b9450506020613829878288016135bd565b935050604061383a8782880161371b565b925050606085013567ffffffffffffffff81111561385b5761385a61455b565b5b613867878288016136aa565b91505092959194509250565b6000806040838503121561388a57613889614560565b5b6000613898858286016135bd565b92505060206138a985828601613656565b9150509250929050565b600080604083850312156138ca576138c9614560565b5b60006138d8858286016135bd565b92505060206138e98582860161371b565b9150509250929050565b60006020828403121561390957613908614560565b5b600082013567ffffffffffffffff8111156139275761392661455b565b5b613933848285016135d2565b91505092915050565b60006020828403121561395257613951614560565b5b60006139608482850161366b565b91505092915050565b60006020828403121561397f5761397e614560565b5b600061398d84828501613680565b91505092915050565b6000602082840312156139ac576139ab614560565b5b60006139ba84828501613695565b91505092915050565b6000602082840312156139d9576139d8614560565b5b600082013567ffffffffffffffff8111156139f7576139f661455b565b5b613a03848285016136d8565b91505092915050565b600060208284031215613a2257613a21614560565b5b6000613a3084828501613706565b91505092915050565b600060208284031215613a4f57613a4e614560565b5b6000613a5d8482850161371b565b91505092915050565b60008060008060608587031215613a8057613a7f614560565b5b6000613a8e8782880161371b565b9450506020613a9f8782880161371b565b935050604085013567ffffffffffffffff811115613ac057613abf61455b565b5b613acc87828801613600565b925092505092959194509250565b613ae381614283565b82525050565b613afa613af582614283565b6143fd565b82525050565b613b0981614295565b82525050565b6000613b1a82614120565b613b248185614136565b9350613b3481856020860161431e565b613b3d81614565565b840191505092915050565b6000613b538261412b565b613b5d8185614152565b9350613b6d81856020860161431e565b613b7681614565565b840191505092915050565b6000613b8c8261412b565b613b968185614163565b9350613ba681856020860161431e565b80840191505092915050565b6000613bbf601c83614152565b9150613bca82614583565b602082019050919050565b6000613be2601283614152565b9150613bed826145ac565b602082019050919050565b6000613c05602683614152565b9150613c10826145d5565b604082019050919050565b6000613c28601083614152565b9150613c3382614624565b602082019050919050565b6000613c4b602083614152565b9150613c568261464d565b602082019050919050565b6000613c6e602783614152565b9150613c7982614676565b604082019050919050565b6000613c91602083614152565b9150613c9c826146c5565b602082019050919050565b6000613cb4602f83614152565b9150613cbf826146ee565b604082019050919050565b6000613cd7600083614147565b9150613ce28261473d565b600082019050919050565b6000613cfa602483614152565b9150613d0582614740565b604082019050919050565b6000613d1d600d83614152565b9150613d288261478f565b602082019050919050565b6000613d40601283614152565b9150613d4b826147b8565b602082019050919050565b6000613d63601883614152565b9150613d6e826147e1565b602082019050919050565b613d82816142d7565b82525050565b613d9181614305565b82525050565b613da8613da382614305565b614421565b82525050565b6000613dba8285613ae9565b601482019150613dca8284613d97565b6020820191508190509392505050565b6000613de68285613b81565b9150613df28284613b81565b91508190509392505050565b6000613e0982613cca565b9150819050919050565b6000602082019050613e286000830184613ada565b92915050565b6000608082019050613e436000830187613ada565b613e506020830186613ada565b613e5d6040830185613d88565b8181036060830152613e6f8184613b0f565b905095945050505050565b6000602082019050613e8f6000830184613b00565b92915050565b60006020820190508181036000830152613eaf8184613b48565b905092915050565b60006020820190508181036000830152613ed081613bb2565b9050919050565b60006020820190508181036000830152613ef081613bd5565b9050919050565b60006020820190508181036000830152613f1081613bf8565b9050919050565b60006020820190508181036000830152613f3081613c1b565b9050919050565b60006020820190508181036000830152613f5081613c3e565b9050919050565b60006020820190508181036000830152613f7081613c61565b9050919050565b60006020820190508181036000830152613f9081613c84565b9050919050565b60006020820190508181036000830152613fb081613ca7565b9050919050565b60006020820190508181036000830152613fd081613ced565b9050919050565b60006020820190508181036000830152613ff081613d10565b9050919050565b6000602082019050818103600083015261401081613d33565b9050919050565b6000602082019050818103600083015261403081613d56565b9050919050565b600060208201905061404c6000830184613d79565b92915050565b60006020820190506140676000830184613d88565b92915050565b6000614077614088565b90506140838282614383565b919050565b6000604051905090565b600067ffffffffffffffff8211156140ad576140ac614518565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156140d9576140d8614518565b5b6140e282614565565b9050602081019050919050565b600067ffffffffffffffff82111561410a57614109614518565b5b61411382614565565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061417982614305565b915061418483614305565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141b9576141b861445c565b5b828201905092915050565b60006141cf82614305565b91506141da83614305565b9250826141ea576141e961448b565b5b828204905092915050565b600061420082614305565b915061420b83614305565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142445761424361445c565b5b828202905092915050565b600061425a82614305565b915061426583614305565b9250828210156142785761427761445c565b5b828203905092915050565b600061428e826142e5565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561433c578082015181840152602081019050614321565b8381111561434b576000848401525b50505050565b6000600282049050600182168061436957607f821691505b6020821081141561437d5761437c6144ba565b5b50919050565b61438c82614565565b810181811067ffffffffffffffff821117156143ab576143aa614518565b5b80604052505050565b60006143bf82614305565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143f2576143f161445c565b5b600182019050919050565b60006144088261440f565b9050919050565b600061441a82614576565b9050919050565b6000819050919050565b600061443682614305565b915061444183614305565b9250826144515761445061448b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4d696e74206578636565647320636c61696d61626c652076616c756500000000600082015250565b7f45786365656473204d617820537570706c790000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e7375666669656e742066756e647300000000000000000000000000000000600082015250565b7f596f75206861766520616c726561647920436c61696d65642053747564696f73600082015250565b7f536f72727920796f752063616e74206d696e74207468697320616d6f756e742060008201527f6174206f6e636500000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d696e7420616d6f756e742073686f756c64206265206772656174657220746860008201527f616e203000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f536f72727920796f752063616e74206d696e74206d6f72650000000000000000600082015250565b61481381614283565b811461481e57600080fd5b50565b61482a81614295565b811461483557600080fd5b50565b614841816142a1565b811461484c57600080fd5b50565b614858816142ab565b811461486357600080fd5b50565b61486f816142d7565b811461487a57600080fd5b50565b61488681614305565b811461489157600080fd5b5056fea26469706673582212202a64076e799d6110d1e3489f6df232649efd513ed63f7ef00a63c0d05b51966964736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004568747470733a2f2f75732d63656e7472616c312d6d6f666f732d36396136322e636c6f756466756e6374696f6e732e6e65742f6170702f73747564696f732f746f6b656e2f000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102465760003560e01c80638da5cb5b11610139578063cef11729116100b6578063dfc33dd11161007a578063dfc33dd114610838578063e7b99ec714610861578063e97800cb1461088c578063e985e9c5146108b5578063ea444622146108f2578063f2fde38b1461091b57610246565b8063cef1172914610741578063cfea7f441461076a578063d4167ef0146107a7578063d5abeb01146107d0578063dc33e681146107fb57610246565b8063bbb89744116100fd578063bbb897441461066e578063bc951b9114610699578063c4ae3168146106c4578063c87b56dd146106db578063cbce4c971461071857610246565b80638da5cb5b146105aa57806395d89b41146105d5578063a0712d6814610600578063a22cb4651461061c578063b88d4fde1461064557610246565b806341827f13116101c75780636352211e1161018b5780636352211e146104c75780636f8b44b01461050457806370a082311461052d578063715018a61461056a578063729ad39e1461058157610246565b806341827f13146103f657806342842e0e1461042157806344a0d68a1461044a57806355f804b3146104735780635c975abb1461049c57610246565b806318160ddd1161020e57806318160ddd1461034457806321389c761461036f57806323b872dd146103985780632cefffa7146103c15780633ccfd60b146103ec57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806313faede614610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613969565b610944565b60405161027f9190613e7a565b60405180910390f35b34801561029457600080fd5b5061029d610a26565b6040516102aa9190613e95565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613a39565b610ab8565b6040516102e79190613e13565b60405180910390f35b3480156102fc57600080fd5b50610317600480360381019061031291906138b3565b610b34565b005b34801561032557600080fd5b5061032e610c3f565b60405161033b9190614052565b60405180910390f35b34801561035057600080fd5b50610359610c45565b6040516103669190614052565b60405180910390f35b34801561037b57600080fd5b506103966004803603810190610391919061393c565b610c5c565b005b3480156103a457600080fd5b506103bf60048036038101906103ba919061379d565b610ce2565b005b3480156103cd57600080fd5b506103d6610cf2565b6040516103e39190614037565b60405180910390f35b6103f4610d06565b005b34801561040257600080fd5b5061040b610f67565b6040516104189190613e95565b60405180910390f35b34801561042d57600080fd5b506104486004803603810190610443919061379d565b610ff5565b005b34801561045657600080fd5b50610471600480360381019061046c9190613a39565b611015565b005b34801561047f57600080fd5b5061049a600480360381019061049591906139c3565b61109b565b005b3480156104a857600080fd5b506104b1611131565b6040516104be9190613e7a565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e99190613a39565b611144565b6040516104fb9190613e13565b60405180910390f35b34801561051057600080fd5b5061052b60048036038101906105269190613a39565b61115a565b005b34801561053957600080fd5b50610554600480360381019061054f9190613730565b6111e0565b6040516105619190614052565b60405180910390f35b34801561057657600080fd5b5061057f6112b0565b005b34801561058d57600080fd5b506105a860048036038101906105a391906138f3565b611338565b005b3480156105b657600080fd5b506105bf611402565b6040516105cc9190613e13565b60405180910390f35b3480156105e157600080fd5b506105ea61142c565b6040516105f79190613e95565b60405180910390f35b61061a60048036038101906106159190613a39565b6114be565b005b34801561062857600080fd5b50610643600480360381019061063e9190613873565b6116d1565b005b34801561065157600080fd5b5061066c600480360381019061066791906137f0565b611849565b005b34801561067a57600080fd5b506106836118c5565b6040516106909190614037565b60405180910390f35b3480156106a557600080fd5b506106ae6118d9565b6040516106bb9190614037565b60405180910390f35b3480156106d057600080fd5b506106d96118ed565b005b3480156106e757600080fd5b5061070260048036038101906106fd9190613a39565b611995565b60405161070f9190613e95565b60405180910390f35b34801561072457600080fd5b5061073f600480360381019061073a91906138b3565b611a3c565b005b34801561074d57600080fd5b5061076860048036038101906107639190613a0c565b611ac6565b005b34801561077657600080fd5b50610791600480360381019061078c9190613730565b611b62565b60405161079e9190614052565b60405180910390f35b3480156107b357600080fd5b506107ce60048036038101906107c99190613a66565b611b7a565b005b3480156107dc57600080fd5b506107e5611e14565b6040516107f29190614052565b60405180910390f35b34801561080757600080fd5b50610822600480360381019061081d9190613730565b611e1a565b60405161082f9190614052565b60405180910390f35b34801561084457600080fd5b5061085f600480360381019061085a9190613a39565b611e2c565b005b34801561086d57600080fd5b50610876611eb2565b6040516108839190614052565b60405180910390f35b34801561089857600080fd5b506108b360048036038101906108ae9190613a0c565b611eb8565b005b3480156108c157600080fd5b506108dc60048036038101906108d7919061375d565b611f54565b6040516108e99190613e7a565b60405180910390f35b3480156108fe57600080fd5b5061091960048036038101906109149190613a0c565b611fe8565b005b34801561092757600080fd5b50610942600480360381019061093d9190613730565b612084565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a0f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a1f5750610a1e8261217c565b5b9050919050565b606060028054610a3590614351565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6190614351565b8015610aae5780601f10610a8357610100808354040283529160200191610aae565b820191906000526020600020905b815481529060010190602001808311610a9157829003601f168201915b5050505050905090565b6000610ac3826121e6565b610af9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b3f82611144565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bc6612234565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bf85750610bf681610bf1612234565b611f54565b155b15610c2f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c3a83838361223c565b505050565b600e5481565b6000610c4f6122ee565b6001546000540303905090565b610c64612234565b73ffffffffffffffffffffffffffffffffffffffff16610c82611402565b73ffffffffffffffffffffffffffffffffffffffff1614610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf90613f77565b60405180910390fd5b80600b8190555050565b610ced8383836122f3565b505050565b600c60049054906101000a900461ffff1681565b610d0e612234565b73ffffffffffffffffffffffffffffffffffffffff16610d2c611402565b73ffffffffffffffffffffffffffffffffffffffff1614610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7990613f77565b60405180910390fd5b6000479050600060c8600983610d9891906141f5565b610da291906141c4565b9050600060c8601484610db591906141f5565b610dbf91906141c4565b905060007316c7fbd3d3f4d212624ba005d25b4e7bcd1a65c773ffffffffffffffffffffffffffffffffffffffff1683604051610dfb90613dfe565b60006040518083038185875af1925050503d8060008114610e38576040519150601f19603f3d011682016040523d82523d6000602084013e610e3d565b606091505b5050905080610e4b57600080fd5b600073f226e4a2779a0a2850dcbae91130fd285a6343bc73ffffffffffffffffffffffffffffffffffffffff1683604051610e8590613dfe565b60006040518083038185875af1925050503d8060008114610ec2576040519150601f19603f3d011682016040523d82523d6000602084013e610ec7565b606091505b5050905080610ed557600080fd5b600073097eaa98ff7386164ccb612d7de5ddbf5651ea1773ffffffffffffffffffffffffffffffffffffffff1647604051610f0f90613dfe565b60006040518083038185875af1925050503d8060008114610f4c576040519150601f19603f3d011682016040523d82523d6000602084013e610f51565b606091505b5050905080610f5f57600080fd5b505050505050565b600a8054610f7490614351565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa090614351565b8015610fed5780601f10610fc257610100808354040283529160200191610fed565b820191906000526020600020905b815481529060010190602001808311610fd057829003601f168201915b505050505081565b61101083838360405180602001604052806000815250611849565b505050565b61101d612234565b73ffffffffffffffffffffffffffffffffffffffff1661103b611402565b73ffffffffffffffffffffffffffffffffffffffff1614611091576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108890613f77565b60405180910390fd5b80600e8190555050565b6110a3612234565b73ffffffffffffffffffffffffffffffffffffffff166110c1611402565b73ffffffffffffffffffffffffffffffffffffffff1614611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e90613f77565b60405180910390fd5b80600a908051906020019061112d9291906133e3565b5050565b601060009054906101000a900460ff1681565b600061114f826127a9565b600001519050919050565b611162612234565b73ffffffffffffffffffffffffffffffffffffffff16611180611402565b73ffffffffffffffffffffffffffffffffffffffff16146111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd90613f77565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611248576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6112b8612234565b73ffffffffffffffffffffffffffffffffffffffff166112d6611402565b73ffffffffffffffffffffffffffffffffffffffff161461132c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132390613f77565b60405180910390fd5b6113366000612a38565b565b611340612234565b73ffffffffffffffffffffffffffffffffffffffff1661135e611402565b73ffffffffffffffffffffffffffffffffffffffff16146113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab90613f77565b60405180910390fd5b60005b81518110156113fe5760008282815181106113d5576113d46144e9565b5b602002602001015190506113ea816001612afe565b5080806113f6906143b4565b9150506113b7565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461143b90614351565b80601f016020809104026020016040519081016040528092919081815260200182805461146790614351565b80156114b45780601f10611489576101008083540402835291602001916114b4565b820191906000526020600020905b81548152906001019060200180831161149757829003601f168201915b5050505050905090565b6114c6611402565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116c4576000611503336111e0565b9050601060009054906101000a900460ff161561151f57600080fd5b60008211611562576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155990613fb7565b60405180910390fd5b600c60009054906101000a900461ffff1661ffff168211156115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b090613f57565b60405180910390fd5b600d54826115c5610c45565b6115cf919061416e565b1115611610576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160790613ed7565b60405180910390fd5b600c60029054906101000a900461ffff1661ffff168282611631919061416e565b1115611672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166990614017565b60405180910390fd5b81600e5461168091906141f5565b3410156116c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b990613f17565b60405180910390fd5b505b6116ce3382612afe565b50565b6116d9612234565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561173e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061174b612234565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117f8612234565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161183d9190613e7a565b60405180910390a35050565b6118548484846122f3565b6118738373ffffffffffffffffffffffffffffffffffffffff16612b0c565b8015611888575061188684848484612b2f565b155b156118bf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c60009054906101000a900461ffff1681565b600c60029054906101000a900461ffff1681565b6118f5612234565b73ffffffffffffffffffffffffffffffffffffffff16611913611402565b73ffffffffffffffffffffffffffffffffffffffff1614611969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196090613f77565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b60606119a0826121e6565b6119df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d690613f97565b60405180910390fd5b60006119e9612c8f565b90506000815111611a095760405180602001604052806000815250611a34565b80611a1384612d21565b604051602001611a24929190613dda565b6040516020818303038152906040525b915050919050565b611a44612234565b73ffffffffffffffffffffffffffffffffffffffff16611a62611402565b73ffffffffffffffffffffffffffffffffffffffff1614611ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaf90613f77565b60405180910390fd5b611ac28282612afe565b5050565b611ace612234565b73ffffffffffffffffffffffffffffffffffffffff16611aec611402565b73ffffffffffffffffffffffffffffffffffffffff1614611b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3990613f77565b60405180910390fd5b80600c60026101000a81548161ffff021916908361ffff16021790555050565b60116020528060005260406000206000915090505481565b601060009054906101000a900460ff1615611bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc190613ff7565b60405180910390fd5b60008411611c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0490613fb7565b60405180910390fd5b611c61611c1a3385612e82565b838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612eb5565b611ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9790613fd7565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1890613f37565b60405180910390fd5b8284601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d6d919061416e565b1115611dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da590613eb7565b60405180910390fd5b611db83385612afe565b83601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e07919061416e565b9250508190555050505050565b600d5481565b6000611e2582612ecc565b9050919050565b611e34612234565b73ffffffffffffffffffffffffffffffffffffffff16611e52611402565b73ffffffffffffffffffffffffffffffffffffffff1614611ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9f90613f77565b60405180910390fd5b80600f8190555050565b600f5481565b611ec0612234565b73ffffffffffffffffffffffffffffffffffffffff16611ede611402565b73ffffffffffffffffffffffffffffffffffffffff1614611f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2b90613f77565b60405180910390fd5b80600c60006101000a81548161ffff021916908361ffff16021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ff0612234565b73ffffffffffffffffffffffffffffffffffffffff1661200e611402565b73ffffffffffffffffffffffffffffffffffffffff1614612064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205b90613f77565b60405180910390fd5b80600c60046101000a81548161ffff021916908361ffff16021790555050565b61208c612234565b73ffffffffffffffffffffffffffffffffffffffff166120aa611402565b73ffffffffffffffffffffffffffffffffffffffff1614612100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f790613f77565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216790613ef7565b60405180910390fd5b61217981612a38565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816121f16122ee565b11158015612200575060005482105b801561222d575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006122fe826127a9565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612369576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661238a612234565b73ffffffffffffffffffffffffffffffffffffffff1614806123b957506123b8856123b3612234565b611f54565b5b806123fe57506123c7612234565b73ffffffffffffffffffffffffffffffffffffffff166123e684610ab8565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612437576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561249e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124ab8585856001612f36565b6124b76000848761223c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561273757600054821461273657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127a28585856001612f3c565b5050505050565b6127b1613469565b6000829050806127bf6122ee565b111580156127ce575060005481105b15612a01576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516129ff57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128e3578092505050612a33565b5b6001156129fe57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129f9578092505050612a33565b6128e4565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612b088282612f42565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b55612234565b8786866040518563ffffffff1660e01b8152600401612b779493929190613e2e565b602060405180830381600087803b158015612b9157600080fd5b505af1925050508015612bc257506040513d601f19601f82011682018060405250810190612bbf9190613996565b60015b612c3c573d8060008114612bf2576040519150601f19603f3d011682016040523d82523d6000602084013e612bf7565b606091505b50600081511415612c34576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612c9e90614351565b80601f0160208091040260200160405190810160405280929190818152602001828054612cca90614351565b8015612d175780601f10612cec57610100808354040283529160200191612d17565b820191906000526020600020905b815481529060010190602001808311612cfa57829003601f168201915b5050505050905090565b60606000821415612d69576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e7d565b600082905060005b60008214612d9b578080612d84906143b4565b915050600a82612d9491906141c4565b9150612d71565b60008167ffffffffffffffff811115612db757612db6614518565b5b6040519080825280601f01601f191660200182016040528015612de95781602001600182028036833780820191505090505b5090505b60008514612e7657600182612e02919061424f565b9150600a85612e11919061442b565b6030612e1d919061416e565b60f81b818381518110612e3357612e326144e9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e6f91906141c4565b9450612ded565b8093505050505b919050565b60008282604051602001612e97929190613dae565b60405160208183030381529060405280519060200120905092915050565b6000612ec482600b5485612f60565b905092915050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b612f5c828260405180602001604052806000815250612f77565b5050565b600082612f6d8584612f89565b1490509392505050565b612f848383836001612ffe565b505050565b60008082905060005b8451811015612ff3576000858281518110612fb057612faf6144e9565b5b60200260200101519050808311612fd257612fcb83826133cc565b9250612fdf565b612fdc81846133cc565b92505b508080612feb906143b4565b915050612f92565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561306b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156130a6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130b36000868387612f36565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561327d575061327c8773ffffffffffffffffffffffffffffffffffffffff16612b0c565b5b15613343575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132f26000888480600101955088612b2f565b613328576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561328357826000541461333e57600080fd5b6133af565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613344575b8160008190555050506133c56000868387612f3c565b5050505050565b600082600052816020526040600020905092915050565b8280546133ef90614351565b90600052602060002090601f0160209004810192826134115760008555613458565b82601f1061342a57805160ff1916838001178555613458565b82800160010185558215613458579182015b8281111561345757825182559160200191906001019061343c565b5b50905061346591906134ac565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156134c55760008160009055506001016134ad565b5090565b60006134dc6134d784614092565b61406d565b905080838252602082019050828560208602820111156134ff576134fe614551565b5b60005b8581101561352f578161351588826135bd565b845260208401935060208301925050600181019050613502565b5050509392505050565b600061354c613547846140be565b61406d565b90508281526020810184848401111561356857613567614556565b5b61357384828561430f565b509392505050565b600061358e613589846140ef565b61406d565b9050828152602081018484840111156135aa576135a9614556565b5b6135b584828561430f565b509392505050565b6000813590506135cc8161480a565b92915050565b600082601f8301126135e7576135e661454c565b5b81356135f78482602086016134c9565b91505092915050565b60008083601f8401126136165761361561454c565b5b8235905067ffffffffffffffff81111561363357613632614547565b5b60208301915083602082028301111561364f5761364e614551565b5b9250929050565b60008135905061366581614821565b92915050565b60008135905061367a81614838565b92915050565b60008135905061368f8161484f565b92915050565b6000815190506136a48161484f565b92915050565b600082601f8301126136bf576136be61454c565b5b81356136cf848260208601613539565b91505092915050565b600082601f8301126136ed576136ec61454c565b5b81356136fd84826020860161357b565b91505092915050565b60008135905061371581614866565b92915050565b60008135905061372a8161487d565b92915050565b60006020828403121561374657613745614560565b5b6000613754848285016135bd565b91505092915050565b6000806040838503121561377457613773614560565b5b6000613782858286016135bd565b9250506020613793858286016135bd565b9150509250929050565b6000806000606084860312156137b6576137b5614560565b5b60006137c4868287016135bd565b93505060206137d5868287016135bd565b92505060406137e68682870161371b565b9150509250925092565b6000806000806080858703121561380a57613809614560565b5b6000613818878288016135bd565b9450506020613829878288016135bd565b935050604061383a8782880161371b565b925050606085013567ffffffffffffffff81111561385b5761385a61455b565b5b613867878288016136aa565b91505092959194509250565b6000806040838503121561388a57613889614560565b5b6000613898858286016135bd565b92505060206138a985828601613656565b9150509250929050565b600080604083850312156138ca576138c9614560565b5b60006138d8858286016135bd565b92505060206138e98582860161371b565b9150509250929050565b60006020828403121561390957613908614560565b5b600082013567ffffffffffffffff8111156139275761392661455b565b5b613933848285016135d2565b91505092915050565b60006020828403121561395257613951614560565b5b60006139608482850161366b565b91505092915050565b60006020828403121561397f5761397e614560565b5b600061398d84828501613680565b91505092915050565b6000602082840312156139ac576139ab614560565b5b60006139ba84828501613695565b91505092915050565b6000602082840312156139d9576139d8614560565b5b600082013567ffffffffffffffff8111156139f7576139f661455b565b5b613a03848285016136d8565b91505092915050565b600060208284031215613a2257613a21614560565b5b6000613a3084828501613706565b91505092915050565b600060208284031215613a4f57613a4e614560565b5b6000613a5d8482850161371b565b91505092915050565b60008060008060608587031215613a8057613a7f614560565b5b6000613a8e8782880161371b565b9450506020613a9f8782880161371b565b935050604085013567ffffffffffffffff811115613ac057613abf61455b565b5b613acc87828801613600565b925092505092959194509250565b613ae381614283565b82525050565b613afa613af582614283565b6143fd565b82525050565b613b0981614295565b82525050565b6000613b1a82614120565b613b248185614136565b9350613b3481856020860161431e565b613b3d81614565565b840191505092915050565b6000613b538261412b565b613b5d8185614152565b9350613b6d81856020860161431e565b613b7681614565565b840191505092915050565b6000613b8c8261412b565b613b968185614163565b9350613ba681856020860161431e565b80840191505092915050565b6000613bbf601c83614152565b9150613bca82614583565b602082019050919050565b6000613be2601283614152565b9150613bed826145ac565b602082019050919050565b6000613c05602683614152565b9150613c10826145d5565b604082019050919050565b6000613c28601083614152565b9150613c3382614624565b602082019050919050565b6000613c4b602083614152565b9150613c568261464d565b602082019050919050565b6000613c6e602783614152565b9150613c7982614676565b604082019050919050565b6000613c91602083614152565b9150613c9c826146c5565b602082019050919050565b6000613cb4602f83614152565b9150613cbf826146ee565b604082019050919050565b6000613cd7600083614147565b9150613ce28261473d565b600082019050919050565b6000613cfa602483614152565b9150613d0582614740565b604082019050919050565b6000613d1d600d83614152565b9150613d288261478f565b602082019050919050565b6000613d40601283614152565b9150613d4b826147b8565b602082019050919050565b6000613d63601883614152565b9150613d6e826147e1565b602082019050919050565b613d82816142d7565b82525050565b613d9181614305565b82525050565b613da8613da382614305565b614421565b82525050565b6000613dba8285613ae9565b601482019150613dca8284613d97565b6020820191508190509392505050565b6000613de68285613b81565b9150613df28284613b81565b91508190509392505050565b6000613e0982613cca565b9150819050919050565b6000602082019050613e286000830184613ada565b92915050565b6000608082019050613e436000830187613ada565b613e506020830186613ada565b613e5d6040830185613d88565b8181036060830152613e6f8184613b0f565b905095945050505050565b6000602082019050613e8f6000830184613b00565b92915050565b60006020820190508181036000830152613eaf8184613b48565b905092915050565b60006020820190508181036000830152613ed081613bb2565b9050919050565b60006020820190508181036000830152613ef081613bd5565b9050919050565b60006020820190508181036000830152613f1081613bf8565b9050919050565b60006020820190508181036000830152613f3081613c1b565b9050919050565b60006020820190508181036000830152613f5081613c3e565b9050919050565b60006020820190508181036000830152613f7081613c61565b9050919050565b60006020820190508181036000830152613f9081613c84565b9050919050565b60006020820190508181036000830152613fb081613ca7565b9050919050565b60006020820190508181036000830152613fd081613ced565b9050919050565b60006020820190508181036000830152613ff081613d10565b9050919050565b6000602082019050818103600083015261401081613d33565b9050919050565b6000602082019050818103600083015261403081613d56565b9050919050565b600060208201905061404c6000830184613d79565b92915050565b60006020820190506140676000830184613d88565b92915050565b6000614077614088565b90506140838282614383565b919050565b6000604051905090565b600067ffffffffffffffff8211156140ad576140ac614518565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156140d9576140d8614518565b5b6140e282614565565b9050602081019050919050565b600067ffffffffffffffff82111561410a57614109614518565b5b61411382614565565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061417982614305565b915061418483614305565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141b9576141b861445c565b5b828201905092915050565b60006141cf82614305565b91506141da83614305565b9250826141ea576141e961448b565b5b828204905092915050565b600061420082614305565b915061420b83614305565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142445761424361445c565b5b828202905092915050565b600061425a82614305565b915061426583614305565b9250828210156142785761427761445c565b5b828203905092915050565b600061428e826142e5565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561433c578082015181840152602081019050614321565b8381111561434b576000848401525b50505050565b6000600282049050600182168061436957607f821691505b6020821081141561437d5761437c6144ba565b5b50919050565b61438c82614565565b810181811067ffffffffffffffff821117156143ab576143aa614518565b5b80604052505050565b60006143bf82614305565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143f2576143f161445c565b5b600182019050919050565b60006144088261440f565b9050919050565b600061441a82614576565b9050919050565b6000819050919050565b600061443682614305565b915061444183614305565b9250826144515761445061448b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4d696e74206578636565647320636c61696d61626c652076616c756500000000600082015250565b7f45786365656473204d617820537570706c790000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e7375666669656e742066756e647300000000000000000000000000000000600082015250565b7f596f75206861766520616c726561647920436c61696d65642053747564696f73600082015250565b7f536f72727920796f752063616e74206d696e74207468697320616d6f756e742060008201527f6174206f6e636500000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d696e7420616d6f756e742073686f756c64206265206772656174657220746860008201527f616e203000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f536f72727920796f752063616e74206d696e74206d6f72650000000000000000600082015250565b61481381614283565b811461481e57600080fd5b50565b61482a81614295565b811461483557600080fd5b50565b614841816142a1565b811461484c57600080fd5b50565b614858816142ab565b811461486357600080fd5b50565b61486f816142d7565b811461487a57600080fd5b50565b61488681614305565b811461489157600080fd5b5056fea26469706673582212202a64076e799d6110d1e3489f6df232649efd513ed63f7ef00a63c0d05b51966964736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004568747470733a2f2f75732d63656e7472616c312d6d6f666f732d36396136322e636c6f756466756e6374696f6e732e6e65742f6170702f73747564696f732f746f6b656e2f000000000000000000000000000000000000000000000000000000

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

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000045
Arg [2] : 68747470733a2f2f75732d63656e7472616c312d6d6f666f732d36396136322e
Arg [3] : 636c6f756466756e6374696f6e732e6e65742f6170702f73747564696f732f74
Arg [4] : 6f6b656e2f000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

47226:5831:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29401:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32514:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34017:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33580:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47692:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28650:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48032:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34882:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47566:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52348:706;;;:::i;:::-;;47342:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35123:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51305:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52013:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47790:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32322:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51911:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29770:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7119:103;;;;;;;;;;;;;:::i;:::-;;50449:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6468:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32683:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49466:856;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34293:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35379:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47434:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47487:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52128:75;;;;;;;;;;;;;:::i;:::-;;50810:487;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50330:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51651:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47845:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48772:673;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47638:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48645:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51399:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47728:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51514:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34651:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51778:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7377:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29401:305;29503:4;29555:25;29540:40;;;:11;:40;;;;:105;;;;29612:33;29597:48;;;:11;:48;;;;29540:105;:158;;;;29662:36;29686:11;29662:23;:36::i;:::-;29540:158;29520:178;;29401:305;;;:::o;32514:100::-;32568:13;32601:5;32594:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32514:100;:::o;34017:204::-;34085:7;34110:16;34118:7;34110;:16::i;:::-;34105:64;;34135:34;;;;;;;;;;;;;;34105:64;34189:15;:24;34205:7;34189:24;;;;;;;;;;;;;;;;;;;;;34182:31;;34017:204;;;:::o;33580:371::-;33653:13;33669:24;33685:7;33669:15;:24::i;:::-;33653:40;;33714:5;33708:11;;:2;:11;;;33704:48;;;33728:24;;;;;;;;;;;;;;33704:48;33785:5;33769:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33795:37;33812:5;33819:12;:10;:12::i;:::-;33795:16;:37::i;:::-;33794:38;33769:63;33765:138;;;33856:35;;;;;;;;;;;;;;33765:138;33915:28;33924:2;33928:7;33937:5;33915:8;:28::i;:::-;33642:309;33580:371;;:::o;47692:29::-;;;;:::o;28650:303::-;28694:7;28919:15;:13;:15::i;:::-;28904:12;;28888:13;;:28;:46;28881:53;;28650:303;:::o;48032:92::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48111:5:::1;48098:10;:18;;;;48032:92:::0;:::o;34882:170::-;35016:28;35026:4;35032:2;35036:7;35016:9;:28::i;:::-;34882:170;;;:::o;47566:44::-;;;;;;;;;;;;;:::o;52348:706::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52405:15:::1;52423:21;52405:39;;52457:14;52490:3;52485:1;52475:7;:11;;;;:::i;:::-;52474:19;;;;:::i;:::-;52457:36;;52504:14;52538:3;52532:2;52522:7;:12;;;;:::i;:::-;52521:20;;;;:::i;:::-;52504:37;;52573:17;52618:42;52596:80;;52684:6;52596:99;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52572:123;;;52714:12;52706:21;;;::::0;::::1;;52751:17;52796:42;52774:80;;52862:6;52774:99;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52750:123;;;52892:12;52884:21;;;::::0;::::1;;52919:7;52940:42;52932:56;;52996:21;52932:90;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52918:104;;;53041:2;53033:11;;;::::0;::::1;;52393:661;;;;;;52348:706::o:0;47342:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35123:185::-;35261:39;35278:4;35284:2;35288:7;35261:39;;;;;;;;;;;;:16;:39::i;:::-;35123:185;;;:::o;51305:86::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51375:8:::1;51368:4;:15;;;;51305:86:::0;:::o;52013:107::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52101:11:::1;52088:10;:24;;;;;;;;;;;;:::i;:::-;;52013:107:::0;:::o;47790:26::-;;;;;;;;;;;;;:::o;32322:125::-;32386:7;32413:21;32426:7;32413:12;:21::i;:::-;:26;;;32406:33;;32322:125;;;:::o;51911:94::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51990:7:::1;51978:9;:19;;;;51911:94:::0;:::o;29770:206::-;29834:7;29875:1;29858:19;;:5;:19;;;29854:60;;;29886:28;;;;;;;;;;;;;;29854:60;29940:12;:19;29953:5;29940:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29932:36;;29925:43;;29770: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;50449:234::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50535:9:::1;50530:146;50554:17;:24;50550:1;:28;50530:146;;;50600:10;50613:17;50631:1;50613:20;;;;;;;;:::i;:::-;;;;;;;;50600:33;;50648:16;50658:2;50662:1;50648:9;:16::i;:::-;50585:91;50580:3;;;;;:::i;:::-;;;;50530:146;;;;50449:234:::0;:::o;6468:87::-;6514:7;6541:6;;;;;;;;;;;6534:13;;6468:87;:::o;32683:104::-;32739:13;32772:7;32765:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32683:104;:::o;49466:856::-;49545:7;:5;:7::i;:::-;49531:21;;:10;:21;;;49527:741;;49569:23;49595:21;49605:10;49595:9;:21::i;:::-;49569:47;;49642:6;;;;;;;;;;;49641:7;49633:16;;;;;;49686:1;49672:11;:15;49664:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;49784:27;;;;;;;;;;;49769:42;;:11;:42;;49743:143;;;;;;;;;;;;:::i;:::-;;;;;;;;;49958:9;;49943:11;49927:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;49901:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;50097:22;;;;;;;;;;;50062:57;;50081:11;50063:15;:29;;;;:::i;:::-;50062:57;;50036:143;;;;;;;;;;;;:::i;:::-;;;;;;;;;50224:11;50217:4;;:18;;;;:::i;:::-;50204:9;:31;;50196:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;49554:714;49527:741;50280:34;50290:10;50302:11;50280:9;:34::i;:::-;49466:856;:::o;34293:287::-;34404:12;:10;:12::i;:::-;34392:24;;:8;:24;;;34388:54;;;34425:17;;;;;;;;;;;;;;34388:54;34500:8;34455:18;:32;34474:12;:10;:12::i;:::-;34455:32;;;;;;;;;;;;;;;:42;34488:8;34455:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34553:8;34524:48;;34539:12;:10;:12::i;:::-;34524:48;;;34563:8;34524:48;;;;;;:::i;:::-;;;;;;;;34293:287;;:::o;35379:369::-;35546:28;35556:4;35562:2;35566:7;35546:9;:28::i;:::-;35589:15;:2;:13;;;:15::i;:::-;:76;;;;;35609:56;35640:4;35646:2;35650:7;35659:5;35609:30;:56::i;:::-;35608:57;35589:76;35585:156;;;35689:40;;;;;;;;;;;;;;35585:156;35379:369;;;;:::o;47434:46::-;;;;;;;;;;;;;:::o;47487:41::-;;;;;;;;;;;;;:::o;52128:75::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52189:6:::1;;;;;;;;;;;52188:7;52179:6;;:16;;;;;;;;;;;;;;;;;;52128:75::o:0;50810:487::-;50928:13;50981:16;50989:7;50981;:16::i;:::-;50959:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;51083:28;51114:10;:8;:10::i;:::-;51083:41;;51186:1;51161:14;51155:28;:32;:134;;;;;;;;;;;;;;;;;51231:14;51247:18;:7;:16;:18::i;:::-;51214:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51155:134;51135:154;;;50810:487;;;:::o;50330:111::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50406:27:::1;50416:3;50421:11;50406:9;:27::i;:::-;50330:111:::0;;:::o;51651:119::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51755:7:::1;51730:22;;:32;;;;;;;;;;;;;;;;;;51651:119:::0;:::o;47845:49::-;;;;;;;;;;;;;;;;;:::o;48772:673::-;48886:6;;;;;;;;;;;48885:7;48877:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;48948:1;48934:11;:15;48926:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;49032:42;49040:26;49046:10;49058:7;49040:5;:26::i;:::-;49068:5;;49032:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:7;:42::i;:::-;49002:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;49182:7;49153:14;:26;49168:10;49153:26;;;;;;;;;;;;;;;;:36;49145:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;49292:7;49276:11;49247:14;:26;49262:10;49247:26;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;49246:53;;49238:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;49347:34;49357:10;49369:11;49347:9;:34::i;:::-;49426:11;49396:14;:26;49411:10;49396:26;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;48772:673;;;;:::o;47638:31::-;;;;:::o;48645:113::-;48703:7;48730:20;48744:5;48730:13;:20::i;:::-;48723:27;;48645:113;;;:::o;51399:107::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51490:8:::1;51474:13;:24;;;;51399:107:::0;:::o;47728:38::-;;;;:::o;51514:129::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51628:7:::1;51598:27;;:37;;;;;;;;;;;;;;;;;;51514:129:::0;:::o;34651:164::-;34748:4;34772:18;:25;34791:5;34772:25;;;;;;;;;;;;;;;:35;34798:8;34772:35;;;;;;;;;;;;;;;;;;;;;;;;;34765:42;;34651:164;;;;:::o;51778:125::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51888:7:::1;51860:25;;:35;;;;;;;;;;;;;;;;;;51778:125:::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;19252:157::-;19337:4;19376:25;19361:40;;;:11;:40;;;;19354:47;;19252:157;;;:::o;36003:174::-;36060:4;36103:7;36084:15;:13;:15::i;:::-;:26;;:53;;;;;36124:13;;36114:7;:23;36084:53;:85;;;;;36142:11;:20;36154:7;36142:20;;;;;;;;;;;:27;;;;;;;;;;;;36141:28;36084:85;36077:92;;36003:174;;;:::o;5192:98::-;5245:7;5272:10;5265:17;;5192:98;:::o;44160:196::-;44302:2;44275:15;:24;44291:7;44275:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44340:7;44336:2;44320:28;;44329:5;44320:28;;;;;;;;;;;;44160:196;;;:::o;28424:92::-;28480:7;28424:92;:::o;39103:2130::-;39218:35;39256:21;39269:7;39256:12;:21::i;:::-;39218:59;;39316:4;39294:26;;:13;:18;;;:26;;;39290:67;;39329:28;;;;;;;;;;;;;;39290:67;39370:22;39412:4;39396:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;39433:36;39450:4;39456:12;:10;:12::i;:::-;39433:16;:36::i;:::-;39396:73;:126;;;;39510:12;:10;:12::i;:::-;39486:36;;:20;39498:7;39486:11;:20::i;:::-;:36;;;39396:126;39370:153;;39541:17;39536:66;;39567:35;;;;;;;;;;;;;;39536:66;39631:1;39617:16;;:2;:16;;;39613:52;;;39642:23;;;;;;;;;;;;;;39613:52;39678:43;39700:4;39706:2;39710:7;39719:1;39678:21;:43::i;:::-;39786:35;39803:1;39807:7;39816:4;39786:8;:35::i;:::-;40147:1;40117:12;:18;40130:4;40117:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40191:1;40163:12;:16;40176:2;40163:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40209:31;40243:11;:20;40255:7;40243:20;;;;;;;;;;;40209:54;;40294:2;40278:8;:13;;;:18;;;;;;;;;;;;;;;;;;40344:15;40311:8;:23;;;:49;;;;;;;;;;;;;;;;;;40612:19;40644:1;40634:7;:11;40612:33;;40660:31;40694:11;:24;40706:11;40694:24;;;;;;;;;;;40660:58;;40762:1;40737:27;;:8;:13;;;;;;;;;;;;:27;;;40733:384;;;40947:13;;40932:11;:28;40928:174;;41001:4;40985:8;:13;;;:20;;;;;;;;;;;;;;;;;;41054:13;:28;;;41028:8;:23;;;:54;;;;;;;;;;;;;;;;;;40928:174;40733:384;40092:1036;;;41164:7;41160:2;41145:27;;41154:4;41145:27;;;;;;;;;;;;41183:42;41204:4;41210:2;41214:7;41223:1;41183:20;:42::i;:::-;39207:2026;;39103:2130;;;:::o;31151:1109::-;31213:21;;:::i;:::-;31247:12;31262:7;31247:22;;31330:4;31311:15;:13;:15::i;:::-;:23;;:47;;;;;31345:13;;31338:4;:20;31311:47;31307:886;;;31379:31;31413:11;:17;31425:4;31413:17;;;;;;;;;;;31379:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31454:9;:16;;;31449:729;;31525:1;31499:28;;:9;:14;;;:28;;;31495:101;;31563:9;31556:16;;;;;;31495:101;31898:261;31905:4;31898:261;;;31938:6;;;;;;;;31983:11;:17;31995:4;31983:17;;;;;;;;;;;31971:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32057:1;32031:28;;:9;:14;;;:28;;;32027:109;;32099:9;32092:16;;;;;;32027:109;31898:261;;;31449:729;31360:833;31307:886;32221:31;;;;;;;;;;;;;;31151:1109;;;;:::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;52213:120::-;52292:33;52302:9;52313:11;52292:9;:33::i;:::-;52213:120;;:::o;9169:326::-;9229:4;9486:1;9464:7;:19;;;:23;9457:30;;9169:326;;;:::o;44848:667::-;45011:4;45048:2;45032:36;;;45069:12;:10;:12::i;:::-;45083:4;45089:7;45098:5;45032:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45028:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45283:1;45266:6;:13;:18;45262:235;;;45312:40;;;;;;;;;;;;;;45262:235;45455:6;45449:13;45440:6;45436:2;45432:15;45425:38;45028:480;45161:45;;;45151:55;;;:6;:55;;;;45144:62;;;44848:667;;;;;;:::o;50691:111::-;50751:13;50784:10;50777:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50691: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;48477:152::-;48549:7;48603;48612;48586:34;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48576:45;;;;;;48569:52;;48477:152;;;;:::o;48185:188::-;48293:4;48317:48;48336:5;48343:10;;48355:9;48317:18;:48::i;:::-;48310:55;;48185:188;;;;:::o;30058:137::-;30119:7;30154:12;:19;30167:5;30154:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;30146:41;;30139:48;;30058:137;;;:::o;46163:159::-;;;;;:::o;46981:158::-;;;;;:::o;36185:104::-;36254:27;36264:2;36268:8;36254:27;;;;;;;;;;;;:9;:27::i;:::-;36185:104;;:::o;923:190::-;1048:4;1101;1072:25;1085:5;1092:4;1072:12;:25::i;:::-;:33;1065:40;;923:190;;;;;:::o;36652:163::-;36775:32;36781:2;36785:8;36795:5;36802:4;36775:5;:32::i;:::-;36652: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;37074:1775::-;37213:20;37236:13;;37213:36;;37278:1;37264:16;;:2;:16;;;37260:48;;;37289:19;;;;;;;;;;;;;;37260:48;37335:1;37323:8;:13;37319:44;;;37345:18;;;;;;;;;;;;;;37319:44;37376:61;37406:1;37410:2;37414:12;37428:8;37376:21;:61::i;:::-;37749:8;37714:12;:16;37727:2;37714:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37813:8;37773:12;:16;37786:2;37773:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37872:2;37839:11;:25;37851:12;37839:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37939:15;37889:11;:25;37901:12;37889:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37972:20;37995:12;37972:35;;38022:11;38051:8;38036:12;:23;38022:37;;38080:4;:23;;;;;38088:15;:2;:13;;;:15::i;:::-;38080:23;38076:641;;;38124:314;38180:12;38176:2;38155:38;;38172:1;38155:38;;;;;;;;;;;;38221:69;38260:1;38264:2;38268:14;;;;;;38284:5;38221:30;:69::i;:::-;38216:174;;38326:40;;;;;;;;;;;;;;38216:174;38433:3;38417:12;:19;;38124:314;;38519:12;38502:13;;:29;38498:43;;38533:8;;;38498:43;38076:641;;;38582:120;38638:14;;;;;;38634:2;38613:40;;38630:1;38613:40;;;;;;;;;;;;38697:3;38681:12;:19;;38582:120;;38076:641;38747:12;38731:13;:28;;;;37689:1082;;38781:60;38810:1;38814:2;38818:12;38832:8;38781:20;:60::i;:::-;37202:1647;37074: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:329::-;8241:6;8290:2;8278:9;8269:7;8265:23;8261:32;8258:119;;;8296:79;;:::i;:::-;8258:119;8416:1;8441:53;8486:7;8477:6;8466:9;8462:22;8441:53;:::i;:::-;8431:63;;8387:117;8182:329;;;;:::o;8517:327::-;8575:6;8624:2;8612:9;8603:7;8599:23;8595:32;8592:119;;;8630:79;;:::i;:::-;8592:119;8750:1;8775:52;8819:7;8810:6;8799:9;8795:22;8775:52;:::i;:::-;8765:62;;8721:116;8517:327;;;;:::o;8850:349::-;8919:6;8968:2;8956:9;8947:7;8943:23;8939:32;8936:119;;;8974:79;;:::i;:::-;8936:119;9094:1;9119:63;9174:7;9165:6;9154:9;9150:22;9119:63;:::i;:::-;9109:73;;9065:127;8850:349;;;;:::o;9205:509::-;9274:6;9323:2;9311:9;9302:7;9298:23;9294:32;9291:119;;;9329:79;;:::i;:::-;9291:119;9477:1;9466:9;9462:17;9449:31;9507:18;9499:6;9496:30;9493:117;;;9529:79;;:::i;:::-;9493:117;9634:63;9689:7;9680:6;9669:9;9665:22;9634:63;:::i;:::-;9624:73;;9420:287;9205:509;;;;:::o;9720:327::-;9778:6;9827:2;9815:9;9806:7;9802:23;9798:32;9795:119;;;9833:79;;:::i;:::-;9795:119;9953:1;9978:52;10022:7;10013:6;10002:9;9998:22;9978:52;:::i;:::-;9968:62;;9924:116;9720:327;;;;:::o;10053:329::-;10112:6;10161:2;10149:9;10140:7;10136:23;10132:32;10129:119;;;10167:79;;:::i;:::-;10129:119;10287:1;10312:53;10357:7;10348:6;10337:9;10333:22;10312:53;:::i;:::-;10302:63;;10258:117;10053:329;;;;:::o;10388:849::-;10492:6;10500;10508;10516;10565:2;10553:9;10544:7;10540:23;10536:32;10533:119;;;10571:79;;:::i;:::-;10533:119;10691:1;10716:53;10761:7;10752:6;10741:9;10737:22;10716:53;:::i;:::-;10706:63;;10662:117;10818:2;10844:53;10889:7;10880:6;10869:9;10865:22;10844:53;:::i;:::-;10834:63;;10789:118;10974:2;10963:9;10959:18;10946:32;11005:18;10997:6;10994:30;10991:117;;;11027:79;;:::i;:::-;10991:117;11140:80;11212:7;11203:6;11192:9;11188:22;11140:80;:::i;:::-;11122:98;;;;10917:313;10388:849;;;;;;;:::o;11243:118::-;11330:24;11348:5;11330:24;:::i;:::-;11325:3;11318:37;11243:118;;:::o;11367:157::-;11472:45;11492:24;11510:5;11492:24;:::i;:::-;11472:45;:::i;:::-;11467:3;11460:58;11367:157;;:::o;11530:109::-;11611:21;11626:5;11611:21;:::i;:::-;11606:3;11599:34;11530:109;;:::o;11645:360::-;11731:3;11759:38;11791:5;11759:38;:::i;:::-;11813:70;11876:6;11871:3;11813:70;:::i;:::-;11806:77;;11892:52;11937:6;11932:3;11925:4;11918:5;11914:16;11892:52;:::i;:::-;11969:29;11991:6;11969:29;:::i;:::-;11964:3;11960:39;11953:46;;11735:270;11645:360;;;;:::o;12011:364::-;12099:3;12127:39;12160:5;12127:39;:::i;:::-;12182:71;12246:6;12241:3;12182:71;:::i;:::-;12175:78;;12262:52;12307:6;12302:3;12295:4;12288:5;12284:16;12262:52;:::i;:::-;12339:29;12361:6;12339:29;:::i;:::-;12334:3;12330:39;12323:46;;12103:272;12011:364;;;;:::o;12381:377::-;12487:3;12515:39;12548:5;12515:39;:::i;:::-;12570:89;12652:6;12647:3;12570:89;:::i;:::-;12563:96;;12668:52;12713:6;12708:3;12701:4;12694:5;12690:16;12668:52;:::i;:::-;12745:6;12740:3;12736:16;12729:23;;12491:267;12381:377;;;;:::o;12764:366::-;12906:3;12927:67;12991:2;12986:3;12927:67;:::i;:::-;12920:74;;13003:93;13092:3;13003:93;:::i;:::-;13121:2;13116:3;13112:12;13105:19;;12764:366;;;:::o;13136:::-;13278:3;13299:67;13363:2;13358:3;13299:67;:::i;:::-;13292:74;;13375:93;13464:3;13375:93;:::i;:::-;13493:2;13488:3;13484:12;13477:19;;13136:366;;;:::o;13508:::-;13650:3;13671:67;13735:2;13730:3;13671:67;:::i;:::-;13664:74;;13747:93;13836:3;13747:93;:::i;:::-;13865:2;13860:3;13856:12;13849:19;;13508:366;;;:::o;13880:::-;14022:3;14043:67;14107:2;14102:3;14043:67;:::i;:::-;14036:74;;14119:93;14208:3;14119:93;:::i;:::-;14237:2;14232:3;14228:12;14221:19;;13880:366;;;:::o;14252:::-;14394:3;14415:67;14479:2;14474:3;14415:67;:::i;:::-;14408:74;;14491:93;14580:3;14491:93;:::i;:::-;14609:2;14604:3;14600:12;14593:19;;14252:366;;;:::o;14624:::-;14766:3;14787:67;14851:2;14846:3;14787:67;:::i;:::-;14780:74;;14863:93;14952:3;14863:93;:::i;:::-;14981:2;14976:3;14972:12;14965:19;;14624:366;;;:::o;14996:::-;15138:3;15159:67;15223:2;15218:3;15159:67;:::i;:::-;15152:74;;15235:93;15324:3;15235:93;:::i;:::-;15353:2;15348:3;15344:12;15337:19;;14996:366;;;:::o;15368:::-;15510:3;15531:67;15595:2;15590:3;15531:67;:::i;:::-;15524:74;;15607:93;15696:3;15607:93;:::i;:::-;15725:2;15720:3;15716:12;15709:19;;15368:366;;;:::o;15740:398::-;15899:3;15920:83;16001:1;15996:3;15920:83;:::i;:::-;15913:90;;16012:93;16101:3;16012:93;:::i;:::-;16130:1;16125:3;16121:11;16114:18;;15740:398;;;:::o;16144:366::-;16286:3;16307:67;16371:2;16366:3;16307:67;:::i;:::-;16300:74;;16383:93;16472:3;16383:93;:::i;:::-;16501:2;16496:3;16492:12;16485:19;;16144:366;;;:::o;16516:::-;16658:3;16679:67;16743:2;16738:3;16679:67;:::i;:::-;16672:74;;16755:93;16844:3;16755:93;:::i;:::-;16873:2;16868:3;16864:12;16857:19;;16516:366;;;:::o;16888:::-;17030:3;17051:67;17115:2;17110:3;17051:67;:::i;:::-;17044:74;;17127:93;17216:3;17127:93;:::i;:::-;17245:2;17240:3;17236:12;17229:19;;16888:366;;;:::o;17260:::-;17402:3;17423:67;17487:2;17482:3;17423:67;:::i;:::-;17416:74;;17499:93;17588:3;17499:93;:::i;:::-;17617:2;17612:3;17608:12;17601:19;;17260:366;;;:::o;17632:115::-;17717:23;17734:5;17717:23;:::i;:::-;17712:3;17705:36;17632:115;;:::o;17753:118::-;17840:24;17858:5;17840:24;:::i;:::-;17835:3;17828:37;17753:118;;:::o;17877:157::-;17982:45;18002:24;18020:5;18002:24;:::i;:::-;17982:45;:::i;:::-;17977:3;17970:58;17877:157;;:::o;18040:397::-;18180:3;18195:75;18266:3;18257:6;18195:75;:::i;:::-;18295:2;18290:3;18286:12;18279:19;;18308:75;18379:3;18370:6;18308:75;:::i;:::-;18408:2;18403:3;18399:12;18392:19;;18428:3;18421:10;;18040:397;;;;;:::o;18443:435::-;18623:3;18645:95;18736:3;18727:6;18645:95;:::i;:::-;18638:102;;18757:95;18848:3;18839:6;18757:95;:::i;:::-;18750:102;;18869:3;18862:10;;18443:435;;;;;:::o;18884:379::-;19068:3;19090:147;19233:3;19090:147;:::i;:::-;19083:154;;19254:3;19247:10;;18884:379;;;:::o;19269:222::-;19362:4;19400:2;19389:9;19385:18;19377:26;;19413:71;19481:1;19470:9;19466:17;19457:6;19413:71;:::i;:::-;19269:222;;;;:::o;19497:640::-;19692:4;19730:3;19719:9;19715:19;19707:27;;19744:71;19812:1;19801:9;19797:17;19788:6;19744:71;:::i;:::-;19825:72;19893:2;19882:9;19878:18;19869:6;19825:72;:::i;:::-;19907;19975:2;19964:9;19960:18;19951:6;19907:72;:::i;:::-;20026:9;20020:4;20016:20;20011:2;20000:9;19996:18;19989:48;20054:76;20125:4;20116:6;20054:76;:::i;:::-;20046:84;;19497:640;;;;;;;:::o;20143:210::-;20230:4;20268:2;20257:9;20253:18;20245:26;;20281:65;20343:1;20332:9;20328:17;20319:6;20281:65;:::i;:::-;20143:210;;;;:::o;20359:313::-;20472:4;20510:2;20499:9;20495:18;20487:26;;20559:9;20553:4;20549:20;20545:1;20534:9;20530:17;20523:47;20587:78;20660:4;20651:6;20587:78;:::i;:::-;20579:86;;20359:313;;;;:::o;20678:419::-;20844:4;20882:2;20871:9;20867:18;20859:26;;20931:9;20925:4;20921:20;20917:1;20906:9;20902:17;20895:47;20959:131;21085:4;20959:131;:::i;:::-;20951:139;;20678:419;;;:::o;21103:::-;21269:4;21307:2;21296:9;21292:18;21284:26;;21356:9;21350:4;21346:20;21342:1;21331:9;21327:17;21320:47;21384:131;21510:4;21384:131;:::i;:::-;21376:139;;21103:419;;;:::o;21528:::-;21694:4;21732:2;21721:9;21717:18;21709:26;;21781:9;21775:4;21771:20;21767:1;21756:9;21752:17;21745:47;21809:131;21935:4;21809:131;:::i;:::-;21801:139;;21528:419;;;:::o;21953:::-;22119:4;22157:2;22146:9;22142:18;22134:26;;22206:9;22200:4;22196:20;22192:1;22181:9;22177:17;22170:47;22234:131;22360:4;22234:131;:::i;:::-;22226:139;;21953:419;;;:::o;22378:::-;22544:4;22582:2;22571:9;22567:18;22559:26;;22631:9;22625:4;22621:20;22617:1;22606:9;22602:17;22595:47;22659:131;22785:4;22659:131;:::i;:::-;22651:139;;22378:419;;;:::o;22803:::-;22969:4;23007:2;22996:9;22992:18;22984:26;;23056:9;23050:4;23046:20;23042:1;23031:9;23027:17;23020:47;23084:131;23210:4;23084:131;:::i;:::-;23076:139;;22803:419;;;:::o;23228:::-;23394:4;23432:2;23421:9;23417:18;23409:26;;23481:9;23475:4;23471:20;23467:1;23456:9;23452:17;23445:47;23509:131;23635:4;23509:131;:::i;:::-;23501:139;;23228:419;;;:::o;23653:::-;23819:4;23857:2;23846:9;23842:18;23834:26;;23906:9;23900:4;23896:20;23892:1;23881:9;23877:17;23870:47;23934:131;24060:4;23934:131;:::i;:::-;23926:139;;23653:419;;;:::o;24078:::-;24244:4;24282:2;24271:9;24267:18;24259:26;;24331:9;24325:4;24321:20;24317:1;24306:9;24302:17;24295:47;24359:131;24485:4;24359:131;:::i;:::-;24351:139;;24078:419;;;:::o;24503:::-;24669:4;24707:2;24696:9;24692:18;24684:26;;24756:9;24750:4;24746:20;24742:1;24731:9;24727:17;24720:47;24784:131;24910:4;24784:131;:::i;:::-;24776:139;;24503:419;;;:::o;24928:::-;25094:4;25132:2;25121:9;25117:18;25109:26;;25181:9;25175:4;25171:20;25167:1;25156:9;25152:17;25145:47;25209:131;25335:4;25209:131;:::i;:::-;25201:139;;24928:419;;;:::o;25353:::-;25519:4;25557:2;25546:9;25542:18;25534:26;;25606:9;25600:4;25596:20;25592:1;25581:9;25577:17;25570:47;25634:131;25760:4;25634:131;:::i;:::-;25626:139;;25353:419;;;:::o;25778:218::-;25869:4;25907:2;25896:9;25892:18;25884:26;;25920:69;25986:1;25975:9;25971:17;25962:6;25920:69;:::i;:::-;25778:218;;;;:::o;26002:222::-;26095:4;26133:2;26122:9;26118:18;26110:26;;26146:71;26214:1;26203:9;26199:17;26190:6;26146:71;:::i;:::-;26002:222;;;;:::o;26230:129::-;26264:6;26291:20;;:::i;:::-;26281:30;;26320:33;26348:4;26340:6;26320:33;:::i;:::-;26230:129;;;:::o;26365:75::-;26398:6;26431:2;26425:9;26415:19;;26365:75;:::o;26446:311::-;26523:4;26613:18;26605:6;26602:30;26599:56;;;26635:18;;:::i;:::-;26599:56;26685:4;26677:6;26673:17;26665:25;;26745:4;26739;26735:15;26727:23;;26446:311;;;:::o;26763:307::-;26824:4;26914:18;26906:6;26903:30;26900:56;;;26936:18;;:::i;:::-;26900:56;26974:29;26996:6;26974:29;:::i;:::-;26966:37;;27058:4;27052;27048:15;27040:23;;26763:307;;;:::o;27076:308::-;27138:4;27228:18;27220:6;27217:30;27214:56;;;27250:18;;:::i;:::-;27214:56;27288:29;27310:6;27288:29;:::i;:::-;27280:37;;27372:4;27366;27362:15;27354:23;;27076:308;;;:::o;27390:98::-;27441:6;27475:5;27469:12;27459:22;;27390:98;;;:::o;27494:99::-;27546:6;27580:5;27574:12;27564:22;;27494:99;;;:::o;27599:168::-;27682:11;27716:6;27711:3;27704:19;27756:4;27751:3;27747:14;27732:29;;27599:168;;;;:::o;27773:147::-;27874:11;27911:3;27896:18;;27773:147;;;;:::o;27926:169::-;28010:11;28044:6;28039:3;28032:19;28084:4;28079:3;28075:14;28060:29;;27926:169;;;;:::o;28101:148::-;28203:11;28240:3;28225:18;;28101:148;;;;:::o;28255:305::-;28295:3;28314:20;28332:1;28314:20;:::i;:::-;28309:25;;28348:20;28366:1;28348:20;:::i;:::-;28343:25;;28502:1;28434:66;28430:74;28427:1;28424:81;28421:107;;;28508:18;;:::i;:::-;28421:107;28552:1;28549;28545:9;28538:16;;28255:305;;;;:::o;28566:185::-;28606:1;28623:20;28641:1;28623:20;:::i;:::-;28618:25;;28657:20;28675:1;28657:20;:::i;:::-;28652:25;;28696:1;28686:35;;28701:18;;:::i;:::-;28686:35;28743:1;28740;28736:9;28731:14;;28566:185;;;;:::o;28757:348::-;28797:7;28820:20;28838:1;28820:20;:::i;:::-;28815:25;;28854:20;28872:1;28854:20;:::i;:::-;28849:25;;29042:1;28974:66;28970:74;28967:1;28964:81;28959:1;28952:9;28945:17;28941:105;28938:131;;;29049:18;;:::i;:::-;28938:131;29097:1;29094;29090:9;29079:20;;28757:348;;;;:::o;29111:191::-;29151:4;29171:20;29189:1;29171:20;:::i;:::-;29166:25;;29205:20;29223:1;29205:20;:::i;:::-;29200:25;;29244:1;29241;29238:8;29235:34;;;29249:18;;:::i;:::-;29235:34;29294:1;29291;29287:9;29279:17;;29111:191;;;;:::o;29308:96::-;29345:7;29374:24;29392:5;29374:24;:::i;:::-;29363:35;;29308:96;;;:::o;29410:90::-;29444:7;29487:5;29480:13;29473:21;29462:32;;29410:90;;;:::o;29506:77::-;29543:7;29572:5;29561:16;;29506:77;;;:::o;29589:149::-;29625:7;29665:66;29658:5;29654:78;29643:89;;29589:149;;;:::o;29744:89::-;29780:7;29820:6;29813:5;29809:18;29798:29;;29744:89;;;:::o;29839:126::-;29876:7;29916:42;29909:5;29905:54;29894:65;;29839:126;;;:::o;29971:77::-;30008:7;30037:5;30026:16;;29971:77;;;:::o;30054:154::-;30138:6;30133:3;30128;30115:30;30200:1;30191:6;30186:3;30182:16;30175:27;30054:154;;;:::o;30214:307::-;30282:1;30292:113;30306:6;30303:1;30300:13;30292:113;;;30391:1;30386:3;30382:11;30376:18;30372:1;30367:3;30363:11;30356:39;30328:2;30325:1;30321:10;30316:15;;30292:113;;;30423:6;30420:1;30417:13;30414:101;;;30503:1;30494:6;30489:3;30485:16;30478:27;30414:101;30263:258;30214:307;;;:::o;30527:320::-;30571:6;30608:1;30602:4;30598:12;30588:22;;30655:1;30649:4;30645:12;30676:18;30666:81;;30732:4;30724:6;30720:17;30710:27;;30666:81;30794:2;30786:6;30783:14;30763:18;30760:38;30757:84;;;30813:18;;:::i;:::-;30757:84;30578:269;30527:320;;;:::o;30853:281::-;30936:27;30958:4;30936:27;:::i;:::-;30928:6;30924:40;31066:6;31054:10;31051:22;31030:18;31018:10;31015:34;31012:62;31009:88;;;31077:18;;:::i;:::-;31009:88;31117:10;31113:2;31106:22;30896:238;30853:281;;:::o;31140:233::-;31179:3;31202:24;31220:5;31202:24;:::i;:::-;31193:33;;31248:66;31241:5;31238:77;31235:103;;;31318:18;;:::i;:::-;31235:103;31365:1;31358:5;31354:13;31347:20;;31140:233;;;:::o;31379:100::-;31418:7;31447:26;31467:5;31447:26;:::i;:::-;31436:37;;31379:100;;;:::o;31485:94::-;31524:7;31553:20;31567:5;31553:20;:::i;:::-;31542:31;;31485:94;;;:::o;31585:79::-;31624:7;31653:5;31642:16;;31585:79;;;:::o;31670:176::-;31702:1;31719:20;31737:1;31719:20;:::i;:::-;31714:25;;31753:20;31771:1;31753:20;:::i;:::-;31748:25;;31792:1;31782:35;;31797:18;;:::i;:::-;31782:35;31838:1;31835;31831:9;31826:14;;31670:176;;;;:::o;31852:180::-;31900:77;31897:1;31890:88;31997:4;31994:1;31987:15;32021:4;32018:1;32011:15;32038:180;32086:77;32083:1;32076:88;32183:4;32180:1;32173:15;32207:4;32204:1;32197:15;32224:180;32272:77;32269:1;32262:88;32369:4;32366:1;32359:15;32393:4;32390:1;32383:15;32410:180;32458:77;32455:1;32448:88;32555:4;32552:1;32545:15;32579:4;32576:1;32569:15;32596:180;32644:77;32641:1;32634:88;32741:4;32738:1;32731:15;32765:4;32762:1;32755:15;32782:117;32891:1;32888;32881:12;32905:117;33014:1;33011;33004:12;33028:117;33137:1;33134;33127:12;33151:117;33260:1;33257;33250:12;33274:117;33383:1;33380;33373:12;33397:117;33506:1;33503;33496:12;33520:102;33561:6;33612:2;33608:7;33603:2;33596:5;33592:14;33588:28;33578:38;;33520:102;;;:::o;33628:94::-;33661:8;33709:5;33705:2;33701:14;33680:35;;33628:94;;;:::o;33728:178::-;33868:30;33864:1;33856:6;33852:14;33845:54;33728:178;:::o;33912:168::-;34052:20;34048:1;34040:6;34036:14;34029:44;33912:168;:::o;34086:225::-;34226:34;34222:1;34214:6;34210:14;34203:58;34295:8;34290:2;34282:6;34278:15;34271:33;34086:225;:::o;34317:166::-;34457:18;34453:1;34445:6;34441:14;34434:42;34317:166;:::o;34489:182::-;34629:34;34625:1;34617:6;34613:14;34606:58;34489:182;:::o;34677:226::-;34817:34;34813:1;34805:6;34801:14;34794:58;34886:9;34881:2;34873:6;34869:15;34862:34;34677:226;:::o;34909:182::-;35049:34;35045:1;35037:6;35033:14;35026:58;34909:182;:::o;35097:234::-;35237:34;35233:1;35225:6;35221:14;35214:58;35306:17;35301:2;35293:6;35289:15;35282:42;35097:234;:::o;35337:114::-;;:::o;35457:223::-;35597:34;35593:1;35585:6;35581:14;35574:58;35666:6;35661:2;35653:6;35649:15;35642:31;35457:223;:::o;35686:163::-;35826:15;35822:1;35814:6;35810:14;35803:39;35686:163;:::o;35855:168::-;35995:20;35991:1;35983:6;35979:14;35972:44;35855:168;:::o;36029:174::-;36169:26;36165:1;36157:6;36153:14;36146:50;36029:174;:::o;36209:122::-;36282:24;36300:5;36282:24;:::i;:::-;36275:5;36272:35;36262:63;;36321:1;36318;36311:12;36262:63;36209:122;:::o;36337:116::-;36407:21;36422:5;36407:21;:::i;:::-;36400:5;36397:32;36387:60;;36443:1;36440;36433:12;36387:60;36337:116;:::o;36459:122::-;36532:24;36550:5;36532:24;:::i;:::-;36525:5;36522:35;36512:63;;36571:1;36568;36561:12;36512:63;36459:122;:::o;36587:120::-;36659:23;36676:5;36659:23;:::i;:::-;36652:5;36649:34;36639:62;;36697:1;36694;36687:12;36639:62;36587:120;:::o;36713:::-;36785:23;36802:5;36785:23;:::i;:::-;36778:5;36775:34;36765:62;;36823:1;36820;36813:12;36765:62;36713:120;:::o;36839:122::-;36912:24;36930:5;36912:24;:::i;:::-;36905:5;36902:35;36892:63;;36951:1;36948;36941:12;36892:63;36839:122;:::o

Swarm Source

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