ETH Price: $3,390.20 (-1.52%)
Gas: 2 Gwei

Contract

0xdE654CA028f61986e3FeA0042c68C8049e8a20CB
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Set Approval For...201913412024-06-28 16:20:3517 hrs ago1719591635IN
ToonsCollection: TOONS Token
0 ETH0.000446739.56465772
Set Approval For...201609862024-06-24 10:36:234 days ago1719225383IN
ToonsCollection: TOONS Token
0 ETH0.000247635.30179041
Set Approval For...200736672024-06-12 5:29:4717 days ago1718170187IN
ToonsCollection: TOONS Token
0 ETH0.000317696.80179068
Set Approval For...198528602024-05-12 8:50:5948 days ago1715503859IN
ToonsCollection: TOONS Token
0 ETH0.000191884.10836735
Transfer From198194882024-05-07 16:49:5952 days ago1715100599IN
ToonsCollection: TOONS Token
0 ETH0.000405566.4059195
Set Approval For...197310332024-04-25 7:56:5965 days ago1714031819IN
ToonsCollection: TOONS Token
0 ETH0.000453989.71994995
Set Approval For...197020532024-04-21 6:40:3569 days ago1713681635IN
ToonsCollection: TOONS Token
0 ETH0.000164526.61289381
Set Approval For...197020532024-04-21 6:40:3569 days ago1713681635IN
ToonsCollection: TOONS Token
0 ETH0.000163966.61289381
Set Approval For...196127402024-04-08 18:30:1181 days ago1712601011IN
ToonsCollection: TOONS Token
0 ETH0.0019716542.21331458
Set Approval For...195636982024-04-01 21:37:1188 days ago1712007431IN
ToonsCollection: TOONS Token
0 ETH0.0006156924.74743133
Set Approval For...195182712024-03-26 11:18:5994 days ago1711451939IN
ToonsCollection: TOONS Token
0 ETH0.0011283824.11532319
Set Approval For...194451812024-03-16 4:45:59105 days ago1710564359IN
ToonsCollection: TOONS Token
0 ETH0.0007211429
Set Approval For...193756312024-03-06 10:47:59114 days ago1709722079IN
ToonsCollection: TOONS Token
0 ETH0.0028329760.65411309
Set Approval For...193250272024-02-28 9:05:23122 days ago1709111123IN
ToonsCollection: TOONS Token
0 ETH0.0028559461.14605005
Set Approval For...193186662024-02-27 11:43:47122 days ago1709034227IN
ToonsCollection: TOONS Token
0 ETH0.0018670939.97469083
Transfer From192985172024-02-24 16:04:11125 days ago1708790651IN
ToonsCollection: TOONS Token
0 ETH0.0018611929.39772354
Approve192728302024-02-21 1:38:35129 days ago1708479515IN
ToonsCollection: TOONS Token
0 ETH0.0009540132.05387122
Set Approval For...192488212024-02-17 16:39:23132 days ago1708187963IN
ToonsCollection: TOONS Token
0 ETH0.0015121432.37502325
Set Approval For...191481402024-02-03 13:30:59146 days ago1706967059IN
ToonsCollection: TOONS Token
0 ETH0.0008478318.15212823
Set Approval For...190874652024-01-26 1:20:23155 days ago1706232023IN
ToonsCollection: TOONS Token
0 ETH0.0004035716.27649081
Set Approval For...189265142024-01-03 11:24:11177 days ago1704281051IN
ToonsCollection: TOONS Token
0 ETH0.0006807527.45537104
Set Approval For...188798412023-12-27 22:04:47184 days ago1703714687IN
ToonsCollection: TOONS Token
0 ETH0.0015783233.74003532
Set Approval For...188247872023-12-20 4:36:59192 days ago1703047019IN
ToonsCollection: TOONS Token
0 ETH0.0008751435.17618709
Set Approval For...188247872023-12-20 4:36:59192 days ago1703047019IN
ToonsCollection: TOONS Token
0 ETH0.0008721935.17618709
Set Approval For...188194722023-12-19 10:41:47192 days ago1702982507IN
ToonsCollection: TOONS Token
0 ETH0.0013354653.67830367
View all transactions

Latest 2 internal transactions

Advanced mode:
Parent Transaction Hash Block From To Value
146522352022-04-25 6:34:34796 days ago1650868474
ToonsCollection: TOONS Token
0.26 ETH
146381972022-04-23 1:30:45798 days ago1650677445
ToonsCollection: TOONS Token
1.04 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
ToonsOG

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-22
*/

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        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 (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 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) 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;

            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 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/Toons/Toons721.sol


