ETH Price: $3,051.43 (+2.38%)
Gas: 1 Gwei

Token

ForeverBots (BOTS)
 

Overview

Max Total Supply

3,277 BOTS

Holders

1,288

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 BOTS
0x56f158bc2ce451dd4264db6c2121afffd0723669
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

ForeverBots is a generative looping project by Swedish artists Oscar Pettersson and Kevin Olberg. 5K unique NFT companions. All animated. On repeat. Forever.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ForeverBots

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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/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: @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/token/ERC721/ERC721.sol


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// 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: contracts/Production.sol


pragma solidity ^0.8.7;

/**
 * @dev Modifier 'onlyOwner' becomes available, where owner is the contract deployer
 */


/**
 * @dev ERC721 token standard
 */



/**
 * @dev Merkle tree
 */



// change contract name
contract ForeverBots is Ownable, ERC721 { 

  
    uint256 public totalSupply;
    uint256 public maxSupply = 5000;

    uint256 public cost = 0.15 ether;
    uint256 public mintsPerWallet = 1;

    bool public preSaleStatus;
    bool public publicSaleStatus;

    string public baseTokenURI;

    bytes32 public root;
    

    constructor( 
        string memory _preRevealURI
    ) ERC721("ForeverBots", "BOTS") { 
        baseTokenURI = _preRevealURI;
    }
    
    
    // --- EVENTS --- //
    
    event TokenMinted(uint256 tokenId, address indexed recipient);


    // --- MAPPINGS --- //

    mapping(address => uint) public hasMinted;
        
    
    // --- PUBLIC --- //
    
    
    /**
     * @dev Mint tokens through public sale
     */
    function mint(uint _amount) external payable returns(bool) {
    
        require(publicSaleStatus, "Public sale not live");
        require(hasMinted[msg.sender] + _amount <= mintsPerWallet, "Would exceed mints per wallet limit");
        require(msg.value == cost * _amount, "Incorrect funds supplied"); // mint cost
        require(totalSupply + _amount <= maxSupply, "All tokens have been minted");
        
        mintAmount(msg.sender, _amount);
        return true;
    }

    /**
     * @dev Mint tokens through pre sale
     */
    function whitelistMint(uint _amount, bytes32[] memory _proof) external payable returns(bool) {

        require(hasMinted[msg.sender] + _amount <= mintsPerWallet, "Would exceed mints per wallet limit");
        require(msg.value == cost * _amount, "Incorrect funds supplied"); // mint cost
        require(totalSupply + _amount <= maxSupply, "All tokens have been minted");
        require(preSaleStatus, "Presale not live");
        require(MerkleProof.verify(_proof, root, keccak256(abi.encodePacked(msg.sender))) == true, "Not on whitelist");

        mintAmount(msg.sender, _amount);
        return true;
    }
    

    // --- INTERNAL --- //
    
    function mintAmount(address _user, uint _amount) internal {
        hasMinted[_user] += _amount;
        for (uint i=0; i<_amount; i++) {
            uint tokenId = totalSupply + (i+1);
            _mint(_user, tokenId);
            emit TokenMinted(tokenId, _user);
        }
        totalSupply += _amount;
    }
    
    
    // --- VIEW --- //
    
    
    /**
     * @dev Returns tokenURI, which, if revealedStatus = true, is comprised of the baseURI concatenated with the tokenId
     */
    function tokenURI(uint256 _tokenId) public view override returns(string memory) {

        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");

        return string(abi.encodePacked(baseTokenURI, Strings.toString(_tokenId), ".json"));
    }


    /**
     * @dev Returns boolean of whether '_address' has minted
     */
    function hasMintedGetter(address _address) external view returns(uint) {
        return hasMinted[_address];
    }



    // --- ONLY OWNER ---

    
    /**
     * @dev Withdraw all ether from smart contract. Only contract owner can call.
     * @param _to - address ether will be sent to
     */
    function withdrawAllFunds(address payable _to) external onlyOwner {
        require(address(this).balance > 0, "No funds to withdraw");
        _to.transfer(address(this).balance);
    }

    /**
     * @dev Set the baseURI string.
     * @param _newBaseUri - new base URI of metadata (Example:   ipfs://cid/)
     */
    function setBaseUri(string memory _newBaseUri) external onlyOwner {
        baseTokenURI = _newBaseUri;
    }
    
    
    /**
     * @dev Set the cost of minting a token
     * @param _newCost in Wei. Where 1 Wei = 10^-18 ether
     */
    function setCost(uint _newCost) external onlyOwner {
        cost = _newCost;
    }

    /**
     * @dev Set the number of mints per wallet
     */
    function setMintsPerWallet(uint _newMintsPerWallet) external onlyOwner {
        mintsPerWallet = _newMintsPerWallet;
    }
    
    
    /**
     * @dev Set the status of the pre sale.
     */
    function setPreSaleStatus(bool _status) external onlyOwner {
        preSaleStatus = _status;
    }
    
    
    /**
     * @dev Set the status of the public sale.
     */
    function setPublicSaleStatus(bool _status) external onlyOwner {
        publicSaleStatus = _status;
    }


    /**
     * @dev Set the root for Merkle Proof
     */
    function setRoot(bytes32 _newRoot) external onlyOwner {
        root = _newRoot;
    }


    /**
     * @dev Airdrop 1 token to each address in array '_to'
     * @param _to - array of address' that tokens will be sent to
     */
    function airDrop(address[] calldata _to) external onlyOwner {

        require(totalSupply + _to.length <= maxSupply, "Minting this many would exceed the max supply");

        for (uint i=0; i<_to.length; i++) {
            uint tokenId = totalSupply + 1;
            totalSupply++;
            _mint(_to[i], tokenId);
            emit TokenMinted(tokenId, _to[i]);
        }
    }

    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_preRevealURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"}],"name":"TokenMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"}],"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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"hasMintedGetter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintsPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMintsPerWallet","type":"uint256"}],"name":"setMintsPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setPreSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setPublicSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newRoot","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"}],"name":"withdrawAllFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052611388600855670214e8348c4f00006009556001600a553480156200002857600080fd5b5060405162004b2938038062004b2983398181016040528101906200004e919062000328565b6040518060400160405280600b81526020017f466f7265766572426f74730000000000000000000000000000000000000000008152506040518060400160405280600481526020017f424f545300000000000000000000000000000000000000000000000000000000815250620000da620000ce6200012e60201b60201c565b6200013660201b60201c565b8160019080519060200190620000f2929190620001fa565b5080600290805190602001906200010b929190620001fa565b50505080600c908051906020019062000126929190620001fa565b5050620004fd565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000208906200040e565b90600052602060002090601f0160209004810192826200022c576000855562000278565b82601f106200024757805160ff191683800117855562000278565b8280016001018555821562000278579182015b82811115620002775782518255916020019190600101906200025a565b5b5090506200028791906200028b565b5090565b5b80821115620002a65760008160009055506001016200028c565b5090565b6000620002c1620002bb84620003a2565b62000379565b905082815260208101848484011115620002e057620002df620004dd565b5b620002ed848285620003d8565b509392505050565b600082601f8301126200030d576200030c620004d8565b5b81516200031f848260208601620002aa565b91505092915050565b600060208284031215620003415762000340620004e7565b5b600082015167ffffffffffffffff811115620003625762000361620004e2565b5b6200037084828501620002f5565b91505092915050565b60006200038562000398565b905062000393828262000444565b919050565b6000604051905090565b600067ffffffffffffffff821115620003c057620003bf620004a9565b5b620003cb82620004ec565b9050602081019050919050565b60005b83811015620003f8578082015181840152602081019050620003db565b8381111562000408576000848401525b50505050565b600060028204905060018216806200042757607f821691505b602082108114156200043e576200043d6200047a565b5b50919050565b6200044f82620004ec565b810181811067ffffffffffffffff82111715620004715762000470620004a9565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b61461c806200050d6000396000f3fe60806040526004361061020e5760003560e01c8063715018a611610118578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb01146107a4578063dab5f340146107cf578063e985e9c5146107f8578063ebf0c71714610835578063f2fde38b146108605761020e565b8063b88d4fde146106e3578063c87b56dd1461070c578063d2cab05614610749578063d547cfb7146107795761020e565b8063a0712d68116100e7578063a0712d681461060d578063a0bcfc7f1461063d578063a22cb46514610666578063b423fe671461068f578063b6c693e5146106b85761020e565b8063715018a6146105635780638da5cb5b1461057a578063920a8f5d146105a557806395d89b41146105e25761020e565b806332dee40b1161019b57806344a0d68a1161016a57806344a0d68a1461046c578063464bd640146104955780635e326b92146104c05780636352211e146104e957806370a08231146105265761020e565b806332dee40b146103b257806338e21cce146103db57806340221e201461041857806342842e0e146104435761020e565b8063094c9826116101e2578063094c9826146102e1578063095ea7b31461030a57806313faede61461033357806318160ddd1461035e57806323b872dd146103895761020e565b8062b6849f1461021357806301ffc9a71461023c57806306fdde0314610279578063081812fc146102a4575b600080fd5b34801561021f57600080fd5b5061023a60048036038101906102359190612f56565b610889565b005b34801561024857600080fd5b50610263600480360381019061025e9190612ffd565b610a52565b60405161027091906136ba565b60405180910390f35b34801561028557600080fd5b5061028e610b34565b60405161029b91906136f0565b60405180910390f35b3480156102b057600080fd5b506102cb60048036038101906102c691906130a0565b610bc6565b6040516102d89190613653565b60405180910390f35b3480156102ed57600080fd5b50610308600480360381019061030391906130a0565b610c4b565b005b34801561031657600080fd5b50610331600480360381019061032c9190612f16565b610cd1565b005b34801561033f57600080fd5b50610348610de9565b6040516103559190613a12565b60405180910390f35b34801561036a57600080fd5b50610373610def565b6040516103809190613a12565b60405180910390f35b34801561039557600080fd5b506103b060048036038101906103ab9190612e00565b610df5565b005b3480156103be57600080fd5b506103d960048036038101906103d49190612d93565b610e55565b005b3480156103e757600080fd5b5061040260048036038101906103fd9190612d66565b610f5e565b60405161040f9190613a12565b60405180910390f35b34801561042457600080fd5b5061042d610f76565b60405161043a9190613a12565b60405180910390f35b34801561044f57600080fd5b5061046a60048036038101906104659190612e00565b610f7c565b005b34801561047857600080fd5b50610493600480360381019061048e91906130a0565b610f9c565b005b3480156104a157600080fd5b506104aa611022565b6040516104b791906136ba565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190612fa3565b611035565b005b3480156104f557600080fd5b50610510600480360381019061050b91906130a0565b6110ce565b60405161051d9190613653565b60405180910390f35b34801561053257600080fd5b5061054d60048036038101906105489190612d66565b611180565b60405161055a9190613a12565b60405180910390f35b34801561056f57600080fd5b50610578611238565b005b34801561058657600080fd5b5061058f6112c0565b60405161059c9190613653565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c79190612d66565b6112e9565b6040516105d99190613a12565b60405180910390f35b3480156105ee57600080fd5b506105f7611332565b60405161060491906136f0565b60405180910390f35b610627600480360381019061062291906130a0565b6113c4565b60405161063491906136ba565b60405180910390f35b34801561064957600080fd5b50610664600480360381019061065f9190613057565b611558565b005b34801561067257600080fd5b5061068d60048036038101906106889190612ed6565b6115ee565b005b34801561069b57600080fd5b506106b660048036038101906106b19190612fa3565b611604565b005b3480156106c457600080fd5b506106cd61169d565b6040516106da91906136ba565b60405180910390f35b3480156106ef57600080fd5b5061070a60048036038101906107059190612e53565b6116b0565b005b34801561071857600080fd5b50610733600480360381019061072e91906130a0565b611712565b60405161074091906136f0565b60405180910390f35b610763600480360381019061075e91906130cd565b61178e565b60405161077091906136ba565b60405180910390f35b34801561078557600080fd5b5061078e61199c565b60405161079b91906136f0565b60405180910390f35b3480156107b057600080fd5b506107b9611a2a565b6040516107c69190613a12565b60405180910390f35b3480156107db57600080fd5b506107f660048036038101906107f19190612fd0565b611a30565b005b34801561080457600080fd5b5061081f600480360381019061081a9190612dc0565b611ab6565b60405161082c91906136ba565b60405180910390f35b34801561084157600080fd5b5061084a611b4a565b60405161085791906136d5565b60405180910390f35b34801561086c57600080fd5b5061088760048036038101906108829190612d66565b611b50565b005b610891611c48565b73ffffffffffffffffffffffffffffffffffffffff166108af6112c0565b73ffffffffffffffffffffffffffffffffffffffff1614610905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fc90613932565b60405180910390fd5b600854828290506007546109199190613b38565b111561095a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095190613752565b60405180910390fd5b60005b82829050811015610a4d57600060016007546109799190613b38565b90506007600081548092919061098e90613d82565b91905055506109c48484848181106109a9576109a8613ead565b5b90506020020160208101906109be9190612d66565b82611c50565b8383838181106109d7576109d6613ead565b5b90506020020160208101906109ec9190612d66565b73ffffffffffffffffffffffffffffffffffffffff167f3a5398bda6f1f57d6c96834fa9bf02b5517bdc847d14312015a917ba421c31c982604051610a319190613a12565b60405180910390a2508080610a4590613d82565b91505061095d565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b1d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b2d5750610b2c82611e2a565b5b9050919050565b606060018054610b4390613d1f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6f90613d1f565b8015610bbc5780601f10610b9157610100808354040283529160200191610bbc565b820191906000526020600020905b815481529060010190602001808311610b9f57829003601f168201915b5050505050905090565b6000610bd182611e94565b610c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0790613912565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610c53611c48565b73ffffffffffffffffffffffffffffffffffffffff16610c716112c0565b73ffffffffffffffffffffffffffffffffffffffff1614610cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe90613932565b60405180910390fd5b80600a8190555050565b6000610cdc826110ce565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4490613972565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d6c611c48565b73ffffffffffffffffffffffffffffffffffffffff161480610d9b5750610d9a81610d95611c48565b611ab6565b5b610dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd190613892565b60405180910390fd5b610de48383611f00565b505050565b60095481565b60075481565b610e06610e00611c48565b82611fb9565b610e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3c906139b2565b60405180910390fd5b610e50838383612097565b505050565b610e5d611c48565b73ffffffffffffffffffffffffffffffffffffffff16610e7b6112c0565b73ffffffffffffffffffffffffffffffffffffffff1614610ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec890613932565b60405180910390fd5b60004711610f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0b90613852565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f5a573d6000803e3d6000fd5b5050565b600e6020528060005260406000206000915090505481565b600a5481565b610f97838383604051806020016040528060008152506116b0565b505050565b610fa4611c48565b73ffffffffffffffffffffffffffffffffffffffff16610fc26112c0565b73ffffffffffffffffffffffffffffffffffffffff1614611018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100f90613932565b60405180910390fd5b8060098190555050565b600b60009054906101000a900460ff1681565b61103d611c48565b73ffffffffffffffffffffffffffffffffffffffff1661105b6112c0565b73ffffffffffffffffffffffffffffffffffffffff16146110b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a890613932565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e906138d2565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e8906138b2565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611240611c48565b73ffffffffffffffffffffffffffffffffffffffff1661125e6112c0565b73ffffffffffffffffffffffffffffffffffffffff16146112b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ab90613932565b60405180910390fd5b6112be60006122fe565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606002805461134190613d1f565b80601f016020809104026020016040519081016040528092919081815260200182805461136d90613d1f565b80156113ba5780601f1061138f576101008083540402835291602001916113ba565b820191906000526020600020905b81548152906001019060200180831161139d57829003601f168201915b5050505050905090565b6000600b60019054906101000a900460ff16611415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140c90613772565b60405180910390fd5b600a5482600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114639190613b38565b11156114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b90613712565b60405180910390fd5b816009546114b29190613bbf565b34146114f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ea906139d2565b60405180910390fd5b600854826007546115049190613b38565b1115611545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153c906139f2565b60405180910390fd5b61154f33836123c2565b60019050919050565b611560611c48565b73ffffffffffffffffffffffffffffffffffffffff1661157e6112c0565b73ffffffffffffffffffffffffffffffffffffffff16146115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb90613932565b60405180910390fd5b80600c90805190602001906115ea929190612a5c565b5050565b6116006115f9611c48565b83836124cb565b5050565b61160c611c48565b73ffffffffffffffffffffffffffffffffffffffff1661162a6112c0565b73ffffffffffffffffffffffffffffffffffffffff1614611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167790613932565b60405180910390fd5b80600b60016101000a81548160ff02191690831515021790555050565b600b60019054906101000a900460ff1681565b6116c16116bb611c48565b83611fb9565b611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f7906139b2565b60405180910390fd5b61170c84848484612638565b50505050565b606061171d82611e94565b61175c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175390613952565b60405180910390fd5b600c61176783612694565b604051602001611778929190613624565b6040516020818303038152906040529050919050565b6000600a5483600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117de9190613b38565b111561181f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181690613712565b60405180910390fd5b8260095461182d9190613bbf565b341461186e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611865906139d2565b60405180910390fd5b6008548360075461187f9190613b38565b11156118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b7906139f2565b60405180910390fd5b600b60009054906101000a900460ff1661190f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190690613992565b60405180910390fd5b6001151561194683600d543360405160200161192b9190613609565b604051602081830303815290604052805190602001206127f5565b151514611988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197f90613732565b60405180910390fd5b61199233846123c2565b6001905092915050565b600c80546119a990613d1f565b80601f01602080910402602001604051908101604052809291908181526020018280546119d590613d1f565b8015611a225780601f106119f757610100808354040283529160200191611a22565b820191906000526020600020905b815481529060010190602001808311611a0557829003601f168201915b505050505081565b60085481565b611a38611c48565b73ffffffffffffffffffffffffffffffffffffffff16611a566112c0565b73ffffffffffffffffffffffffffffffffffffffff1614611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa390613932565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d5481565b611b58611c48565b73ffffffffffffffffffffffffffffffffffffffff16611b766112c0565b73ffffffffffffffffffffffffffffffffffffffff1614611bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc390613932565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c33906137b2565b60405180910390fd5b611c45816122fe565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb7906138f2565b60405180910390fd5b611cc981611e94565b15611d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d00906137f2565b60405180910390fd5b611d156000838361280c565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d659190613b38565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e2660008383612811565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f73836110ce565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611fc482611e94565b612003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffa90613872565b60405180910390fd5b600061200e836110ce565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061207d57508373ffffffffffffffffffffffffffffffffffffffff1661206584610bc6565b73ffffffffffffffffffffffffffffffffffffffff16145b8061208e575061208d8185611ab6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166120b7826110ce565b73ffffffffffffffffffffffffffffffffffffffff161461210d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612104906137d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561217d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217490613812565b60405180910390fd5b61218883838361280c565b612193600082611f00565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121e39190613c19565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461223a9190613b38565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122f9838383612811565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124119190613b38565b9250508190555060005b818110156124ad5760006001826124329190613b38565b60075461243f9190613b38565b905061244b8482611c50565b8373ffffffffffffffffffffffffffffffffffffffff167f3a5398bda6f1f57d6c96834fa9bf02b5517bdc847d14312015a917ba421c31c9826040516124919190613a12565b60405180910390a25080806124a590613d82565b91505061241b565b5080600760008282546124c09190613b38565b925050819055505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561253a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253190613832565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161262b91906136ba565b60405180910390a3505050565b612643848484612097565b61264f84848484612816565b61268e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268590613792565b60405180910390fd5b50505050565b606060008214156126dc576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127f0565b600082905060005b6000821461270e5780806126f790613d82565b915050600a826127079190613b8e565b91506126e4565b60008167ffffffffffffffff81111561272a57612729613edc565b5b6040519080825280601f01601f19166020018201604052801561275c5781602001600182028036833780820191505090505b5090505b600085146127e9576001826127759190613c19565b9150600a856127849190613def565b60306127909190613b38565b60f81b8183815181106127a6576127a5613ead565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127e29190613b8e565b9450612760565b8093505050505b919050565b60008261280285846129ad565b1490509392505050565b505050565b505050565b60006128378473ffffffffffffffffffffffffffffffffffffffff16612a22565b156129a0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612860611c48565b8786866040518563ffffffff1660e01b8152600401612882949392919061366e565b602060405180830381600087803b15801561289c57600080fd5b505af19250505080156128cd57506040513d601f19601f820116820180604052508101906128ca919061302a565b60015b612950573d80600081146128fd576040519150601f19603f3d011682016040523d82523d6000602084013e612902565b606091505b50600081511415612948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293f90613792565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129a5565b600190505b949350505050565b60008082905060005b8451811015612a175760008582815181106129d4576129d3613ead565b5b602002602001015190508083116129f6576129ef8382612a45565b9250612a03565b612a008184612a45565b92505b508080612a0f90613d82565b9150506129b6565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082600052816020526040600020905092915050565b828054612a6890613d1f565b90600052602060002090601f016020900481019282612a8a5760008555612ad1565b82601f10612aa357805160ff1916838001178555612ad1565b82800160010185558215612ad1579182015b82811115612ad0578251825591602001919060010190612ab5565b5b509050612ade9190612ae2565b5090565b5b80821115612afb576000816000905550600101612ae3565b5090565b6000612b12612b0d84613a52565b613a2d565b90508083825260208201905082856020860282011115612b3557612b34613f15565b5b60005b85811015612b655781612b4b8882612cb6565b845260208401935060208301925050600181019050612b38565b5050509392505050565b6000612b82612b7d84613a7e565b613a2d565b905082815260208101848484011115612b9e57612b9d613f1a565b5b612ba9848285613cdd565b509392505050565b6000612bc4612bbf84613aaf565b613a2d565b905082815260208101848484011115612be057612bdf613f1a565b5b612beb848285613cdd565b509392505050565b600081359050612c028161455c565b92915050565b600081359050612c1781614573565b92915050565b60008083601f840112612c3357612c32613f10565b5b8235905067ffffffffffffffff811115612c5057612c4f613f0b565b5b602083019150836020820283011115612c6c57612c6b613f15565b5b9250929050565b600082601f830112612c8857612c87613f10565b5b8135612c98848260208601612aff565b91505092915050565b600081359050612cb08161458a565b92915050565b600081359050612cc5816145a1565b92915050565b600081359050612cda816145b8565b92915050565b600081519050612cef816145b8565b92915050565b600082601f830112612d0a57612d09613f10565b5b8135612d1a848260208601612b6f565b91505092915050565b600082601f830112612d3857612d37613f10565b5b8135612d48848260208601612bb1565b91505092915050565b600081359050612d60816145cf565b92915050565b600060208284031215612d7c57612d7b613f24565b5b6000612d8a84828501612bf3565b91505092915050565b600060208284031215612da957612da8613f24565b5b6000612db784828501612c08565b91505092915050565b60008060408385031215612dd757612dd6613f24565b5b6000612de585828601612bf3565b9250506020612df685828601612bf3565b9150509250929050565b600080600060608486031215612e1957612e18613f24565b5b6000612e2786828701612bf3565b9350506020612e3886828701612bf3565b9250506040612e4986828701612d51565b9150509250925092565b60008060008060808587031215612e6d57612e6c613f24565b5b6000612e7b87828801612bf3565b9450506020612e8c87828801612bf3565b9350506040612e9d87828801612d51565b925050606085013567ffffffffffffffff811115612ebe57612ebd613f1f565b5b612eca87828801612cf5565b91505092959194509250565b60008060408385031215612eed57612eec613f24565b5b6000612efb85828601612bf3565b9250506020612f0c85828601612ca1565b9150509250929050565b60008060408385031215612f2d57612f2c613f24565b5b6000612f3b85828601612bf3565b9250506020612f4c85828601612d51565b9150509250929050565b60008060208385031215612f6d57612f6c613f24565b5b600083013567ffffffffffffffff811115612f8b57612f8a613f1f565b5b612f9785828601612c1d565b92509250509250929050565b600060208284031215612fb957612fb8613f24565b5b6000612fc784828501612ca1565b91505092915050565b600060208284031215612fe657612fe5613f24565b5b6000612ff484828501612cb6565b91505092915050565b60006020828403121561301357613012613f24565b5b600061302184828501612ccb565b91505092915050565b6000602082840312156130405761303f613f24565b5b600061304e84828501612ce0565b91505092915050565b60006020828403121561306d5761306c613f24565b5b600082013567ffffffffffffffff81111561308b5761308a613f1f565b5b61309784828501612d23565b91505092915050565b6000602082840312156130b6576130b5613f24565b5b60006130c484828501612d51565b91505092915050565b600080604083850312156130e4576130e3613f24565b5b60006130f285828601612d51565b925050602083013567ffffffffffffffff81111561311357613112613f1f565b5b61311f85828601612c73565b9150509250929050565b61313281613c4d565b82525050565b61314961314482613c4d565b613dcb565b82525050565b61315881613c71565b82525050565b61316781613c7d565b82525050565b600061317882613af5565b6131828185613b0b565b9350613192818560208601613cec565b61319b81613f29565b840191505092915050565b60006131b182613b00565b6131bb8185613b1c565b93506131cb818560208601613cec565b6131d481613f29565b840191505092915050565b60006131ea82613b00565b6131f48185613b2d565b9350613204818560208601613cec565b80840191505092915050565b6000815461321d81613d1f565b6132278186613b2d565b94506001821660008114613242576001811461325357613286565b60ff19831686528186019350613286565b61325c85613ae0565b60005b8381101561327e5781548189015260018201915060208101905061325f565b838801955050505b50505092915050565b600061329c602383613b1c565b91506132a782613f47565b604082019050919050565b60006132bf601083613b1c565b91506132ca82613f96565b602082019050919050565b60006132e2602d83613b1c565b91506132ed82613fbf565b604082019050919050565b6000613305601483613b1c565b91506133108261400e565b602082019050919050565b6000613328603283613b1c565b915061333382614037565b604082019050919050565b600061334b602683613b1c565b915061335682614086565b604082019050919050565b600061336e602583613b1c565b9150613379826140d5565b604082019050919050565b6000613391601c83613b1c565b915061339c82614124565b602082019050919050565b60006133b4602483613b1c565b91506133bf8261414d565b604082019050919050565b60006133d7601983613b1c565b91506133e28261419c565b602082019050919050565b60006133fa601483613b1c565b9150613405826141c5565b602082019050919050565b600061341d602c83613b1c565b9150613428826141ee565b604082019050919050565b6000613440603883613b1c565b915061344b8261423d565b604082019050919050565b6000613463602a83613b1c565b915061346e8261428c565b604082019050919050565b6000613486602983613b1c565b9150613491826142db565b604082019050919050565b60006134a9602083613b1c565b91506134b48261432a565b602082019050919050565b60006134cc602c83613b1c565b91506134d782614353565b604082019050919050565b60006134ef600583613b2d565b91506134fa826143a2565b600582019050919050565b6000613512602083613b1c565b915061351d826143cb565b602082019050919050565b6000613535602f83613b1c565b9150613540826143f4565b604082019050919050565b6000613558602183613b1c565b915061356382614443565b604082019050919050565b600061357b601083613b1c565b915061358682614492565b602082019050919050565b600061359e603183613b1c565b91506135a9826144bb565b604082019050919050565b60006135c1601883613b1c565b91506135cc8261450a565b602082019050919050565b60006135e4601b83613b1c565b91506135ef82614533565b602082019050919050565b61360381613cd3565b82525050565b60006136158284613138565b60148201915081905092915050565b60006136308285613210565b915061363c82846131df565b9150613647826134e2565b91508190509392505050565b60006020820190506136686000830184613129565b92915050565b60006080820190506136836000830187613129565b6136906020830186613129565b61369d60408301856135fa565b81810360608301526136af818461316d565b905095945050505050565b60006020820190506136cf600083018461314f565b92915050565b60006020820190506136ea600083018461315e565b92915050565b6000602082019050818103600083015261370a81846131a6565b905092915050565b6000602082019050818103600083015261372b8161328f565b9050919050565b6000602082019050818103600083015261374b816132b2565b9050919050565b6000602082019050818103600083015261376b816132d5565b9050919050565b6000602082019050818103600083015261378b816132f8565b9050919050565b600060208201905081810360008301526137ab8161331b565b9050919050565b600060208201905081810360008301526137cb8161333e565b9050919050565b600060208201905081810360008301526137eb81613361565b9050919050565b6000602082019050818103600083015261380b81613384565b9050919050565b6000602082019050818103600083015261382b816133a7565b9050919050565b6000602082019050818103600083015261384b816133ca565b9050919050565b6000602082019050818103600083015261386b816133ed565b9050919050565b6000602082019050818103600083015261388b81613410565b9050919050565b600060208201905081810360008301526138ab81613433565b9050919050565b600060208201905081810360008301526138cb81613456565b9050919050565b600060208201905081810360008301526138eb81613479565b9050919050565b6000602082019050818103600083015261390b8161349c565b9050919050565b6000602082019050818103600083015261392b816134bf565b9050919050565b6000602082019050818103600083015261394b81613505565b9050919050565b6000602082019050818103600083015261396b81613528565b9050919050565b6000602082019050818103600083015261398b8161354b565b9050919050565b600060208201905081810360008301526139ab8161356e565b9050919050565b600060208201905081810360008301526139cb81613591565b9050919050565b600060208201905081810360008301526139eb816135b4565b9050919050565b60006020820190508181036000830152613a0b816135d7565b9050919050565b6000602082019050613a2760008301846135fa565b92915050565b6000613a37613a48565b9050613a438282613d51565b919050565b6000604051905090565b600067ffffffffffffffff821115613a6d57613a6c613edc565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613a9957613a98613edc565b5b613aa282613f29565b9050602081019050919050565b600067ffffffffffffffff821115613aca57613ac9613edc565b5b613ad382613f29565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b4382613cd3565b9150613b4e83613cd3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b8357613b82613e20565b5b828201905092915050565b6000613b9982613cd3565b9150613ba483613cd3565b925082613bb457613bb3613e4f565b5b828204905092915050565b6000613bca82613cd3565b9150613bd583613cd3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c0e57613c0d613e20565b5b828202905092915050565b6000613c2482613cd3565b9150613c2f83613cd3565b925082821015613c4257613c41613e20565b5b828203905092915050565b6000613c5882613cb3565b9050919050565b6000613c6a82613cb3565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d0a578082015181840152602081019050613cef565b83811115613d19576000848401525b50505050565b60006002820490506001821680613d3757607f821691505b60208210811415613d4b57613d4a613e7e565b5b50919050565b613d5a82613f29565b810181811067ffffffffffffffff82111715613d7957613d78613edc565b5b80604052505050565b6000613d8d82613cd3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613dc057613dbf613e20565b5b600182019050919050565b6000613dd682613ddd565b9050919050565b6000613de882613f3a565b9050919050565b6000613dfa82613cd3565b9150613e0583613cd3565b925082613e1557613e14613e4f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f576f756c6420657863656564206d696e7473207065722077616c6c6574206c6960008201527f6d69740000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f74206f6e2077686974656c69737400000000000000000000000000000000600082015250565b7f4d696e74696e672074686973206d616e7920776f756c6420657863656564207460008201527f6865206d617820737570706c7900000000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206e6f74206c697665000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e6f2066756e647320746f207769746864726177000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f50726573616c65206e6f74206c69766500000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e636f72726563742066756e647320737570706c6965640000000000000000600082015250565b7f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000600082015250565b61456581613c4d565b811461457057600080fd5b50565b61457c81613c5f565b811461458757600080fd5b50565b61459381613c71565b811461459e57600080fd5b50565b6145aa81613c7d565b81146145b557600080fd5b50565b6145c181613c87565b81146145cc57600080fd5b50565b6145d881613cd3565b81146145e357600080fd5b5056fea2646970667358221220480a80016523eb1f8e022b2124a6d42a50f8f42a74fda42800aaf1c148e9d28564736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d636244414854316f6562326e594a6e4557546e68316a57634e3963353177516343756138356b3833683434722f00000000000000000000

