ETH Price: $3,460.13 (+0.14%)
Gas: 11 Gwei

Token

CryptoBats (BATS)
 

Overview

Max Total Supply

233 BATS

Holders

108

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
thshdw.eth
Balance
2 BATS
0x5cC8a75A5dcE35B56ecC8bcaA984598cE1e6d3a4
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CryptoBats

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-17
*/

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Strings.sol

// SPDX-License-Identifier: MIT

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: https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Address.sol



pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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: https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/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: https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/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: https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/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: https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/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: https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC721/extensions/IERC721Enumerable.sol



pragma solidity ^0.8.0;


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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/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: https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/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(), ".json")) : "";
    }

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

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

    /**
     * @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 of token that is not own");
        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);
    }

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC721/extensions/ERC721Enumerable.sol



pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/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/contract.sol


pragma solidity ^0.8.0;





contract CryptoBats is ERC721Enumerable, Ownable {

    using Strings for uint256;

    string _baseTokenURI;
    uint256 private _price = 0.06 ether;
    bool public _paused = true;

    // withdraw addresses
    address t1 = 0xA01bd8370eE163C9e5E164a86b082634496ECAE0;

    constructor(string memory baseURI) ERC721("CryptoBats", "BATS")  {
        setBaseURI(baseURI);

        // owner gets the first 10 Bats
    }

    function mint(uint256 num) public payable {
        uint256 supply = totalSupply();
        require( !_paused,                              "Sale paused" );
        require( supply + num < 987,                    "Exceeds maximum BATS supply" );
        require( num < 11,                              "You can mint a maximum of 10 BATS" );
        require( msg.value >= _price * num,             "Ether sent is not correct" );

        for(uint256 i; i < num; i++){
            _safeMint( msg.sender, supply + i );
        }
    }

    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    // Just in case Eth Goes Nuts
    function setPrice(uint256 _newPrice) public onlyOwner() {
        _price = _newPrice;
    }

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

    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    function getPrice() public view returns (uint256){
        return _price;
    }

    function pause(bool val) public onlyOwner {
        _paused = val;
    }
    
    function withdrawAll() public payable onlyOwner {
        uint256 _owner = address(this).balance;
        require(payable(t1).send(_owner));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","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":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

608060405266d529ae9e860000600c556001600d60006101000a81548160ff02191690831515021790555073a01bd8370ee163c9e5e164a86b082634496ecae0600d60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200008c57600080fd5b50604051620046a6380380620046a68339818101604052810190620000b291906200044f565b6040518060400160405280600a81526020017f43727970746f42617473000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f42415453000000000000000000000000000000000000000000000000000000008152508160009080519060200190620001369291906200032d565b5080600190805190602001906200014f9291906200032d565b50505062000172620001666200018a60201b60201c565b6200019260201b60201c565b62000183816200025860201b60201c565b5062000687565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002686200018a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200028e6200030360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002de90620004bb565b60405180910390fd5b80600b9080519060200190620002ff9291906200032d565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200033b9062000583565b90600052602060002090601f0160209004810192826200035f5760008555620003ab565b82601f106200037a57805160ff1916838001178555620003ab565b82800160010185558215620003ab579182015b82811115620003aa5782518255916020019190600101906200038d565b5b509050620003ba9190620003be565b5090565b5b80821115620003d9576000816000905550600101620003bf565b5090565b6000620003f4620003ee8462000506565b620004dd565b9050828152602081018484840111156200040d57600080fd5b6200041a8482856200054d565b509392505050565b600082601f8301126200043457600080fd5b815162000446848260208601620003dd565b91505092915050565b6000602082840312156200046257600080fd5b600082015167ffffffffffffffff8111156200047d57600080fd5b6200048b8482850162000422565b91505092915050565b6000620004a36020836200053c565b9150620004b0826200065e565b602082019050919050565b60006020820190508181036000830152620004d68162000494565b9050919050565b6000620004e9620004fc565b9050620004f78282620005b9565b919050565b6000604051905090565b600067ffffffffffffffff8211156200052457620005236200061e565b5b6200052f826200064d565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200056d57808201518184015260208101905062000550565b838111156200057d576000848401525b50505050565b600060028204905060018216806200059c57607f821691505b60208210811415620005b357620005b2620005ef565b5b50919050565b620005c4826200064d565b810181811067ffffffffffffffff82111715620005e657620005e56200061e565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61400f80620006976000396000f3fe60806040526004361061019c5760003560e01c80636352211e116100ec57806398d5fdca1161008a578063b88d4fde11610064578063b88d4fde146105aa578063c87b56dd146105d3578063e985e9c514610610578063f2fde38b1461064d5761019c565b806398d5fdca1461053a578063a0712d6814610565578063a22cb465146105815761019c565b8063853828b6116100c6578063853828b6146104b15780638da5cb5b146104bb57806391b7f5ed146104e657806395d89b411461050f5761019c565b80636352211e1461042057806370a082311461045d578063715018a61461049a5761019c565b806318160ddd1161015957806342842e0e1161013357806342842e0e14610354578063438b63001461037d5780634f6ccce7146103ba57806355f804b3146103f75761019c565b806318160ddd146102c357806323b872dd146102ee5780632f745c59146103175761019c565b806301ffc9a7146101a157806302329a29146101de57806306fdde0314610207578063081812fc14610232578063095ea7b31461026f57806316c61ccc14610298575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612c16565b610676565b6040516101d59190613204565b60405180910390f35b3480156101ea57600080fd5b5061020560048036038101906102009190612bed565b6106f0565b005b34801561021357600080fd5b5061021c610789565b604051610229919061321f565b60405180910390f35b34801561023e57600080fd5b5061025960048036038101906102549190612ca9565b61081b565b604051610266919061317b565b60405180910390f35b34801561027b57600080fd5b5061029660048036038101906102919190612bb1565b6108a0565b005b3480156102a457600080fd5b506102ad6109b8565b6040516102ba9190613204565b60405180910390f35b3480156102cf57600080fd5b506102d86109cb565b6040516102e59190613501565b60405180910390f35b3480156102fa57600080fd5b5061031560048036038101906103109190612aab565b6109d8565b005b34801561032357600080fd5b5061033e60048036038101906103399190612bb1565b610a38565b60405161034b9190613501565b60405180910390f35b34801561036057600080fd5b5061037b60048036038101906103769190612aab565b610add565b005b34801561038957600080fd5b506103a4600480360381019061039f9190612a46565b610afd565b6040516103b191906131e2565b60405180910390f35b3480156103c657600080fd5b506103e160048036038101906103dc9190612ca9565b610bf7565b6040516103ee9190613501565b60405180910390f35b34801561040357600080fd5b5061041e60048036038101906104199190612c68565b610c8e565b005b34801561042c57600080fd5b5061044760048036038101906104429190612ca9565b610d24565b604051610454919061317b565b60405180910390f35b34801561046957600080fd5b50610484600480360381019061047f9190612a46565b610dd6565b6040516104919190613501565b60405180910390f35b3480156104a657600080fd5b506104af610e8e565b005b6104b9610f16565b005b3480156104c757600080fd5b506104d0610ffa565b6040516104dd919061317b565b60405180910390f35b3480156104f257600080fd5b5061050d60048036038101906105089190612ca9565b611024565b005b34801561051b57600080fd5b506105246110aa565b604051610531919061321f565b60405180910390f35b34801561054657600080fd5b5061054f61113c565b60405161055c9190613501565b60405180910390f35b61057f600480360381019061057a9190612ca9565b611146565b005b34801561058d57600080fd5b506105a860048036038101906105a39190612b75565b6112bc565b005b3480156105b657600080fd5b506105d160048036038101906105cc9190612afa565b6112d2565b005b3480156105df57600080fd5b506105fa60048036038101906105f59190612ca9565b611334565b604051610607919061321f565b60405180910390f35b34801561061c57600080fd5b5061063760048036038101906106329190612a6f565b6113db565b6040516106449190613204565b60405180910390f35b34801561065957600080fd5b50610674600480360381019061066f9190612a46565b61146f565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106e957506106e882611567565b5b9050919050565b6106f8611649565b73ffffffffffffffffffffffffffffffffffffffff16610716610ffa565b73ffffffffffffffffffffffffffffffffffffffff161461076c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076390613421565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b606060008054610798906137ea565b80601f01602080910402602001604051908101604052809291908181526020018280546107c4906137ea565b80156108115780601f106107e657610100808354040283529160200191610811565b820191906000526020600020905b8154815290600101906020018083116107f457829003601f168201915b5050505050905090565b600061082682611651565b610865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085c90613401565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ab82610d24565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561091c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091390613481565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661093b611649565b73ffffffffffffffffffffffffffffffffffffffff16148061096a575061096981610964611649565b6113db565b5b6109a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a090613381565b60405180910390fd5b6109b383836116bd565b505050565b600d60009054906101000a900460ff1681565b6000600880549050905090565b6109e96109e3611649565b82611776565b610a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1f906134c1565b60405180910390fd5b610a33838383611854565b505050565b6000610a4383610dd6565b8210610a84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7b90613281565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610af8838383604051806020016040528060008152506112d2565b505050565b60606000610b0a83610dd6565b905060008167ffffffffffffffff811115610b4e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610b7c5781602001602082028036833780820191505090505b50905060005b82811015610bec57610b948582610a38565b828281518110610bcd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610be49061384d565b915050610b82565b508092505050919050565b6000610c016109cb565b8210610c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c39906134e1565b60405180910390fd5b60088281548110610c7c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610c96611649565b73ffffffffffffffffffffffffffffffffffffffff16610cb4610ffa565b73ffffffffffffffffffffffffffffffffffffffff1614610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0190613421565b60405180910390fd5b80600b9080519060200190610d2092919061286a565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc4906133c1565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3e906133a1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e96611649565b73ffffffffffffffffffffffffffffffffffffffff16610eb4610ffa565b73ffffffffffffffffffffffffffffffffffffffff1614610f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0190613421565b60405180910390fd5b610f146000611ab0565b565b610f1e611649565b73ffffffffffffffffffffffffffffffffffffffff16610f3c610ffa565b73ffffffffffffffffffffffffffffffffffffffff1614610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8990613421565b60405180910390fd5b6000479050600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610ff757600080fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61102c611649565b73ffffffffffffffffffffffffffffffffffffffff1661104a610ffa565b73ffffffffffffffffffffffffffffffffffffffff16146110a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109790613421565b60405180910390fd5b80600c8190555050565b6060600180546110b9906137ea565b80601f01602080910402602001604051908101604052809291908181526020018280546110e5906137ea565b80156111325780601f1061110757610100808354040283529160200191611132565b820191906000526020600020905b81548152906001019060200180831161111557829003601f168201915b5050505050905090565b6000600c54905090565b60006111506109cb565b9050600d60009054906101000a900460ff16156111a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119990613241565b60405180910390fd5b6103db82826111b1919061361f565b106111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890613361565b60405180910390fd5b600b8210611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b90613261565b60405180910390fd5b81600c5461124291906136a6565b341015611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b906134a1565b60405180910390fd5b60005b828110156112b7576112a433828461129f919061361f565b611b76565b80806112af9061384d565b915050611287565b505050565b6112ce6112c7611649565b8383611b94565b5050565b6112e36112dd611649565b83611776565b611322576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611319906134c1565b60405180910390fd5b61132e84848484611d01565b50505050565b606061133f82611651565b61137e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137590613461565b60405180910390fd5b6000611388611d5d565b905060008151116113a857604051806020016040528060008152506113d3565b806113b284611def565b6040516020016113c392919061314c565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611477611649565b73ffffffffffffffffffffffffffffffffffffffff16611495610ffa565b73ffffffffffffffffffffffffffffffffffffffff16146114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e290613421565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561155b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611552906132c1565b60405180910390fd5b61156481611ab0565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061163257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611642575061164182611f9c565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661173083610d24565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061178182611651565b6117c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b790613341565b60405180910390fd5b60006117cb83610d24565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061183a57508373ffffffffffffffffffffffffffffffffffffffff166118228461081b565b73ffffffffffffffffffffffffffffffffffffffff16145b8061184b575061184a81856113db565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661187482610d24565b73ffffffffffffffffffffffffffffffffffffffff16146118ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c190613441565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561193a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193190613301565b60405180910390fd5b611945838383612006565b6119506000826116bd565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119a09190613700565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119f7919061361f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b9082826040518060200160405280600081525061211a565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfa90613321565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cf49190613204565b60405180910390a3505050565b611d0c848484611854565b611d1884848484612175565b611d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4e906132a1565b60405180910390fd5b50505050565b6060600b8054611d6c906137ea565b80601f0160208091040260200160405190810160405280929190818152602001828054611d98906137ea565b8015611de55780601f10611dba57610100808354040283529160200191611de5565b820191906000526020600020905b815481529060010190602001808311611dc857829003601f168201915b5050505050905090565b60606000821415611e37576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f97565b600082905060005b60008214611e69578080611e529061384d565b915050600a82611e629190613675565b9150611e3f565b60008167ffffffffffffffff811115611eab577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611edd5781602001600182028036833780820191505090505b5090505b60008514611f9057600182611ef69190613700565b9150600a85611f059190613896565b6030611f11919061361f565b60f81b818381518110611f4d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f899190613675565b9450611ee1565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61201183838361230c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120545761204f81612311565b612093565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461209257612091838261235a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120d6576120d1816124c7565b612115565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461211457612113828261260a565b5b5b505050565b6121248383612689565b6121316000848484612175565b612170576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612167906132a1565b60405180910390fd5b505050565b60006121968473ffffffffffffffffffffffffffffffffffffffff16612857565b156122ff578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121bf611649565b8786866040518563ffffffff1660e01b81526004016121e19493929190613196565b602060405180830381600087803b1580156121fb57600080fd5b505af192505050801561222c57506040513d601f19601f820116820180604052508101906122299190612c3f565b60015b6122af573d806000811461225c576040519150601f19603f3d011682016040523d82523d6000602084013e612261565b606091505b506000815114156122a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229e906132a1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612304565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161236784610dd6565b6123719190613700565b9050600060076000848152602001908152602001600020549050818114612456576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506124db9190613700565b9050600060096000848152602001908152602001600020549050600060088381548110612531577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612579577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806125ee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061261583610dd6565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f0906133e1565b60405180910390fd5b61270281611651565b15612742576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612739906132e1565b60405180910390fd5b61274e60008383612006565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461279e919061361f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612876906137ea565b90600052602060002090601f01602090048101928261289857600085556128df565b82601f106128b157805160ff19168380011785556128df565b828001600101855582156128df579182015b828111156128de5782518255916020019190600101906128c3565b5b5090506128ec91906128f0565b5090565b5b808211156129095760008160009055506001016128f1565b5090565b600061292061291b84613541565b61351c565b90508281526020810184848401111561293857600080fd5b6129438482856137a8565b509392505050565b600061295e61295984613572565b61351c565b90508281526020810184848401111561297657600080fd5b6129818482856137a8565b509392505050565b60008135905061299881613f7d565b92915050565b6000813590506129ad81613f94565b92915050565b6000813590506129c281613fab565b92915050565b6000815190506129d781613fab565b92915050565b600082601f8301126129ee57600080fd5b81356129fe84826020860161290d565b91505092915050565b600082601f830112612a1857600080fd5b8135612a2884826020860161294b565b91505092915050565b600081359050612a4081613fc2565b92915050565b600060208284031215612a5857600080fd5b6000612a6684828501612989565b91505092915050565b60008060408385031215612a8257600080fd5b6000612a9085828601612989565b9250506020612aa185828601612989565b9150509250929050565b600080600060608486031215612ac057600080fd5b6000612ace86828701612989565b9350506020612adf86828701612989565b9250506040612af086828701612a31565b9150509250925092565b60008060008060808587031215612b1057600080fd5b6000612b1e87828801612989565b9450506020612b2f87828801612989565b9350506040612b4087828801612a31565b925050606085013567ffffffffffffffff811115612b5d57600080fd5b612b69878288016129dd565b91505092959194509250565b60008060408385031215612b8857600080fd5b6000612b9685828601612989565b9250506020612ba78582860161299e565b9150509250929050565b60008060408385031215612bc457600080fd5b6000612bd285828601612989565b9250506020612be385828601612a31565b9150509250929050565b600060208284031215612bff57600080fd5b6000612c0d8482850161299e565b91505092915050565b600060208284031215612c2857600080fd5b6000612c36848285016129b3565b91505092915050565b600060208284031215612c5157600080fd5b6000612c5f848285016129c8565b91505092915050565b600060208284031215612c7a57600080fd5b600082013567ffffffffffffffff811115612c9457600080fd5b612ca084828501612a07565b91505092915050565b600060208284031215612cbb57600080fd5b6000612cc984828501612a31565b91505092915050565b6000612cde838361312e565b60208301905092915050565b612cf381613734565b82525050565b6000612d04826135b3565b612d0e81856135e1565b9350612d19836135a3565b8060005b83811015612d4a578151612d318882612cd2565b9750612d3c836135d4565b925050600181019050612d1d565b5085935050505092915050565b612d6081613746565b82525050565b6000612d71826135be565b612d7b81856135f2565b9350612d8b8185602086016137b7565b612d9481613983565b840191505092915050565b6000612daa826135c9565b612db48185613603565b9350612dc48185602086016137b7565b612dcd81613983565b840191505092915050565b6000612de3826135c9565b612ded8185613614565b9350612dfd8185602086016137b7565b80840191505092915050565b6000612e16600b83613603565b9150612e2182613994565b602082019050919050565b6000612e39602183613603565b9150612e44826139bd565b604082019050919050565b6000612e5c602b83613603565b9150612e6782613a0c565b604082019050919050565b6000612e7f603283613603565b9150612e8a82613a5b565b604082019050919050565b6000612ea2602683613603565b9150612ead82613aaa565b604082019050919050565b6000612ec5601c83613603565b9150612ed082613af9565b602082019050919050565b6000612ee8602483613603565b9150612ef382613b22565b604082019050919050565b6000612f0b601983613603565b9150612f1682613b71565b602082019050919050565b6000612f2e602c83613603565b9150612f3982613b9a565b604082019050919050565b6000612f51601b83613603565b9150612f5c82613be9565b602082019050919050565b6000612f74603883613603565b9150612f7f82613c12565b604082019050919050565b6000612f97602a83613603565b9150612fa282613c61565b604082019050919050565b6000612fba602983613603565b9150612fc582613cb0565b604082019050919050565b6000612fdd602083613603565b9150612fe882613cff565b602082019050919050565b6000613000602c83613603565b915061300b82613d28565b604082019050919050565b6000613023600583613614565b915061302e82613d77565b600582019050919050565b6000613046602083613603565b915061305182613da0565b602082019050919050565b6000613069602983613603565b915061307482613dc9565b604082019050919050565b600061308c602f83613603565b915061309782613e18565b604082019050919050565b60006130af602183613603565b91506130ba82613e67565b604082019050919050565b60006130d2601983613603565b91506130dd82613eb6565b602082019050919050565b60006130f5603183613603565b915061310082613edf565b604082019050919050565b6000613118602c83613603565b915061312382613f2e565b604082019050919050565b6131378161379e565b82525050565b6131468161379e565b82525050565b60006131588285612dd8565b91506131648284612dd8565b915061316f82613016565b91508190509392505050565b60006020820190506131906000830184612cea565b92915050565b60006080820190506131ab6000830187612cea565b6131b86020830186612cea565b6131c5604083018561313d565b81810360608301526131d78184612d66565b905095945050505050565b600060208201905081810360008301526131fc8184612cf9565b905092915050565b60006020820190506132196000830184612d57565b92915050565b600060208201905081810360008301526132398184612d9f565b905092915050565b6000602082019050818103600083015261325a81612e09565b9050919050565b6000602082019050818103600083015261327a81612e2c565b9050919050565b6000602082019050818103600083015261329a81612e4f565b9050919050565b600060208201905081810360008301526132ba81612e72565b9050919050565b600060208201905081810360008301526132da81612e95565b9050919050565b600060208201905081810360008301526132fa81612eb8565b9050919050565b6000602082019050818103600083015261331a81612edb565b9050919050565b6000602082019050818103600083015261333a81612efe565b9050919050565b6000602082019050818103600083015261335a81612f21565b9050919050565b6000602082019050818103600083015261337a81612f44565b9050919050565b6000602082019050818103600083015261339a81612f67565b9050919050565b600060208201905081810360008301526133ba81612f8a565b9050919050565b600060208201905081810360008301526133da81612fad565b9050919050565b600060208201905081810360008301526133fa81612fd0565b9050919050565b6000602082019050818103600083015261341a81612ff3565b9050919050565b6000602082019050818103600083015261343a81613039565b9050919050565b6000602082019050818103600083015261345a8161305c565b9050919050565b6000602082019050818103600083015261347a8161307f565b9050919050565b6000602082019050818103600083015261349a816130a2565b9050919050565b600060208201905081810360008301526134ba816130c5565b9050919050565b600060208201905081810360008301526134da816130e8565b9050919050565b600060208201905081810360008301526134fa8161310b565b9050919050565b6000602082019050613516600083018461313d565b92915050565b6000613526613537565b9050613532828261381c565b919050565b6000604051905090565b600067ffffffffffffffff82111561355c5761355b613954565b5b61356582613983565b9050602081019050919050565b600067ffffffffffffffff82111561358d5761358c613954565b5b61359682613983565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061362a8261379e565b91506136358361379e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561366a576136696138c7565b5b828201905092915050565b60006136808261379e565b915061368b8361379e565b92508261369b5761369a6138f6565b5b828204905092915050565b60006136b18261379e565b91506136bc8361379e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136f5576136f46138c7565b5b828202905092915050565b600061370b8261379e565b91506137168361379e565b925082821015613729576137286138c7565b5b828203905092915050565b600061373f8261377e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137d55780820151818401526020810190506137ba565b838111156137e4576000848401525b50505050565b6000600282049050600182168061380257607f821691505b6020821081141561381657613815613925565b5b50919050565b61382582613983565b810181811067ffffffffffffffff8211171561384457613843613954565b5b80604052505050565b60006138588261379e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561388b5761388a6138c7565b5b600182019050919050565b60006138a18261379e565b91506138ac8361379e565b9250826138bc576138bb6138f6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f53616c6520706175736564000000000000000000000000000000000000000000600082015250565b7f596f752063616e206d696e742061206d6178696d756d206f662031302042415460008201527f5300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d204241545320737570706c790000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b613f8681613734565b8114613f9157600080fd5b50565b613f9d81613746565b8114613fa857600080fd5b50565b613fb481613752565b8114613fbf57600080fd5b50565b613fcb8161379e565b8114613fd657600080fd5b5056fea264697066735822122078eb52db870123475f1b3c5170d8f95a0411ed5132c4504959cd79b092b97faf64736f6c6343000801003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d644657446f3947476e424b45377958794e4e6a43584c3437615562485a55477a554e61683478614642586a322f00000000000000000000

Deployed Bytecode

0x60806040526004361061019c5760003560e01c80636352211e116100ec57806398d5fdca1161008a578063b88d4fde11610064578063b88d4fde146105aa578063c87b56dd146105d3578063e985e9c514610610578063f2fde38b1461064d5761019c565b806398d5fdca1461053a578063a0712d6814610565578063a22cb465146105815761019c565b8063853828b6116100c6578063853828b6146104b15780638da5cb5b146104bb57806391b7f5ed146104e657806395d89b411461050f5761019c565b80636352211e1461042057806370a082311461045d578063715018a61461049a5761019c565b806318160ddd1161015957806342842e0e1161013357806342842e0e14610354578063438b63001461037d5780634f6ccce7146103ba57806355f804b3146103f75761019c565b806318160ddd146102c357806323b872dd146102ee5780632f745c59146103175761019c565b806301ffc9a7146101a157806302329a29146101de57806306fdde0314610207578063081812fc14610232578063095ea7b31461026f57806316c61ccc14610298575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612c16565b610676565b6040516101d59190613204565b60405180910390f35b3480156101ea57600080fd5b5061020560048036038101906102009190612bed565b6106f0565b005b34801561021357600080fd5b5061021c610789565b604051610229919061321f565b60405180910390f35b34801561023e57600080fd5b5061025960048036038101906102549190612ca9565b61081b565b604051610266919061317b565b60405180910390f35b34801561027b57600080fd5b5061029660048036038101906102919190612bb1565b6108a0565b005b3480156102a457600080fd5b506102ad6109b8565b6040516102ba9190613204565b60405180910390f35b3480156102cf57600080fd5b506102d86109cb565b6040516102e59190613501565b60405180910390f35b3480156102fa57600080fd5b5061031560048036038101906103109190612aab565b6109d8565b005b34801561032357600080fd5b5061033e60048036038101906103399190612bb1565b610a38565b60405161034b9190613501565b60405180910390f35b34801561036057600080fd5b5061037b60048036038101906103769190612aab565b610add565b005b34801561038957600080fd5b506103a4600480360381019061039f9190612a46565b610afd565b6040516103b191906131e2565b60405180910390f35b3480156103c657600080fd5b506103e160048036038101906103dc9190612ca9565b610bf7565b6040516103ee9190613501565b60405180910390f35b34801561040357600080fd5b5061041e60048036038101906104199190612c68565b610c8e565b005b34801561042c57600080fd5b5061044760048036038101906104429190612ca9565b610d24565b604051610454919061317b565b60405180910390f35b34801561046957600080fd5b50610484600480360381019061047f9190612a46565b610dd6565b6040516104919190613501565b60405180910390f35b3480156104a657600080fd5b506104af610e8e565b005b6104b9610f16565b005b3480156104c757600080fd5b506104d0610ffa565b6040516104dd919061317b565b60405180910390f35b3480156104f257600080fd5b5061050d60048036038101906105089190612ca9565b611024565b005b34801561051b57600080fd5b506105246110aa565b604051610531919061321f565b60405180910390f35b34801561054657600080fd5b5061054f61113c565b60405161055c9190613501565b60405180910390f35b61057f600480360381019061057a9190612ca9565b611146565b005b34801561058d57600080fd5b506105a860048036038101906105a39190612b75565b6112bc565b005b3480156105b657600080fd5b506105d160048036038101906105cc9190612afa565b6112d2565b005b3480156105df57600080fd5b506105fa60048036038101906105f59190612ca9565b611334565b604051610607919061321f565b60405180910390f35b34801561061c57600080fd5b5061063760048036038101906106329190612a6f565b6113db565b6040516106449190613204565b60405180910390f35b34801561065957600080fd5b50610674600480360381019061066f9190612a46565b61146f565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106e957506106e882611567565b5b9050919050565b6106f8611649565b73ffffffffffffffffffffffffffffffffffffffff16610716610ffa565b73ffffffffffffffffffffffffffffffffffffffff161461076c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076390613421565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b606060008054610798906137ea565b80601f01602080910402602001604051908101604052809291908181526020018280546107c4906137ea565b80156108115780601f106107e657610100808354040283529160200191610811565b820191906000526020600020905b8154815290600101906020018083116107f457829003601f168201915b5050505050905090565b600061082682611651565b610865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085c90613401565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ab82610d24565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561091c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091390613481565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661093b611649565b73ffffffffffffffffffffffffffffffffffffffff16148061096a575061096981610964611649565b6113db565b5b6109a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a090613381565b60405180910390fd5b6109b383836116bd565b505050565b600d60009054906101000a900460ff1681565b6000600880549050905090565b6109e96109e3611649565b82611776565b610a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1f906134c1565b60405180910390fd5b610a33838383611854565b505050565b6000610a4383610dd6565b8210610a84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7b90613281565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610af8838383604051806020016040528060008152506112d2565b505050565b60606000610b0a83610dd6565b905060008167ffffffffffffffff811115610b4e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610b7c5781602001602082028036833780820191505090505b50905060005b82811015610bec57610b948582610a38565b828281518110610bcd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610be49061384d565b915050610b82565b508092505050919050565b6000610c016109cb565b8210610c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c39906134e1565b60405180910390fd5b60088281548110610c7c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610c96611649565b73ffffffffffffffffffffffffffffffffffffffff16610cb4610ffa565b73ffffffffffffffffffffffffffffffffffffffff1614610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0190613421565b60405180910390fd5b80600b9080519060200190610d2092919061286a565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc4906133c1565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3e906133a1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e96611649565b73ffffffffffffffffffffffffffffffffffffffff16610eb4610ffa565b73ffffffffffffffffffffffffffffffffffffffff1614610f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0190613421565b60405180910390fd5b610f146000611ab0565b565b610f1e611649565b73ffffffffffffffffffffffffffffffffffffffff16610f3c610ffa565b73ffffffffffffffffffffffffffffffffffffffff1614610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8990613421565b60405180910390fd5b6000479050600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610ff757600080fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61102c611649565b73ffffffffffffffffffffffffffffffffffffffff1661104a610ffa565b73ffffffffffffffffffffffffffffffffffffffff16146110a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109790613421565b60405180910390fd5b80600c8190555050565b6060600180546110b9906137ea565b80601f01602080910402602001604051908101604052809291908181526020018280546110e5906137ea565b80156111325780601f1061110757610100808354040283529160200191611132565b820191906000526020600020905b81548152906001019060200180831161111557829003601f168201915b5050505050905090565b6000600c54905090565b60006111506109cb565b9050600d60009054906101000a900460ff16156111a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119990613241565b60405180910390fd5b6103db82826111b1919061361f565b106111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890613361565b60405180910390fd5b600b8210611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b90613261565b60405180910390fd5b81600c5461124291906136a6565b341015611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b906134a1565b60405180910390fd5b60005b828110156112b7576112a433828461129f919061361f565b611b76565b80806112af9061384d565b915050611287565b505050565b6112ce6112c7611649565b8383611b94565b5050565b6112e36112dd611649565b83611776565b611322576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611319906134c1565b60405180910390fd5b61132e84848484611d01565b50505050565b606061133f82611651565b61137e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137590613461565b60405180910390fd5b6000611388611d5d565b905060008151116113a857604051806020016040528060008152506113d3565b806113b284611def565b6040516020016113c392919061314c565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611477611649565b73ffffffffffffffffffffffffffffffffffffffff16611495610ffa565b73ffffffffffffffffffffffffffffffffffffffff16146114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e290613421565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561155b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611552906132c1565b60405180910390fd5b61156481611ab0565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061163257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611642575061164182611f9c565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661173083610d24565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061178182611651565b6117c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b790613341565b60405180910390fd5b60006117cb83610d24565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061183a57508373ffffffffffffffffffffffffffffffffffffffff166118228461081b565b73ffffffffffffffffffffffffffffffffffffffff16145b8061184b575061184a81856113db565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661187482610d24565b73ffffffffffffffffffffffffffffffffffffffff16146118ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c190613441565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561193a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193190613301565b60405180910390fd5b611945838383612006565b6119506000826116bd565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119a09190613700565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119f7919061361f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b9082826040518060200160405280600081525061211a565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfa90613321565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cf49190613204565b60405180910390a3505050565b611d0c848484611854565b611d1884848484612175565b611d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4e906132a1565b60405180910390fd5b50505050565b6060600b8054611d6c906137ea565b80601f0160208091040260200160405190810160405280929190818152602001828054611d98906137ea565b8015611de55780601f10611dba57610100808354040283529160200191611de5565b820191906000526020600020905b815481529060010190602001808311611dc857829003601f168201915b5050505050905090565b60606000821415611e37576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f97565b600082905060005b60008214611e69578080611e529061384d565b915050600a82611e629190613675565b9150611e3f565b60008167ffffffffffffffff811115611eab577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611edd5781602001600182028036833780820191505090505b5090505b60008514611f9057600182611ef69190613700565b9150600a85611f059190613896565b6030611f11919061361f565b60f81b818381518110611f4d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f899190613675565b9450611ee1565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61201183838361230c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120545761204f81612311565b612093565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461209257612091838261235a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120d6576120d1816124c7565b612115565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461211457612113828261260a565b5b5b505050565b6121248383612689565b6121316000848484612175565b612170576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612167906132a1565b60405180910390fd5b505050565b60006121968473ffffffffffffffffffffffffffffffffffffffff16612857565b156122ff578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121bf611649565b8786866040518563ffffffff1660e01b81526004016121e19493929190613196565b602060405180830381600087803b1580156121fb57600080fd5b505af192505050801561222c57506040513d601f19601f820116820180604052508101906122299190612c3f565b60015b6122af573d806000811461225c576040519150601f19603f3d011682016040523d82523d6000602084013e612261565b606091505b506000815114156122a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229e906132a1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612304565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161236784610dd6565b6123719190613700565b9050600060076000848152602001908152602001600020549050818114612456576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506124db9190613700565b9050600060096000848152602001908152602001600020549050600060088381548110612531577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612579577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806125ee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061261583610dd6565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f0906133e1565b60405180910390fd5b61270281611651565b15612742576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612739906132e1565b60405180910390fd5b61274e60008383612006565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461279e919061361f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612876906137ea565b90600052602060002090601f01602090048101928261289857600085556128df565b82601f106128b157805160ff19168380011785556128df565b828001600101855582156128df579182015b828111156128de5782518255916020019190600101906128c3565b5b5090506128ec91906128f0565b5090565b5b808211156129095760008160009055506001016128f1565b5090565b600061292061291b84613541565b61351c565b90508281526020810184848401111561293857600080fd5b6129438482856137a8565b509392505050565b600061295e61295984613572565b61351c565b90508281526020810184848401111561297657600080fd5b6129818482856137a8565b509392505050565b60008135905061299881613f7d565b92915050565b6000813590506129ad81613f94565b92915050565b6000813590506129c281613fab565b92915050565b6000815190506129d781613fab565b92915050565b600082601f8301126129ee57600080fd5b81356129fe84826020860161290d565b91505092915050565b600082601f830112612a1857600080fd5b8135612a2884826020860161294b565b91505092915050565b600081359050612a4081613fc2565b92915050565b600060208284031215612a5857600080fd5b6000612a6684828501612989565b91505092915050565b60008060408385031215612a8257600080fd5b6000612a9085828601612989565b9250506020612aa185828601612989565b9150509250929050565b600080600060608486031215612ac057600080fd5b6000612ace86828701612989565b9350506020612adf86828701612989565b9250506040612af086828701612a31565b9150509250925092565b60008060008060808587031215612b1057600080fd5b6000612b1e87828801612989565b9450506020612b2f87828801612989565b9350506040612b4087828801612a31565b925050606085013567ffffffffffffffff811115612b5d57600080fd5b612b69878288016129dd565b91505092959194509250565b60008060408385031215612b8857600080fd5b6000612b9685828601612989565b9250506020612ba78582860161299e565b9150509250929050565b60008060408385031215612bc457600080fd5b6000612bd285828601612989565b9250506020612be385828601612a31565b9150509250929050565b600060208284031215612bff57600080fd5b6000612c0d8482850161299e565b91505092915050565b600060208284031215612c2857600080fd5b6000612c36848285016129b3565b91505092915050565b600060208284031215612c5157600080fd5b6000612c5f848285016129c8565b91505092915050565b600060208284031215612c7a57600080fd5b600082013567ffffffffffffffff811115612c9457600080fd5b612ca084828501612a07565b91505092915050565b600060208284031215612cbb57600080fd5b6000612cc984828501612a31565b91505092915050565b6000612cde838361312e565b60208301905092915050565b612cf381613734565b82525050565b6000612d04826135b3565b612d0e81856135e1565b9350612d19836135a3565b8060005b83811015612d4a578151612d318882612cd2565b9750612d3c836135d4565b925050600181019050612d1d565b5085935050505092915050565b612d6081613746565b82525050565b6000612d71826135be565b612d7b81856135f2565b9350612d8b8185602086016137b7565b612d9481613983565b840191505092915050565b6000612daa826135c9565b612db48185613603565b9350612dc48185602086016137b7565b612dcd81613983565b840191505092915050565b6000612de3826135c9565b612ded8185613614565b9350612dfd8185602086016137b7565b80840191505092915050565b6000612e16600b83613603565b9150612e2182613994565b602082019050919050565b6000612e39602183613603565b9150612e44826139bd565b604082019050919050565b6000612e5c602b83613603565b9150612e6782613a0c565b604082019050919050565b6000612e7f603283613603565b9150612e8a82613a5b565b604082019050919050565b6000612ea2602683613603565b9150612ead82613aaa565b604082019050919050565b6000612ec5601c83613603565b9150612ed082613af9565b602082019050919050565b6000612ee8602483613603565b9150612ef382613b22565b604082019050919050565b6000612f0b601983613603565b9150612f1682613b71565b602082019050919050565b6000612f2e602c83613603565b9150612f3982613b9a565b604082019050919050565b6000612f51601b83613603565b9150612f5c82613be9565b602082019050919050565b6000612f74603883613603565b9150612f7f82613c12565b604082019050919050565b6000612f97602a83613603565b9150612fa282613c61565b604082019050919050565b6000612fba602983613603565b9150612fc582613cb0565b604082019050919050565b6000612fdd602083613603565b9150612fe882613cff565b602082019050919050565b6000613000602c83613603565b915061300b82613d28565b604082019050919050565b6000613023600583613614565b915061302e82613d77565b600582019050919050565b6000613046602083613603565b915061305182613da0565b602082019050919050565b6000613069602983613603565b915061307482613dc9565b604082019050919050565b600061308c602f83613603565b915061309782613e18565b604082019050919050565b60006130af602183613603565b91506130ba82613e67565b604082019050919050565b60006130d2601983613603565b91506130dd82613eb6565b602082019050919050565b60006130f5603183613603565b915061310082613edf565b604082019050919050565b6000613118602c83613603565b915061312382613f2e565b604082019050919050565b6131378161379e565b82525050565b6131468161379e565b82525050565b60006131588285612dd8565b91506131648284612dd8565b915061316f82613016565b91508190509392505050565b60006020820190506131906000830184612cea565b92915050565b60006080820190506131ab6000830187612cea565b6131b86020830186612cea565b6131c5604083018561313d565b81810360608301526131d78184612d66565b905095945050505050565b600060208201905081810360008301526131fc8184612cf9565b905092915050565b60006020820190506132196000830184612d57565b92915050565b600060208201905081810360008301526132398184612d9f565b905092915050565b6000602082019050818103600083015261325a81612e09565b9050919050565b6000602082019050818103600083015261327a81612e2c565b9050919050565b6000602082019050818103600083015261329a81612e4f565b9050919050565b600060208201905081810360008301526132ba81612e72565b9050919050565b600060208201905081810360008301526132da81612e95565b9050919050565b600060208201905081810360008301526132fa81612eb8565b9050919050565b6000602082019050818103600083015261331a81612edb565b9050919050565b6000602082019050818103600083015261333a81612efe565b9050919050565b6000602082019050818103600083015261335a81612f21565b9050919050565b6000602082019050818103600083015261337a81612f44565b9050919050565b6000602082019050818103600083015261339a81612f67565b9050919050565b600060208201905081810360008301526133ba81612f8a565b9050919050565b600060208201905081810360008301526133da81612fad565b9050919050565b600060208201905081810360008301526133fa81612fd0565b9050919050565b6000602082019050818103600083015261341a81612ff3565b9050919050565b6000602082019050818103600083015261343a81613039565b9050919050565b6000602082019050818103600083015261345a8161305c565b9050919050565b6000602082019050818103600083015261347a8161307f565b9050919050565b6000602082019050818103600083015261349a816130a2565b9050919050565b600060208201905081810360008301526134ba816130c5565b9050919050565b600060208201905081810360008301526134da816130e8565b9050919050565b600060208201905081810360008301526134fa8161310b565b9050919050565b6000602082019050613516600083018461313d565b92915050565b6000613526613537565b9050613532828261381c565b919050565b6000604051905090565b600067ffffffffffffffff82111561355c5761355b613954565b5b61356582613983565b9050602081019050919050565b600067ffffffffffffffff82111561358d5761358c613954565b5b61359682613983565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061362a8261379e565b91506136358361379e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561366a576136696138c7565b5b828201905092915050565b60006136808261379e565b915061368b8361379e565b92508261369b5761369a6138f6565b5b828204905092915050565b60006136b18261379e565b91506136bc8361379e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136f5576136f46138c7565b5b828202905092915050565b600061370b8261379e565b91506137168361379e565b925082821015613729576137286138c7565b5b828203905092915050565b600061373f8261377e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137d55780820151818401526020810190506137ba565b838111156137e4576000848401525b50505050565b6000600282049050600182168061380257607f821691505b6020821081141561381657613815613925565b5b50919050565b61382582613983565b810181811067ffffffffffffffff8211171561384457613843613954565b5b80604052505050565b60006138588261379e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561388b5761388a6138c7565b5b600182019050919050565b60006138a18261379e565b91506138ac8361379e565b9250826138bc576138bb6138f6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f53616c6520706175736564000000000000000000000000000000000000000000600082015250565b7f596f752063616e206d696e742061206d6178696d756d206f662031302042415460008201527f5300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d204241545320737570706c790000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b613f8681613734565b8114613f9157600080fd5b50565b613f9d81613746565b8114613fa857600080fd5b50565b613fb481613752565b8114613fbf57600080fd5b50565b613fcb8161379e565b8114613fd657600080fd5b5056fea264697066735822122078eb52db870123475f1b3c5170d8f95a0411ed5132c4504959cd79b092b97faf64736f6c63430008010033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d644657446f3947476e424b45377958794e4e6a43584c3437615562485a55477a554e61683478614642586a322f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmdFWDo9GGnBKE7yXyNNjCXL47aUbHZUGzUNah4xaFBXj2/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d644657446f3947476e424b45377958794e4e6a43584c34
Arg [3] : 37615562485a55477a554e61683478614642586a322f00000000000000000000


Deployed Bytecode Sourcemap

44233:2035:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35497:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46030:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23022:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24590:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24113:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44394:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36137:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25340:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35805:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25750:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45223:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36327:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45831:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22716:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22446:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43344:103;;;;;;;;;;;;;:::i;:::-;;46116:149;;;:::i;:::-;;42693:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45608:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23191:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45941:81;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44674:541;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24883:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26006:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23366:343;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25109:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43602:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35497:224;35599:4;35638:35;35623:50;;;:11;:50;;;;:90;;;;35677:36;35701:11;35677:23;:36::i;:::-;35623:90;35616:97;;35497:224;;;:::o;46030:74::-;42924:12;:10;:12::i;:::-;42913:23;;:7;:5;:7::i;:::-;:23;;;42905:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46093:3:::1;46083:7;;:13;;;;;;;;;;;;;;;;;;46030:74:::0;:::o;23022:100::-;23076:13;23109:5;23102:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23022:100;:::o;24590:221::-;24666:7;24694:16;24702:7;24694;:16::i;:::-;24686:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24779:15;:24;24795:7;24779:24;;;;;;;;;;;;;;;;;;;;;24772:31;;24590:221;;;:::o;24113:411::-;24194:13;24210:23;24225:7;24210:14;:23::i;:::-;24194:39;;24258:5;24252:11;;:2;:11;;;;24244:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;24352:5;24336:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;24361:37;24378:5;24385:12;:10;:12::i;:::-;24361:16;:37::i;:::-;24336:62;24314:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;24495:21;24504:2;24508:7;24495:8;:21::i;:::-;24113:411;;;:::o;44394:26::-;;;;;;;;;;;;;:::o;36137:113::-;36198:7;36225:10;:17;;;;36218:24;;36137:113;:::o;25340:339::-;25535:41;25554:12;:10;:12::i;:::-;25568:7;25535:18;:41::i;:::-;25527:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25643:28;25653:4;25659:2;25663:7;25643:9;:28::i;:::-;25340:339;;;:::o;35805:256::-;35902:7;35938:23;35955:5;35938:16;:23::i;:::-;35930:5;:31;35922:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;36027:12;:19;36040:5;36027:19;;;;;;;;;;;;;;;:26;36047:5;36027:26;;;;;;;;;;;;36020:33;;35805:256;;;;:::o;25750:185::-;25888:39;25905:4;25911:2;25915:7;25888:39;;;;;;;;;;;;:16;:39::i;:::-;25750:185;;;:::o;45223:342::-;45282:16;45311:18;45332:17;45342:6;45332:9;:17::i;:::-;45311:38;;45362:25;45404:10;45390:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45362:53;;45430:9;45426:106;45445:10;45441:1;:14;45426:106;;;45490:30;45510:6;45518:1;45490:19;:30::i;:::-;45476:8;45485:1;45476:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;45457:3;;;;;:::i;:::-;;;;45426:106;;;;45549:8;45542:15;;;;45223:342;;;:::o;36327:233::-;36402:7;36438:30;:28;:30::i;:::-;36430:5;:38;36422:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;36535:10;36546:5;36535:17;;;;;;;;;;;;;;;;;;;;;;;;36528:24;;36327:233;;;:::o;45831:102::-;42924:12;:10;:12::i;:::-;42913:23;;:7;:5;:7::i;:::-;:23;;;42905:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45918:7:::1;45902:13;:23;;;;;;;;;;;;:::i;:::-;;45831:102:::0;:::o;22716:239::-;22788:7;22808:13;22824:7;:16;22832:7;22824:16;;;;;;;;;;;;;;;;;;;;;22808:32;;22876:1;22859:19;;:5;:19;;;;22851:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22942:5;22935:12;;;22716:239;;;:::o;22446:208::-;22518:7;22563:1;22546:19;;:5;:19;;;;22538:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22630:9;:16;22640:5;22630:16;;;;;;;;;;;;;;;;22623:23;;22446:208;;;:::o;43344:103::-;42924:12;:10;:12::i;:::-;42913:23;;:7;:5;:7::i;:::-;:23;;;42905:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43409:30:::1;43436:1;43409:18;:30::i;:::-;43344:103::o:0;46116:149::-;42924:12;:10;:12::i;:::-;42913:23;;:7;:5;:7::i;:::-;:23;;;42905:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46175:14:::1;46192:21;46175:38;;46240:2;;;;;;;;;;;46232:16;;:24;46249:6;46232:24;;;;;;;;;;;;;;;;;;;;;;;46224:33;;;::::0;::::1;;42984:1;46116:149::o:0;42693:87::-;42739:7;42766:6;;;;;;;;;;;42759:13;;42693:87;:::o;45608:93::-;42924:12;:10;:12::i;:::-;42913:23;;:7;:5;:7::i;:::-;:23;;;42905:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45684:9:::1;45675:6;:18;;;;45608:93:::0;:::o;23191:104::-;23247:13;23280:7;23273:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23191:104;:::o;45941:81::-;45982:7;46008:6;;46001:13;;45941:81;:::o;44674:541::-;44727:14;44744:13;:11;:13::i;:::-;44727:30;;44778:7;;;;;;;;;;;44777:8;44768:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;44866:3;44860;44851:6;:12;;;;:::i;:::-;:18;44842:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;44947:2;44941:3;:8;44932:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;45059:3;45050:6;;:12;;;;:::i;:::-;45037:9;:25;;45028:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;45122:9;45118:90;45137:3;45133:1;:7;45118:90;;;45161:35;45172:10;45193:1;45184:6;:10;;;;:::i;:::-;45161:9;:35::i;:::-;45142:3;;;;;:::i;:::-;;;;45118:90;;;;44674:541;;:::o;24883:155::-;24978:52;24997:12;:10;:12::i;:::-;25011:8;25021;24978:18;:52::i;:::-;24883:155;;:::o;26006:328::-;26181:41;26200:12;:10;:12::i;:::-;26214:7;26181:18;:41::i;:::-;26173:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;26287:39;26301:4;26307:2;26311:7;26320:5;26287:13;:39::i;:::-;26006:328;;;;:::o;23366:343::-;23439:13;23473:16;23481:7;23473;:16::i;:::-;23465:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;23554:21;23578:10;:8;:10::i;:::-;23554:34;;23630:1;23612:7;23606:21;:25;:95;;;;;;;;;;;;;;;;;23658:7;23667:18;:7;:16;:18::i;:::-;23641:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23606:95;23599:102;;;23366:343;;;:::o;25109:164::-;25206:4;25230:18;:25;25249:5;25230:25;;;;;;;;;;;;;;;:35;25256:8;25230:35;;;;;;;;;;;;;;;;;;;;;;;;;25223:42;;25109:164;;;;:::o;43602:201::-;42924:12;:10;:12::i;:::-;42913:23;;:7;:5;:7::i;:::-;:23;;;42905:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43711:1:::1;43691:22;;:8;:22;;;;43683:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43767:28;43786:8;43767:18;:28::i;:::-;43602:201:::0;:::o;22077:305::-;22179:4;22231:25;22216:40;;;:11;:40;;;;:105;;;;22288:33;22273:48;;;:11;:48;;;;22216:105;:158;;;;22338:36;22362:11;22338:23;:36::i;:::-;22216:158;22196:178;;22077:305;;;:::o;20490:98::-;20543:7;20570:10;20563:17;;20490:98;:::o;27844:127::-;27909:4;27961:1;27933:30;;:7;:16;27941:7;27933:16;;;;;;;;;;;;;;;;;;;;;:30;;;;27926:37;;27844:127;;;:::o;31826:174::-;31928:2;31901:15;:24;31917:7;31901:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31984:7;31980:2;31946:46;;31955:23;31970:7;31955:14;:23::i;:::-;31946:46;;;;;;;;;;;;31826:174;;:::o;28138:348::-;28231:4;28256:16;28264:7;28256;:16::i;:::-;28248:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28332:13;28348:23;28363:7;28348:14;:23::i;:::-;28332:39;;28401:5;28390:16;;:7;:16;;;:51;;;;28434:7;28410:31;;:20;28422:7;28410:11;:20::i;:::-;:31;;;28390:51;:87;;;;28445:32;28462:5;28469:7;28445:16;:32::i;:::-;28390:87;28382:96;;;28138:348;;;;:::o;31130:578::-;31289:4;31262:31;;:23;31277:7;31262:14;:23::i;:::-;:31;;;31254:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;31372:1;31358:16;;:2;:16;;;;31350:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31428:39;31449:4;31455:2;31459:7;31428:20;:39::i;:::-;31532:29;31549:1;31553:7;31532:8;:29::i;:::-;31593:1;31574:9;:15;31584:4;31574:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;31622:1;31605:9;:13;31615:2;31605:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31653:2;31634:7;:16;31642:7;31634:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31692:7;31688:2;31673:27;;31682:4;31673:27;;;;;;;;;;;;31130:578;;;:::o;43963:191::-;44037:16;44056:6;;;;;;;;;;;44037:25;;44082:8;44073:6;;:17;;;;;;;;;;;;;;;;;;44137:8;44106:40;;44127:8;44106:40;;;;;;;;;;;;43963:191;;:::o;28828:110::-;28904:26;28914:2;28918:7;28904:26;;;;;;;;;;;;:9;:26::i;:::-;28828:110;;:::o;32142:315::-;32297:8;32288:17;;:5;:17;;;;32280:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;32384:8;32346:18;:25;32365:5;32346:25;;;;;;;;;;;;;;;:35;32372:8;32346:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;32430:8;32408:41;;32423:5;32408:41;;;32440:8;32408:41;;;;;;:::i;:::-;;;;;;;;32142:315;;;:::o;27216:::-;27373:28;27383:4;27389:2;27393:7;27373:9;:28::i;:::-;27420:48;27443:4;27449:2;27453:7;27462:5;27420:22;:48::i;:::-;27412:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;27216:315;;;;:::o;45709:114::-;45769:13;45802;45795:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45709:114;:::o;383:723::-;439:13;669:1;660:5;:10;656:53;;;687:10;;;;;;;;;;;;;;;;;;;;;656:53;719:12;734:5;719:20;;750:14;775:78;790:1;782:4;:9;775:78;;808:8;;;;;:::i;:::-;;;;839:2;831:10;;;;;:::i;:::-;;;775:78;;;863:19;895:6;885:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;863:39;;913:154;929:1;920:5;:10;913:154;;957:1;947:11;;;;;:::i;:::-;;;1024:2;1016:5;:10;;;;:::i;:::-;1003:2;:24;;;;:::i;:::-;990:39;;973:6;980;973:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;1053:2;1044:11;;;;;:::i;:::-;;;913:154;;;1091:6;1077:21;;;;;383:723;;;;:::o;13012:157::-;13097:4;13136:25;13121:40;;;:11;:40;;;;13114:47;;13012:157;;;:::o;37173:589::-;37317:45;37344:4;37350:2;37354:7;37317:26;:45::i;:::-;37395:1;37379:18;;:4;:18;;;37375:187;;;37414:40;37446:7;37414:31;:40::i;:::-;37375:187;;;37484:2;37476:10;;:4;:10;;;37472:90;;37503:47;37536:4;37542:7;37503:32;:47::i;:::-;37472:90;37375:187;37590:1;37576:16;;:2;:16;;;37572:183;;;37609:45;37646:7;37609:36;:45::i;:::-;37572:183;;;37682:4;37676:10;;:2;:10;;;37672:83;;37703:40;37731:2;37735:7;37703:27;:40::i;:::-;37672:83;37572:183;37173:589;;;:::o;29165:321::-;29295:18;29301:2;29305:7;29295:5;:18::i;:::-;29346:54;29377:1;29381:2;29385:7;29394:5;29346:22;:54::i;:::-;29324:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;29165:321;;;:::o;33022:799::-;33177:4;33198:15;:2;:13;;;:15::i;:::-;33194:620;;;33250:2;33234:36;;;33271:12;:10;:12::i;:::-;33285:4;33291:7;33300:5;33234:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33230:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33493:1;33476:6;:13;:18;33472:272;;;33519:60;;;;;;;;;;:::i;:::-;;;;;;;;33472:272;33694:6;33688:13;33679:6;33675:2;33671:15;33664:38;33230:529;33367:41;;;33357:51;;;:6;:51;;;;33350:58;;;;;33194:620;33798:4;33791:11;;33022:799;;;;;;;:::o;34393:126::-;;;;:::o;38485:164::-;38589:10;:17;;;;38562:15;:24;38578:7;38562:24;;;;;;;;;;;:44;;;;38617:10;38633:7;38617:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38485:164;:::o;39276:988::-;39542:22;39592:1;39567:22;39584:4;39567:16;:22::i;:::-;:26;;;;:::i;:::-;39542:51;;39604:18;39625:17;:26;39643:7;39625:26;;;;;;;;;;;;39604:47;;39772:14;39758:10;:28;39754:328;;39803:19;39825:12;:18;39838:4;39825:18;;;;;;;;;;;;;;;:34;39844:14;39825:34;;;;;;;;;;;;39803:56;;39909:11;39876:12;:18;39889:4;39876:18;;;;;;;;;;;;;;;:30;39895:10;39876:30;;;;;;;;;;;:44;;;;40026:10;39993:17;:30;40011:11;39993:30;;;;;;;;;;;:43;;;;39754:328;;40178:17;:26;40196:7;40178:26;;;;;;;;;;;40171:33;;;40222:12;:18;40235:4;40222:18;;;;;;;;;;;;;;;:34;40241:14;40222:34;;;;;;;;;;;40215:41;;;39276:988;;;;:::o;40559:1079::-;40812:22;40857:1;40837:10;:17;;;;:21;;;;:::i;:::-;40812:46;;40869:18;40890:15;:24;40906:7;40890:24;;;;;;;;;;;;40869:45;;41241:19;41263:10;41274:14;41263:26;;;;;;;;;;;;;;;;;;;;;;;;41241:48;;41327:11;41302:10;41313;41302:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;41438:10;41407:15;:28;41423:11;41407:28;;;;;;;;;;;:41;;;;41579:15;:24;41595:7;41579:24;;;;;;;;;;;41572:31;;;41614:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40559:1079;;;;:::o;38063:221::-;38148:14;38165:20;38182:2;38165:16;:20::i;:::-;38148:37;;38223:7;38196:12;:16;38209:2;38196:16;;;;;;;;;;;;;;;:24;38213:6;38196:24;;;;;;;;;;;:34;;;;38270:6;38241:17;:26;38259:7;38241:26;;;;;;;;;;;:35;;;;38063:221;;;:::o;29822:382::-;29916:1;29902:16;;:2;:16;;;;29894:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29975:16;29983:7;29975;:16::i;:::-;29974:17;29966:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30037:45;30066:1;30070:2;30074:7;30037:20;:45::i;:::-;30112:1;30095:9;:13;30105:2;30095:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30143:2;30124:7;:16;30132:7;30124:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30188:7;30184:2;30163:33;;30180:1;30163:33;;;;;;;;;;;;29822:382;;:::o;2949:387::-;3009:4;3217:12;3284:7;3272:20;3264:28;;3327:1;3320:4;:8;3313:15;;;2949:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;;;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;;;;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;;;;;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;;;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;;;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:256::-;;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:50;5114:7;5105:6;5094:9;5090:22;5072:50;:::i;:::-;5062:60;;5018:114;4946:193;;;;:::o;5145:260::-;;5252:2;5240:9;5231:7;5227:23;5223:32;5220:2;;;5268:1;5265;5258:12;5220:2;5311:1;5336:52;5380:7;5371:6;5360:9;5356:22;5336:52;:::i;:::-;5326:62;;5282:116;5210:195;;;;:::o;5411:282::-;;5529:2;5517:9;5508:7;5504:23;5500:32;5497:2;;;5545:1;5542;5535:12;5497:2;5588:1;5613:63;5668:7;5659:6;5648:9;5644:22;5613:63;:::i;:::-;5603:73;;5559:127;5487:206;;;;:::o;5699:375::-;;5817:2;5805:9;5796:7;5792:23;5788:32;5785:2;;;5833:1;5830;5823:12;5785:2;5904:1;5893:9;5889:17;5876:31;5934:18;5926:6;5923:30;5920:2;;;5966:1;5963;5956:12;5920:2;5994:63;6049:7;6040:6;6029:9;6025:22;5994:63;:::i;:::-;5984:73;;5847:220;5775:299;;;;:::o;6080:262::-;;6188:2;6176:9;6167:7;6163:23;6159:32;6156:2;;;6204:1;6201;6194:12;6156:2;6247:1;6272:53;6317:7;6308:6;6297:9;6293:22;6272:53;:::i;:::-;6262:63;;6218:117;6146:196;;;;:::o;6348:179::-;;6438:46;6480:3;6472:6;6438:46;:::i;:::-;6516:4;6511:3;6507:14;6493:28;;6428:99;;;;:::o;6533:118::-;6620:24;6638:5;6620:24;:::i;:::-;6615:3;6608:37;6598:53;;:::o;6687:732::-;;6835:54;6883:5;6835:54;:::i;:::-;6905:86;6984:6;6979:3;6905:86;:::i;:::-;6898:93;;7015:56;7065:5;7015:56;:::i;:::-;7094:7;7125:1;7110:284;7135:6;7132:1;7129:13;7110:284;;;7211:6;7205:13;7238:63;7297:3;7282:13;7238:63;:::i;:::-;7231:70;;7324:60;7377:6;7324:60;:::i;:::-;7314:70;;7170:224;7157:1;7154;7150:9;7145:14;;7110:284;;;7114:14;7410:3;7403:10;;6811:608;;;;;;;:::o;7425:109::-;7506:21;7521:5;7506:21;:::i;:::-;7501:3;7494:34;7484:50;;:::o;7540:360::-;;7654:38;7686:5;7654:38;:::i;:::-;7708:70;7771:6;7766:3;7708:70;:::i;:::-;7701:77;;7787:52;7832:6;7827:3;7820:4;7813:5;7809:16;7787:52;:::i;:::-;7864:29;7886:6;7864:29;:::i;:::-;7859:3;7855:39;7848:46;;7630:270;;;;;:::o;7906:364::-;;8022:39;8055:5;8022:39;:::i;:::-;8077:71;8141:6;8136:3;8077:71;:::i;:::-;8070:78;;8157:52;8202:6;8197:3;8190:4;8183:5;8179:16;8157:52;:::i;:::-;8234:29;8256:6;8234:29;:::i;:::-;8229:3;8225:39;8218:46;;7998:272;;;;;:::o;8276:377::-;;8410:39;8443:5;8410:39;:::i;:::-;8465:89;8547:6;8542:3;8465:89;:::i;:::-;8458:96;;8563:52;8608:6;8603:3;8596:4;8589:5;8585:16;8563:52;:::i;:::-;8640:6;8635:3;8631:16;8624:23;;8386:267;;;;;:::o;8659:366::-;;8822:67;8886:2;8881:3;8822:67;:::i;:::-;8815:74;;8898:93;8987:3;8898:93;:::i;:::-;9016:2;9011:3;9007:12;9000:19;;8805:220;;;:::o;9031:366::-;;9194:67;9258:2;9253:3;9194:67;:::i;:::-;9187:74;;9270:93;9359:3;9270:93;:::i;:::-;9388:2;9383:3;9379:12;9372:19;;9177:220;;;:::o;9403:366::-;;9566:67;9630:2;9625:3;9566:67;:::i;:::-;9559:74;;9642:93;9731:3;9642:93;:::i;:::-;9760:2;9755:3;9751:12;9744:19;;9549:220;;;:::o;9775:366::-;;9938:67;10002:2;9997:3;9938:67;:::i;:::-;9931:74;;10014:93;10103:3;10014:93;:::i;:::-;10132:2;10127:3;10123:12;10116:19;;9921:220;;;:::o;10147:366::-;;10310:67;10374:2;10369:3;10310:67;:::i;:::-;10303:74;;10386:93;10475:3;10386:93;:::i;:::-;10504:2;10499:3;10495:12;10488:19;;10293:220;;;:::o;10519:366::-;;10682:67;10746:2;10741:3;10682:67;:::i;:::-;10675:74;;10758:93;10847:3;10758:93;:::i;:::-;10876:2;10871:3;10867:12;10860:19;;10665:220;;;:::o;10891:366::-;;11054:67;11118:2;11113:3;11054:67;:::i;:::-;11047:74;;11130:93;11219:3;11130:93;:::i;:::-;11248:2;11243:3;11239:12;11232:19;;11037:220;;;:::o;11263:366::-;;11426:67;11490:2;11485:3;11426:67;:::i;:::-;11419:74;;11502:93;11591:3;11502:93;:::i;:::-;11620:2;11615:3;11611:12;11604:19;;11409:220;;;:::o;11635:366::-;;11798:67;11862:2;11857:3;11798:67;:::i;:::-;11791:74;;11874:93;11963:3;11874:93;:::i;:::-;11992:2;11987:3;11983:12;11976:19;;11781:220;;;:::o;12007:366::-;;12170:67;12234:2;12229:3;12170:67;:::i;:::-;12163:74;;12246:93;12335:3;12246:93;:::i;:::-;12364:2;12359:3;12355:12;12348:19;;12153:220;;;:::o;12379:366::-;;12542:67;12606:2;12601:3;12542:67;:::i;:::-;12535:74;;12618:93;12707:3;12618:93;:::i;:::-;12736:2;12731:3;12727:12;12720:19;;12525:220;;;:::o;12751:366::-;;12914:67;12978:2;12973:3;12914:67;:::i;:::-;12907:74;;12990:93;13079:3;12990:93;:::i;:::-;13108:2;13103:3;13099:12;13092:19;;12897:220;;;:::o;13123:366::-;;13286:67;13350:2;13345:3;13286:67;:::i;:::-;13279:74;;13362:93;13451:3;13362:93;:::i;:::-;13480:2;13475:3;13471:12;13464:19;;13269:220;;;:::o;13495:366::-;;13658:67;13722:2;13717:3;13658:67;:::i;:::-;13651:74;;13734:93;13823:3;13734:93;:::i;:::-;13852:2;13847:3;13843:12;13836:19;;13641:220;;;:::o;13867:366::-;;14030:67;14094:2;14089:3;14030:67;:::i;:::-;14023:74;;14106:93;14195:3;14106:93;:::i;:::-;14224:2;14219:3;14215:12;14208:19;;14013:220;;;:::o;14239:400::-;;14420:84;14502:1;14497:3;14420:84;:::i;:::-;14413:91;;14513:93;14602:3;14513:93;:::i;:::-;14631:1;14626:3;14622:11;14615:18;;14403:236;;;:::o;14645:366::-;;14808:67;14872:2;14867:3;14808:67;:::i;:::-;14801:74;;14884:93;14973:3;14884:93;:::i;:::-;15002:2;14997:3;14993:12;14986:19;;14791:220;;;:::o;15017:366::-;;15180:67;15244:2;15239:3;15180:67;:::i;:::-;15173:74;;15256:93;15345:3;15256:93;:::i;:::-;15374:2;15369:3;15365:12;15358:19;;15163:220;;;:::o;15389:366::-;;15552:67;15616:2;15611:3;15552:67;:::i;:::-;15545:74;;15628:93;15717:3;15628:93;:::i;:::-;15746:2;15741:3;15737:12;15730:19;;15535:220;;;:::o;15761:366::-;;15924:67;15988:2;15983:3;15924:67;:::i;:::-;15917:74;;16000:93;16089:3;16000:93;:::i;:::-;16118:2;16113:3;16109:12;16102:19;;15907:220;;;:::o;16133:366::-;;16296:67;16360:2;16355:3;16296:67;:::i;:::-;16289:74;;16372:93;16461:3;16372:93;:::i;:::-;16490:2;16485:3;16481:12;16474:19;;16279:220;;;:::o;16505:366::-;;16668:67;16732:2;16727:3;16668:67;:::i;:::-;16661:74;;16744:93;16833:3;16744:93;:::i;:::-;16862:2;16857:3;16853:12;16846:19;;16651:220;;;:::o;16877:366::-;;17040:67;17104:2;17099:3;17040:67;:::i;:::-;17033:74;;17116:93;17205:3;17116:93;:::i;:::-;17234:2;17229:3;17225:12;17218:19;;17023:220;;;:::o;17249:108::-;17326:24;17344:5;17326:24;:::i;:::-;17321:3;17314:37;17304:53;;:::o;17363:118::-;17450:24;17468:5;17450:24;:::i;:::-;17445:3;17438:37;17428:53;;:::o;17487:701::-;;17790:95;17881:3;17872:6;17790:95;:::i;:::-;17783:102;;17902:95;17993:3;17984:6;17902:95;:::i;:::-;17895:102;;18014:148;18158:3;18014:148;:::i;:::-;18007:155;;18179:3;18172:10;;17772:416;;;;;:::o;18194:222::-;;18325:2;18314:9;18310:18;18302:26;;18338:71;18406:1;18395:9;18391:17;18382:6;18338:71;:::i;:::-;18292:124;;;;:::o;18422:640::-;;18655:3;18644:9;18640:19;18632:27;;18669:71;18737:1;18726:9;18722:17;18713:6;18669:71;:::i;:::-;18750:72;18818:2;18807:9;18803:18;18794:6;18750:72;:::i;:::-;18832;18900:2;18889:9;18885:18;18876:6;18832:72;:::i;:::-;18951:9;18945:4;18941:20;18936:2;18925:9;18921:18;18914:48;18979:76;19050:4;19041:6;18979:76;:::i;:::-;18971:84;;18622:440;;;;;;;:::o;19068:373::-;;19249:2;19238:9;19234:18;19226:26;;19298:9;19292:4;19288:20;19284:1;19273:9;19269:17;19262:47;19326:108;19429:4;19420:6;19326:108;:::i;:::-;19318:116;;19216:225;;;;:::o;19447:210::-;;19572:2;19561:9;19557:18;19549:26;;19585:65;19647:1;19636:9;19632:17;19623:6;19585:65;:::i;:::-;19539:118;;;;:::o;19663:313::-;;19814:2;19803:9;19799:18;19791:26;;19863:9;19857:4;19853:20;19849:1;19838:9;19834:17;19827:47;19891:78;19964:4;19955:6;19891:78;:::i;:::-;19883:86;;19781:195;;;;:::o;19982:419::-;;20186:2;20175:9;20171:18;20163:26;;20235:9;20229:4;20225:20;20221:1;20210:9;20206:17;20199:47;20263:131;20389:4;20263:131;:::i;:::-;20255:139;;20153:248;;;:::o;20407:419::-;;20611:2;20600:9;20596:18;20588:26;;20660:9;20654:4;20650:20;20646:1;20635:9;20631:17;20624:47;20688:131;20814:4;20688:131;:::i;:::-;20680:139;;20578:248;;;:::o;20832:419::-;;21036:2;21025:9;21021:18;21013:26;;21085:9;21079:4;21075:20;21071:1;21060:9;21056:17;21049:47;21113:131;21239:4;21113:131;:::i;:::-;21105:139;;21003:248;;;:::o;21257:419::-;;21461:2;21450:9;21446:18;21438:26;;21510:9;21504:4;21500:20;21496:1;21485:9;21481:17;21474:47;21538:131;21664:4;21538:131;:::i;:::-;21530:139;;21428:248;;;:::o;21682:419::-;;21886:2;21875:9;21871:18;21863:26;;21935:9;21929:4;21925:20;21921:1;21910:9;21906:17;21899:47;21963:131;22089:4;21963:131;:::i;:::-;21955:139;;21853:248;;;:::o;22107:419::-;;22311:2;22300:9;22296:18;22288:26;;22360:9;22354:4;22350:20;22346:1;22335:9;22331:17;22324:47;22388:131;22514:4;22388:131;:::i;:::-;22380:139;;22278:248;;;:::o;22532:419::-;;22736:2;22725:9;22721:18;22713:26;;22785:9;22779:4;22775:20;22771:1;22760:9;22756:17;22749:47;22813:131;22939:4;22813:131;:::i;:::-;22805:139;;22703:248;;;:::o;22957:419::-;;23161:2;23150:9;23146:18;23138:26;;23210:9;23204:4;23200:20;23196:1;23185:9;23181:17;23174:47;23238:131;23364:4;23238:131;:::i;:::-;23230:139;;23128:248;;;:::o;23382:419::-;;23586:2;23575:9;23571:18;23563:26;;23635:9;23629:4;23625:20;23621:1;23610:9;23606:17;23599:47;23663:131;23789:4;23663:131;:::i;:::-;23655:139;;23553:248;;;:::o;23807:419::-;;24011:2;24000:9;23996:18;23988:26;;24060:9;24054:4;24050:20;24046:1;24035:9;24031:17;24024:47;24088:131;24214:4;24088:131;:::i;:::-;24080:139;;23978:248;;;:::o;24232:419::-;;24436:2;24425:9;24421:18;24413:26;;24485:9;24479:4;24475:20;24471:1;24460:9;24456:17;24449:47;24513:131;24639:4;24513:131;:::i;:::-;24505:139;;24403:248;;;:::o;24657:419::-;;24861:2;24850:9;24846:18;24838:26;;24910:9;24904:4;24900:20;24896:1;24885:9;24881:17;24874:47;24938:131;25064:4;24938:131;:::i;:::-;24930:139;;24828:248;;;:::o;25082:419::-;;25286:2;25275:9;25271:18;25263:26;;25335:9;25329:4;25325:20;25321:1;25310:9;25306:17;25299:47;25363:131;25489:4;25363:131;:::i;:::-;25355:139;;25253:248;;;:::o;25507:419::-;;25711:2;25700:9;25696:18;25688:26;;25760:9;25754:4;25750:20;25746:1;25735:9;25731:17;25724:47;25788:131;25914:4;25788:131;:::i;:::-;25780:139;;25678:248;;;:::o;25932:419::-;;26136:2;26125:9;26121:18;26113:26;;26185:9;26179:4;26175:20;26171:1;26160:9;26156:17;26149:47;26213:131;26339:4;26213:131;:::i;:::-;26205:139;;26103:248;;;:::o;26357:419::-;;26561:2;26550:9;26546:18;26538:26;;26610:9;26604:4;26600:20;26596:1;26585:9;26581:17;26574:47;26638:131;26764:4;26638:131;:::i;:::-;26630:139;;26528:248;;;:::o;26782:419::-;;26986:2;26975:9;26971:18;26963:26;;27035:9;27029:4;27025:20;27021:1;27010:9;27006:17;26999:47;27063:131;27189:4;27063:131;:::i;:::-;27055:139;;26953:248;;;:::o;27207:419::-;;27411:2;27400:9;27396:18;27388:26;;27460:9;27454:4;27450:20;27446:1;27435:9;27431:17;27424:47;27488:131;27614:4;27488:131;:::i;:::-;27480:139;;27378:248;;;:::o;27632:419::-;;27836:2;27825:9;27821:18;27813:26;;27885:9;27879:4;27875:20;27871:1;27860:9;27856:17;27849:47;27913:131;28039:4;27913:131;:::i;:::-;27905:139;;27803:248;;;:::o;28057:419::-;;28261:2;28250:9;28246:18;28238:26;;28310:9;28304:4;28300:20;28296:1;28285:9;28281:17;28274:47;28338:131;28464:4;28338:131;:::i;:::-;28330:139;;28228:248;;;:::o;28482:419::-;;28686:2;28675:9;28671:18;28663:26;;28735:9;28729:4;28725:20;28721:1;28710:9;28706:17;28699:47;28763:131;28889:4;28763:131;:::i;:::-;28755:139;;28653:248;;;:::o;28907:419::-;;29111:2;29100:9;29096:18;29088:26;;29160:9;29154:4;29150:20;29146:1;29135:9;29131:17;29124:47;29188:131;29314:4;29188:131;:::i;:::-;29180:139;;29078:248;;;:::o;29332:222::-;;29463:2;29452:9;29448:18;29440:26;;29476:71;29544:1;29533:9;29529:17;29520:6;29476:71;:::i;:::-;29430:124;;;;:::o;29560:129::-;;29621:20;;:::i;:::-;29611:30;;29650:33;29678:4;29670:6;29650:33;:::i;:::-;29601:88;;;:::o;29695:75::-;;29761:2;29755:9;29745:19;;29735:35;:::o;29776:307::-;;29927:18;29919:6;29916:30;29913:2;;;29949:18;;:::i;:::-;29913:2;29987:29;30009:6;29987:29;:::i;:::-;29979:37;;30071:4;30065;30061:15;30053:23;;29842:241;;;:::o;30089:308::-;;30241:18;30233:6;30230:30;30227:2;;;30263:18;;:::i;:::-;30227:2;30301:29;30323:6;30301:29;:::i;:::-;30293:37;;30385:4;30379;30375:15;30367:23;;30156:241;;;:::o;30403:132::-;;30493:3;30485:11;;30523:4;30518:3;30514:14;30506:22;;30475:60;;;:::o;30541:114::-;;30642:5;30636:12;30626:22;;30615:40;;;:::o;30661:98::-;;30746:5;30740:12;30730:22;;30719:40;;;:::o;30765:99::-;;30851:5;30845:12;30835:22;;30824:40;;;:::o;30870:113::-;;30972:4;30967:3;30963:14;30955:22;;30945:38;;;:::o;30989:184::-;;31122:6;31117:3;31110:19;31162:4;31157:3;31153:14;31138:29;;31100:73;;;;:::o;31179:168::-;;31296:6;31291:3;31284:19;31336:4;31331:3;31327:14;31312:29;;31274:73;;;;:::o;31353:169::-;;31471:6;31466:3;31459:19;31511:4;31506:3;31502:14;31487:29;;31449:73;;;;:::o;31528:148::-;;31667:3;31652:18;;31642:34;;;;:::o;31682:305::-;;31741:20;31759:1;31741:20;:::i;:::-;31736:25;;31775:20;31793:1;31775:20;:::i;:::-;31770:25;;31929:1;31861:66;31857:74;31854:1;31851:81;31848:2;;;31935:18;;:::i;:::-;31848:2;31979:1;31976;31972:9;31965:16;;31726:261;;;;:::o;31993:185::-;;32050:20;32068:1;32050:20;:::i;:::-;32045:25;;32084:20;32102:1;32084:20;:::i;:::-;32079:25;;32123:1;32113:2;;32128:18;;:::i;:::-;32113:2;32170:1;32167;32163:9;32158:14;;32035:143;;;;:::o;32184:348::-;;32247:20;32265:1;32247:20;:::i;:::-;32242:25;;32281:20;32299:1;32281:20;:::i;:::-;32276:25;;32469:1;32401:66;32397:74;32394:1;32391:81;32386:1;32379:9;32372:17;32368:105;32365:2;;;32476:18;;:::i;:::-;32365:2;32524:1;32521;32517:9;32506:20;;32232:300;;;;:::o;32538:191::-;;32598:20;32616:1;32598:20;:::i;:::-;32593:25;;32632:20;32650:1;32632:20;:::i;:::-;32627:25;;32671:1;32668;32665:8;32662:2;;;32676:18;;:::i;:::-;32662:2;32721:1;32718;32714:9;32706:17;;32583:146;;;;:::o;32735:96::-;;32801:24;32819:5;32801:24;:::i;:::-;32790:35;;32780:51;;;:::o;32837:90::-;;32914:5;32907:13;32900:21;32889:32;;32879:48;;;:::o;32933:149::-;;33009:66;33002:5;32998:78;32987:89;;32977:105;;;:::o;33088:126::-;;33165:42;33158:5;33154:54;33143:65;;33133:81;;;:::o;33220:77::-;;33286:5;33275:16;;33265:32;;;:::o;33303:154::-;33387:6;33382:3;33377;33364:30;33449:1;33440:6;33435:3;33431:16;33424:27;33354:103;;;:::o;33463:307::-;33531:1;33541:113;33555:6;33552:1;33549:13;33541:113;;;33640:1;33635:3;33631:11;33625:18;33621:1;33616:3;33612:11;33605:39;33577:2;33574:1;33570:10;33565:15;;33541:113;;;33672:6;33669:1;33666:13;33663:2;;;33752:1;33743:6;33738:3;33734:16;33727:27;33663:2;33512:258;;;;:::o;33776:320::-;;33857:1;33851:4;33847:12;33837:22;;33904:1;33898:4;33894:12;33925:18;33915:2;;33981:4;33973:6;33969:17;33959:27;;33915:2;34043;34035:6;34032:14;34012:18;34009:38;34006:2;;;34062:18;;:::i;:::-;34006:2;33827:269;;;;:::o;34102:281::-;34185:27;34207:4;34185:27;:::i;:::-;34177:6;34173:40;34315:6;34303:10;34300:22;34279:18;34267:10;34264:34;34261:62;34258:2;;;34326:18;;:::i;:::-;34258:2;34366:10;34362:2;34355:22;34145:238;;;:::o;34389:233::-;;34451:24;34469:5;34451:24;:::i;:::-;34442:33;;34497:66;34490:5;34487:77;34484:2;;;34567:18;;:::i;:::-;34484:2;34614:1;34607:5;34603:13;34596:20;;34432:190;;;:::o;34628:176::-;;34677:20;34695:1;34677:20;:::i;:::-;34672:25;;34711:20;34729:1;34711:20;:::i;:::-;34706:25;;34750:1;34740:2;;34755:18;;:::i;:::-;34740:2;34796:1;34793;34789:9;34784:14;;34662:142;;;;:::o;34810:180::-;34858:77;34855:1;34848:88;34955:4;34952:1;34945:15;34979:4;34976:1;34969:15;34996:180;35044:77;35041:1;35034:88;35141:4;35138:1;35131:15;35165:4;35162:1;35155:15;35182:180;35230:77;35227:1;35220:88;35327:4;35324:1;35317:15;35351:4;35348:1;35341:15;35368:180;35416:77;35413:1;35406:88;35513:4;35510:1;35503:15;35537:4;35534:1;35527:15;35554:102;;35646:2;35642:7;35637:2;35630:5;35626:14;35622:28;35612:38;;35602:54;;;:::o;35662:161::-;35802:13;35798:1;35790:6;35786:14;35779:37;35768:55;:::o;35829:220::-;35969:34;35965:1;35957:6;35953:14;35946:58;36038:3;36033:2;36025:6;36021:15;36014:28;35935:114;:::o;36055:230::-;36195:34;36191:1;36183:6;36179:14;36172:58;36264:13;36259:2;36251:6;36247:15;36240:38;36161:124;:::o;36291:237::-;36431:34;36427:1;36419:6;36415:14;36408:58;36500:20;36495:2;36487:6;36483:15;36476:45;36397:131;:::o;36534:225::-;36674:34;36670:1;36662:6;36658:14;36651:58;36743:8;36738:2;36730:6;36726:15;36719:33;36640:119;:::o;36765:178::-;36905:30;36901:1;36893:6;36889:14;36882:54;36871:72;:::o;36949:223::-;37089:34;37085:1;37077:6;37073:14;37066:58;37158:6;37153:2;37145:6;37141:15;37134:31;37055:117;:::o;37178:175::-;37318:27;37314:1;37306:6;37302:14;37295:51;37284:69;:::o;37359:231::-;37499:34;37495:1;37487:6;37483:14;37476:58;37568:14;37563:2;37555:6;37551:15;37544:39;37465:125;:::o;37596:177::-;37736:29;37732:1;37724:6;37720:14;37713:53;37702:71;:::o;37779:243::-;37919:34;37915:1;37907:6;37903:14;37896:58;37988:26;37983:2;37975:6;37971:15;37964:51;37885:137;:::o;38028:229::-;38168:34;38164:1;38156:6;38152:14;38145:58;38237:12;38232:2;38224:6;38220:15;38213:37;38134:123;:::o;38263:228::-;38403:34;38399:1;38391:6;38387:14;38380:58;38472:11;38467:2;38459:6;38455:15;38448:36;38369:122;:::o;38497:182::-;38637:34;38633:1;38625:6;38621:14;38614:58;38603:76;:::o;38685:231::-;38825:34;38821:1;38813:6;38809:14;38802:58;38894:14;38889:2;38881:6;38877:15;38870:39;38791:125;:::o;38922:155::-;39062:7;39058:1;39050:6;39046:14;39039:31;39028:49;:::o;39083:182::-;39223:34;39219:1;39211:6;39207:14;39200:58;39189:76;:::o;39271:228::-;39411:34;39407:1;39399:6;39395:14;39388:58;39480:11;39475:2;39467:6;39463:15;39456:36;39377:122;:::o;39505:234::-;39645:34;39641:1;39633:6;39629:14;39622:58;39714:17;39709:2;39701:6;39697:15;39690:42;39611:128;:::o;39745:220::-;39885:34;39881:1;39873:6;39869:14;39862:58;39954:3;39949:2;39941:6;39937:15;39930:28;39851:114;:::o;39971:175::-;40111:27;40107:1;40099:6;40095:14;40088:51;40077:69;:::o;40152:236::-;40292:34;40288:1;40280:6;40276:14;40269:58;40361:19;40356:2;40348:6;40344:15;40337:44;40258:130;:::o;40394:231::-;40534:34;40530:1;40522:6;40518:14;40511:58;40603:14;40598:2;40590:6;40586:15;40579:39;40500:125;:::o;40631:122::-;40704:24;40722:5;40704:24;:::i;:::-;40697:5;40694:35;40684:2;;40743:1;40740;40733:12;40684:2;40674:79;:::o;40759:116::-;40829:21;40844:5;40829:21;:::i;:::-;40822:5;40819:32;40809:2;;40865:1;40862;40855:12;40809:2;40799:76;:::o;40881:120::-;40953:23;40970:5;40953:23;:::i;:::-;40946:5;40943:34;40933:2;;40991:1;40988;40981:12;40933:2;40923:78;:::o;41007:122::-;41080:24;41098:5;41080:24;:::i;:::-;41073:5;41070:35;41060:2;;41119:1;41116;41109:12;41060:2;41050:79;:::o

Swarm Source

ipfs://78eb52db870123475f1b3c5170d8f95a0411ed5132c4504959cd79b092b97faf
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.