pragma solidity ^0.8.7;




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

    string public baseApiURI;
    
  

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

    //whitelisting Settings
    uint16 public maxMintAmountPerWhitelist = 5;
    uint16 public maxMintAmountPerOgWhitelist = 5;
   

    //Inventory
    uint256 public maxSupply = 4444;

    //Prices
    uint256 public cost = 0.5 ether;
    uint256 public ogWhitelistCost = 0.04 ether;
    uint256 public whitelistCost = 0.05 ether;

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

    //roots 
    bytes32 private genesisClaimRoot;
    bytes32 private ogWlroot;
    bytes32 private wlRoot;


    //mapping
    mapping(address => uint256) public whitelistedMints;
    mapping(address => bool) public claims;


    constructor(string memory _baseUrl) ERC721A("ToonsCollection", "TOONS") {
        baseApiURI = _baseUrl;
    }

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

   

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



    //Merkle Tree 

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

    function setOgWhitelistingRoot(bytes32 _root) public onlyOwner {
        ogWlroot = _root;
    }

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

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



    function setGenesisRoot(bytes32 _root) public onlyOwner {
        genesisClaimRoot = _root;
    }

    function _verifyGenesisClaim(
        bytes32 _leafNode,
        bytes32[] memory proof
    ) internal view returns (bool) {
        return MerkleProof.verify(proof, genesisClaimRoot, _leafNode);
    }

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

   

    //genesis Claim
     function claimGenesisToons(
        uint256 _amount,
        bytes32[] calldata proof
    ) public payable {
                //verification

                require(claimable, "Claim not enabled");
                require(
                    _verifyGenesisClaim(_leafGenesis(msg.sender, _amount), proof),
                    "Invalid proof"
                );

                require(!claims[msg.sender], "Already Claimed");
                //END 

                //Mint
                _mintLoop(msg.sender, _amount);
                claims[msg.sender] = true;
                
    }

    //whitelist mint
    function mintWhitelist(
        bool isOg,
        bytes32[] calldata proof,
        uint256 _mintAmount
    ) public payable {
                //verification
                require(
                    _verify(isOg, _leaf(msg.sender), proof),
                    "Invalid proof"
                );
                
                if(isOg){
                    require(
                    (whitelistedMints[msg.sender] + _mintAmount) <=
                        maxMintAmountPerOgWhitelist,
                    "Exceeds Max Mint amount"
                );

                require(
                    msg.value >= (ogWhitelistCost * _mintAmount),
                    "Insuffient funds"
                );
                }else{
                    require(
                    (whitelistedMints[msg.sender] + _mintAmount) <=
                        maxMintAmountPerWhitelist,
                    "Exceeds Max Mint amount"
                );

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

                

                //END WL Verifications

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


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

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

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

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

        _mintLoop(msg.sender, _mintAmount);
    }

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

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

    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 setOgwhitelistingCost(uint256 _newCost) public onlyOwner {
        ogWhitelistCost = _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 setMaxAmountPerOgWhitelist(uint16 _amount) public onlyOwner {
        maxMintAmountPerOgWhitelist = _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 toggleclaim() public onlyOwner{
        claimable = !claimable;
    }

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

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

  

    function withdraw() public payable onlyOwner {
        (bool hq, ) = payable(0xe600648Ce025cC8F80A41Dc2953309783289C23C).call{value: address(this).balance}("");
        require(hq);
    }
}

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[]"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseApiURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"claimGenesisToons","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"claimable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claims","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"maxMintAmountPerOgWhitelist","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTransaction","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWhitelist","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintExternal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isOg","type":"bool"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogWhitelistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_bAddress","type":"address"}],"name":"setBreedingContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setGenesisRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"setMaxAmountPerOgWhitelist","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":"setOgWhitelistingRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setOgwhitelistingCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setWhitelistingCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setWhitelistingRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"setmaxMintAmountPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhiteSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleclaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whiteListingSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526005600b60006101000a81548161ffff021916908361ffff1602179055506005600b60026101000a81548161ffff021916908361ffff1602179055506005600b60046101000a81548161ffff021916908361ffff1602179055506005600b60066101000a81548161ffff021916908361ffff16021790555061115c600c556706f05b59d3b20000600d55668e1bc9bf040000600e5566b1a2bc2ec50000600f556001601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055506000601060026101000a81548160ff0219169083151502179055503480156200010257600080fd5b5060405162005a4938038062005a4983398181016040528101906200012891906200041f565b6040518060400160405280600f81526020017f546f6f6e73436f6c6c656374696f6e00000000000000000000000000000000008152506040518060400160405280600581526020017f544f4f4e530000000000000000000000000000000000000000000000000000008152508160029080519060200190620001ac929190620002f1565b508060039080519060200190620001c5929190620002f1565b50620001d66200021e60201b60201c565b6000819055505050620001fe620001f26200022360201b60201c565b6200022b60201b60201c565b80600a908051906020019062000216929190620002f1565b5050620005f4565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002ff9062000505565b90600052602060002090601f0160209004810192826200032357600085556200036f565b82601f106200033e57805160ff19168380011785556200036f565b828001600101855582156200036f579182015b828111156200036e57825182559160200191906001019062000351565b5b5090506200037e919062000382565b5090565b5b808211156200039d57600081600090555060010162000383565b5090565b6000620003b8620003b28462000499565b62000470565b905082815260208101848484011115620003d757620003d6620005d4565b5b620003e4848285620004cf565b509392505050565b600082601f830112620004045762000403620005cf565b5b815162000416848260208601620003a1565b91505092915050565b600060208284031215620004385762000437620005de565b5b600082015167ffffffffffffffff811115620004595762000458620005d9565b5b6200046784828501620003ec565b91505092915050565b60006200047c6200048f565b90506200048a82826200053b565b919050565b6000604051905090565b600067ffffffffffffffff821115620004b757620004b6620005a0565b5b620004c282620005e3565b9050602081019050919050565b60005b83811015620004ef578082015181840152602081019050620004d2565b83811115620004ff576000848401525b50505050565b600060028204905060018216806200051e57607f821691505b6020821081141562000535576200053462000571565b5b50919050565b6200054682620005e3565b810181811067ffffffffffffffff82111715620005685762000567620005a0565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b61544580620006046000396000f3fe6080604052600436106103505760003560e01c8063abbcbafe116101c6578063d5abeb01116100f7578063e97800cb11610095578063ed8161791161006f578063ed81617914610bd8578063ee89121214610bef578063f2fde38b14610c18578063f4da184614610c4157610350565b8063e97800cb14610b49578063e985e9c514610b72578063ea44462214610baf57610350565b8063dee20cdd116100d1578063dee20cdd14610a9f578063dfc33dd114610aca578063e5a88cdb14610af3578063e7b99ec714610b1e57610350565b8063d5abeb0114610a20578063d611addf14610a4b578063dc33e68114610a6257610350565b8063c204642c11610164578063c87b56dd1161013e578063c87b56dd14610968578063ca406bee146109a5578063cbce4c97146109ce578063cef11729146109f757610350565b8063c204642c146108eb578063c4ae316814610914578063c6788bdd1461092b57610350565b8063b88d4fde116101a0578063b88d4fde14610843578063bbb897441461086c578063bc951b9114610897578063bcee67d2146108c257610350565b8063abbcbafe146107d1578063af38d757146107fc578063b0e5629d1461082757610350565b806344a0d68a116102a05780636f8b44b01161023e5780638da5cb5b116102185780638da5cb5b1461073657806395d89b4114610761578063a0712d681461078c578063a22cb465146107a857610350565b80636f8b44b0146106b957806370a08231146106e2578063715018a61461071f57610350565b80635c975abb1161027a5780635c975abb146105eb5780636352211e146106165780636852a8551461065357806368570bd61461069057610350565b806344a0d68a1461057057806346068b4c1461059957806355f804b3146105c257610350565b806323b872dd1161030d5780633ccfd60b116102e75780633ccfd60b146104e95780634088487d146104f357806341827f131461051c57806342842e0e1461054757610350565b806323b872dd146104795780632cefffa7146104a25780633456ba6d146104cd57610350565b806301ffc9a71461035557806306fdde0314610392578063081812fc146103bd578063095ea7b3146103fa57806313faede61461042357806318160ddd1461044e575b600080fd5b34801561036157600080fd5b5061037c600480360381019061037791906143df565b610c6a565b604051610389919061493d565b60405180910390f35b34801561039e57600080fd5b506103a7610d4c565b6040516103b49190614958565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df91906144af565b610dde565b6040516103f191906148d6565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c91906142a2565b610e5a565b005b34801561042f57600080fd5b50610438610f65565b6040516104459190614b55565b60405180910390f35b34801561045a57600080fd5b50610463610f6b565b6040516104709190614b55565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b919061418c565b610f82565b005b3480156104ae57600080fd5b506104b7610f92565b6040516104c49190614b3a565b60405180910390f35b6104e760048036038101906104e291906144dc565b610fa6565b005b6104f161117c565b005b3480156104ff57600080fd5b5061051a600480360381019061051591906144af565b611285565b005b34801561052857600080fd5b5061053161130b565b60405161053e9190614958565b60405180910390f35b34801561055357600080fd5b5061056e6004803603810190610569919061418c565b611399565b005b34801561057c57600080fd5b50610597600480360381019061059291906144af565b6113b9565b005b3480156105a557600080fd5b506105c060048036038101906105bb91906143b2565b61143f565b005b3480156105ce57600080fd5b506105e960048036038101906105e49190614439565b6114c5565b005b3480156105f757600080fd5b5061060061155b565b60405161060d919061493d565b60405180910390f35b34801561062257600080fd5b5061063d600480360381019061063891906144af565b61156e565b60405161064a91906148d6565b60405180910390f35b34801561065f57600080fd5b5061067a6004803603810190610675919061411f565b611584565b6040516106879190614b55565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b2919061411f565b61159c565b005b3480156106c557600080fd5b506106e060048036038101906106db91906144af565b61165c565b005b3480156106ee57600080fd5b506107096004803603810190610704919061411f565b6116e2565b6040516107169190614b55565b60405180910390f35b34801561072b57600080fd5b506107346117b2565b005b34801561074257600080fd5b5061074b61183a565b60405161075891906148d6565b60405180910390f35b34801561076d57600080fd5b50610776611864565b6040516107839190614958565b60405180910390f35b6107a660048036038101906107a191906144af565b6118f6565b005b3480156107b457600080fd5b506107cf60048036038101906107ca9190614262565b611b59565b005b3480156107dd57600080fd5b506107e6611cd1565b6040516107f39190614b3a565b60405180910390f35b34801561080857600080fd5b50610811611ce5565b60405161081e919061493d565b60405180910390f35b610841600480360381019061083c919061433e565b611cf8565b005b34801561084f57600080fd5b5061086a600480360381019061086591906141df565b612017565b005b34801561087857600080fd5b50610881612093565b60405161088e9190614b3a565b60405180910390f35b3480156108a357600080fd5b506108ac6120a7565b6040516108b99190614b3a565b60405180910390f35b3480156108ce57600080fd5b506108e960048036038101906108e49190614482565b6120bb565b005b3480156108f757600080fd5b50610912600480360381019061090d91906142e2565b612157565b005b34801561092057600080fd5b50610929612221565b005b34801561093757600080fd5b50610952600480360381019061094d919061411f565b6122c9565b60405161095f919061493d565b60405180910390f35b34801561097457600080fd5b5061098f600480360381019061098a91906144af565b6122e9565b60405161099c9190614958565b60405180910390f35b3480156109b157600080fd5b506109cc60048036038101906109c791906143b2565b612390565b005b3480156109da57600080fd5b506109f560048036038101906109f091906142a2565b612416565b005b348015610a0357600080fd5b50610a1e6004803603810190610a199190614482565b6124a0565b005b348015610a2c57600080fd5b50610a3561253c565b604051610a429190614b55565b60405180910390f35b348015610a5757600080fd5b50610a60612542565b005b348015610a6e57600080fd5b50610a896004803603810190610a84919061411f565b6125ea565b604051610a969190614b55565b60405180910390f35b348015610aab57600080fd5b50610ab46125fc565b604051610ac19190614b55565b60405180910390f35b348015610ad657600080fd5b50610af16004803603810190610aec91906144af565b612602565b005b348015610aff57600080fd5b50610b08612688565b604051610b15919061493d565b60405180910390f35b348015610b2a57600080fd5b50610b3361269b565b604051610b409190614b55565b60405180910390f35b348015610b5557600080fd5b50610b706004803603810190610b6b9190614482565b6126a1565b005b348015610b7e57600080fd5b50610b996004803603810190610b94919061414c565b61273d565b604051610ba6919061493d565b60405180910390f35b348015610bbb57600080fd5b50610bd66004803603810190610bd19190614482565b6127d1565b005b348015610be457600080fd5b50610bed61286d565b005b348015610bfb57600080fd5b50610c166004803603810190610c1191906143b2565b612915565b005b348015610c2457600080fd5b50610c3f6004803603810190610c3a919061411f565b61299b565b005b348015610c4d57600080fd5b50610c686004803603810190610c6391906142a2565b612a93565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d3557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d455750610d4482612b31565b5b9050919050565b606060028054610d5b90614e54565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8790614e54565b8015610dd45780601f10610da957610100808354040283529160200191610dd4565b820191906000526020600020905b815481529060010190602001808311610db757829003601f168201915b5050505050905090565b6000610de982612b9b565b610e1f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e658261156e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ecd576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610eec612be9565b73ffffffffffffffffffffffffffffffffffffffff1614158015610f1e5750610f1c81610f17612be9565b61273d565b155b15610f55576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f60838383612bf1565b505050565b600d5481565b6000610f75612ca3565b6001546000540303905090565b610f8d838383612ca8565b505050565b600b60049054906101000a900461ffff1681565b601060029054906101000a900460ff16610ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fec90614a1a565b60405180910390fd5b611049611002338561315e565b838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050613191565b611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90614ada565b60405180910390fd5b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110c90614a9a565b60405180910390fd5b61111f33846131a8565b6001601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b611184612be9565b73ffffffffffffffffffffffffffffffffffffffff166111a261183a565b73ffffffffffffffffffffffffffffffffffffffff16146111f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ef90614a5a565b60405180910390fd5b600073e600648ce025cc8f80a41dc2953309783289c23c73ffffffffffffffffffffffffffffffffffffffff1647604051611232906148c1565b60006040518083038185875af1925050503d806000811461126f576040519150601f19603f3d011682016040523d82523d6000602084013e611274565b606091505b505090508061128257600080fd5b50565b61128d612be9565b73ffffffffffffffffffffffffffffffffffffffff166112ab61183a565b73ffffffffffffffffffffffffffffffffffffffff1614611301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f890614a5a565b60405180910390fd5b80600e8190555050565b600a805461131890614e54565b80601f016020809104026020016040519081016040528092919081815260200182805461134490614e54565b80156113915780601f1061136657610100808354040283529160200191611391565b820191906000526020600020905b81548152906001019060200180831161137457829003601f168201915b505050505081565b6113b483838360405180602001604052806000815250612017565b505050565b6113c1612be9565b73ffffffffffffffffffffffffffffffffffffffff166113df61183a565b73ffffffffffffffffffffffffffffffffffffffff1614611435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142c90614a5a565b60405180910390fd5b80600d8190555050565b611447612be9565b73ffffffffffffffffffffffffffffffffffffffff1661146561183a565b73ffffffffffffffffffffffffffffffffffffffff16146114bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b290614a5a565b60405180910390fd5b8060128190555050565b6114cd612be9565b73ffffffffffffffffffffffffffffffffffffffff166114eb61183a565b73ffffffffffffffffffffffffffffffffffffffff1614611541576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153890614a5a565b60405180910390fd5b80600a9080519060200190611557929190613dd2565b5050565b601060009054906101000a900460ff1681565b6000611579826131b6565b600001519050919050565b60146020528060005260406000206000915090505481565b6115a4612be9565b73ffffffffffffffffffffffffffffffffffffffff166115c261183a565b73ffffffffffffffffffffffffffffffffffffffff1614611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f90614a5a565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611664612be9565b73ffffffffffffffffffffffffffffffffffffffff1661168261183a565b73ffffffffffffffffffffffffffffffffffffffff16146116d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cf90614a5a565b60405180910390fd5b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561174a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6117ba612be9565b73ffffffffffffffffffffffffffffffffffffffff166117d861183a565b73ffffffffffffffffffffffffffffffffffffffff161461182e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182590614a5a565b60405180910390fd5b6118386000613445565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461187390614e54565b80601f016020809104026020016040519081016040528092919081815260200182805461189f90614e54565b80156118ec5780601f106118c1576101008083540402835291602001916118ec565b820191906000526020600020905b8154815290600101906020018083116118cf57829003601f168201915b5050505050905090565b6118fe61183a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611b4c57600061193b336116e2565b9050601060009054906101000a900460ff161561195757600080fd5b601060019054906101000a900460ff16156119a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199e906149ba565b60405180910390fd5b600082116119ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e190614aba565b60405180910390fd5b600b60009054906101000a900461ffff1661ffff16821115611a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3890614a3a565b60405180910390fd5b600c5482611a4d610f6b565b611a579190614c71565b1115611a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8f9061497a565b60405180910390fd5b600b60029054906101000a900461ffff1661ffff168282611ab99190614c71565b1115611afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af190614b1a565b60405180910390fd5b81600d54611b089190614cf8565b341015611b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b41906149fa565b60405180910390fd5b505b611b5633826131a8565b50565b611b61612be9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bc6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611bd3612be9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c80612be9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cc5919061493d565b60405180910390a35050565b600b60069054906101000a900461ffff1681565b601060029054906101000a900460ff1681565b611d4c84611d053361350b565b858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505061353b565b611d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8290614ada565b60405180910390fd5b8315611e8757600b60069054906101000a900461ffff1661ffff1681601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611df19190614c71565b1115611e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2990614afa565b60405180910390fd5b80600e54611e409190614cf8565b341015611e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e79906149fa565b60405180910390fd5b611f79565b600b60049054906101000a900461ffff1661ffff1681601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ee79190614c71565b1115611f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1f90614afa565b60405180910390fd5b80600f54611f369190614cf8565b341015611f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6f906149fa565b60405180910390fd5b5b611f8333826131a8565b80601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611fce9190614c71565b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b612022848484612ca8565b6120418373ffffffffffffffffffffffffffffffffffffffff16613561565b8015612056575061205484848484613584565b155b1561208d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600b60009054906101000a900461ffff1681565b600b60029054906101000a900461ffff1681565b6120c3612be9565b73ffffffffffffffffffffffffffffffffffffffff166120e161183a565b73ffffffffffffffffffffffffffffffffffffffff1614612137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212e90614a5a565b60405180910390fd5b80600b60066101000a81548161ffff021916908361ffff16021790555050565b61215f612be9565b73ffffffffffffffffffffffffffffffffffffffff1661217d61183a565b73ffffffffffffffffffffffffffffffffffffffff16146121d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ca90614a5a565b60405180910390fd5b60005b825181101561221c5760008382815181106121f4576121f3614fec565b5b6020026020010151905061220881846131a8565b50808061221490614eb7565b9150506121d6565b505050565b612229612be9565b73ffffffffffffffffffffffffffffffffffffffff1661224761183a565b73ffffffffffffffffffffffffffffffffffffffff161461229d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229490614a5a565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b60156020528060005260406000206000915054906101000a900460ff1681565b60606122f482612b9b565b612333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232a90614a7a565b60405180910390fd5b600061233d6136e4565b9050600081511161235d5760405180602001604052806000815250612388565b8061236784613776565b60405160200161237892919061489d565b6040516020818303038152906040525b915050919050565b612398612be9565b73ffffffffffffffffffffffffffffffffffffffff166123b661183a565b73ffffffffffffffffffffffffffffffffffffffff161461240c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240390614a5a565b60405180910390fd5b8060118190555050565b61241e612be9565b73ffffffffffffffffffffffffffffffffffffffff1661243c61183a565b73ffffffffffffffffffffffffffffffffffffffff1614612492576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248990614a5a565b60405180910390fd5b61249c82826131a8565b5050565b6124a8612be9565b73ffffffffffffffffffffffffffffffffffffffff166124c661183a565b73ffffffffffffffffffffffffffffffffffffffff161461251c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251390614a5a565b60405180910390fd5b80600b60026101000a81548161ffff021916908361ffff16021790555050565b600c5481565b61254a612be9565b73ffffffffffffffffffffffffffffffffffffffff1661256861183a565b73ffffffffffffffffffffffffffffffffffffffff16146125be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b590614a5a565b60405180910390fd5b601060029054906101000a900460ff1615601060026101000a81548160ff021916908315150217905550565b60006125f5826138d7565b9050919050565b600e5481565b61260a612be9565b73ffffffffffffffffffffffffffffffffffffffff1661262861183a565b73ffffffffffffffffffffffffffffffffffffffff161461267e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267590614a5a565b60405180910390fd5b80600f8190555050565b601060019054906101000a900460ff1681565b600f5481565b6126a9612be9565b73ffffffffffffffffffffffffffffffffffffffff166126c761183a565b73ffffffffffffffffffffffffffffffffffffffff161461271d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271490614a5a565b60405180910390fd5b80600b60006101000a81548161ffff021916908361ffff16021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6127d9612be9565b73ffffffffffffffffffffffffffffffffffffffff166127f761183a565b73ffffffffffffffffffffffffffffffffffffffff161461284d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284490614a5a565b60405180910390fd5b80600b60046101000a81548161ffff021916908361ffff16021790555050565b612875612be9565b73ffffffffffffffffffffffffffffffffffffffff1661289361183a565b73ffffffffffffffffffffffffffffffffffffffff16146128e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e090614a5a565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b61291d612be9565b73ffffffffffffffffffffffffffffffffffffffff1661293b61183a565b73ffffffffffffffffffffffffffffffffffffffff1614612991576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298890614a5a565b60405180910390fd5b8060138190555050565b6129a3612be9565b73ffffffffffffffffffffffffffffffffffffffff166129c161183a565b73ffffffffffffffffffffffffffffffffffffffff1614612a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0e90614a5a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7e9061499a565b60405180910390fd5b612a9081613445565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1a906149da565b60405180910390fd5b612b2d8282613941565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612ba6612ca3565b11158015612bb5575060005482105b8015612be2575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000612cb3826131b6565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d1e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612d3f612be9565b73ffffffffffffffffffffffffffffffffffffffff161480612d6e5750612d6d85612d68612be9565b61273d565b5b80612db35750612d7c612be9565b73ffffffffffffffffffffffffffffffffffffffff16612d9b84610dde565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612dec576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612e53576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e60858585600161395f565b612e6c60008487612bf1565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156130ec5760005482146130eb57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131578585856001613965565b5050505050565b60008282604051602001613173929190614871565b60405160208183030381529060405280519060200120905092915050565b60006131a0826011548561396b565b905092915050565b6131b28282613941565b5050565b6131be613e58565b6000829050806131cc612ca3565b111580156131db575060005481105b1561340e576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161340c57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146132f0578092505050613440565b5b60011561340b57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613406578092505050613440565b6132f1565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008160405160200161351e9190614856565b604051602081830303815290604052805190602001209050919050565b6000613558828561354e57601354613552565b6012545b8561396b565b90509392505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026135aa612be9565b8786866040518563ffffffff1660e01b81526004016135cc94939291906148f1565b602060405180830381600087803b1580156135e657600080fd5b505af192505050801561361757506040513d601f19601f82011682018060405250810190613614919061440c565b60015b613691573d8060008114613647576040519150601f19603f3d011682016040523d82523d6000602084013e61364c565b606091505b50600081511415613689576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546136f390614e54565b80601f016020809104026020016040519081016040528092919081815260200182805461371f90614e54565b801561376c5780601f106137415761010080835404028352916020019161376c565b820191906000526020600020905b81548152906001019060200180831161374f57829003601f168201915b5050505050905090565b606060008214156137be576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506138d2565b600082905060005b600082146137f05780806137d990614eb7565b915050600a826137e99190614cc7565b91506137c6565b60008167ffffffffffffffff81111561380c5761380b61501b565b5b6040519080825280601f01601f19166020018201604052801561383e5781602001600182028036833780820191505090505b5090505b600085146138cb576001826138579190614d52565b9150600a856138669190614f2e565b60306138729190614c71565b60f81b81838151811061388857613887614fec565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856138c49190614cc7565b9450613842565b8093505050505b919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61395b828260405180602001604052806000815250613982565b5050565b50505050565b50505050565b6000826139788584613d46565b1490509392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156139ef576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415613a2a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613a37600085838661395f565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050613bf88673ffffffffffffffffffffffffffffffffffffffff16613561565b15613cbe575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613c6d6000878480600101955087613584565b613ca3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415613bfe578260005414613cb957600080fd5b613d2a565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613cbf575b816000819055505050613d406000858386613965565b50505050565b60008082905060005b8451811015613db0576000858281518110613d6d57613d6c614fec565b5b60200260200101519050808311613d8f57613d888382613dbb565b9250613d9c565b613d998184613dbb565b92505b508080613da890614eb7565b915050613d4f565b508091505092915050565b600082600052816020526040600020905092915050565b828054613dde90614e54565b90600052602060002090601f016020900481019282613e005760008555613e47565b82601f10613e1957805160ff1916838001178555613e47565b82800160010185558215613e47579182015b82811115613e46578251825591602001919060010190613e2b565b5b509050613e549190613e9b565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613eb4576000816000905550600101613e9c565b5090565b6000613ecb613ec684614b95565b614b70565b90508083825260208201905082856020860282011115613eee57613eed615054565b5b60005b85811015613f1e5781613f048882613fac565b845260208401935060208301925050600181019050613ef1565b5050509392505050565b6000613f3b613f3684614bc1565b614b70565b905082815260208101848484011115613f5757613f56615059565b5b613f62848285614e12565b509392505050565b6000613f7d613f7884614bf2565b614b70565b905082815260208101848484011115613f9957613f98615059565b5b613fa4848285614e12565b509392505050565b600081359050613fbb81615385565b92915050565b600082601f830112613fd657613fd561504f565b5b8135613fe6848260208601613eb8565b91505092915050565b60008083601f8401126140055761400461504f565b5b8235905067ffffffffffffffff8111156140225761402161504a565b5b60208301915083602082028301111561403e5761403d615054565b5b9250929050565b6000813590506140548161539c565b92915050565b600081359050614069816153b3565b92915050565b60008135905061407e816153ca565b92915050565b600081519050614093816153ca565b92915050565b600082601f8301126140ae576140ad61504f565b5b81356140be848260208601613f28565b91505092915050565b600082601f8301126140dc576140db61504f565b5b81356140ec848260208601613f6a565b91505092915050565b600081359050614104816153e1565b92915050565b600081359050614119816153f8565b92915050565b60006020828403121561413557614134615063565b5b600061414384828501613fac565b91505092915050565b6000806040838503121561416357614162615063565b5b600061417185828601613fac565b925050602061418285828601613fac565b9150509250929050565b6000806000606084860312156141a5576141a4615063565b5b60006141b386828701613fac565b93505060206141c486828701613fac565b92505060406141d58682870161410a565b9150509250925092565b600080600080608085870312156141f9576141f8615063565b5b600061420787828801613fac565b945050602061421887828801613fac565b93505060406142298782880161410a565b925050606085013567ffffffffffffffff81111561424a5761424961505e565b5b61425687828801614099565b91505092959194509250565b6000806040838503121561427957614278615063565b5b600061428785828601613fac565b925050602061429885828601614045565b9150509250929050565b600080604083850312156142b9576142b8615063565b5b60006142c785828601613fac565b92505060206142d88582860161410a565b9150509250929050565b600080604083850312156142f9576142f8615063565b5b600083013567ffffffffffffffff8111156143175761431661505e565b5b61432385828601613fc1565b92505060206143348582860161410a565b9150509250929050565b6000806000806060858703121561435857614357615063565b5b600061436687828801614045565b945050602085013567ffffffffffffffff8111156143875761438661505e565b5b61439387828801613fef565b935093505060406143a68782880161410a565b91505092959194509250565b6000602082840312156143c8576143c7615063565b5b60006143d68482850161405a565b91505092915050565b6000602082840312156143f5576143f4615063565b5b60006144038482850161406f565b91505092915050565b60006020828403121561442257614421615063565b5b600061443084828501614084565b91505092915050565b60006020828403121561444f5761444e615063565b5b600082013567ffffffffffffffff81111561446d5761446c61505e565b5b614479848285016140c7565b91505092915050565b60006020828403121561449857614497615063565b5b60006144a6848285016140f5565b91505092915050565b6000602082840312156144c5576144c4615063565b5b60006144d38482850161410a565b91505092915050565b6000806000604084860312156144f5576144f4615063565b5b60006145038682870161410a565b935050602084013567ffffffffffffffff8111156145245761452361505e565b5b61453086828701613fef565b92509250509250925092565b61454581614d86565b82525050565b61455c61455782614d86565b614f00565b82525050565b61456b81614d98565b82525050565b600061457c82614c23565b6145868185614c39565b9350614596818560208601614e21565b61459f81615068565b840191505092915050565b60006145b582614c2e565b6145bf8185614c55565b93506145cf818560208601614e21565b6145d881615068565b840191505092915050565b60006145ee82614c2e565b6145f88185614c66565b9350614608818560208601614e21565b80840191505092915050565b6000614621601283614c55565b915061462c82615086565b602082019050919050565b6000614644602683614c55565b915061464f826150af565b604082019050919050565b6000614667601883614c55565b9150614672826150fe565b602082019050919050565b600061468a602683614c55565b915061469582615127565b604082019050919050565b60006146ad601083614c55565b91506146b882615176565b602082019050919050565b60006146d0601183614c55565b91506146db8261519f565b602082019050919050565b60006146f3602783614c55565b91506146fe826151c8565b604082019050919050565b6000614716602083614c55565b915061472182615217565b602082019050919050565b6000614739602f83614c55565b915061474482615240565b604082019050919050565b600061475c600083614c4a565b91506147678261528f565b600082019050919050565b600061477f600f83614c55565b915061478a82615292565b602082019050919050565b60006147a2602483614c55565b91506147ad826152bb565b604082019050919050565b60006147c5600d83614c55565b91506147d08261530a565b602082019050919050565b60006147e8601783614c55565b91506147f382615333565b602082019050919050565b600061480b601883614c55565b91506148168261535c565b602082019050919050565b61482a81614dda565b82525050565b61483981614e08565b82525050565b61485061484b82614e08565b614f24565b82525050565b6000614862828461454b565b60148201915081905092915050565b600061487d828561454b565b60148201915061488d828461483f565b6020820191508190509392505050565b60006148a982856145e3565b91506148b582846145e3565b91508190509392505050565b60006148cc8261474f565b9150819050919050565b60006020820190506148eb600083018461453c565b92915050565b6000608082019050614906600083018761453c565b614913602083018661453c565b6149206040830185614830565b81810360608301526149328184614571565b905095945050505050565b60006020820190506149526000830184614562565b92915050565b6000602082019050818103600083015261497281846145aa565b905092915050565b6000602082019050818103600083015261499381614614565b9050919050565b600060208201905081810360008301526149b381614637565b9050919050565b600060208201905081810360008301526149d38161465a565b9050919050565b600060208201905081810360008301526149f38161467d565b9050919050565b60006020820190508181036000830152614a13816146a0565b9050919050565b60006020820190508181036000830152614a33816146c3565b9050919050565b60006020820190508181036000830152614a53816146e6565b9050919050565b60006020820190508181036000830152614a7381614709565b9050919050565b60006020820190508181036000830152614a938161472c565b9050919050565b60006020820190508181036000830152614ab381614772565b9050919050565b60006020820190508181036000830152614ad381614795565b9050919050565b60006020820190508181036000830152614af3816147b8565b9050919050565b60006020820190508181036000830152614b13816147db565b9050919050565b60006020820190508181036000830152614b33816147fe565b9050919050565b6000602082019050614b4f6000830184614821565b92915050565b6000602082019050614b6a6000830184614830565b92915050565b6000614b7a614b8b565b9050614b868282614e86565b919050565b6000604051905090565b600067ffffffffffffffff821115614bb057614baf61501b565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614bdc57614bdb61501b565b5b614be582615068565b9050602081019050919050565b600067ffffffffffffffff821115614c0d57614c0c61501b565b5b614c1682615068565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614c7c82614e08565b9150614c8783614e08565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614cbc57614cbb614f5f565b5b828201905092915050565b6000614cd282614e08565b9150614cdd83614e08565b925082614ced57614cec614f8e565b5b828204905092915050565b6000614d0382614e08565b9150614d0e83614e08565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d4757614d46614f5f565b5b828202905092915050565b6000614d5d82614e08565b9150614d6883614e08565b925082821015614d7b57614d7a614f5f565b5b828203905092915050565b6000614d9182614de8565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614e3f578082015181840152602081019050614e24565b83811115614e4e576000848401525b50505050565b60006002820490506001821680614e6c57607f821691505b60208210811415614e8057614e7f614fbd565b5b50919050565b614e8f82615068565b810181811067ffffffffffffffff82111715614eae57614ead61501b565b5b80604052505050565b6000614ec282614e08565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614ef557614ef4614f5f565b5b600182019050919050565b6000614f0b82614f12565b9050919050565b6000614f1d82615079565b9050919050565b6000819050919050565b6000614f3982614e08565b9150614f4483614e08565b925082614f5457614f53614f8e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45786365656473204d617820537570706c790000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f752063616e74206d696e74206f6e2050726573616c650000000000000000600082015250565b7f536f72727920796f7520646f6e742068617665207065726d697373696f6e207460008201527f6f206d696e740000000000000000000000000000000000000000000000000000602082015250565b7f496e7375666669656e742066756e647300000000000000000000000000000000600082015250565b7f436c61696d206e6f7420656e61626c6564000000000000000000000000000000600082015250565b7f536f72727920796f752063616e74206d696e74207468697320616d6f756e742060008201527f6174206f6e636500000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f416c726561647920436c61696d65640000000000000000000000000000000000600082015250565b7f4d696e7420616d6f756e742073686f756c64206265206772656174657220746860008201527f616e203000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b7f45786365656473204d6178204d696e7420616d6f756e74000000000000000000600082015250565b7f536f72727920796f752063616e74206d696e74206d6f72650000000000000000600082015250565b61538e81614d86565b811461539957600080fd5b50565b6153a581614d98565b81146153b057600080fd5b50565b6153bc81614da4565b81146153c757600080fd5b50565b6153d381614dae565b81146153de57600080fd5b50565b6153ea81614dda565b81146153f557600080fd5b50565b61540181614e08565b811461540c57600080fd5b5056fea26469706673582212205bd8130a53025d3f354141a126ae38ad4510022f8d71b3f7999ac0717f9cb53a64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f75732d63656e7472616c312d6d6f666f732d36396136322e636c6f756466756e6374696f6e732e6e65742f6170702f746f6f6e732f746f6b656e2f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103505760003560e01c8063abbcbafe116101c6578063d5abeb01116100f7578063e97800cb11610095578063ed8161791161006f578063ed81617914610bd8578063ee89121214610bef578063f2fde38b14610c18578063f4da184614610c4157610350565b8063e97800cb14610b49578063e985e9c514610b72578063ea44462214610baf57610350565b8063dee20cdd116100d1578063dee20cdd14610a9f578063dfc33dd114610aca578063e5a88cdb14610af3578063e7b99ec714610b1e57610350565b8063d5abeb0114610a20578063d611addf14610a4b578063dc33e68114610a6257610350565b8063c204642c11610164578063c87b56dd1161013e578063c87b56dd14610968578063ca406bee146109a5578063cbce4c97146109ce578063cef11729146109f757610350565b8063c204642c146108eb578063c4ae316814610914578063c6788bdd1461092b57610350565b8063b88d4fde116101a0578063b88d4fde14610843578063bbb897441461086c578063bc951b9114610897578063bcee67d2146108c257610350565b8063abbcbafe146107d1578063af38d757146107fc578063b0e5629d1461082757610350565b806344a0d68a116102a05780636f8b44b01161023e5780638da5cb5b116102185780638da5cb5b1461073657806395d89b4114610761578063a0712d681461078c578063a22cb465146107a857610350565b80636f8b44b0146106b957806370a08231146106e2578063715018a61461071f57610350565b80635c975abb1161027a5780635c975abb146105eb5780636352211e146106165780636852a8551461065357806368570bd61461069057610350565b806344a0d68a1461057057806346068b4c1461059957806355f804b3146105c257610350565b806323b872dd1161030d5780633ccfd60b116102e75780633ccfd60b146104e95780634088487d146104f357806341827f131461051c57806342842e0e1461054757610350565b806323b872dd146104795780632cefffa7146104a25780633456ba6d146104cd57610350565b806301ffc9a71461035557806306fdde0314610392578063081812fc146103bd578063095ea7b3146103fa57806313faede61461042357806318160ddd1461044e575b600080fd5b34801561036157600080fd5b5061037c600480360381019061037791906143df565b610c6a565b604051610389919061493d565b60405180910390f35b34801561039e57600080fd5b506103a7610d4c565b6040516103b49190614958565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df91906144af565b610dde565b6040516103f191906148d6565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c91906142a2565b610e5a565b005b34801561042f57600080fd5b50610438610f65565b6040516104459190614b55565b60405180910390f35b34801561045a57600080fd5b50610463610f6b565b6040516104709190614b55565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b919061418c565b610f82565b005b3480156104ae57600080fd5b506104b7610f92565b6040516104c49190614b3a565b60405180910390f35b6104e760048036038101906104e291906144dc565b610fa6565b005b6104f161117c565b005b3480156104ff57600080fd5b5061051a600480360381019061051591906144af565b611285565b005b34801561052857600080fd5b5061053161130b565b60405161053e9190614958565b60405180910390f35b34801561055357600080fd5b5061056e6004803603810190610569919061418c565b611399565b005b34801561057c57600080fd5b50610597600480360381019061059291906144af565b6113b9565b005b3480156105a557600080fd5b506105c060048036038101906105bb91906143b2565b61143f565b005b3480156105ce57600080fd5b506105e960048036038101906105e49190614439565b6114c5565b005b3480156105f757600080fd5b5061060061155b565b60405161060d919061493d565b60405180910390f35b34801561062257600080fd5b5061063d600480360381019061063891906144af565b61156e565b60405161064a91906148d6565b60405180910390f35b34801561065f57600080fd5b5061067a6004803603810190610675919061411f565b611584565b6040516106879190614b55565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b2919061411f565b61159c565b005b3480156106c557600080fd5b506106e060048036038101906106db91906144af565b61165c565b005b3480156106ee57600080fd5b506107096004803603810190610704919061411f565b6116e2565b6040516107169190614b55565b60405180910390f35b34801561072b57600080fd5b506107346117b2565b005b34801561074257600080fd5b5061074b61183a565b60405161075891906148d6565b60405180910390f35b34801561076d57600080fd5b50610776611864565b6040516107839190614958565b60405180910390f35b6107a660048036038101906107a191906144af565b6118f6565b005b3480156107b457600080fd5b506107cf60048036038101906107ca9190614262565b611b59565b005b3480156107dd57600080fd5b506107e6611cd1565b6040516107f39190614b3a565b60405180910390f35b34801561080857600080fd5b50610811611ce5565b60405161081e919061493d565b60405180910390f35b610841600480360381019061083c919061433e565b611cf8565b005b34801561084f57600080fd5b5061086a600480360381019061086591906141df565b612017565b005b34801561087857600080fd5b50610881612093565b60405161088e9190614b3a565b60405180910390f35b3480156108a357600080fd5b506108ac6120a7565b6040516108b99190614b3a565b60405180910390f35b3480156108ce57600080fd5b506108e960048036038101906108e49190614482565b6120bb565b005b3480156108f757600080fd5b50610912600480360381019061090d91906142e2565b612157565b005b34801561092057600080fd5b50610929612221565b005b34801561093757600080fd5b50610952600480360381019061094d919061411f565b6122c9565b60405161095f919061493d565b60405180910390f35b34801561097457600080fd5b5061098f600480360381019061098a91906144af565b6122e9565b60405161099c9190614958565b60405180910390f35b3480156109b157600080fd5b506109cc60048036038101906109c791906143b2565b612390565b005b3480156109da57600080fd5b506109f560048036038101906109f091906142a2565b612416565b005b348015610a0357600080fd5b50610a1e6004803603810190610a199190614482565b6124a0565b005b348015610a2c57600080fd5b50610a3561253c565b604051610a429190614b55565b60405180910390f35b348015610a5757600080fd5b50610a60612542565b005b348015610a6e57600080fd5b50610a896004803603810190610a84919061411f565b6125ea565b604051610a969190614b55565b60405180910390f35b348015610aab57600080fd5b50610ab46125fc565b604051610ac19190614b55565b60405180910390f35b348015610ad657600080fd5b50610af16004803603810190610aec91906144af565b612602565b005b348015610aff57600080fd5b50610b08612688565b604051610b15919061493d565b60405180910390f35b348015610b2a57600080fd5b50610b3361269b565b604051610b409190614b55565b60405180910390f35b348015610b5557600080fd5b50610b706004803603810190610b6b9190614482565b6126a1565b005b348015610b7e57600080fd5b50610b996004803603810190610b94919061414c565b61273d565b604051610ba6919061493d565b60405180910390f35b348015610bbb57600080fd5b50610bd66004803603810190610bd19190614482565b6127d1565b005b348015610be457600080fd5b50610bed61286d565b005b348015610bfb57600080fd5b50610c166004803603810190610c1191906143b2565b612915565b005b348015610c2457600080fd5b50610c3f6004803603810190610c3a919061411f565b61299b565b005b348015610c4d57600080fd5b50610c686004803603810190610c6391906142a2565b612a93565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d3557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d455750610d4482612b31565b5b9050919050565b606060028054610d5b90614e54565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8790614e54565b8015610dd45780601f10610da957610100808354040283529160200191610dd4565b820191906000526020600020905b815481529060010190602001808311610db757829003601f168201915b5050505050905090565b6000610de982612b9b565b610e1f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e658261156e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ecd576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610eec612be9565b73ffffffffffffffffffffffffffffffffffffffff1614158015610f1e5750610f1c81610f17612be9565b61273d565b155b15610f55576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f60838383612bf1565b505050565b600d5481565b6000610f75612ca3565b6001546000540303905090565b610f8d838383612ca8565b505050565b600b60049054906101000a900461ffff1681565b601060029054906101000a900460ff16610ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fec90614a1a565b60405180910390fd5b611049611002338561315e565b838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050613191565b611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90614ada565b60405180910390fd5b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110c90614a9a565b60405180910390fd5b61111f33846131a8565b6001601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b611184612be9565b73ffffffffffffffffffffffffffffffffffffffff166111a261183a565b73ffffffffffffffffffffffffffffffffffffffff16146111f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ef90614a5a565b60405180910390fd5b600073e600648ce025cc8f80a41dc2953309783289c23c73ffffffffffffffffffffffffffffffffffffffff1647604051611232906148c1565b60006040518083038185875af1925050503d806000811461126f576040519150601f19603f3d011682016040523d82523d6000602084013e611274565b606091505b505090508061128257600080fd5b50565b61128d612be9565b73ffffffffffffffffffffffffffffffffffffffff166112ab61183a565b73ffffffffffffffffffffffffffffffffffffffff1614611301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f890614a5a565b60405180910390fd5b80600e8190555050565b600a805461131890614e54565b80601f016020809104026020016040519081016040528092919081815260200182805461134490614e54565b80156113915780601f1061136657610100808354040283529160200191611391565b820191906000526020600020905b81548152906001019060200180831161137457829003601f168201915b505050505081565b6113b483838360405180602001604052806000815250612017565b505050565b6113c1612be9565b73ffffffffffffffffffffffffffffffffffffffff166113df61183a565b73ffffffffffffffffffffffffffffffffffffffff1614611435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142c90614a5a565b60405180910390fd5b80600d8190555050565b611447612be9565b73ffffffffffffffffffffffffffffffffffffffff1661146561183a565b73ffffffffffffffffffffffffffffffffffffffff16146114bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b290614a5a565b60405180910390fd5b8060128190555050565b6114cd612be9565b73ffffffffffffffffffffffffffffffffffffffff166114eb61183a565b73ffffffffffffffffffffffffffffffffffffffff1614611541576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153890614a5a565b60405180910390fd5b80600a9080519060200190611557929190613dd2565b5050565b601060009054906101000a900460ff1681565b6000611579826131b6565b600001519050919050565b60146020528060005260406000206000915090505481565b6115a4612be9565b73ffffffffffffffffffffffffffffffffffffffff166115c261183a565b73ffffffffffffffffffffffffffffffffffffffff1614611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f90614a5a565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611664612be9565b73ffffffffffffffffffffffffffffffffffffffff1661168261183a565b73ffffffffffffffffffffffffffffffffffffffff16146116d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cf90614a5a565b60405180910390fd5b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561174a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6117ba612be9565b73ffffffffffffffffffffffffffffffffffffffff166117d861183a565b73ffffffffffffffffffffffffffffffffffffffff161461182e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182590614a5a565b60405180910390fd5b6118386000613445565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461187390614e54565b80601f016020809104026020016040519081016040528092919081815260200182805461189f90614e54565b80156118ec5780601f106118c1576101008083540402835291602001916118ec565b820191906000526020600020905b8154815290600101906020018083116118cf57829003601f168201915b5050505050905090565b6118fe61183a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611b4c57600061193b336116e2565b9050601060009054906101000a900460ff161561195757600080fd5b601060019054906101000a900460ff16156119a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199e906149ba565b60405180910390fd5b600082116119ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e190614aba565b60405180910390fd5b600b60009054906101000a900461ffff1661ffff16821115611a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3890614a3a565b60405180910390fd5b600c5482611a4d610f6b565b611a579190614c71565b1115611a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8f9061497a565b60405180910390fd5b600b60029054906101000a900461ffff1661ffff168282611ab99190614c71565b1115611afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af190614b1a565b60405180910390fd5b81600d54611b089190614cf8565b341015611b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b41906149fa565b60405180910390fd5b505b611b5633826131a8565b50565b611b61612be9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bc6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611bd3612be9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c80612be9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cc5919061493d565b60405180910390a35050565b600b60069054906101000a900461ffff1681565b601060029054906101000a900460ff1681565b611d4c84611d053361350b565b858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505061353b565b611d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8290614ada565b60405180910390fd5b8315611e8757600b60069054906101000a900461ffff1661ffff1681601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611df19190614c71565b1115611e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2990614afa565b60405180910390fd5b80600e54611e409190614cf8565b341015611e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e79906149fa565b60405180910390fd5b611f79565b600b60049054906101000a900461ffff1661ffff1681601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ee79190614c71565b1115611f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1f90614afa565b60405180910390fd5b80600f54611f369190614cf8565b341015611f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6f906149fa565b60405180910390fd5b5b611f8333826131a8565b80601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611fce9190614c71565b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b612022848484612ca8565b6120418373ffffffffffffffffffffffffffffffffffffffff16613561565b8015612056575061205484848484613584565b155b1561208d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600b60009054906101000a900461ffff1681565b600b60029054906101000a900461ffff1681565b6120c3612be9565b73ffffffffffffffffffffffffffffffffffffffff166120e161183a565b73ffffffffffffffffffffffffffffffffffffffff1614612137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212e90614a5a565b60405180910390fd5b80600b60066101000a81548161ffff021916908361ffff16021790555050565b61215f612be9565b73ffffffffffffffffffffffffffffffffffffffff1661217d61183a565b73ffffffffffffffffffffffffffffffffffffffff16146121d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ca90614a5a565b60405180910390fd5b60005b825181101561221c5760008382815181106121f4576121f3614fec565b5b6020026020010151905061220881846131a8565b50808061221490614eb7565b9150506121d6565b505050565b612229612be9565b73ffffffffffffffffffffffffffffffffffffffff1661224761183a565b73ffffffffffffffffffffffffffffffffffffffff161461229d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229490614a5a565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b60156020528060005260406000206000915054906101000a900460ff1681565b60606122f482612b9b565b612333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232a90614a7a565b60405180910390fd5b600061233d6136e4565b9050600081511161235d5760405180602001604052806000815250612388565b8061236784613776565b60405160200161237892919061489d565b6040516020818303038152906040525b915050919050565b612398612be9565b73ffffffffffffffffffffffffffffffffffffffff166123b661183a565b73ffffffffffffffffffffffffffffffffffffffff161461240c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240390614a5a565b60405180910390fd5b8060118190555050565b61241e612be9565b73ffffffffffffffffffffffffffffffffffffffff1661243c61183a565b73ffffffffffffffffffffffffffffffffffffffff1614612492576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248990614a5a565b60405180910390fd5b61249c82826131a8565b5050565b6124a8612be9565b73ffffffffffffffffffffffffffffffffffffffff166124c661183a565b73ffffffffffffffffffffffffffffffffffffffff161461251c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251390614a5a565b60405180910390fd5b80600b60026101000a81548161ffff021916908361ffff16021790555050565b600c5481565b61254a612be9565b73ffffffffffffffffffffffffffffffffffffffff1661256861183a565b73ffffffffffffffffffffffffffffffffffffffff16146125be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b590614a5a565b60405180910390fd5b601060029054906101000a900460ff1615601060026101000a81548160ff021916908315150217905550565b60006125f5826138d7565b9050919050565b600e5481565b61260a612be9565b73ffffffffffffffffffffffffffffffffffffffff1661262861183a565b73ffffffffffffffffffffffffffffffffffffffff161461267e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267590614a5a565b60405180910390fd5b80600f8190555050565b601060019054906101000a900460ff1681565b600f5481565b6126a9612be9565b73ffffffffffffffffffffffffffffffffffffffff166126c761183a565b73ffffffffffffffffffffffffffffffffffffffff161461271d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271490614a5a565b60405180910390fd5b80600b60006101000a81548161ffff021916908361ffff16021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6127d9612be9565b73ffffffffffffffffffffffffffffffffffffffff166127f761183a565b73ffffffffffffffffffffffffffffffffffffffff161461284d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284490614a5a565b60405180910390fd5b80600b60046101000a81548161ffff021916908361ffff16021790555050565b612875612be9565b73ffffffffffffffffffffffffffffffffffffffff1661289361183a565b73ffffffffffffffffffffffffffffffffffffffff16146128e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e090614a5a565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b61291d612be9565b73ffffffffffffffffffffffffffffffffffffffff1661293b61183a565b73ffffffffffffffffffffffffffffffffffffffff1614612991576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298890614a5a565b60405180910390fd5b8060138190555050565b6129a3612be9565b73ffffffffffffffffffffffffffffffffffffffff166129c161183a565b73ffffffffffffffffffffffffffffffffffffffff1614612a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0e90614a5a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7e9061499a565b60405180910390fd5b612a9081613445565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1a906149da565b60405180910390fd5b612b2d8282613941565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612ba6612ca3565b11158015612bb5575060005482105b8015612be2575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000612cb3826131b6565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d1e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612d3f612be9565b73ffffffffffffffffffffffffffffffffffffffff161480612d6e5750612d6d85612d68612be9565b61273d565b5b80612db35750612d7c612be9565b73ffffffffffffffffffffffffffffffffffffffff16612d9b84610dde565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612dec576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612e53576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e60858585600161395f565b612e6c60008487612bf1565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156130ec5760005482146130eb57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131578585856001613965565b5050505050565b60008282604051602001613173929190614871565b60405160208183030381529060405280519060200120905092915050565b60006131a0826011548561396b565b905092915050565b6131b28282613941565b5050565b6131be613e58565b6000829050806131cc612ca3565b111580156131db575060005481105b1561340e576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161340c57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146132f0578092505050613440565b5b60011561340b57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613406578092505050613440565b6132f1565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008160405160200161351e9190614856565b604051602081830303815290604052805190602001209050919050565b6000613558828561354e57601354613552565b6012545b8561396b565b90509392505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026135aa612be9565b8786866040518563ffffffff1660e01b81526004016135cc94939291906148f1565b602060405180830381600087803b1580156135e657600080fd5b505af192505050801561361757506040513d601f19601f82011682018060405250810190613614919061440c565b60015b613691573d8060008114613647576040519150601f19603f3d011682016040523d82523d6000602084013e61364c565b606091505b50600081511415613689576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546136f390614e54565b80601f016020809104026020016040519081016040528092919081815260200182805461371f90614e54565b801561376c5780601f106137415761010080835404028352916020019161376c565b820191906000526020600020905b81548152906001019060200180831161374f57829003601f168201915b5050505050905090565b606060008214156137be576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506138d2565b600082905060005b600082146137f05780806137d990614eb7565b915050600a826137e99190614cc7565b91506137c6565b60008167ffffffffffffffff81111561380c5761380b61501b565b5b6040519080825280601f01601f19166020018201604052801561383e5781602001600182028036833780820191505090505b5090505b600085146138cb576001826138579190614d52565b9150600a856138669190614f2e565b60306138729190614c71565b60f81b81838151811061388857613887614fec565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856138c49190614cc7565b9450613842565b8093505050505b919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61395b828260405180602001604052806000815250613982565b5050565b50505050565b50505050565b6000826139788584613d46565b1490509392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156139ef576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415613a2a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613a37600085838661395f565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050613bf88673ffffffffffffffffffffffffffffffffffffffff16613561565b15613cbe575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613c6d6000878480600101955087613584565b613ca3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415613bfe578260005414613cb957600080fd5b613d2a565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613cbf575b816000819055505050613d406000858386613965565b50505050565b60008082905060005b8451811015613db0576000858281518110613d6d57613d6c614fec565b5b60200260200101519050808311613d8f57613d888382613dbb565b9250613d9c565b613d998184613dbb565b92505b508080613da890614eb7565b915050613d4f565b508091505092915050565b600082600052816020526040600020905092915050565b828054613dde90614e54565b90600052602060002090601f016020900481019282613e005760008555613e47565b82601f10613e1957805160ff1916838001178555613e47565b82800160010185558215613e47579182015b82811115613e46578251825591602001919060010190613e2b565b5b509050613e549190613e9b565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613eb4576000816000905550600101613e9c565b5090565b6000613ecb613ec684614b95565b614b70565b90508083825260208201905082856020860282011115613eee57613eed615054565b5b60005b85811015613f1e5781613f048882613fac565b845260208401935060208301925050600181019050613ef1565b5050509392505050565b6000613f3b613f3684614bc1565b614b70565b905082815260208101848484011115613f5757613f56615059565b5b613f62848285614e12565b509392505050565b6000613f7d613f7884614bf2565b614b70565b905082815260208101848484011115613f9957613f98615059565b5b613fa4848285614e12565b509392505050565b600081359050613fbb81615385565b92915050565b600082601f830112613fd657613fd561504f565b5b8135613fe6848260208601613eb8565b91505092915050565b60008083601f8401126140055761400461504f565b5b8235905067ffffffffffffffff8111156140225761402161504a565b5b60208301915083602082028301111561403e5761403d615054565b5b9250929050565b6000813590506140548161539c565b92915050565b600081359050614069816153b3565b92915050565b60008135905061407e816153ca565b92915050565b600081519050614093816153ca565b92915050565b600082601f8301126140ae576140ad61504f565b5b81356140be848260208601613f28565b91505092915050565b600082601f8301126140dc576140db61504f565b5b81356140ec848260208601613f6a565b91505092915050565b600081359050614104816153e1565b92915050565b600081359050614119816153f8565b92915050565b60006020828403121561413557614134615063565b5b600061414384828501613fac565b91505092915050565b6000806040838503121561416357614162615063565b5b600061417185828601613fac565b925050602061418285828601613fac565b9150509250929050565b6000806000606084860312156141a5576141a4615063565b5b60006141b386828701613fac565b93505060206141c486828701613fac565b92505060406141d58682870161410a565b9150509250925092565b600080600080608085870312156141f9576141f8615063565b5b600061420787828801613fac565b945050602061421887828801613fac565b93505060406142298782880161410a565b925050606085013567ffffffffffffffff81111561424a5761424961505e565b5b61425687828801614099565b91505092959194509250565b6000806040838503121561427957614278615063565b5b600061428785828601613fac565b925050602061429885828601614045565b9150509250929050565b600080604083850312156142b9576142b8615063565b5b60006142c785828601613fac565b92505060206142d88582860161410a565b9150509250929050565b600080604083850312156142f9576142f8615063565b5b600083013567ffffffffffffffff8111156143175761431661505e565b5b61432385828601613fc1565b92505060206143348582860161410a565b9150509250929050565b6000806000806060858703121561435857614357615063565b5b600061436687828801614045565b945050602085013567ffffffffffffffff8111156143875761438661505e565b5b61439387828801613fef565b935093505060406143a68782880161410a565b91505092959194509250565b6000602082840312156143c8576143c7615063565b5b60006143d68482850161405a565b91505092915050565b6000602082840312156143f5576143f4615063565b5b60006144038482850161406f565b91505092915050565b60006020828403121561442257614421615063565b5b600061443084828501614084565b91505092915050565b60006020828403121561444f5761444e615063565b5b600082013567ffffffffffffffff81111561446d5761446c61505e565b5b614479848285016140c7565b91505092915050565b60006020828403121561449857614497615063565b5b60006144a6848285016140f5565b91505092915050565b6000602082840312156144c5576144c4615063565b5b60006144d38482850161410a565b91505092915050565b6000806000604084860312156144f5576144f4615063565b5b60006145038682870161410a565b935050602084013567ffffffffffffffff8111156145245761452361505e565b5b61453086828701613fef565b92509250509250925092565b61454581614d86565b82525050565b61455c61455782614d86565b614f00565b82525050565b61456b81614d98565b82525050565b600061457c82614c23565b6145868185614c39565b9350614596818560208601614e21565b61459f81615068565b840191505092915050565b60006145b582614c2e565b6145bf8185614c55565b93506145cf818560208601614e21565b6145d881615068565b840191505092915050565b60006145ee82614c2e565b6145f88185614c66565b9350614608818560208601614e21565b80840191505092915050565b6000614621601283614c55565b915061462c82615086565b602082019050919050565b6000614644602683614c55565b915061464f826150af565b604082019050919050565b6000614667601883614c55565b9150614672826150fe565b602082019050919050565b600061468a602683614c55565b915061469582615127565b604082019050919050565b60006146ad601083614c55565b91506146b882615176565b602082019050919050565b60006146d0601183614c55565b91506146db8261519f565b602082019050919050565b60006146f3602783614c55565b91506146fe826151c8565b604082019050919050565b6000614716602083614c55565b915061472182615217565b602082019050919050565b6000614739602f83614c55565b915061474482615240565b604082019050919050565b600061475c600083614c4a565b91506147678261528f565b600082019050919050565b600061477f600f83614c55565b915061478a82615292565b602082019050919050565b60006147a2602483614c55565b91506147ad826152bb565b604082019050919050565b60006147c5600d83614c55565b91506147d08261530a565b602082019050919050565b60006147e8601783614c55565b91506147f382615333565b602082019050919050565b600061480b601883614c55565b91506148168261535c565b602082019050919050565b61482a81614dda565b82525050565b61483981614e08565b82525050565b61485061484b82614e08565b614f24565b82525050565b6000614862828461454b565b60148201915081905092915050565b600061487d828561454b565b60148201915061488d828461483f565b6020820191508190509392505050565b60006148a982856145e3565b91506148b582846145e3565b91508190509392505050565b60006148cc8261474f565b9150819050919050565b60006020820190506148eb600083018461453c565b92915050565b6000608082019050614906600083018761453c565b614913602083018661453c565b6149206040830185614830565b81810360608301526149328184614571565b905095945050505050565b60006020820190506149526000830184614562565b92915050565b6000602082019050818103600083015261497281846145aa565b905092915050565b6000602082019050818103600083015261499381614614565b9050919050565b600060208201905081810360008301526149b381614637565b9050919050565b600060208201905081810360008301526149d38161465a565b9050919050565b600060208201905081810360008301526149f38161467d565b9050919050565b60006020820190508181036000830152614a13816146a0565b9050919050565b60006020820190508181036000830152614a33816146c3565b9050919050565b60006020820190508181036000830152614a53816146e6565b9050919050565b60006020820190508181036000830152614a7381614709565b9050919050565b60006020820190508181036000830152614a938161472c565b9050919050565b60006020820190508181036000830152614ab381614772565b9050919050565b60006020820190508181036000830152614ad381614795565b9050919050565b60006020820190508181036000830152614af3816147b8565b9050919050565b60006020820190508181036000830152614b13816147db565b9050919050565b60006020820190508181036000830152614b33816147fe565b9050919050565b6000602082019050614b4f6000830184614821565b92915050565b6000602082019050614b6a6000830184614830565b92915050565b6000614b7a614b8b565b9050614b868282614e86565b919050565b6000604051905090565b600067ffffffffffffffff821115614bb057614baf61501b565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614bdc57614bdb61501b565b5b614be582615068565b9050602081019050919050565b600067ffffffffffffffff821115614c0d57614c0c61501b565b5b614c1682615068565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614c7c82614e08565b9150614c8783614e08565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614cbc57614cbb614f5f565b5b828201905092915050565b6000614cd282614e08565b9150614cdd83614e08565b925082614ced57614cec614f8e565b5b828204905092915050565b6000614d0382614e08565b9150614d0e83614e08565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d4757614d46614f5f565b5b828202905092915050565b6000614d5d82614e08565b9150614d6883614e08565b925082821015614d7b57614d7a614f5f565b5b828203905092915050565b6000614d9182614de8565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614e3f578082015181840152602081019050614e24565b83811115614e4e576000848401525b50505050565b60006002820490506001821680614e6c57607f821691505b60208210811415614e8057614e7f614fbd565b5b50919050565b614e8f82615068565b810181811067ffffffffffffffff82111715614eae57614ead61501b565b5b80604052505050565b6000614ec282614e08565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614ef557614ef4614f5f565b5b600182019050919050565b6000614f0b82614f12565b9050919050565b6000614f1d82615079565b9050919050565b6000819050919050565b6000614f3982614e08565b9150614f4483614e08565b925082614f5457614f53614f8e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45786365656473204d617820537570706c790000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f752063616e74206d696e74206f6e2050726573616c650000000000000000600082015250565b7f536f72727920796f7520646f6e742068617665207065726d697373696f6e207460008201527f6f206d696e740000000000000000000000000000000000000000000000000000602082015250565b7f496e7375666669656e742066756e647300000000000000000000000000000000600082015250565b7f436c61696d206e6f7420656e61626c6564000000000000000000000000000000600082015250565b7f536f72727920796f752063616e74206d696e74207468697320616d6f756e742060008201527f6174206f6e636500000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f416c726561647920436c61696d65640000000000000000000000000000000000600082015250565b7f4d696e7420616d6f756e742073686f756c64206265206772656174657220746860008201527f616e203000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b7f45786365656473204d6178204d696e7420616d6f756e74000000000000000000600082015250565b7f536f72727920796f752063616e74206d696e74206d6f72650000000000000000600082015250565b61538e81614d86565b811461539957600080fd5b50565b6153a581614d98565b81146153b057600080fd5b50565b6153bc81614da4565b81146153c757600080fd5b50565b6153d381614dae565b81146153de57600080fd5b50565b6153ea81614dda565b81146153f557600080fd5b50565b61540181614e08565b811461540c57600080fd5b5056fea26469706673582212205bd8130a53025d3f354141a126ae38ad4510022f8d71b3f7999ac0717f9cb53a64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f75732d63656e7472616c312d6d6f666f732d36396136322e636c6f756466756e6374696f6e732e6e65742f6170702f746f6f6e732f746f6b656e2f0000000000000000000000000000000000000000000000000000000000

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

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [2] : 68747470733a2f2f75732d63656e7472616c312d6d6f666f732d36396136322e
Arg [3] : 636c6f756466756e6374696f6e732e6e65742f6170702f746f6f6e732f746f6b
Arg [4] : 656e2f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