Deployed Bytecode

0x60806040526004361061020e5760003560e01c8063715018a611610118578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb01146107a4578063dab5f340146107cf578063e985e9c5146107f8578063ebf0c71714610835578063f2fde38b146108605761020e565b8063b88d4fde146106e3578063c87b56dd1461070c578063d2cab05614610749578063d547cfb7146107795761020e565b8063a0712d68116100e7578063a0712d681461060d578063a0bcfc7f1461063d578063a22cb46514610666578063b423fe671461068f578063b6c693e5146106b85761020e565b8063715018a6146105635780638da5cb5b1461057a578063920a8f5d146105a557806395d89b41146105e25761020e565b806332dee40b1161019b57806344a0d68a1161016a57806344a0d68a1461046c578063464bd640146104955780635e326b92146104c05780636352211e146104e957806370a08231146105265761020e565b806332dee40b146103b257806338e21cce146103db57806340221e201461041857806342842e0e146104435761020e565b8063094c9826116101e2578063094c9826146102e1578063095ea7b31461030a57806313faede61461033357806318160ddd1461035e57806323b872dd146103895761020e565b8062b6849f1461021357806301ffc9a71461023c57806306fdde0314610279578063081812fc146102a4575b600080fd5b34801561021f57600080fd5b5061023a60048036038101906102359190612f56565b610889565b005b34801561024857600080fd5b50610263600480360381019061025e9190612ffd565b610a52565b60405161027091906136ba565b60405180910390f35b34801561028557600080fd5b5061028e610b34565b60405161029b91906136f0565b60405180910390f35b3480156102b057600080fd5b506102cb60048036038101906102c691906130a0565b610bc6565b6040516102d89190613653565b60405180910390f35b3480156102ed57600080fd5b50610308600480360381019061030391906130a0565b610c4b565b005b34801561031657600080fd5b50610331600480360381019061032c9190612f16565b610cd1565b005b34801561033f57600080fd5b50610348610de9565b6040516103559190613a12565b60405180910390f35b34801561036a57600080fd5b50610373610def565b6040516103809190613a12565b60405180910390f35b34801561039557600080fd5b506103b060048036038101906103ab9190612e00565b610df5565b005b3480156103be57600080fd5b506103d960048036038101906103d49190612d93565b610e55565b005b3480156103e757600080fd5b5061040260048036038101906103fd9190612d66565b610f5e565b60405161040f9190613a12565b60405180910390f35b34801561042457600080fd5b5061042d610f76565b60405161043a9190613a12565b60405180910390f35b34801561044f57600080fd5b5061046a60048036038101906104659190612e00565b610f7c565b005b34801561047857600080fd5b50610493600480360381019061048e91906130a0565b610f9c565b005b3480156104a157600080fd5b506104aa611022565b6040516104b791906136ba565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190612fa3565b611035565b005b3480156104f557600080fd5b50610510600480360381019061050b91906130a0565b6110ce565b60405161051d9190613653565b60405180910390f35b34801561053257600080fd5b5061054d60048036038101906105489190612d66565b611180565b60405161055a9190613a12565b60405180910390f35b34801561056f57600080fd5b50610578611238565b005b34801561058657600080fd5b5061058f6112c0565b60405161059c9190613653565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c79190612d66565b6112e9565b6040516105d99190613a12565b60405180910390f35b3480156105ee57600080fd5b506105f7611332565b60405161060491906136f0565b60405180910390f35b610627600480360381019061062291906130a0565b6113c4565b60405161063491906136ba565b60405180910390f35b34801561064957600080fd5b50610664600480360381019061065f9190613057565b611558565b005b34801561067257600080fd5b5061068d60048036038101906106889190612ed6565b6115ee565b005b34801561069b57600080fd5b506106b660048036038101906106b19190612fa3565b611604565b005b3480156106c457600080fd5b506106cd61169d565b6040516106da91906136ba565b60405180910390f35b3480156106ef57600080fd5b5061070a60048036038101906107059190612e53565b6116b0565b005b34801561071857600080fd5b50610733600480360381019061072e91906130a0565b611712565b60405161074091906136f0565b60405180910390f35b610763600480360381019061075e91906130cd565b61178e565b60405161077091906136ba565b60405180910390f35b34801561078557600080fd5b5061078e61199c565b60405161079b91906136f0565b60405180910390f35b3480156107b057600080fd5b506107b9611a2a565b6040516107c69190613a12565b60405180910390f35b3480156107db57600080fd5b506107f660048036038101906107f19190612fd0565b611a30565b005b34801561080457600080fd5b5061081f600480360381019061081a9190612dc0565b611ab6565b60405161082c91906136ba565b60405180910390f35b34801561084157600080fd5b5061084a611b4a565b60405161085791906136d5565b60405180910390f35b34801561086c57600080fd5b5061088760048036038101906108829190612d66565b611b50565b005b610891611c48565b73ffffffffffffffffffffffffffffffffffffffff166108af6112c0565b73ffffffffffffffffffffffffffffffffffffffff1614610905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fc90613932565b60405180910390fd5b600854828290506007546109199190613b38565b111561095a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095190613752565b60405180910390fd5b60005b82829050811015610a4d57600060016007546109799190613b38565b90506007600081548092919061098e90613d82565b91905055506109c48484848181106109a9576109a8613ead565b5b90506020020160208101906109be9190612d66565b82611c50565b8383838181106109d7576109d6613ead565b5b90506020020160208101906109ec9190612d66565b73ffffffffffffffffffffffffffffffffffffffff167f3a5398bda6f1f57d6c96834fa9bf02b5517bdc847d14312015a917ba421c31c982604051610a319190613a12565b60405180910390a2508080610a4590613d82565b91505061095d565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b1d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b2d5750610b2c82611e2a565b5b9050919050565b606060018054610b4390613d1f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6f90613d1f565b8015610bbc5780601f10610b9157610100808354040283529160200191610bbc565b820191906000526020600020905b815481529060010190602001808311610b9f57829003601f168201915b5050505050905090565b6000610bd182611e94565b610c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0790613912565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610c53611c48565b73ffffffffffffffffffffffffffffffffffffffff16610c716112c0565b73ffffffffffffffffffffffffffffffffffffffff1614610cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe90613932565b60405180910390fd5b80600a8190555050565b6000610cdc826110ce565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4490613972565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d6c611c48565b73ffffffffffffffffffffffffffffffffffffffff161480610d9b5750610d9a81610d95611c48565b611ab6565b5b610dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd190613892565b60405180910390fd5b610de48383611f00565b505050565b60095481565b60075481565b610e06610e00611c48565b82611fb9565b610e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3c906139b2565b60405180910390fd5b610e50838383612097565b505050565b610e5d611c48565b73ffffffffffffffffffffffffffffffffffffffff16610e7b6112c0565b73ffffffffffffffffffffffffffffffffffffffff1614610ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec890613932565b60405180910390fd5b60004711610f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0b90613852565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f5a573d6000803e3d6000fd5b5050565b600e6020528060005260406000206000915090505481565b600a5481565b610f97838383604051806020016040528060008152506116b0565b505050565b610fa4611c48565b73ffffffffffffffffffffffffffffffffffffffff16610fc26112c0565b73ffffffffffffffffffffffffffffffffffffffff1614611018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100f90613932565b60405180910390fd5b8060098190555050565b600b60009054906101000a900460ff1681565b61103d611c48565b73ffffffffffffffffffffffffffffffffffffffff1661105b6112c0565b73ffffffffffffffffffffffffffffffffffffffff16146110b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a890613932565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e906138d2565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e8906138b2565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611240611c48565b73ffffffffffffffffffffffffffffffffffffffff1661125e6112c0565b73ffffffffffffffffffffffffffffffffffffffff16146112b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ab90613932565b60405180910390fd5b6112be60006122fe565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606002805461134190613d1f565b80601f016020809104026020016040519081016040528092919081815260200182805461136d90613d1f565b80156113ba5780601f1061138f576101008083540402835291602001916113ba565b820191906000526020600020905b81548152906001019060200180831161139d57829003601f168201915b5050505050905090565b6000600b60019054906101000a900460ff16611415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140c90613772565b60405180910390fd5b600a5482600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114639190613b38565b11156114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b90613712565b60405180910390fd5b816009546114b29190613bbf565b34146114f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ea906139d2565b60405180910390fd5b600854826007546115049190613b38565b1115611545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153c906139f2565b60405180910390fd5b61154f33836123c2565b60019050919050565b611560611c48565b73ffffffffffffffffffffffffffffffffffffffff1661157e6112c0565b73ffffffffffffffffffffffffffffffffffffffff16146115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb90613932565b60405180910390fd5b80600c90805190602001906115ea929190612a5c565b5050565b6116006115f9611c48565b83836124cb565b5050565b61160c611c48565b73ffffffffffffffffffffffffffffffffffffffff1661162a6112c0565b73ffffffffffffffffffffffffffffffffffffffff1614611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167790613932565b60405180910390fd5b80600b60016101000a81548160ff02191690831515021790555050565b600b60019054906101000a900460ff1681565b6116c16116bb611c48565b83611fb9565b611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f7906139b2565b60405180910390fd5b61170c84848484612638565b50505050565b606061171d82611e94565b61175c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175390613952565b60405180910390fd5b600c61176783612694565b604051602001611778929190613624565b6040516020818303038152906040529050919050565b6000600a5483600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117de9190613b38565b111561181f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181690613712565b60405180910390fd5b8260095461182d9190613bbf565b341461186e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611865906139d2565b60405180910390fd5b6008548360075461187f9190613b38565b11156118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b7906139f2565b60405180910390fd5b600b60009054906101000a900460ff1661190f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190690613992565b60405180910390fd5b6001151561194683600d543360405160200161192b9190613609565b604051602081830303815290604052805190602001206127f5565b151514611988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197f90613732565b60405180910390fd5b61199233846123c2565b6001905092915050565b600c80546119a990613d1f565b80601f01602080910402602001604051908101604052809291908181526020018280546119d590613d1f565b8015611a225780601f106119f757610100808354040283529160200191611a22565b820191906000526020600020905b815481529060010190602001808311611a0557829003601f168201915b505050505081565b60085481565b611a38611c48565b73ffffffffffffffffffffffffffffffffffffffff16611a566112c0565b73ffffffffffffffffffffffffffffffffffffffff1614611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa390613932565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d5481565b611b58611c48565b73ffffffffffffffffffffffffffffffffffffffff16611b766112c0565b73ffffffffffffffffffffffffffffffffffffffff1614611bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc390613932565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c33906137b2565b60405180910390fd5b611c45816122fe565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb7906138f2565b60405180910390fd5b611cc981611e94565b15611d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d00906137f2565b60405180910390fd5b611d156000838361280c565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d659190613b38565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e2660008383612811565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f73836110ce565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611fc482611e94565b612003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffa90613872565b60405180910390fd5b600061200e836110ce565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061207d57508373ffffffffffffffffffffffffffffffffffffffff1661206584610bc6565b73ffffffffffffffffffffffffffffffffffffffff16145b8061208e575061208d8185611ab6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166120b7826110ce565b73ffffffffffffffffffffffffffffffffffffffff161461210d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612104906137d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561217d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217490613812565b60405180910390fd5b61218883838361280c565b612193600082611f00565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121e39190613c19565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461223a9190613b38565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122f9838383612811565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124119190613b38565b9250508190555060005b818110156124ad5760006001826124329190613b38565b60075461243f9190613b38565b905061244b8482611c50565b8373ffffffffffffffffffffffffffffffffffffffff167f3a5398bda6f1f57d6c96834fa9bf02b5517bdc847d14312015a917ba421c31c9826040516124919190613a12565b60405180910390a25080806124a590613d82565b91505061241b565b5080600760008282546124c09190613b38565b925050819055505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561253a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253190613832565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161262b91906136ba565b60405180910390a3505050565b612643848484612097565b61264f84848484612816565b61268e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268590613792565b60405180910390fd5b50505050565b606060008214156126dc576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127f0565b600082905060005b6000821461270e5780806126f790613d82565b915050600a826127079190613b8e565b91506126e4565b60008167ffffffffffffffff81111561272a57612729613edc565b5b6040519080825280601f01601f19166020018201604052801561275c5781602001600182028036833780820191505090505b5090505b600085146127e9576001826127759190613c19565b9150600a856127849190613def565b60306127909190613b38565b60f81b8183815181106127a6576127a5613ead565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127e29190613b8e565b9450612760565b8093505050505b919050565b60008261280285846129ad565b1490509392505050565b505050565b505050565b60006128378473ffffffffffffffffffffffffffffffffffffffff16612a22565b156129a0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612860611c48565b8786866040518563ffffffff1660e01b8152600401612882949392919061366e565b602060405180830381600087803b15801561289c57600080fd5b505af19250505080156128cd57506040513d601f19601f820116820180604052508101906128ca919061302a565b60015b612950573d80600081146128fd576040519150601f19603f3d011682016040523d82523d6000602084013e612902565b606091505b50600081511415612948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293f90613792565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129a5565b600190505b949350505050565b60008082905060005b8451811015612a175760008582815181106129d4576129d3613ead565b5b602002602001015190508083116129f6576129ef8382612a45565b9250612a03565b612a008184612a45565b92505b508080612a0f90613d82565b9150506129b6565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082600052816020526040600020905092915050565b828054612a6890613d1f565b90600052602060002090601f016020900481019282612a8a5760008555612ad1565b82601f10612aa357805160ff1916838001178555612ad1565b82800160010185558215612ad1579182015b82811115612ad0578251825591602001919060010190612ab5565b5b509050612ade9190612ae2565b5090565b5b80821115612afb576000816000905550600101612ae3565b5090565b6000612b12612b0d84613a52565b613a2d565b90508083825260208201905082856020860282011115612b3557612b34613f15565b5b60005b85811015612b655781612b4b8882612cb6565b845260208401935060208301925050600181019050612b38565b5050509392505050565b6000612b82612b7d84613a7e565b613a2d565b905082815260208101848484011115612b9e57612b9d613f1a565b5b612ba9848285613cdd565b509392505050565b6000612bc4612bbf84613aaf565b613a2d565b905082815260208101848484011115612be057612bdf613f1a565b5b612beb848285613cdd565b509392505050565b600081359050612c028161455c565b92915050565b600081359050612c1781614573565b92915050565b60008083601f840112612c3357612c32613f10565b5b8235905067ffffffffffffffff811115612c5057612c4f613f0b565b5b602083019150836020820283011115612c6c57612c6b613f15565b5b9250929050565b600082601f830112612c8857612c87613f10565b5b8135612c98848260208601612aff565b91505092915050565b600081359050612cb08161458a565b92915050565b600081359050612cc5816145a1565b92915050565b600081359050612cda816145b8565b92915050565b600081519050612cef816145b8565b92915050565b600082601f830112612d0a57612d09613f10565b5b8135612d1a848260208601612b6f565b91505092915050565b600082601f830112612d3857612d37613f10565b5b8135612d48848260208601612bb1565b91505092915050565b600081359050612d60816145cf565b92915050565b600060208284031215612d7c57612d7b613f24565b5b6000612d8a84828501612bf3565b91505092915050565b600060208284031215612da957612da8613f24565b5b6000612db784828501612c08565b91505092915050565b60008060408385031215612dd757612dd6613f24565b5b6000612de585828601612bf3565b9250506020612df685828601612bf3565b9150509250929050565b600080600060608486031215612e1957612e18613f24565b5b6000612e2786828701612bf3565b9350506020612e3886828701612bf3565b9250506040612e4986828701612d51565b9150509250925092565b60008060008060808587031215612e6d57612e6c613f24565b5b6000612e7b87828801612bf3565b9450506020612e8c87828801612bf3565b9350506040612e9d87828801612d51565b925050606085013567ffffffffffffffff811115612ebe57612ebd613f1f565b5b612eca87828801612cf5565b91505092959194509250565b60008060408385031215612eed57612eec613f24565b5b6000612efb85828601612bf3565b9250506020612f0c85828601612ca1565b9150509250929050565b60008060408385031215612f2d57612f2c613f24565b5b6000612f3b85828601612bf3565b9250506020612f4c85828601612d51565b9150509250929050565b60008060208385031215612f6d57612f6c613f24565b5b600083013567ffffffffffffffff811115612f8b57612f8a613f1f565b5b612f9785828601612c1d565b92509250509250929050565b600060208284031215612fb957612fb8613f24565b5b6000612fc784828501612ca1565b91505092915050565b600060208284031215612fe657612fe5613f24565b5b6000612ff484828501612cb6565b91505092915050565b60006020828403121561301357613012613f24565b5b600061302184828501612ccb565b91505092915050565b6000602082840312156130405761303f613f24565b5b600061304e84828501612ce0565b91505092915050565b60006020828403121561306d5761306c613f24565b5b600082013567ffffffffffffffff81111561308b5761308a613f1f565b5b61309784828501612d23565b91505092915050565b6000602082840312156130b6576130b5613f24565b5b60006130c484828501612d51565b91505092915050565b600080604083850312156130e4576130e3613f24565b5b60006130f285828601612d51565b925050602083013567ffffffffffffffff81111561311357613112613f1f565b5b61311f85828601612c73565b9150509250929050565b61313281613c4d565b82525050565b61314961314482613c4d565b613dcb565b82525050565b61315881613c71565b82525050565b61316781613c7d565b82525050565b600061317882613af5565b6131828185613b0b565b9350613192818560208601613cec565b61319b81613f29565b840191505092915050565b60006131b182613b00565b6131bb8185613b1c565b93506131cb818560208601613cec565b6131d481613f29565b840191505092915050565b60006131ea82613b00565b6131f48185613b2d565b9350613204818560208601613cec565b80840191505092915050565b6000815461321d81613d1f565b6132278186613b2d565b94506001821660008114613242576001811461325357613286565b60ff19831686528186019350613286565b61325c85613ae0565b60005b8381101561327e5781548189015260018201915060208101905061325f565b838801955050505b50505092915050565b600061329c602383613b1c565b91506132a782613f47565b604082019050919050565b60006132bf601083613b1c565b91506132ca82613f96565b602082019050919050565b60006132e2602d83613b1c565b91506132ed82613fbf565b604082019050919050565b6000613305601483613b1c565b91506133108261400e565b602082019050919050565b6000613328603283613b1c565b915061333382614037565b604082019050919050565b600061334b602683613b1c565b915061335682614086565b604082019050919050565b600061336e602583613b1c565b9150613379826140d5565b604082019050919050565b6000613391601c83613b1c565b915061339c82614124565b602082019050919050565b60006133b4602483613b1c565b91506133bf8261414d565b604082019050919050565b60006133d7601983613b1c565b91506133e28261419c565b602082019050919050565b60006133fa601483613b1c565b9150613405826141c5565b602082019050919050565b600061341d602c83613b1c565b9150613428826141ee565b604082019050919050565b6000613440603883613b1c565b915061344b8261423d565b604082019050919050565b6000613463602a83613b1c565b915061346e8261428c565b604082019050919050565b6000613486602983613b1c565b9150613491826142db565b604082019050919050565b60006134a9602083613b1c565b91506134b48261432a565b602082019050919050565b60006134cc602c83613b1c565b91506134d782614353565b604082019050919050565b60006134ef600583613b2d565b91506134fa826143a2565b600582019050919050565b6000613512602083613b1c565b915061351d826143cb565b602082019050919050565b6000613535602f83613b1c565b9150613540826143f4565b604082019050919050565b6000613558602183613b1c565b915061356382614443565b604082019050919050565b600061357b601083613b1c565b915061358682614492565b602082019050919050565b600061359e603183613b1c565b91506135a9826144bb565b604082019050919050565b60006135c1601883613b1c565b91506135cc8261450a565b602082019050919050565b60006135e4601b83613b1c565b91506135ef82614533565b602082019050919050565b61360381613cd3565b82525050565b60006136158284613138565b60148201915081905092915050565b60006136308285613210565b915061363c82846131df565b9150613647826134e2565b91508190509392505050565b60006020820190506136686000830184613129565b92915050565b60006080820190506136836000830187613129565b6136906020830186613129565b61369d60408301856135fa565b81810360608301526136af818461316d565b905095945050505050565b60006020820190506136cf600083018461314f565b92915050565b60006020820190506136ea600083018461315e565b92915050565b6000602082019050818103600083015261370a81846131a6565b905092915050565b6000602082019050818103600083015261372b8161328f565b9050919050565b6000602082019050818103600083015261374b816132b2565b9050919050565b6000602082019050818103600083015261376b816132d5565b9050919050565b6000602082019050818103600083015261378b816132f8565b9050919050565b600060208201905081810360008301526137ab8161331b565b9050919050565b600060208201905081810360008301526137cb8161333e565b9050919050565b600060208201905081810360008301526137eb81613361565b9050919050565b6000602082019050818103600083015261380b81613384565b9050919050565b6000602082019050818103600083015261382b816133a7565b9050919050565b6000602082019050818103600083015261384b816133ca565b9050919050565b6000602082019050818103600083015261386b816133ed565b9050919050565b6000602082019050818103600083015261388b81613410565b9050919050565b600060208201905081810360008301526138ab81613433565b9050919050565b600060208201905081810360008301526138cb81613456565b9050919050565b600060208201905081810360008301526138eb81613479565b9050919050565b6000602082019050818103600083015261390b8161349c565b9050919050565b6000602082019050818103600083015261392b816134bf565b9050919050565b6000602082019050818103600083015261394b81613505565b9050919050565b6000602082019050818103600083015261396b81613528565b9050919050565b6000602082019050818103600083015261398b8161354b565b9050919050565b600060208201905081810360008301526139ab8161356e565b9050919050565b600060208201905081810360008301526139cb81613591565b9050919050565b600060208201905081810360008301526139eb816135b4565b9050919050565b60006020820190508181036000830152613a0b816135d7565b9050919050565b6000602082019050613a2760008301846135fa565b92915050565b6000613a37613a48565b9050613a438282613d51565b919050565b6000604051905090565b600067ffffffffffffffff821115613a6d57613a6c613edc565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613a9957613a98613edc565b5b613aa282613f29565b9050602081019050919050565b600067ffffffffffffffff821115613aca57613ac9613edc565b5b613ad382613f29565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b4382613cd3565b9150613b4e83613cd3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b8357613b82613e20565b5b828201905092915050565b6000613b9982613cd3565b9150613ba483613cd3565b925082613bb457613bb3613e4f565b5b828204905092915050565b6000613bca82613cd3565b9150613bd583613cd3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c0e57613c0d613e20565b5b828202905092915050565b6000613c2482613cd3565b9150613c2f83613cd3565b925082821015613c4257613c41613e20565b5b828203905092915050565b6000613c5882613cb3565b9050919050565b6000613c6a82613cb3565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d0a578082015181840152602081019050613cef565b83811115613d19576000848401525b50505050565b60006002820490506001821680613d3757607f821691505b60208210811415613d4b57613d4a613e7e565b5b50919050565b613d5a82613f29565b810181811067ffffffffffffffff82111715613d7957613d78613edc565b5b80604052505050565b6000613d8d82613cd3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613dc057613dbf613e20565b5b600182019050919050565b6000613dd682613ddd565b9050919050565b6000613de882613f3a565b9050919050565b6000613dfa82613cd3565b9150613e0583613cd3565b925082613e1557613e14613e4f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f576f756c6420657863656564206d696e7473207065722077616c6c6574206c6960008201527f6d69740000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f74206f6e2077686974656c69737400000000000000000000000000000000600082015250565b7f4d696e74696e672074686973206d616e7920776f756c6420657863656564207460008201527f6865206d617820737570706c7900000000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206e6f74206c697665000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e6f2066756e647320746f207769746864726177000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f50726573616c65206e6f74206c69766500000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e636f72726563742066756e647320737570706c6965640000000000000000600082015250565b7f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000600082015250565b61456581613c4d565b811461457057600080fd5b50565b61457c81613c5f565b811461458757600080fd5b50565b61459381613c71565b811461459e57600080fd5b50565b6145aa81613c7d565b81146145b557600080fd5b50565b6145c181613c87565b81146145cc57600080fd5b50565b6145d881613cd3565b81146145e357600080fd5b5056fea2646970667358221220480a80016523eb1f8e022b2124a6d42a50f8f42a74fda42800aaf1c148e9d28564736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d636244414854316f6562326e594a6e4557546e68316a57634e3963353177516343756138356b3833683434722f00000000000000000000