48291:8826:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29401:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32514:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34017:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33580:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48777:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28650:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34882:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48597:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51300:606;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56924:190;;;:::i;:::-;;55646:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48400:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35123:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55437:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50070:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56397:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48930:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32322:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49175:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49482:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56295:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29770:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7119:103;;;;;;;;;;;;;:::i;:::-;;6468:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32683:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53506:925;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34293:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48647:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49005:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51936:1424;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35379:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48467:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48519:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56162:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54558:257;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56512:75;;;;;;;;;;;;;:::i;:::-;;49233:38;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54942:487;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50687:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54439:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55902:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48723:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56595:80;;;;;;;;;;;;;:::i;:::-;;53370:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48815:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55531:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48962:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48865:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55765:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34651:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56029:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56683:99;;;;;;;;;;;;;:::i;:::-;;49968:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7377:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49684:250;;;;;;;;;;;;;;;;;;;;;;;:::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;48777:31::-;;;;:::o;28650:303::-;28694:7;28919:15;:13;:15::i;:::-;28904:12;;28888:13;;:28;:46;28881:53;;28650:303;:::o;34882:170::-;35016:28;35026:4;35032:2;35036:7;35016:9;:28::i;:::-;34882:170;;;:::o;48597:43::-;;;;;;;;;;;;;:::o;51300:606::-;51471:9;;;;;;;;;;;51463:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;51551:61;51571:33;51584:10;51596:7;51571:12;:33::i;:::-;51606:5;;51551:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:19;:61::i;:::-;51521:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;51699:6;:18;51706:10;51699:18;;;;;;;;;;;;;;;;;;;;;;;;;51698:19;51690:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;51806:30;51816:10;51828:7;51806:9;:30::i;:::-;51876:4;51855:6;:18;51862:10;51855:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;51300:606;;;:::o;56924:190::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56981:7:::1;57002:42;56994:56;;57058:21;56994:90;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56980:104;;;57103:2;57095:11;;;::::0;::::1;;56969:145;56924:190::o:0;55646:111::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55741:8:::1;55723:15;:26;;;;55646:111:::0;:::o;48400:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35123:185::-;35261:39;35278:4;35284:2;35288:7;35261:39;;;;;;;;;;;;:16;:39::i;:::-;35123:185;;;:::o;55437:86::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55507:8:::1;55500:4;:15;;;;55437:86:::0;:::o;50070:98::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50155:5:::1;50144:8;:16;;;;50070:98:::0;:::o;56397:107::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56485:11:::1;56472:10;:24;;;;;;;;;;;;:::i;:::-;;56397:107:::0;:::o;48930:25::-;;;;;;;;;;;;;:::o;32322:125::-;32386:7;32413:21;32426:7;32413:12;:21::i;:::-;:26;;;32406:33;;32322:125;;;:::o;49175:51::-;;;;;;;;;;;;;;;;;:::o;49482:119::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49584:9:::1;49565:16;;:28;;;;;;;;;;;;;;;;;;49482:119:::0;:::o;56295:94::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56374:7:::1;56362:9;:19;;;;56295: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;6468:87::-;6514:7;6541:6;;;;;;;;;;;6534:13;;6468:87;:::o;32683:104::-;32739:13;32772:7;32765:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32683:104;:::o;53506:925::-;53585:7;:5;:7::i;:::-;53571:21;;:10;:21;;;53567:810;;53609:23;53635:21;53645:10;53635:9;:21::i;:::-;53609:47;;53682:6;;;;;;;;;;;53681:7;53673:16;;;;;;53713;;;;;;;;;;;53712:17;53704:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;53795:1;53781:11;:15;53773:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;53893:27;;;;;;;;;;;53878:42;;:11;:42;;53852:143;;;;;;;;;;;;:::i;:::-;;;;;;;;;54067:9;;54052:11;54036:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;54010:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;54206:22;;;;;;;;;;;54171:57;;54190:11;54172:15;:29;;;;:::i;:::-;54171:57;;54145:143;;;;;;;;;;;;:::i;:::-;;;;;;;;;54333:11;54326:4;;:18;;;;:::i;:::-;54313:9;:31;;54305:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;53594:783;53567:810;54389:34;54399:10;54411:11;54389:9;:34::i;:::-;53506:925;:::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;48647:45::-;;;;;;;;;;;;;:::o;49005:29::-;;;;;;;;;;;;;:::o;51936:1424::-;52147:39;52155:4;52161:17;52167:10;52161:5;:17::i;:::-;52180:5;;52147:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:7;:39::i;:::-;52117:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;52283:4;52280:798;;;52414:27;;;;;;;;;;;52341:100;;52373:11;52342:16;:28;52359:10;52342:28;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;52341:100;;52311:197;;;;;;;;;;;;:::i;:::-;;;;;;;;;52591:11;52573:15;;:29;;;;:::i;:::-;52559:9;:44;;52529:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;52280:798;;;52813:25;;;;;;;;;;;52740:98;;52772:11;52741:16;:28;52758:10;52741:28;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;52740:98;;52710:195;;;;;;;;;;;;:::i;:::-;;;;;;;;;52986:11;52970:13;;:27;;;;:::i;:::-;52956:9;:42;;52926:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;52280:798;53184:34;53194:10;53206:11;53184:9;:34::i;:::-;53341:11;53289:16;:28;53306:10;53289:28;;;;;;;;;;;;;;;;:63;;;;:::i;:::-;53237:16;:28;53254:10;53237:28;;;;;;;;;;;;;;;:115;;;;51936:1424;;;;:::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;48467:45::-;;;;;;;;;;;;;:::o;48519:40::-;;;;;;;;;;;;;:::o;56162:125::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56272:7:::1;56242:27;;:37;;;;;;;;;;;;;;;;;;56162:125:::0;:::o;54558:257::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54661:9:::1;54656:152;54680:17;:24;54676:1;:28;54656:152;;;54726:10;54739:17;54757:1;54739:20;;;;;;;;:::i;:::-;;;;;;;;54726:33;;54774:22;54784:2;54788:7;54774:9;:22::i;:::-;54711:97;54706:3;;;;;:::i;:::-;;;;54656:152;;;;54558:257:::0;;:::o;56512:75::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56573:6:::1;;;;;;;;;;;56572:7;56563:6;;:16;;;;;;;;;;;;;;;;;;56512:75::o:0;49233:38::-;;;;;;;;;;;;;;;;;;;;;;:::o;54942:487::-;55060:13;55113:16;55121:7;55113;:16::i;:::-;55091:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;55215:28;55246:10;:8;:10::i;:::-;55215:41;;55318:1;55293:14;55287:28;:32;:134;;;;;;;;;;;;;;;;;55363:14;55379:18;:7;:16;:18::i;:::-;55346:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55287:134;55267:154;;;54942:487;;;:::o;50687:99::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50773:5:::1;50754:16;:24;;;;50687:99:::0;:::o;54439:111::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54515:27:::1;54525:3;54530:11;54515:9;:27::i;:::-;54439:111:::0;;:::o;55902:119::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56006:7:::1;55981:22;;:32;;;;;;;;;;;;;;;;;;55902:119:::0;:::o;48723:31::-;;;;:::o;56595:80::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56658:9:::1;;;;;;;;;;;56657:10;56645:9;;:22;;;;;;;;;;;;;;;;;;56595:80::o:0;53370:113::-;53428:7;53455:20;53469:5;53455:13;:20::i;:::-;53448:27;;53370:113;;;:::o;48815:43::-;;;;:::o;55531:107::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55622:8:::1;55606:13;:24;;;;55531:107:::0;:::o;48962:36::-;;;;;;;;;;;;;:::o;48865:41::-;;;;:::o;55765:129::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55879:7:::1;55849:27;;:37;;;;;;;;;;;;;;;;;;55765:129:::0;:::o;34651:164::-;34748:4;34772:18;:25;34791:5;34772:25;;;;;;;;;;;;;;;:35;34798:8;34772:35;;;;;;;;;;;;;;;;;;;;;;;;;34765:42;;34651:164;;;;:::o;56029:125::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56139:7:::1;56111:25;;:35;;;;;;;;;;;;;;;;;;56029:125:::0;:::o;56683:99::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56758:16:::1;;;;;;;;;;;56757:17;56738:16;;:36;;;;;;;;;;;;;;;;;;56683:99::o:0;49968:94::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50049:5:::1;50040:6;:14;;;;49968:94:::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;49684:250::-;49801:16;;;;;;;;;;;49787:30;;:10;:30;;;49765:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;49894:32;49904:8;49914:11;49894:9;:32::i;:::-;49684:250;;:::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;45229:196::-;45371:2;45344:15;:24;45360:7;45344:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45409:7;45405:2;45389:28;;45398:5;45389:28;;;;;;;;;;;;45229:196;;;:::o;28424:92::-;28480:7;28424:92;:::o;40177:2130::-;40292:35;40330:21;40343:7;40330:12;:21::i;:::-;40292:59;;40390:4;40368:26;;:13;:18;;;:26;;;40364:67;;40403:28;;;;;;;;;;;;;;40364:67;40444:22;40486:4;40470:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;40507:36;40524:4;40530:12;:10;:12::i;:::-;40507:16;:36::i;:::-;40470:73;:126;;;;40584:12;:10;:12::i;:::-;40560:36;;:20;40572:7;40560:11;:20::i;:::-;:36;;;40470:126;40444:153;;40615:17;40610:66;;40641:35;;;;;;;;;;;;;;40610:66;40705:1;40691:16;;:2;:16;;;40687:52;;;40716:23;;;;;;;;;;;;;;40687:52;40752:43;40774:4;40780:2;40784:7;40793:1;40752:21;:43::i;:::-;40860:35;40877:1;40881:7;40890:4;40860:8;:35::i;:::-;41221:1;41191:12;:18;41204:4;41191:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41265:1;41237:12;:16;41250:2;41237:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41283:31;41317:11;:20;41329:7;41317:20;;;;;;;;;;;41283:54;;41368:2;41352:8;:13;;;:18;;;;;;;;;;;;;;;;;;41418:15;41385:8;:23;;;:49;;;;;;;;;;;;;;;;;;41686:19;41718:1;41708:7;:11;41686:33;;41734:31;41768:11;:24;41780:11;41768:24;;;;;;;;;;;41734:58;;41836:1;41811:27;;:8;:13;;;;;;;;;;;;:27;;;41807:384;;;42021:13;;42006:11;:28;42002:174;;42075:4;42059:8;:13;;;:20;;;;;;;;;;;;;;;;;;42128:13;:28;;;42102:8;:23;;;:54;;;;;;;;;;;;;;;;;;42002:174;41807:384;41166:1036;;;42238:7;42234:2;42219:27;;42228:4;42219:27;;;;;;;;;;;;42257:42;42278:4;42284:2;42288:7;42297:1;42257:20;:42::i;:::-;40281:2026;;40177:2130;;;:::o;51104:159::-;51183:7;51237;51246;51220:34;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51210:45;;;;;;51203:52;;51104:159;;;;:::o;50794:206::-;50914:4;50938:54;50957:5;50964:16;;50982:9;50938:18;:54::i;:::-;50931:61;;50794:206;;;;:::o;56790:120::-;56869:33;56879:9;56890:11;56869:9;:33::i;:::-;56790:120;;:::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;50549:126::-;50604:7;50658;50641:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;50631:36;;;;;;50624:43;;50549:126;;;:::o;50225:220::-;50354:4;50378:59;50397:5;50404;:21;;50419:6;;50404:21;;;50410:8;;50404:21;50427:9;50378:18;:59::i;:::-;50371:66;;50225:220;;;;;:::o;9169:326::-;9229:4;9486:1;9464:7;:19;;;:23;9457:30;;9169:326;;;:::o;45917:667::-;46080:4;46117:2;46101:36;;;46138:12;:10;:12::i;:::-;46152:4;46158:7;46167:5;46101:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46097:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46352:1;46335:6;:13;:18;46331:235;;;46381:40;;;;;;;;;;;;;;46331:235;46524:6;46518:13;46509:6;46505:2;46501:15;46494:38;46097:480;46230:45;;;46220:55;;;:6;:55;;;;46213:62;;;45917:667;;;;;;:::o;54823:111::-;54883:13;54916:10;54909:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54823: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;30058:137::-;30119:7;30154:12;:19;30167:5;30154:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;30146:41;;30139:48;;30058:137;;;:::o;36261:104::-;36330:27;36340:2;36344:8;36330:27;;;;;;;;;;;;:9;:27::i;:::-;36261:104;;:::o;47232:159::-;;;;;:::o;48050:158::-;;;;;:::o;923:190::-;1048:4;1101;1072:25;1085:5;1092:4;1072:12;:25::i;:::-;:33;1065:40;;923:190;;;;;:::o;36739:1751::-;36862:20;36885:13;;36862:36;;36927:1;36913:16;;:2;:16;;;36909:48;;;36938:19;;;;;;;;;;;;;;36909:48;36984:1;36972:8;:13;36968:44;;;36994:18;;;;;;;;;;;;;;36968:44;37025:61;37055:1;37059:2;37063:12;37077:8;37025:21;:61::i;:::-;37398:8;37363:12;:16;37376:2;37363:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37462:8;37422:12;:16;37435:2;37422:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37521:2;37488:11;:25;37500:12;37488:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37588:15;37538:11;:25;37550:12;37538:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37621:20;37644:12;37621:35;;37671:11;37700:8;37685:12;:23;37671:37;;37729:15;:2;:13;;;:15::i;:::-;37725:633;;;37765:314;37821:12;37817:2;37796:38;;37813:1;37796:38;;;;;;;;;;;;37862:69;37901:1;37905:2;37909:14;;;;;;37925:5;37862:30;:69::i;:::-;37857:174;;37967:40;;;;;;;;;;;;;;37857:174;38074:3;38058:12;:19;;37765:314;;38160:12;38143:13;;:29;38139:43;;38174:8;;;38139:43;37725:633;;;38223:120;38279:14;;;;;;38275:2;38254:40;;38271:1;38254:40;;;;;;;;;;;;38338:3;38322:12;:19;;38223:120;;37725:633;38388:12;38372:13;:28;;;;37338:1074;;38422:60;38451:1;38455:2;38459:12;38473:8;38422:20;:60::i;:::-;36851:1639;36739:1751;;;:::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;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:684::-;7730:6;7738;7787:2;7775:9;7766:7;7762:23;7758:32;7755:119;;;7793:79;;:::i;:::-;7755:119;7941:1;7930:9;7926:17;7913:31;7971:18;7963:6;7960:30;7957:117;;;7993:79;;:::i;:::-;7957:117;8098:78;8168:7;8159:6;8148:9;8144:22;8098:78;:::i;:::-;8088:88;;7884:302;8225:2;8251:53;8296:7;8287:6;8276:9;8272:22;8251:53;:::i;:::-;8241:63;;8196:118;7637:684;;;;;:::o;8327:843::-;8428:6;8436;8444;8452;8501:2;8489:9;8480:7;8476:23;8472:32;8469:119;;;8507:79;;:::i;:::-;8469:119;8627:1;8652:50;8694:7;8685:6;8674:9;8670:22;8652:50;:::i;:::-;8642:60;;8598:114;8779:2;8768:9;8764:18;8751:32;8810:18;8802:6;8799:30;8796:117;;;8832:79;;:::i;:::-;8796:117;8945:80;9017:7;9008:6;8997:9;8993:22;8945:80;:::i;:::-;8927:98;;;;8722:313;9074:2;9100:53;9145:7;9136:6;9125:9;9121:22;9100:53;:::i;:::-;9090:63;;9045:118;8327:843;;;;;;;:::o;9176:329::-;9235:6;9284:2;9272:9;9263:7;9259:23;9255:32;9252:119;;;9290:79;;:::i;:::-;9252:119;9410:1;9435:53;9480:7;9471:6;9460:9;9456:22;9435:53;:::i;:::-;9425:63;;9381:117;9176:329;;;;:::o;9511:327::-;9569:6;9618:2;9606:9;9597:7;9593:23;9589:32;9586:119;;;9624:79;;:::i;:::-;9586:119;9744:1;9769:52;9813:7;9804:6;9793:9;9789:22;9769:52;:::i;:::-;9759:62;;9715:116;9511:327;;;;:::o;9844:349::-;9913:6;9962:2;9950:9;9941:7;9937:23;9933:32;9930:119;;;9968:79;;:::i;:::-;9930:119;10088:1;10113:63;10168:7;10159:6;10148:9;10144:22;10113:63;:::i;:::-;10103:73;;10059:127;9844:349;;;;:::o;10199:509::-;10268:6;10317:2;10305:9;10296:7;10292:23;10288:32;10285:119;;;10323:79;;:::i;:::-;10285:119;10471:1;10460:9;10456:17;10443:31;10501:18;10493:6;10490:30;10487:117;;;10523:79;;:::i;:::-;10487:117;10628:63;10683:7;10674:6;10663:9;10659:22;10628:63;:::i;:::-;10618:73;;10414:287;10199:509;;;;:::o;10714:327::-;10772:6;10821:2;10809:9;10800:7;10796:23;10792:32;10789:119;;;10827:79;;:::i;:::-;10789:119;10947:1;10972:52;11016:7;11007:6;10996:9;10992:22;10972:52;:::i;:::-;10962:62;;10918:116;10714:327;;;;:::o;11047:329::-;11106:6;11155:2;11143:9;11134:7;11130:23;11126:32;11123:119;;;11161:79;;:::i;:::-;11123:119;11281:1;11306:53;11351:7;11342:6;11331:9;11327:22;11306:53;:::i;:::-;11296:63;;11252:117;11047:329;;;;:::o;11382:704::-;11477:6;11485;11493;11542:2;11530:9;11521:7;11517:23;11513:32;11510:119;;;11548:79;;:::i;:::-;11510:119;11668:1;11693:53;11738:7;11729:6;11718:9;11714:22;11693:53;:::i;:::-;11683:63;;11639:117;11823:2;11812:9;11808:18;11795:32;11854:18;11846:6;11843:30;11840:117;;;11876:79;;:::i;:::-;11840:117;11989:80;12061:7;12052:6;12041:9;12037:22;11989:80;:::i;:::-;11971:98;;;;11766:313;11382:704;;;;;:::o;12092:118::-;12179:24;12197:5;12179:24;:::i;:::-;12174:3;12167:37;12092:118;;:::o;12216:157::-;12321:45;12341:24;12359:5;12341:24;:::i;:::-;12321:45;:::i;:::-;12316:3;12309:58;12216:157;;:::o;12379:109::-;12460:21;12475:5;12460:21;:::i;:::-;12455:3;12448:34;12379:109;;:::o;12494:360::-;12580:3;12608:38;12640:5;12608:38;:::i;:::-;12662:70;12725:6;12720:3;12662:70;:::i;:::-;12655:77;;12741:52;12786:6;12781:3;12774:4;12767:5;12763:16;12741:52;:::i;:::-;12818:29;12840:6;12818:29;:::i;:::-;12813:3;12809:39;12802:46;;12584:270;12494:360;;;;:::o;12860:364::-;12948:3;12976:39;13009:5;12976:39;:::i;:::-;13031:71;13095:6;13090:3;13031:71;:::i;:::-;13024:78;;13111:52;13156:6;13151:3;13144:4;13137:5;13133:16;13111:52;:::i;:::-;13188:29;13210:6;13188:29;:::i;:::-;13183:3;13179:39;13172:46;;12952:272;12860:364;;;;:::o;13230:377::-;13336:3;13364:39;13397:5;13364:39;:::i;:::-;13419:89;13501:6;13496:3;13419:89;:::i;:::-;13412:96;;13517:52;13562:6;13557:3;13550:4;13543:5;13539:16;13517:52;:::i;:::-;13594:6;13589:3;13585:16;13578:23;;13340:267;13230:377;;;;:::o;13613:366::-;13755:3;13776:67;13840:2;13835:3;13776:67;:::i;:::-;13769:74;;13852:93;13941:3;13852:93;:::i;:::-;13970:2;13965:3;13961:12;13954:19;;13613:366;;;:::o;13985:::-;14127:3;14148:67;14212:2;14207:3;14148:67;:::i;:::-;14141:74;;14224:93;14313:3;14224:93;:::i;:::-;14342:2;14337:3;14333:12;14326:19;;13985:366;;;:::o;14357:::-;14499:3;14520:67;14584:2;14579:3;14520:67;:::i;:::-;14513:74;;14596:93;14685:3;14596:93;:::i;:::-;14714:2;14709:3;14705:12;14698:19;;14357:366;;;:::o;14729:::-;14871:3;14892:67;14956:2;14951:3;14892:67;:::i;:::-;14885:74;;14968:93;15057:3;14968:93;:::i;:::-;15086:2;15081:3;15077:12;15070:19;;14729:366;;;:::o;15101:::-;15243:3;15264:67;15328:2;15323:3;15264:67;:::i;:::-;15257:74;;15340:93;15429:3;15340:93;:::i;:::-;15458:2;15453:3;15449:12;15442:19;;15101:366;;;:::o;15473:::-;15615:3;15636:67;15700:2;15695:3;15636:67;:::i;:::-;15629:74;;15712:93;15801:3;15712:93;:::i;:::-;15830:2;15825:3;15821:12;15814:19;;15473:366;;;:::o;15845:::-;15987:3;16008:67;16072:2;16067:3;16008:67;:::i;:::-;16001:74;;16084:93;16173:3;16084:93;:::i;:::-;16202:2;16197:3;16193:12;16186:19;;15845:366;;;:::o;16217:::-;16359:3;16380:67;16444:2;16439:3;16380:67;:::i;:::-;16373:74;;16456:93;16545:3;16456:93;:::i;:::-;16574:2;16569:3;16565:12;16558:19;;16217:366;;;:::o;16589:::-;16731:3;16752:67;16816:2;16811:3;16752:67;:::i;:::-;16745:74;;16828:93;16917:3;16828:93;:::i;:::-;16946:2;16941:3;16937:12;16930:19;;16589:366;;;:::o;16961:398::-;17120:3;17141:83;17222:1;17217:3;17141:83;:::i;:::-;17134:90;;17233:93;17322:3;17233:93;:::i;:::-;17351:1;17346:3;17342:11;17335:18;;16961:398;;;:::o;17365:366::-;17507:3;17528:67;17592:2;17587:3;17528:67;:::i;:::-;17521:74;;17604:93;17693:3;17604:93;:::i;:::-;17722:2;17717:3;17713:12;17706:19;;17365:366;;;:::o;17737:::-;17879:3;17900:67;17964:2;17959:3;17900:67;:::i;:::-;17893:74;;17976:93;18065:3;17976:93;:::i;:::-;18094:2;18089:3;18085:12;18078:19;;17737:366;;;:::o;18109:::-;18251:3;18272:67;18336:2;18331:3;18272:67;:::i;:::-;18265:74;;18348:93;18437:3;18348:93;:::i;:::-;18466:2;18461:3;18457:12;18450:19;;18109:366;;;:::o;18481:::-;18623:3;18644:67;18708:2;18703:3;18644:67;:::i;:::-;18637:74;;18720:93;18809:3;18720:93;:::i;:::-;18838:2;18833:3;18829:12;18822:19;;18481:366;;;:::o;18853:::-;18995:3;19016:67;19080:2;19075:3;19016:67;:::i;:::-;19009:74;;19092:93;19181:3;19092:93;:::i;:::-;19210:2;19205:3;19201:12;19194:19;;18853:366;;;:::o;19225:115::-;19310:23;19327:5;19310:23;:::i;:::-;19305:3;19298:36;19225:115;;:::o;19346:118::-;19433:24;19451:5;19433:24;:::i;:::-;19428:3;19421:37;19346:118;;:::o;19470:157::-;19575:45;19595:24;19613:5;19595:24;:::i;:::-;19575:45;:::i;:::-;19570:3;19563:58;19470:157;;:::o;19633:256::-;19745:3;19760:75;19831:3;19822:6;19760:75;:::i;:::-;19860:2;19855:3;19851:12;19844:19;;19880:3;19873:10;;19633:256;;;;:::o;19895:397::-;20035:3;20050:75;20121:3;20112:6;20050:75;:::i;:::-;20150:2;20145:3;20141:12;20134:19;;20163:75;20234:3;20225:6;20163:75;:::i;:::-;20263:2;20258:3;20254:12;20247:19;;20283:3;20276:10;;19895:397;;;;;:::o;20298:435::-;20478:3;20500:95;20591:3;20582:6;20500:95;:::i;:::-;20493:102;;20612:95;20703:3;20694:6;20612:95;:::i;:::-;20605:102;;20724:3;20717:10;;20298:435;;;;;:::o;20739:379::-;20923:3;20945:147;21088:3;20945:147;:::i;:::-;20938:154;;21109:3;21102:10;;20739:379;;;:::o;21124:222::-;21217:4;21255:2;21244:9;21240:18;21232:26;;21268:71;21336:1;21325:9;21321:17;21312:6;21268:71;:::i;:::-;21124:222;;;;:::o;21352:640::-;21547:4;21585:3;21574:9;21570:19;21562:27;;21599:71;21667:1;21656:9;21652:17;21643:6;21599:71;:::i;:::-;21680:72;21748:2;21737:9;21733:18;21724:6;21680:72;:::i;:::-;21762;21830:2;21819:9;21815:18;21806:6;21762:72;:::i;:::-;21881:9;21875:4;21871:20;21866:2;21855:9;21851:18;21844:48;21909:76;21980:4;21971:6;21909:76;:::i;:::-;21901:84;;21352:640;;;;;;;:::o;21998:210::-;22085:4;22123:2;22112:9;22108:18;22100:26;;22136:65;22198:1;22187:9;22183:17;22174:6;22136:65;:::i;:::-;21998:210;;;;:::o;22214:313::-;22327:4;22365:2;22354:9;22350:18;22342:26;;22414:9;22408:4;22404:20;22400:1;22389:9;22385:17;22378:47;22442:78;22515:4;22506:6;22442:78;:::i;:::-;22434:86;;22214:313;;;;:::o;22533:419::-;22699:4;22737:2;22726:9;22722:18;22714:26;;22786:9;22780:4;22776:20;22772:1;22761:9;22757:17;22750:47;22814:131;22940:4;22814:131;:::i;:::-;22806:139;;22533:419;;;:::o;22958:::-;23124:4;23162:2;23151:9;23147:18;23139:26;;23211:9;23205:4;23201:20;23197:1;23186:9;23182:17;23175:47;23239:131;23365:4;23239:131;:::i;:::-;23231:139;;22958:419;;;:::o;23383:::-;23549:4;23587:2;23576:9;23572:18;23564:26;;23636:9;23630:4;23626:20;23622:1;23611:9;23607:17;23600:47;23664:131;23790:4;23664:131;:::i;:::-;23656:139;;23383:419;;;:::o;23808:::-;23974:4;24012:2;24001:9;23997:18;23989:26;;24061:9;24055:4;24051:20;24047:1;24036:9;24032:17;24025:47;24089:131;24215:4;24089:131;:::i;:::-;24081:139;;23808:419;;;:::o;24233:::-;24399:4;24437:2;24426:9;24422:18;24414:26;;24486:9;24480:4;24476:20;24472:1;24461:9;24457:17;24450:47;24514:131;24640:4;24514:131;:::i;:::-;24506:139;;24233:419;;;:::o;24658:::-;24824:4;24862:2;24851:9;24847:18;24839:26;;24911:9;24905:4;24901:20;24897:1;24886:9;24882:17;24875:47;24939:131;25065:4;24939:131;:::i;:::-;24931:139;;24658:419;;;:::o;25083:::-;25249:4;25287:2;25276:9;25272:18;25264:26;;25336:9;25330:4;25326:20;25322:1;25311:9;25307:17;25300:47;25364:131;25490:4;25364:131;:::i;:::-;25356:139;;25083:419;;;:::o;25508:::-;25674:4;25712:2;25701:9;25697:18;25689:26;;25761:9;25755:4;25751:20;25747:1;25736:9;25732:17;25725:47;25789:131;25915:4;25789:131;:::i;:::-;25781:139;;25508:419;;;:::o;25933:::-;26099:4;26137:2;26126:9;26122:18;26114:26;;26186:9;26180:4;26176:20;26172:1;26161:9;26157:17;26150:47;26214:131;26340:4;26214:131;:::i;:::-;26206:139;;25933:419;;;:::o;26358:::-;26524:4;26562:2;26551:9;26547:18;26539:26;;26611:9;26605:4;26601:20;26597:1;26586:9;26582:17;26575:47;26639:131;26765:4;26639:131;:::i;:::-;26631:139;;26358:419;;;:::o;26783:::-;26949:4;26987:2;26976:9;26972:18;26964:26;;27036:9;27030:4;27026:20;27022:1;27011:9;27007:17;27000:47;27064:131;27190:4;27064:131;:::i;:::-;27056:139;;26783:419;;;:::o;27208:::-;27374:4;27412:2;27401:9;27397:18;27389:26;;27461:9;27455:4;27451:20;27447:1;27436:9;27432:17;27425:47;27489:131;27615:4;27489:131;:::i;:::-;27481:139;;27208:419;;;:::o;27633:::-;27799:4;27837:2;27826:9;27822:18;27814:26;;27886:9;27880:4;27876:20;27872:1;27861:9;27857:17;27850:47;27914:131;28040:4;27914:131;:::i;:::-;27906:139;;27633:419;;;:::o;28058:::-;28224:4;28262:2;28251:9;28247:18;28239:26;;28311:9;28305:4;28301:20;28297:1;28286:9;28282:17;28275:47;28339:131;28465:4;28339:131;:::i;:::-;28331:139;;28058:419;;;:::o;28483:218::-;28574:4;28612:2;28601:9;28597:18;28589:26;;28625:69;28691:1;28680:9;28676:17;28667:6;28625:69;:::i;:::-;28483:218;;;;:::o;28707:222::-;28800:4;28838:2;28827:9;28823:18;28815:26;;28851:71;28919:1;28908:9;28904:17;28895:6;28851:71;:::i;:::-;28707:222;;;;:::o;28935:129::-;28969:6;28996:20;;:::i;:::-;28986:30;;29025:33;29053:4;29045:6;29025:33;:::i;:::-;28935:129;;;:::o;29070:75::-;29103:6;29136:2;29130:9;29120:19;;29070:75;:::o;29151:311::-;29228:4;29318:18;29310:6;29307:30;29304:56;;;29340:18;;:::i;:::-;29304:56;29390:4;29382:6;29378:17;29370:25;;29450:4;29444;29440:15;29432:23;;29151:311;;;:::o;29468:307::-;29529:4;29619:18;29611:6;29608:30;29605:56;;;29641:18;;:::i;:::-;29605:56;29679:29;29701:6;29679:29;:::i;:::-;29671:37;;29763:4;29757;29753:15;29745:23;;29468:307;;;:::o;29781:308::-;29843:4;29933:18;29925:6;29922:30;29919:56;;;29955:18;;:::i;:::-;29919:56;29993:29;30015:6;29993:29;:::i;:::-;29985:37;;30077:4;30071;30067:15;30059:23;;29781:308;;;:::o;30095:98::-;30146:6;30180:5;30174:12;30164:22;;30095:98;;;:::o;30199:99::-;30251:6;30285:5;30279:12;30269:22;;30199:99;;;:::o;30304:168::-;30387:11;30421:6;30416:3;30409:19;30461:4;30456:3;30452:14;30437:29;;30304:168;;;;:::o;30478:147::-;30579:11;30616:3;30601:18;;30478:147;;;;:::o;30631:169::-;30715:11;30749:6;30744:3;30737:19;30789:4;30784:3;30780:14;30765:29;;30631:169;;;;:::o;30806:148::-;30908:11;30945:3;30930:18;;30806:148;;;;:::o;30960:305::-;31000:3;31019:20;31037:1;31019:20;:::i;:::-;31014:25;;31053:20;31071:1;31053:20;:::i;:::-;31048:25;;31207:1;31139:66;31135:74;31132:1;31129:81;31126:107;;;31213:18;;:::i;:::-;31126:107;31257:1;31254;31250:9;31243:16;;30960:305;;;;:::o;31271:185::-;31311:1;31328:20;31346:1;31328:20;:::i;:::-;31323:25;;31362:20;31380:1;31362:20;:::i;:::-;31357:25;;31401:1;31391:35;;31406:18;;:::i;:::-;31391:35;31448:1;31445;31441:9;31436:14;;31271:185;;;;:::o;31462:348::-;31502:7;31525:20;31543:1;31525:20;:::i;:::-;31520:25;;31559:20;31577:1;31559:20;:::i;:::-;31554:25;;31747:1;31679:66;31675:74;31672:1;31669:81;31664:1;31657:9;31650:17;31646:105;31643:131;;;31754:18;;:::i;:::-;31643:131;31802:1;31799;31795:9;31784:20;;31462:348;;;;:::o;31816:191::-;31856:4;31876:20;31894:1;31876:20;:::i;:::-;31871:25;;31910:20;31928:1;31910:20;:::i;:::-;31905:25;;31949:1;31946;31943:8;31940:34;;;31954:18;;:::i;:::-;31940:34;31999:1;31996;31992:9;31984:17;;31816:191;;;;:::o;32013:96::-;32050:7;32079:24;32097:5;32079:24;:::i;:::-;32068:35;;32013:96;;;:::o;32115:90::-;32149:7;32192:5;32185:13;32178:21;32167:32;;32115:90;;;:::o;32211:77::-;32248:7;32277:5;32266:16;;32211:77;;;:::o;32294:149::-;32330:7;32370:66;32363:5;32359:78;32348:89;;32294:149;;;:::o;32449:89::-;32485:7;32525:6;32518:5;32514:18;32503:29;;32449:89;;;:::o;32544:126::-;32581:7;32621:42;32614:5;32610:54;32599:65;;32544:126;;;:::o;32676:77::-;32713:7;32742:5;32731:16;;32676:77;;;:::o;32759:154::-;32843:6;32838:3;32833;32820:30;32905:1;32896:6;32891:3;32887:16;32880:27;32759:154;;;:::o;32919:307::-;32987:1;32997:113;33011:6;33008:1;33005:13;32997:113;;;33096:1;33091:3;33087:11;33081:18;33077:1;33072:3;33068:11;33061:39;33033:2;33030:1;33026:10;33021:15;;32997:113;;;33128:6;33125:1;33122:13;33119:101;;;33208:1;33199:6;33194:3;33190:16;33183:27;33119:101;32968:258;32919:307;;;:::o;33232:320::-;33276:6;33313:1;33307:4;33303:12;33293:22;;33360:1;33354:4;33350:12;33381:18;33371:81;;33437:4;33429:6;33425:17;33415:27;;33371:81;33499:2;33491:6;33488:14;33468:18;33465:38;33462:84;;;33518:18;;:::i;:::-;33462:84;33283:269;33232:320;;;:::o;33558:281::-;33641:27;33663:4;33641:27;:::i;:::-;33633:6;33629:40;33771:6;33759:10;33756:22;33735:18;33723:10;33720:34;33717:62;33714:88;;;33782:18;;:::i;:::-;33714:88;33822:10;33818:2;33811:22;33601:238;33558:281;;:::o;33845:233::-;33884:3;33907:24;33925:5;33907:24;:::i;:::-;33898:33;;33953:66;33946:5;33943:77;33940:103;;;34023:18;;:::i;:::-;33940:103;34070:1;34063:5;34059:13;34052:20;;33845:233;;;:::o;34084:100::-;34123:7;34152:26;34172:5;34152:26;:::i;:::-;34141:37;;34084:100;;;:::o;34190:94::-;34229:7;34258:20;34272:5;34258:20;:::i;:::-;34247:31;;34190:94;;;:::o;34290:79::-;34329:7;34358:5;34347:16;;34290:79;;;:::o;34375:176::-;34407:1;34424:20;34442:1;34424:20;:::i;:::-;34419:25;;34458:20;34476:1;34458:20;:::i;:::-;34453:25;;34497:1;34487:35;;34502:18;;:::i;:::-;34487:35;34543:1;34540;34536:9;34531:14;;34375:176;;;;:::o;34557:180::-;34605:77;34602:1;34595:88;34702:4;34699:1;34692:15;34726:4;34723:1;34716:15;34743:180;34791:77;34788:1;34781:88;34888:4;34885:1;34878:15;34912:4;34909:1;34902:15;34929:180;34977:77;34974:1;34967:88;35074:4;35071:1;35064:15;35098:4;35095:1;35088:15;35115:180;35163:77;35160:1;35153:88;35260:4;35257:1;35250:15;35284:4;35281:1;35274:15;35301:180;35349:77;35346:1;35339:88;35446:4;35443:1;35436:15;35470:4;35467:1;35460:15;35487:117;35596:1;35593;35586:12;35610:117;35719:1;35716;35709:12;35733:117;35842:1;35839;35832:12;35856:117;35965:1;35962;35955:12;35979:117;36088:1;36085;36078:12;36102:117;36211:1;36208;36201:12;36225:102;36266:6;36317:2;36313:7;36308:2;36301:5;36297:14;36293:28;36283:38;;36225:102;;;:::o;36333:94::-;36366:8;36414:5;36410:2;36406:14;36385:35;;36333:94;;;:::o;36433:168::-;36573:20;36569:1;36561:6;36557:14;36550:44;36433:168;:::o;36607:225::-;36747:34;36743:1;36735:6;36731:14;36724:58;36816:8;36811:2;36803:6;36799:15;36792:33;36607:225;:::o;36838:174::-;36978:26;36974:1;36966:6;36962:14;36955:50;36838:174;:::o;37018:225::-;37158:34;37154:1;37146:6;37142:14;37135:58;37227:8;37222:2;37214:6;37210:15;37203:33;37018:225;:::o;37249:166::-;37389:18;37385:1;37377:6;37373:14;37366:42;37249:166;:::o;37421:167::-;37561:19;37557:1;37549:6;37545:14;37538:43;37421:167;:::o;37594:226::-;37734:34;37730:1;37722:6;37718:14;37711:58;37803:9;37798:2;37790:6;37786:15;37779:34;37594:226;:::o;37826:182::-;37966:34;37962:1;37954:6;37950:14;37943:58;37826:182;:::o;38014:234::-;38154:34;38150:1;38142:6;38138:14;38131:58;38223:17;38218:2;38210:6;38206:15;38199:42;38014:234;:::o;38254:114::-;;:::o;38374:165::-;38514:17;38510:1;38502:6;38498:14;38491:41;38374:165;:::o;38545:223::-;38685:34;38681:1;38673:6;38669:14;38662:58;38754:6;38749:2;38741:6;38737:15;38730:31;38545:223;:::o;38774:163::-;38914:15;38910:1;38902:6;38898:14;38891:39;38774:163;:::o;38943:173::-;39083:25;39079:1;39071:6;39067:14;39060:49;38943:173;:::o;39122:174::-;39262:26;39258:1;39250:6;39246:14;39239:50;39122:174;:::o;39302:122::-;39375:24;39393:5;39375:24;:::i;:::-;39368:5;39365:35;39355:63;;39414:1;39411;39404:12;39355:63;39302:122;:::o;39430:116::-;39500:21;39515:5;39500:21;:::i;:::-;39493:5;39490:32;39480:60;;39536:1;39533;39526:12;39480:60;39430:116;:::o;39552:122::-;39625:24;39643:5;39625:24;:::i;:::-;39618:5;39615:35;39605:63;;39664:1;39661;39654:12;39605:63;39552:122;:::o;39680:120::-;39752:23;39769:5;39752:23;:::i;:::-;39745:5;39742:34;39732:62;;39790:1;39787;39780:12;39732:62;39680:120;:::o;39806:::-;39878:23;39895:5;39878:23;:::i;:::-;39871:5;39868:34;39858:62;;39916:1;39913;39906:12;39858:62;39806:120;:::o;39932:122::-;40005:24;40023:5;40005:24;:::i;:::-;39998:5;39995:35;39985:63;;40044:1;40041;40034:12;39985:63;39932:122;:::o

Swarm Source

ipfs://5bd8130a53025d3f354141a126ae38ad4510022f8d71b3f7999ac0717f9cb53a

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

A community-driven collectible project by Illume Studios, built from their love of 1930s style cartoons. A collection of 4,444 Toons that gives members access to Wasteland. Join our community at: https://discord.gg/MwEqZc8wpF

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.