-----Decoded View---------------
Arg [0] : _preRevealURI (string): ipfs://QmcbDAHT1oeb2nYJnEWTnh1jWcN9c51wQcCua85k83h44r/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d636244414854316f6562326e594a6e4557546e68316a57
Arg [3] : 634e3963353177516343756138356b3833683434722f00000000000000000000


Deployed Bytecode Sourcemap

39887:5177:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44661:392;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23968:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24913:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26472:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43849:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25995:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40014:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39941:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27222:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43108:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40521:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40053:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27632:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43690:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40095:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44055:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24607:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24337:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38795:103;;;;;;;;;;;;;:::i;:::-;;38144:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42793:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25082:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40686:488;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43439:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26765:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44240:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40127:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27888:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42430:273;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41242:624;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40164:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39974:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44418:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26991:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40199:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39053:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44661:392;38375:12;:10;:12::i;:::-;38364:23;;:7;:5;:7::i;:::-;:23;;;38356:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44770:9:::1;;44756:3;;:10;;44742:11;;:24;;;;:::i;:::-;:37;;44734:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;44847:6;44842:204;44859:3;;:10;;44857:1;:12;44842:204;;;44891:12;44920:1;44906:11;;:15;;;;:::i;:::-;44891:30;;44936:11;;:13;;;;;;;;;:::i;:::-;;;;;;44964:22;44970:3;;44974:1;44970:6;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;44978:7;44964:5;:22::i;:::-;45027:3;;45031:1;45027:6;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;45006:28;;;45018:7;45006:28;;;;;;:::i;:::-;;;;;;;;44876:170;44871:3;;;;;:::i;:::-;;;;44842:204;;;;44661:392:::0;;:::o;23968:305::-;24070:4;24122:25;24107:40;;;:11;:40;;;;:105;;;;24179:33;24164:48;;;:11;:48;;;;24107:105;:158;;;;24229:36;24253:11;24229:23;:36::i;:::-;24107:158;24087:178;;23968:305;;;:::o;24913:100::-;24967:13;25000:5;24993:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24913:100;:::o;26472:221::-;26548:7;26576:16;26584:7;26576;:16::i;:::-;26568:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26661:15;:24;26677:7;26661:24;;;;;;;;;;;;;;;;;;;;;26654:31;;26472:221;;;:::o;43849:125::-;38375:12;:10;:12::i;:::-;38364:23;;:7;:5;:7::i;:::-;:23;;;38356:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43948:18:::1;43931:14;:35;;;;43849:125:::0;:::o;25995:411::-;26076:13;26092:23;26107:7;26092:14;:23::i;:::-;26076:39;;26140:5;26134:11;;:2;:11;;;;26126:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;26234:5;26218:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;26243:37;26260:5;26267:12;:10;:12::i;:::-;26243:16;:37::i;:::-;26218:62;26196:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;26377:21;26386:2;26390:7;26377:8;:21::i;:::-;26065:341;25995:411;;:::o;40014:32::-;;;;:::o;39941:26::-;;;;:::o;27222:339::-;27417:41;27436:12;:10;:12::i;:::-;27450:7;27417:18;:41::i;:::-;27409:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27525:28;27535:4;27541:2;27545:7;27525:9;:28::i;:::-;27222:339;;;:::o;43108:189::-;38375:12;:10;:12::i;:::-;38364:23;;:7;:5;:7::i;:::-;:23;;;38356:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43217:1:::1;43193:21;:25;43185:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;43254:3;:12;;:35;43267:21;43254:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;43108:189:::0;:::o;40521:41::-;;;;;;;;;;;;;;;;;:::o;40053:33::-;;;;:::o;27632:185::-;27770:39;27787:4;27793:2;27797:7;27770:39;;;;;;;;;;;;:16;:39::i;:::-;27632:185;;;:::o;43690:85::-;38375:12;:10;:12::i;:::-;38364:23;;:7;:5;:7::i;:::-;:23;;;38356:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43759:8:::1;43752:4;:15;;;;43690:85:::0;:::o;40095:25::-;;;;;;;;;;;;;:::o;44055:101::-;38375:12;:10;:12::i;:::-;38364:23;;:7;:5;:7::i;:::-;:23;;;38356:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44141:7:::1;44125:13;;:23;;;;;;;;;;;;;;;;;;44055:101:::0;:::o;24607:239::-;24679:7;24699:13;24715:7;:16;24723:7;24715:16;;;;;;;;;;;;;;;;;;;;;24699:32;;24767:1;24750:19;;:5;:19;;;;24742:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24833:5;24826:12;;;24607:239;;;:::o;24337:208::-;24409:7;24454:1;24437:19;;:5;:19;;;;24429:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;24521:9;:16;24531:5;24521:16;;;;;;;;;;;;;;;;24514:23;;24337:208;;;:::o;38795:103::-;38375:12;:10;:12::i;:::-;38364:23;;:7;:5;:7::i;:::-;:23;;;38356:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38860:30:::1;38887:1;38860:18;:30::i;:::-;38795:103::o:0;38144:87::-;38190:7;38217:6;;;;;;;;;;;38210:13;;38144:87;:::o;42793:116::-;42858:4;42882:9;:19;42892:8;42882:19;;;;;;;;;;;;;;;;42875:26;;42793:116;;;:::o;25082:104::-;25138:13;25171:7;25164:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25082:104;:::o;40686:488::-;40739:4;40770:16;;;;;;;;;;;40762:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;40865:14;;40854:7;40830:9;:21;40840:10;40830:21;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;:49;;40822:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;40958:7;40951:4;;:14;;;;:::i;:::-;40938:9;:27;40930:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41051:9;;41040:7;41026:11;;:21;;;;:::i;:::-;:34;;41018:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;41113:31;41124:10;41136:7;41113:10;:31::i;:::-;41162:4;41155:11;;40686:488;;;:::o;43439:111::-;38375:12;:10;:12::i;:::-;38364:23;;:7;:5;:7::i;:::-;:23;;;38356:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43531:11:::1;43516:12;:26;;;;;;;;;;;;:::i;:::-;;43439:111:::0;:::o;26765:155::-;26860:52;26879:12;:10;:12::i;:::-;26893:8;26903;26860:18;:52::i;:::-;26765:155;;:::o;44240:107::-;38375:12;:10;:12::i;:::-;38364:23;;:7;:5;:7::i;:::-;:23;;;38356:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44332:7:::1;44313:16;;:26;;;;;;;;;;;;;;;;;;44240:107:::0;:::o;40127:28::-;;;;;;;;;;;;;:::o;27888:328::-;28063:41;28082:12;:10;:12::i;:::-;28096:7;28063:18;:41::i;:::-;28055:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28169:39;28183:4;28189:2;28193:7;28202:5;28169:13;:39::i;:::-;27888:328;;;;:::o;42430:273::-;42495:13;42531:17;42539:8;42531:7;:17::i;:::-;42523:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;42644:12;42658:26;42675:8;42658:16;:26::i;:::-;42627:67;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42613:82;;42430:273;;;:::o;41242:624::-;41329:4;41391:14;;41380:7;41356:9;:21;41366:10;41356:21;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;:49;;41348:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;41484:7;41477:4;;:14;;;;:::i;:::-;41464:9;:27;41456:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41577:9;;41566:7;41552:11;;:21;;;;:::i;:::-;:34;;41544:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;41637:13;;;;;;;;;;;41629:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;41767:4;41690:81;;:73;41709:6;41717:4;;41750:10;41733:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;41723:39;;;;;;41690:18;:73::i;:::-;:81;;;41682:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;41805:31;41816:10;41828:7;41805:10;:31::i;:::-;41854:4;41847:11;;41242:624;;;;:::o;40164:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39974:31::-;;;;:::o;44418:88::-;38375:12;:10;:12::i;:::-;38364:23;;:7;:5;:7::i;:::-;:23;;;38356:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44490:8:::1;44483:4;:15;;;;44418:88:::0;:::o;26991:164::-;27088:4;27112:18;:25;27131:5;27112:25;;;;;;;;;;;;;;;:35;27138:8;27112:35;;;;;;;;;;;;;;;;;;;;;;;;;27105:42;;26991:164;;;;:::o;40199:19::-;;;;:::o;39053:201::-;38375:12;:10;:12::i;:::-;38364:23;;:7;:5;:7::i;:::-;:23;;;38356:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39162:1:::1;39142:22;;:8;:22;;;;39134:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;39218:28;39237:8;39218:18;:28::i;:::-;39053:201:::0;:::o;22347:98::-;22400:7;22427:10;22420:17;;22347:98;:::o;31704:439::-;31798:1;31784:16;;:2;:16;;;;31776:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;31857:16;31865:7;31857;:16::i;:::-;31856:17;31848:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;31919:45;31948:1;31952:2;31956:7;31919:20;:45::i;:::-;31994:1;31977:9;:13;31987:2;31977:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32025:2;32006:7;:16;32014:7;32006:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32070:7;32066:2;32045:33;;32062:1;32045:33;;;;;;;;;;;;32091:44;32119:1;32123:2;32127:7;32091:19;:44::i;:::-;31704:439;;:::o;15829:157::-;15914:4;15953:25;15938:40;;;:11;:40;;;;15931:47;;15829:157;;;:::o;29726:127::-;29791:4;29843:1;29815:30;;:7;:16;29823:7;29815:16;;;;;;;;;;;;;;;;;;;;;:30;;;;29808:37;;29726:127;;;:::o;33872:174::-;33974:2;33947:15;:24;33963:7;33947:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;34030:7;34026:2;33992:46;;34001:23;34016:7;34001:14;:23::i;:::-;33992:46;;;;;;;;;;;;33872:174;;:::o;30020:348::-;30113:4;30138:16;30146:7;30138;:16::i;:::-;30130:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30214:13;30230:23;30245:7;30230:14;:23::i;:::-;30214:39;;30283:5;30272:16;;:7;:16;;;:51;;;;30316:7;30292:31;;:20;30304:7;30292:11;:20::i;:::-;:31;;;30272:51;:87;;;;30327:32;30344:5;30351:7;30327:16;:32::i;:::-;30272:87;30264:96;;;30020:348;;;;:::o;33129:625::-;33288:4;33261:31;;:23;33276:7;33261:14;:23::i;:::-;:31;;;33253:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;33367:1;33353:16;;:2;:16;;;;33345:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;33423:39;33444:4;33450:2;33454:7;33423:20;:39::i;:::-;33527:29;33544:1;33548:7;33527:8;:29::i;:::-;33588:1;33569:9;:15;33579:4;33569:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;33617:1;33600:9;:13;33610:2;33600:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33648:2;33629:7;:16;33637:7;33629:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33687:7;33683:2;33668:27;;33677:4;33668:27;;;;;;;;;;;;33708:38;33728:4;33734:2;33738:7;33708:19;:38::i;:::-;33129:625;;;:::o;39414:191::-;39488:16;39507:6;;;;;;;;;;;39488:25;;39533:8;39524:6;;:17;;;;;;;;;;;;;;;;;;39588:8;39557:40;;39578:8;39557:40;;;;;;;;;;;;39477:128;39414:191;:::o;41914:322::-;42003:7;41983:9;:16;41993:5;41983:16;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;42026:6;42021:175;42038:7;42036:1;:9;42021:175;;;42067:12;42099:1;42097;:3;;;;:::i;:::-;42082:11;;:19;;;;:::i;:::-;42067:34;;42116:21;42122:5;42129:7;42116:5;:21::i;:::-;42178:5;42157:27;;;42169:7;42157:27;;;;;;:::i;:::-;;;;;;;;42052:144;42047:3;;;;;:::i;:::-;;;;42021:175;;;;42221:7;42206:11;;:22;;;;;;;:::i;:::-;;;;;;;;41914:322;;:::o;34188:315::-;34343:8;34334:17;;:5;:17;;;;34326:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;34430:8;34392:18;:25;34411:5;34392:25;;;;;;;;;;;;;;;:35;34418:8;34392:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;34476:8;34454:41;;34469:5;34454:41;;;34486:8;34454:41;;;;;;:::i;:::-;;;;;;;;34188:315;;;:::o;29098:::-;29255:28;29265:4;29271:2;29275:7;29255:9;:28::i;:::-;29302:48;29325:4;29331:2;29335:7;29344:5;29302:22;:48::i;:::-;29294:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;29098:315;;;;:::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;923:190::-;1048:4;1101;1072:25;1085:5;1092:4;1072:12;:25::i;:::-;:33;1065:40;;923:190;;;;;:::o;36439:126::-;;;;:::o;36950:125::-;;;;:::o;35068:799::-;35223:4;35244:15;:2;:13;;;:15::i;:::-;35240:620;;;35296:2;35280:36;;;35317:12;:10;:12::i;:::-;35331:4;35337:7;35346:5;35280:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35276:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35539:1;35522:6;:13;:18;35518:272;;;35565:60;;;;;;;;;;:::i;:::-;;;;;;;;35518:272;35740:6;35734:13;35725:6;35721:2;35717:15;35710:38;35276:529;35413:41;;;35403:51;;;:6;:51;;;;35396:58;;;;;35240:620;35844:4;35837:11;;35068:799;;;;;;;:::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;5746:326::-;5806:4;6063:1;6041:7;:19;;;:23;6034:30;;5746:326;;;:::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;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;1731:155::-;1785:5;1823:6;1810:20;1801:29;;1839:41;1874:5;1839:41;:::i;:::-;1731:155;;;;:::o;1909:568::-;1982:8;1992:6;2042:3;2035:4;2027:6;2023:17;2019:27;2009:122;;2050:79;;:::i;:::-;2009:122;2163:6;2150:20;2140:30;;2193:18;2185:6;2182:30;2179:117;;;2215:79;;:::i;:::-;2179:117;2329:4;2321:6;2317:17;2305:29;;2383:3;2375:4;2367:6;2363:17;2353:8;2349:32;2346:41;2343:128;;;2390:79;;:::i;:::-;2343:128;1909:568;;;;;:::o;2500:370::-;2571:5;2620:3;2613:4;2605:6;2601:17;2597:27;2587:122;;2628:79;;:::i;:::-;2587:122;2745:6;2732:20;2770:94;2860:3;2852:6;2845:4;2837:6;2833:17;2770:94;:::i;:::-;2761:103;;2577:293;2500:370;;;;:::o;2876:133::-;2919:5;2957:6;2944:20;2935:29;;2973:30;2997:5;2973:30;:::i;:::-;2876:133;;;;:::o;3015:139::-;3061:5;3099:6;3086:20;3077:29;;3115:33;3142:5;3115:33;:::i;:::-;3015:139;;;;:::o;3160:137::-;3205:5;3243:6;3230:20;3221:29;;3259:32;3285:5;3259:32;:::i;:::-;3160:137;;;;:::o;3303:141::-;3359:5;3390:6;3384:13;3375:22;;3406:32;3432:5;3406:32;:::i;:::-;3303:141;;;;:::o;3463:338::-;3518:5;3567:3;3560:4;3552:6;3548:17;3544:27;3534:122;;3575:79;;:::i;:::-;3534:122;3692:6;3679:20;3717:78;3791:3;3783:6;3776:4;3768:6;3764:17;3717:78;:::i;:::-;3708:87;;3524:277;3463:338;;;;:::o;3821:340::-;3877:5;3926:3;3919:4;3911:6;3907:17;3903:27;3893:122;;3934:79;;:::i;:::-;3893:122;4051:6;4038:20;4076:79;4151:3;4143:6;4136:4;4128:6;4124:17;4076:79;:::i;:::-;4067:88;;3883:278;3821:340;;;;:::o;4167:139::-;4213:5;4251:6;4238:20;4229:29;;4267:33;4294:5;4267:33;:::i;:::-;4167:139;;;;:::o;4312:329::-;4371:6;4420:2;4408:9;4399:7;4395:23;4391:32;4388:119;;;4426:79;;:::i;:::-;4388:119;4546:1;4571:53;4616:7;4607:6;4596:9;4592:22;4571:53;:::i;:::-;4561:63;;4517:117;4312:329;;;;:::o;4647:345::-;4714:6;4763:2;4751:9;4742:7;4738:23;4734:32;4731:119;;;4769:79;;:::i;:::-;4731:119;4889:1;4914:61;4967:7;4958:6;4947:9;4943:22;4914:61;:::i;:::-;4904:71;;4860:125;4647:345;;;;:::o;4998:474::-;5066:6;5074;5123:2;5111:9;5102:7;5098:23;5094:32;5091:119;;;5129:79;;:::i;:::-;5091:119;5249:1;5274:53;5319:7;5310:6;5299:9;5295:22;5274:53;:::i;:::-;5264:63;;5220:117;5376:2;5402:53;5447:7;5438:6;5427:9;5423:22;5402:53;:::i;:::-;5392:63;;5347:118;4998:474;;;;;:::o;5478:619::-;5555:6;5563;5571;5620:2;5608:9;5599:7;5595:23;5591:32;5588:119;;;5626:79;;:::i;:::-;5588:119;5746:1;5771:53;5816:7;5807:6;5796:9;5792:22;5771:53;:::i;:::-;5761:63;;5717:117;5873:2;5899:53;5944:7;5935:6;5924:9;5920:22;5899:53;:::i;:::-;5889:63;;5844:118;6001:2;6027:53;6072:7;6063:6;6052:9;6048:22;6027:53;:::i;:::-;6017:63;;5972:118;5478:619;;;;;:::o;6103:943::-;6198:6;6206;6214;6222;6271:3;6259:9;6250:7;6246:23;6242:33;6239:120;;;6278:79;;:::i;:::-;6239:120;6398:1;6423:53;6468:7;6459:6;6448:9;6444:22;6423:53;:::i;:::-;6413:63;;6369:117;6525:2;6551:53;6596:7;6587:6;6576:9;6572:22;6551:53;:::i;:::-;6541:63;;6496:118;6653:2;6679:53;6724:7;6715:6;6704:9;6700:22;6679:53;:::i;:::-;6669:63;;6624:118;6809:2;6798:9;6794:18;6781:32;6840:18;6832:6;6829:30;6826:117;;;6862:79;;:::i;:::-;6826:117;6967:62;7021:7;7012:6;7001:9;6997:22;6967:62;:::i;:::-;6957:72;;6752:287;6103:943;;;;;;;:::o;7052:468::-;7117:6;7125;7174:2;7162:9;7153:7;7149:23;7145:32;7142:119;;;7180:79;;:::i;:::-;7142:119;7300:1;7325:53;7370:7;7361:6;7350:9;7346:22;7325:53;:::i;:::-;7315:63;;7271:117;7427:2;7453:50;7495:7;7486:6;7475:9;7471:22;7453:50;:::i;:::-;7443:60;;7398:115;7052:468;;;;;:::o;7526:474::-;7594:6;7602;7651:2;7639:9;7630:7;7626:23;7622:32;7619:119;;;7657:79;;:::i;:::-;7619:119;7777:1;7802:53;7847:7;7838:6;7827:9;7823:22;7802:53;:::i;:::-;7792:63;;7748:117;7904:2;7930:53;7975:7;7966:6;7955:9;7951:22;7930:53;:::i;:::-;7920:63;;7875:118;7526:474;;;;;:::o;8006:559::-;8092:6;8100;8149:2;8137:9;8128:7;8124:23;8120:32;8117:119;;;8155:79;;:::i;:::-;8117:119;8303:1;8292:9;8288:17;8275:31;8333:18;8325:6;8322:30;8319:117;;;8355:79;;:::i;:::-;8319:117;8468:80;8540:7;8531:6;8520:9;8516:22;8468:80;:::i;:::-;8450:98;;;;8246:312;8006:559;;;;;:::o;8571:323::-;8627:6;8676:2;8664:9;8655:7;8651:23;8647:32;8644:119;;;8682:79;;:::i;:::-;8644:119;8802:1;8827:50;8869:7;8860:6;8849:9;8845:22;8827:50;:::i;:::-;8817:60;;8773:114;8571:323;;;;:::o;8900:329::-;8959:6;9008:2;8996:9;8987:7;8983:23;8979:32;8976:119;;;9014:79;;:::i;:::-;8976:119;9134:1;9159:53;9204:7;9195:6;9184:9;9180:22;9159:53;:::i;:::-;9149:63;;9105:117;8900:329;;;;:::o;9235:327::-;9293:6;9342:2;9330:9;9321:7;9317:23;9313:32;9310:119;;;9348:79;;:::i;:::-;9310:119;9468:1;9493:52;9537:7;9528:6;9517:9;9513:22;9493:52;:::i;:::-;9483:62;;9439:116;9235:327;;;;:::o;9568:349::-;9637:6;9686:2;9674:9;9665:7;9661:23;9657:32;9654:119;;;9692:79;;:::i;:::-;9654:119;9812:1;9837:63;9892:7;9883:6;9872:9;9868:22;9837:63;:::i;:::-;9827:73;;9783:127;9568:349;;;;:::o;9923:509::-;9992:6;10041:2;10029:9;10020:7;10016:23;10012:32;10009:119;;;10047:79;;:::i;:::-;10009:119;10195:1;10184:9;10180:17;10167:31;10225:18;10217:6;10214:30;10211:117;;;10247:79;;:::i;:::-;10211:117;10352:63;10407:7;10398:6;10387:9;10383:22;10352:63;:::i;:::-;10342:73;;10138:287;9923:509;;;;:::o;10438:329::-;10497:6;10546:2;10534:9;10525:7;10521:23;10517:32;10514:119;;;10552:79;;:::i;:::-;10514:119;10672:1;10697:53;10742:7;10733:6;10722:9;10718:22;10697:53;:::i;:::-;10687:63;;10643:117;10438:329;;;;:::o;10773:684::-;10866:6;10874;10923:2;10911:9;10902:7;10898:23;10894:32;10891:119;;;10929:79;;:::i;:::-;10891:119;11049:1;11074:53;11119:7;11110:6;11099:9;11095:22;11074:53;:::i;:::-;11064:63;;11020:117;11204:2;11193:9;11189:18;11176:32;11235:18;11227:6;11224:30;11221:117;;;11257:79;;:::i;:::-;11221:117;11362:78;11432:7;11423:6;11412:9;11408:22;11362:78;:::i;:::-;11352:88;;11147:303;10773:684;;;;;:::o;11463:118::-;11550:24;11568:5;11550:24;:::i;:::-;11545:3;11538:37;11463:118;;:::o;11587:157::-;11692:45;11712:24;11730:5;11712:24;:::i;:::-;11692:45;:::i;:::-;11687:3;11680:58;11587:157;;:::o;11750:109::-;11831:21;11846:5;11831:21;:::i;:::-;11826:3;11819:34;11750:109;;:::o;11865:118::-;11952:24;11970:5;11952:24;:::i;:::-;11947:3;11940:37;11865:118;;:::o;11989:360::-;12075:3;12103:38;12135:5;12103:38;:::i;:::-;12157:70;12220:6;12215:3;12157:70;:::i;:::-;12150:77;;12236:52;12281:6;12276:3;12269:4;12262:5;12258:16;12236:52;:::i;:::-;12313:29;12335:6;12313:29;:::i;:::-;12308:3;12304:39;12297:46;;12079:270;11989:360;;;;:::o;12355:364::-;12443:3;12471:39;12504:5;12471:39;:::i;:::-;12526:71;12590:6;12585:3;12526:71;:::i;:::-;12519:78;;12606:52;12651:6;12646:3;12639:4;12632:5;12628:16;12606:52;:::i;:::-;12683:29;12705:6;12683:29;:::i;:::-;12678:3;12674:39;12667:46;;12447:272;12355:364;;;;:::o;12725:377::-;12831:3;12859:39;12892:5;12859:39;:::i;:::-;12914:89;12996:6;12991:3;12914:89;:::i;:::-;12907:96;;13012:52;13057:6;13052:3;13045:4;13038:5;13034:16;13012:52;:::i;:::-;13089:6;13084:3;13080:16;13073:23;;12835:267;12725:377;;;;:::o;13132:845::-;13235:3;13272:5;13266:12;13301:36;13327:9;13301:36;:::i;:::-;13353:89;13435:6;13430:3;13353:89;:::i;:::-;13346:96;;13473:1;13462:9;13458:17;13489:1;13484:137;;;;13635:1;13630:341;;;;13451:520;;13484:137;13568:4;13564:9;13553;13549:25;13544:3;13537:38;13604:6;13599:3;13595:16;13588:23;;13484:137;;13630:341;13697:38;13729:5;13697:38;:::i;:::-;13757:1;13771:154;13785:6;13782:1;13779:13;13771:154;;;13859:7;13853:14;13849:1;13844:3;13840:11;13833:35;13909:1;13900:7;13896:15;13885:26;;13807:4;13804:1;13800:12;13795:17;;13771:154;;;13954:6;13949:3;13945:16;13938:23;;13637:334;;13451:520;;13239:738;;13132:845;;;;:::o;13983:366::-;14125:3;14146:67;14210:2;14205:3;14146:67;:::i;:::-;14139:74;;14222:93;14311:3;14222:93;:::i;:::-;14340:2;14335:3;14331:12;14324:19;;13983:366;;;:::o;14355:::-;14497:3;14518:67;14582:2;14577:3;14518:67;:::i;:::-;14511:74;;14594:93;14683:3;14594:93;:::i;:::-;14712:2;14707:3;14703:12;14696:19;;14355:366;;;:::o;14727:::-;14869:3;14890:67;14954:2;14949:3;14890:67;:::i;:::-;14883:74;;14966:93;15055:3;14966:93;:::i;:::-;15084:2;15079:3;15075:12;15068:19;;14727:366;;;:::o;15099:::-;15241:3;15262:67;15326:2;15321:3;15262:67;:::i;:::-;15255:74;;15338:93;15427:3;15338:93;:::i;:::-;15456:2;15451:3;15447:12;15440:19;;15099:366;;;:::o;15471:::-;15613:3;15634:67;15698:2;15693:3;15634:67;:::i;:::-;15627:74;;15710:93;15799:3;15710:93;:::i;:::-;15828:2;15823:3;15819:12;15812:19;;15471:366;;;:::o;15843:::-;15985:3;16006:67;16070:2;16065:3;16006:67;:::i;:::-;15999:74;;16082:93;16171:3;16082:93;:::i;:::-;16200:2;16195:3;16191:12;16184:19;;15843:366;;;:::o;16215:::-;16357:3;16378:67;16442:2;16437:3;16378:67;:::i;:::-;16371:74;;16454:93;16543:3;16454:93;:::i;:::-;16572:2;16567:3;16563:12;16556:19;;16215:366;;;:::o;16587:::-;16729:3;16750:67;16814:2;16809:3;16750:67;:::i;:::-;16743:74;;16826:93;16915:3;16826:93;:::i;:::-;16944:2;16939:3;16935:12;16928:19;;16587:366;;;:::o;16959:::-;17101:3;17122:67;17186:2;17181:3;17122:67;:::i;:::-;17115:74;;17198:93;17287:3;17198:93;:::i;:::-;17316:2;17311:3;17307:12;17300:19;;16959:366;;;:::o;17331:::-;17473:3;17494:67;17558:2;17553:3;17494:67;:::i;:::-;17487:74;;17570:93;17659:3;17570:93;:::i;:::-;17688:2;17683:3;17679:12;17672:19;;17331:366;;;:::o;17703:::-;17845:3;17866:67;17930:2;17925:3;17866:67;:::i;:::-;17859:74;;17942:93;18031:3;17942:93;:::i;:::-;18060:2;18055:3;18051:12;18044:19;;17703:366;;;:::o;18075:::-;18217:3;18238:67;18302:2;18297:3;18238:67;:::i;:::-;18231:74;;18314:93;18403:3;18314:93;:::i;:::-;18432:2;18427:3;18423:12;18416:19;;18075:366;;;:::o;18447:::-;18589:3;18610:67;18674:2;18669:3;18610:67;:::i;:::-;18603:74;;18686:93;18775:3;18686:93;:::i;:::-;18804:2;18799:3;18795:12;18788:19;;18447:366;;;:::o;18819:::-;18961:3;18982:67;19046:2;19041:3;18982:67;:::i;:::-;18975:74;;19058:93;19147:3;19058:93;:::i;:::-;19176:2;19171:3;19167:12;19160:19;;18819:366;;;:::o;19191:::-;19333:3;19354:67;19418:2;19413:3;19354:67;:::i;:::-;19347:74;;19430:93;19519:3;19430:93;:::i;:::-;19548:2;19543:3;19539:12;19532:19;;19191:366;;;:::o;19563:::-;19705:3;19726:67;19790:2;19785:3;19726:67;:::i;:::-;19719:74;;19802:93;19891:3;19802:93;:::i;:::-;19920:2;19915:3;19911:12;19904:19;;19563:366;;;:::o;19935:::-;20077:3;20098:67;20162:2;20157:3;20098:67;:::i;:::-;20091:74;;20174:93;20263:3;20174:93;:::i;:::-;20292:2;20287:3;20283:12;20276:19;;19935:366;;;:::o;20307:400::-;20467:3;20488:84;20570:1;20565:3;20488:84;:::i;:::-;20481:91;;20581:93;20670:3;20581:93;:::i;:::-;20699:1;20694:3;20690:11;20683:18;;20307:400;;;:::o;20713:366::-;20855:3;20876:67;20940:2;20935:3;20876:67;:::i;:::-;20869:74;;20952:93;21041:3;20952:93;:::i;:::-;21070:2;21065:3;21061:12;21054:19;;20713:366;;;:::o;21085:::-;21227:3;21248:67;21312:2;21307:3;21248:67;:::i;:::-;21241:74;;21324:93;21413:3;21324:93;:::i;:::-;21442:2;21437:3;21433:12;21426:19;;21085:366;;;:::o;21457:::-;21599:3;21620:67;21684:2;21679:3;21620:67;:::i;:::-;21613:74;;21696:93;21785:3;21696:93;:::i;:::-;21814:2;21809:3;21805:12;21798:19;;21457:366;;;:::o;21829:::-;21971:3;21992:67;22056:2;22051:3;21992:67;:::i;:::-;21985:74;;22068:93;22157:3;22068:93;:::i;:::-;22186:2;22181:3;22177:12;22170:19;;21829:366;;;:::o;22201:::-;22343:3;22364:67;22428:2;22423:3;22364:67;:::i;:::-;22357:74;;22440:93;22529:3;22440:93;:::i;:::-;22558:2;22553:3;22549:12;22542:19;;22201:366;;;:::o;22573:::-;22715:3;22736:67;22800:2;22795:3;22736:67;:::i;:::-;22729:74;;22812:93;22901:3;22812:93;:::i;:::-;22930:2;22925:3;22921:12;22914:19;;22573:366;;;:::o;22945:::-;23087:3;23108:67;23172:2;23167:3;23108:67;:::i;:::-;23101:74;;23184:93;23273:3;23184:93;:::i;:::-;23302:2;23297:3;23293:12;23286:19;;22945:366;;;:::o;23317:118::-;23404:24;23422:5;23404:24;:::i;:::-;23399:3;23392:37;23317:118;;:::o;23441:256::-;23553:3;23568:75;23639:3;23630:6;23568:75;:::i;:::-;23668:2;23663:3;23659:12;23652:19;;23688:3;23681:10;;23441:256;;;;:::o;23703:695::-;23981:3;24003:92;24091:3;24082:6;24003:92;:::i;:::-;23996:99;;24112:95;24203:3;24194:6;24112:95;:::i;:::-;24105:102;;24224:148;24368:3;24224:148;:::i;:::-;24217:155;;24389:3;24382:10;;23703:695;;;;;:::o;24404:222::-;24497:4;24535:2;24524:9;24520:18;24512:26;;24548:71;24616:1;24605:9;24601:17;24592:6;24548:71;:::i;:::-;24404:222;;;;:::o;24632:640::-;24827:4;24865:3;24854:9;24850:19;24842:27;;24879:71;24947:1;24936:9;24932:17;24923:6;24879:71;:::i;:::-;24960:72;25028:2;25017:9;25013:18;25004:6;24960:72;:::i;:::-;25042;25110:2;25099:9;25095:18;25086:6;25042:72;:::i;:::-;25161:9;25155:4;25151:20;25146:2;25135:9;25131:18;25124:48;25189:76;25260:4;25251:6;25189:76;:::i;:::-;25181:84;;24632:640;;;;;;;:::o;25278:210::-;25365:4;25403:2;25392:9;25388:18;25380:26;;25416:65;25478:1;25467:9;25463:17;25454:6;25416:65;:::i;:::-;25278:210;;;;:::o;25494:222::-;25587:4;25625:2;25614:9;25610:18;25602:26;;25638:71;25706:1;25695:9;25691:17;25682:6;25638:71;:::i;:::-;25494:222;;;;:::o;25722:313::-;25835:4;25873:2;25862:9;25858:18;25850:26;;25922:9;25916:4;25912:20;25908:1;25897:9;25893:17;25886:47;25950:78;26023:4;26014:6;25950:78;:::i;:::-;25942:86;;25722:313;;;;:::o;26041:419::-;26207:4;26245:2;26234:9;26230:18;26222:26;;26294:9;26288:4;26284:20;26280:1;26269:9;26265:17;26258:47;26322:131;26448:4;26322:131;:::i;:::-;26314:139;;26041:419;;;:::o;26466:::-;26632:4;26670:2;26659:9;26655:18;26647:26;;26719:9;26713:4;26709:20;26705:1;26694:9;26690:17;26683:47;26747:131;26873:4;26747:131;:::i;:::-;26739:139;;26466:419;;;:::o;26891:::-;27057:4;27095:2;27084:9;27080:18;27072:26;;27144:9;27138:4;27134:20;27130:1;27119:9;27115:17;27108:47;27172:131;27298:4;27172:131;:::i;:::-;27164:139;;26891:419;;;:::o;27316:::-;27482:4;27520:2;27509:9;27505:18;27497:26;;27569:9;27563:4;27559:20;27555:1;27544:9;27540:17;27533:47;27597:131;27723:4;27597:131;:::i;:::-;27589:139;;27316:419;;;:::o;27741:::-;27907:4;27945:2;27934:9;27930:18;27922:26;;27994:9;27988:4;27984:20;27980:1;27969:9;27965:17;27958:47;28022:131;28148:4;28022:131;:::i;:::-;28014:139;;27741:419;;;:::o;28166:::-;28332:4;28370:2;28359:9;28355:18;28347:26;;28419:9;28413:4;28409:20;28405:1;28394:9;28390:17;28383:47;28447:131;28573:4;28447:131;:::i;:::-;28439:139;;28166:419;;;:::o;28591:::-;28757:4;28795:2;28784:9;28780:18;28772:26;;28844:9;28838:4;28834:20;28830:1;28819:9;28815:17;28808:47;28872:131;28998:4;28872:131;:::i;:::-;28864:139;;28591:419;;;:::o;29016:::-;29182:4;29220:2;29209:9;29205:18;29197:26;;29269:9;29263:4;29259:20;29255:1;29244:9;29240:17;29233:47;29297:131;29423:4;29297:131;:::i;:::-;29289:139;;29016:419;;;:::o;29441:::-;29607:4;29645:2;29634:9;29630:18;29622:26;;29694:9;29688:4;29684:20;29680:1;29669:9;29665:17;29658:47;29722:131;29848:4;29722:131;:::i;:::-;29714:139;;29441:419;;;:::o;29866:::-;30032:4;30070:2;30059:9;30055:18;30047:26;;30119:9;30113:4;30109:20;30105:1;30094:9;30090:17;30083:47;30147:131;30273:4;30147:131;:::i;:::-;30139:139;;29866:419;;;:::o;30291:::-;30457:4;30495:2;30484:9;30480:18;30472:26;;30544:9;30538:4;30534:20;30530:1;30519:9;30515:17;30508:47;30572:131;30698:4;30572:131;:::i;:::-;30564:139;;30291:419;;;:::o;30716:::-;30882:4;30920:2;30909:9;30905:18;30897:26;;30969:9;30963:4;30959:20;30955:1;30944:9;30940:17;30933:47;30997:131;31123:4;30997:131;:::i;:::-;30989:139;;30716:419;;;:::o;31141:::-;31307:4;31345:2;31334:9;31330:18;31322:26;;31394:9;31388:4;31384:20;31380:1;31369:9;31365:17;31358:47;31422:131;31548:4;31422:131;:::i;:::-;31414:139;;31141:419;;;:::o;31566:::-;31732:4;31770:2;31759:9;31755:18;31747:26;;31819:9;31813:4;31809:20;31805:1;31794:9;31790:17;31783:47;31847:131;31973:4;31847:131;:::i;:::-;31839:139;;31566:419;;;:::o;31991:::-;32157:4;32195:2;32184:9;32180:18;32172:26;;32244:9;32238:4;32234:20;32230:1;32219:9;32215:17;32208:47;32272:131;32398:4;32272:131;:::i;:::-;32264:139;;31991:419;;;:::o;32416:::-;32582:4;32620:2;32609:9;32605:18;32597:26;;32669:9;32663:4;32659:20;32655:1;32644:9;32640:17;32633:47;32697:131;32823:4;32697:131;:::i;:::-;32689:139;;32416:419;;;:::o;32841:::-;33007:4;33045:2;33034:9;33030:18;33022:26;;33094:9;33088:4;33084:20;33080:1;33069:9;33065:17;33058:47;33122:131;33248:4;33122:131;:::i;:::-;33114:139;;32841:419;;;:::o;33266:::-;33432:4;33470:2;33459:9;33455:18;33447:26;;33519:9;33513:4;33509:20;33505:1;33494:9;33490:17;33483:47;33547:131;33673:4;33547:131;:::i;:::-;33539:139;;33266:419;;;:::o;33691:::-;33857:4;33895:2;33884:9;33880:18;33872:26;;33944:9;33938:4;33934:20;33930:1;33919:9;33915:17;33908:47;33972:131;34098:4;33972:131;:::i;:::-;33964:139;;33691:419;;;:::o;34116:::-;34282:4;34320:2;34309:9;34305:18;34297:26;;34369:9;34363:4;34359:20;34355:1;34344:9;34340:17;34333:47;34397:131;34523:4;34397:131;:::i;:::-;34389:139;;34116:419;;;:::o;34541:::-;34707:4;34745:2;34734:9;34730:18;34722:26;;34794:9;34788:4;34784:20;34780:1;34769:9;34765:17;34758:47;34822:131;34948:4;34822:131;:::i;:::-;34814:139;;34541:419;;;:::o;34966:::-;35132:4;35170:2;35159:9;35155:18;35147:26;;35219:9;35213:4;35209:20;35205:1;35194:9;35190:17;35183:47;35247:131;35373:4;35247:131;:::i;:::-;35239:139;;34966:419;;;:::o;35391:::-;35557:4;35595:2;35584:9;35580:18;35572:26;;35644:9;35638:4;35634:20;35630:1;35619:9;35615:17;35608:47;35672:131;35798:4;35672:131;:::i;:::-;35664:139;;35391:419;;;:::o;35816:::-;35982:4;36020:2;36009:9;36005:18;35997:26;;36069:9;36063:4;36059:20;36055:1;36044:9;36040:17;36033:47;36097:131;36223:4;36097:131;:::i;:::-;36089:139;;35816:419;;;:::o;36241:222::-;36334:4;36372:2;36361:9;36357:18;36349:26;;36385:71;36453:1;36442:9;36438:17;36429:6;36385:71;:::i;:::-;36241:222;;;;:::o;36469:129::-;36503:6;36530:20;;:::i;:::-;36520:30;;36559:33;36587:4;36579:6;36559:33;:::i;:::-;36469:129;;;:::o;36604:75::-;36637:6;36670:2;36664:9;36654:19;;36604:75;:::o;36685:311::-;36762:4;36852:18;36844:6;36841:30;36838:56;;;36874:18;;:::i;:::-;36838:56;36924:4;36916:6;36912:17;36904:25;;36984:4;36978;36974:15;36966:23;;36685:311;;;:::o;37002:307::-;37063:4;37153:18;37145:6;37142:30;37139:56;;;37175:18;;:::i;:::-;37139:56;37213:29;37235:6;37213:29;:::i;:::-;37205:37;;37297:4;37291;37287:15;37279:23;;37002:307;;;:::o;37315:308::-;37377:4;37467:18;37459:6;37456:30;37453:56;;;37489:18;;:::i;:::-;37453:56;37527:29;37549:6;37527:29;:::i;:::-;37519:37;;37611:4;37605;37601:15;37593:23;;37315:308;;;:::o;37629:141::-;37678:4;37701:3;37693:11;;37724:3;37721:1;37714:14;37758:4;37755:1;37745:18;37737:26;;37629:141;;;:::o;37776:98::-;37827:6;37861:5;37855:12;37845:22;;37776:98;;;:::o;37880:99::-;37932:6;37966:5;37960:12;37950:22;;37880:99;;;:::o;37985:168::-;38068:11;38102:6;38097:3;38090:19;38142:4;38137:3;38133:14;38118:29;;37985:168;;;;:::o;38159:169::-;38243:11;38277:6;38272:3;38265:19;38317:4;38312:3;38308:14;38293:29;;38159:169;;;;:::o;38334:148::-;38436:11;38473:3;38458:18;;38334:148;;;;:::o;38488:305::-;38528:3;38547:20;38565:1;38547:20;:::i;:::-;38542:25;;38581:20;38599:1;38581:20;:::i;:::-;38576:25;;38735:1;38667:66;38663:74;38660:1;38657:81;38654:107;;;38741:18;;:::i;:::-;38654:107;38785:1;38782;38778:9;38771:16;;38488:305;;;;:::o;38799:185::-;38839:1;38856:20;38874:1;38856:20;:::i;:::-;38851:25;;38890:20;38908:1;38890:20;:::i;:::-;38885:25;;38929:1;38919:35;;38934:18;;:::i;:::-;38919:35;38976:1;38973;38969:9;38964:14;;38799:185;;;;:::o;38990:348::-;39030:7;39053:20;39071:1;39053:20;:::i;:::-;39048:25;;39087:20;39105:1;39087:20;:::i;:::-;39082:25;;39275:1;39207:66;39203:74;39200:1;39197:81;39192:1;39185:9;39178:17;39174:105;39171:131;;;39282:18;;:::i;:::-;39171:131;39330:1;39327;39323:9;39312:20;;38990:348;;;;:::o;39344:191::-;39384:4;39404:20;39422:1;39404:20;:::i;:::-;39399:25;;39438:20;39456:1;39438:20;:::i;:::-;39433:25;;39477:1;39474;39471:8;39468:34;;;39482:18;;:::i;:::-;39468:34;39527:1;39524;39520:9;39512:17;;39344:191;;;;:::o;39541:96::-;39578:7;39607:24;39625:5;39607:24;:::i;:::-;39596:35;;39541:96;;;:::o;39643:104::-;39688:7;39717:24;39735:5;39717:24;:::i;:::-;39706:35;;39643:104;;;:::o;39753:90::-;39787:7;39830:5;39823:13;39816:21;39805:32;;39753:90;;;:::o;39849:77::-;39886:7;39915:5;39904:16;;39849:77;;;:::o;39932:149::-;39968:7;40008:66;40001:5;39997:78;39986:89;;39932:149;;;:::o;40087:126::-;40124:7;40164:42;40157:5;40153:54;40142:65;;40087:126;;;:::o;40219:77::-;40256:7;40285:5;40274:16;;40219:77;;;:::o;40302:154::-;40386:6;40381:3;40376;40363:30;40448:1;40439:6;40434:3;40430:16;40423:27;40302:154;;;:::o;40462:307::-;40530:1;40540:113;40554:6;40551:1;40548:13;40540:113;;;40639:1;40634:3;40630:11;40624:18;40620:1;40615:3;40611:11;40604:39;40576:2;40573:1;40569:10;40564:15;;40540:113;;;40671:6;40668:1;40665:13;40662:101;;;40751:1;40742:6;40737:3;40733:16;40726:27;40662:101;40511:258;40462:307;;;:::o;40775:320::-;40819:6;40856:1;40850:4;40846:12;40836:22;;40903:1;40897:4;40893:12;40924:18;40914:81;;40980:4;40972:6;40968:17;40958:27;;40914:81;41042:2;41034:6;41031:14;41011:18;41008:38;41005:84;;;41061:18;;:::i;:::-;41005:84;40826:269;40775:320;;;:::o;41101:281::-;41184:27;41206:4;41184:27;:::i;:::-;41176:6;41172:40;41314:6;41302:10;41299:22;41278:18;41266:10;41263:34;41260:62;41257:88;;;41325:18;;:::i;:::-;41257:88;41365:10;41361:2;41354:22;41144:238;41101:281;;:::o;41388:233::-;41427:3;41450:24;41468:5;41450:24;:::i;:::-;41441:33;;41496:66;41489:5;41486:77;41483:103;;;41566:18;;:::i;:::-;41483:103;41613:1;41606:5;41602:13;41595:20;;41388:233;;;:::o;41627:100::-;41666:7;41695:26;41715:5;41695:26;:::i;:::-;41684:37;;41627:100;;;:::o;41733:94::-;41772:7;41801:20;41815:5;41801:20;:::i;:::-;41790:31;;41733:94;;;:::o;41833:176::-;41865:1;41882:20;41900:1;41882:20;:::i;:::-;41877:25;;41916:20;41934:1;41916:20;:::i;:::-;41911:25;;41955:1;41945:35;;41960:18;;:::i;:::-;41945:35;42001:1;41998;41994:9;41989:14;;41833:176;;;;:::o;42015:180::-;42063:77;42060:1;42053:88;42160:4;42157:1;42150:15;42184:4;42181:1;42174:15;42201:180;42249:77;42246:1;42239:88;42346:4;42343:1;42336:15;42370:4;42367:1;42360:15;42387:180;42435:77;42432:1;42425:88;42532:4;42529:1;42522:15;42556:4;42553:1;42546:15;42573:180;42621:77;42618:1;42611:88;42718:4;42715:1;42708:15;42742:4;42739:1;42732:15;42759:180;42807:77;42804:1;42797:88;42904:4;42901:1;42894:15;42928:4;42925:1;42918:15;42945:117;43054:1;43051;43044:12;43068:117;43177:1;43174;43167:12;43191:117;43300:1;43297;43290:12;43314:117;43423:1;43420;43413:12;43437:117;43546:1;43543;43536:12;43560:117;43669:1;43666;43659:12;43683:102;43724:6;43775:2;43771:7;43766:2;43759:5;43755:14;43751:28;43741:38;;43683:102;;;:::o;43791:94::-;43824:8;43872:5;43868:2;43864:14;43843:35;;43791:94;;;:::o;43891:222::-;44031:34;44027:1;44019:6;44015:14;44008:58;44100:5;44095:2;44087:6;44083:15;44076:30;43891:222;:::o;44119:166::-;44259:18;44255:1;44247:6;44243:14;44236:42;44119:166;:::o;44291:232::-;44431:34;44427:1;44419:6;44415:14;44408:58;44500:15;44495:2;44487:6;44483:15;44476:40;44291:232;:::o;44529:170::-;44669:22;44665:1;44657:6;44653:14;44646:46;44529:170;:::o;44705:237::-;44845:34;44841:1;44833:6;44829:14;44822:58;44914:20;44909:2;44901:6;44897:15;44890:45;44705:237;:::o;44948:225::-;45088:34;45084:1;45076:6;45072:14;45065:58;45157:8;45152:2;45144:6;45140:15;45133:33;44948:225;:::o;45179:224::-;45319:34;45315:1;45307:6;45303:14;45296:58;45388:7;45383:2;45375:6;45371:15;45364:32;45179:224;:::o;45409:178::-;45549:30;45545:1;45537:6;45533:14;45526:54;45409:178;:::o;45593:223::-;45733:34;45729:1;45721:6;45717:14;45710:58;45802:6;45797:2;45789:6;45785:15;45778:31;45593:223;:::o;45822:175::-;45962:27;45958:1;45950:6;45946:14;45939:51;45822:175;:::o;46003:170::-;46143:22;46139:1;46131:6;46127:14;46120:46;46003:170;:::o;46179:231::-;46319:34;46315:1;46307:6;46303:14;46296:58;46388:14;46383:2;46375:6;46371:15;46364:39;46179:231;:::o;46416:243::-;46556:34;46552:1;46544:6;46540:14;46533:58;46625:26;46620:2;46612:6;46608:15;46601:51;46416:243;:::o;46665:229::-;46805:34;46801:1;46793:6;46789:14;46782:58;46874:12;46869:2;46861:6;46857:15;46850:37;46665:229;:::o;46900:228::-;47040:34;47036:1;47028:6;47024:14;47017:58;47109:11;47104:2;47096:6;47092:15;47085:36;46900:228;:::o;47134:182::-;47274:34;47270:1;47262:6;47258:14;47251:58;47134:182;:::o;47322:231::-;47462:34;47458:1;47450:6;47446:14;47439:58;47531:14;47526:2;47518:6;47514:15;47507:39;47322:231;:::o;47559:155::-;47699:7;47695:1;47687:6;47683:14;47676:31;47559:155;:::o;47720:182::-;47860:34;47856:1;47848:6;47844:14;47837:58;47720:182;:::o;47908:234::-;48048:34;48044:1;48036:6;48032:14;48025:58;48117:17;48112:2;48104:6;48100:15;48093:42;47908:234;:::o;48148:220::-;48288:34;48284:1;48276:6;48272:14;48265:58;48357:3;48352:2;48344:6;48340:15;48333:28;48148:220;:::o;48374:166::-;48514:18;48510:1;48502:6;48498:14;48491:42;48374:166;:::o;48546:236::-;48686:34;48682:1;48674:6;48670:14;48663:58;48755:19;48750:2;48742:6;48738:15;48731:44;48546:236;:::o;48788:174::-;48928:26;48924:1;48916:6;48912:14;48905:50;48788:174;:::o;48968:177::-;49108:29;49104:1;49096:6;49092:14;49085:53;48968:177;:::o;49151:122::-;49224:24;49242:5;49224:24;:::i;:::-;49217:5;49214:35;49204:63;;49263:1;49260;49253:12;49204:63;49151:122;:::o;49279:138::-;49360:32;49386:5;49360:32;:::i;:::-;49353:5;49350:43;49340:71;;49407:1;49404;49397:12;49340:71;49279:138;:::o;49423:116::-;49493:21;49508:5;49493:21;:::i;:::-;49486:5;49483:32;49473:60;;49529:1;49526;49519:12;49473:60;49423:116;:::o;49545:122::-;49618:24;49636:5;49618:24;:::i;:::-;49611:5;49608:35;49598:63;;49657:1;49654;49647:12;49598:63;49545:122;:::o;49673:120::-;49745:23;49762:5;49745:23;:::i;:::-;49738:5;49735:34;49725:62;;49783:1;49780;49773:12;49725:62;49673:120;:::o;49799:122::-;49872:24;49890:5;49872:24;:::i;:::-;49865:5;49862:35;49852:63;;49911:1;49908;49901:12;49852:63;49799:122;:::o

Swarm Source

ipfs://480a80016523eb1f8e022b2124a6d42a50f8f42a74fda42800aaf1c148e9d285
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.