ETH Price: $2,769.52 (+5.56%)
Gas: 0.96 Gwei

Cyber Jurassic (JURA)
 

Overview

TokenID

21

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

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:
Cyber_Jurassic

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/access/Ownable.sol

pragma solidity ^0.8.7;

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

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

pragma solidity ^0.8.7;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.7;


/**
 * @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: @openzeppelin/contracts/utils/introspection/ERC165.sol

pragma solidity ^0.8.7;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/utils/Address.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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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



pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/utils/Strings.sol



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/utils/Context.sol







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: @openzeppelin/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: @openzeppelin/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: @openzeppelin/contracts/utils/introspection/IERC165.sol











pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //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 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: @openzeppelin/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: contracts/NFT_TEST_VER1.sol



pragma solidity ^0.8.7;



contract Cyber_Jurassic is ERC721Enumerable,Ownable {
    using Strings for uint256;
    
    string public baseURI;
    string public baseExtension = ".json";
    uint256 public cost = 0.05 ether;
    uint256 public maxSupply = 10000;
    uint256 public maxMintAmmount = 10;
    bool public paused = false;
    
    constructor (
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI
        ) ERC721 (_name,_symbol) {
            setBaseURI (_initBaseURI);
            mint (msg.sender,1);
            
        }
        
//internal
function _baseURI () internal view virtual override returns (string memory) {
    return baseURI;
}
//public
function mint (address _to, uint256 _mintAmmount) public payable {
    uint256 supply = totalSupply();
    require (!paused);
    require (_mintAmmount > 0);
    require (_mintAmmount <= maxMintAmmount);
    require (supply + _mintAmmount <= maxSupply);
    if (msg.sender != owner()) {
        require (msg.value >= cost * _mintAmmount);
    }
    for (uint256 i=1; i <= _mintAmmount; i++) {
        _safeMint(_to,supply+i);
    }
}

function walletOfOwner(address _owner) 
public 
view
returns (uint256[] memory)
{
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[] (ownerTokenCount);
    for (uint256 i; i<ownerTokenCount; i++) {
        tokenIds[i] = tokenOfOwnerByIndex(_owner,i);
    }
    return tokenIds;
}

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

//only owner

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

function setmaxMintAmmount(uint256 _newmaxMintAmmount) public onlyOwner() {
    maxMintAmmount=_newmaxMintAmmount;
}

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

function setBaseExtension(string memory _newBaseExtension) public onlyOwner() {
    baseExtension=_newBaseExtension;
}

function pause(bool _state) public onlyOwner() {
    paused=_state;
}

function withdraw() public payable onlyOwner() {
    require(payable(msg.sender).send(address(this).balance));
}


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmmount","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":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmmount","type":"uint256"}],"name":"setmaxMintAmmount","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":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200005192919062000de6565b5066b1a2bc2ec50000600d55612710600e55600a600f556000601060006101000a81548160ff0219169083151502179055503480156200009057600080fd5b5060405162005856380380620058568339818101604052810190620000b6919062000f5d565b82828160009080519060200190620000d092919062000de6565b508060019080519060200190620000e992919062000de6565b5050506200010c620001006200013960201b60201c565b6200014160201b60201c565b6200011d816200020760201b60201c565b62000130336001620002b260201b60201c565b5050506200175c565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002176200013960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200023d620003c760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000296576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028d9062001218565b60405180910390fd5b80600b9080519060200190620002ae92919062000de6565b5050565b6000620002c4620003f160201b60201c565b9050601060009054906101000a900460ff1615620002e157600080fd5b60008211620002ef57600080fd5b600f54821115620002ff57600080fd5b600e548282620003109190620012c6565b11156200031c57600080fd5b6200032c620003c760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146200037d5781600d546200036f919062001323565b3410156200037c57600080fd5b5b6000600190505b828111620003c157620003ab8482846200039f9190620012c6565b620003fe60201b60201c565b8080620003b890620014cb565b91505062000384565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600880549050905090565b620004208282604051806020016040528060008152506200042460201b60201c565b5050565b6200043683836200049260201b60201c565b6200044b60008484846200067860201b60201c565b6200048d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004849062001190565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000505576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004fc90620011f6565b60405180910390fd5b62000516816200083260201b60201c565b1562000559576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200055090620011b2565b60405180910390fd5b6200056d600083836200089e60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620005bf9190620012c6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620006a68473ffffffffffffffffffffffffffffffffffffffff16620009e560201b620019431760201c565b1562000825578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620006d86200013960201b60201c565b8786866040518563ffffffff1660e01b8152600401620006fc94939291906200113c565b602060405180830381600087803b1580156200071757600080fd5b505af19250505080156200074b57506040513d601f19601f8201168201806040525081019062000748919062000f2b565b60015b620007d4573d80600081146200077e576040519150601f19603f3d011682016040523d82523d6000602084013e62000783565b606091505b50600081511415620007cc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007c39062001190565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506200082a565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620008b6838383620009f860201b620019561760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156200090357620008fd81620009fd60201b60201c565b6200094b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146200094a5762000949838262000a4660201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200099857620009928162000bc360201b60201c565b620009e0565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620009df57620009de828262000c9f60201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000a608462000d2b60201b620011fd1760201c565b62000a6c919062001384565b905060006007600084815260200190815260200160002054905081811462000b52576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000bd9919062001384565b905060006009600084815260200190815260200160002054905060006008838154811062000c0c5762000c0b620015a6565b5b90600052602060002001549050806008838154811062000c315762000c30620015a6565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000c835762000c8262001577565b5b6001900381819060005260206000200160009055905550505050565b600062000cb78362000d2b60201b620011fd1760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000d9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d9690620011d4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000df4906200145f565b90600052602060002090601f01602090048101928262000e18576000855562000e64565b82601f1062000e3357805160ff191683800117855562000e64565b8280016001018555821562000e64579182015b8281111562000e6357825182559160200191906001019062000e46565b5b50905062000e73919062000e77565b5090565b5b8082111562000e9257600081600090555060010162000e78565b5090565b600062000ead62000ea78462001263565b6200123a565b90508281526020810184848401111562000ecc5762000ecb62001609565b5b62000ed984828562001429565b509392505050565b60008151905062000ef28162001742565b92915050565b600082601f83011262000f105762000f0f62001604565b5b815162000f2284826020860162000e96565b91505092915050565b60006020828403121562000f445762000f4362001613565b5b600062000f548482850162000ee1565b91505092915050565b60008060006060848603121562000f795762000f7862001613565b5b600084015167ffffffffffffffff81111562000f9a5762000f996200160e565b5b62000fa88682870162000ef8565b935050602084015167ffffffffffffffff81111562000fcc5762000fcb6200160e565b5b62000fda8682870162000ef8565b925050604084015167ffffffffffffffff81111562000ffe5762000ffd6200160e565b5b6200100c8682870162000ef8565b9150509250925092565b6200102181620013bf565b82525050565b6000620010348262001299565b620010408185620012a4565b93506200105281856020860162001429565b6200105d8162001618565b840191505092915050565b600062001077603283620012b5565b9150620010848262001629565b604082019050919050565b60006200109e601c83620012b5565b9150620010ab8262001678565b602082019050919050565b6000620010c5602a83620012b5565b9150620010d282620016a1565b604082019050919050565b6000620010ec602083620012b5565b9150620010f982620016f0565b602082019050919050565b600062001113602083620012b5565b9150620011208262001719565b602082019050919050565b62001136816200141f565b82525050565b600060808201905062001153600083018762001016565b62001162602083018662001016565b6200117160408301856200112b565b818103606083015262001185818462001027565b905095945050505050565b60006020820190508181036000830152620011ab8162001068565b9050919050565b60006020820190508181036000830152620011cd816200108f565b9050919050565b60006020820190508181036000830152620011ef81620010b6565b9050919050565b600060208201905081810360008301526200121181620010dd565b9050919050565b60006020820190508181036000830152620012338162001104565b9050919050565b60006200124662001259565b905062001254828262001495565b919050565b6000604051905090565b600067ffffffffffffffff821115620012815762001280620015d5565b5b6200128c8262001618565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000620012d3826200141f565b9150620012e0836200141f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562001318576200131762001519565b5b828201905092915050565b600062001330826200141f565b91506200133d836200141f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562001379576200137862001519565b5b828202905092915050565b600062001391826200141f565b91506200139e836200141f565b925082821015620013b457620013b362001519565b5b828203905092915050565b6000620013cc82620013ff565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620014495780820151818401526020810190506200142c565b8381111562001459576000848401525b50505050565b600060028204905060018216806200147857607f821691505b602082108114156200148f576200148e62001548565b5b50919050565b620014a08262001618565b810181811067ffffffffffffffff82111715620014c257620014c1620015d5565b5b80604052505050565b6000620014d8826200141f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200150e576200150d62001519565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6200174d81620013d3565b81146200175957600080fd5b50565b6140ea806200176c6000396000f3fe6080604052600436106101ee5760003560e01c806358484ccc1161010d57806395d89b41116100a0578063c87b56dd1161006f578063c87b56dd146106cf578063d5abeb011461070c578063da3ef23f14610737578063e985e9c514610760578063f2fde38b1461079d576101ee565b806395d89b4114610627578063a22cb46514610652578063b88d4fde1461067b578063c6682862146106a4576101ee565b806370a08231116100dc57806370a082311461057d578063715018a6146105ba57806377afbe03146105d15780638da5cb5b146105fc576101ee565b806358484ccc146104c15780635c975abb146104ea5780636352211e146105155780636c0360eb14610552576101ee565b80632f745c5911610185578063438b630011610154578063438b6300146103f557806344a0d68a146104325780634f6ccce71461045b57806355f804b314610498576101ee565b80632f745c59146103695780633ccfd60b146103a657806340c10f19146103b057806342842e0e146103cc576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806313faede6146102ea57806318160ddd1461031557806323b872dd14610340576101ee565b806301ffc9a7146101f357806302329a291461023057806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612df7565b6107c6565b60405161022791906133cb565b60405180910390f35b34801561023c57600080fd5b5061025760048036038101906102529190612dca565b610840565b005b34801561026557600080fd5b5061026e6108d9565b60405161027b91906133e6565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a69190612e9a565b61096b565b6040516102b89190613342565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e39190612d8a565b6109f0565b005b3480156102f657600080fd5b506102ff610b08565b60405161030c9190613648565b60405180910390f35b34801561032157600080fd5b5061032a610b0e565b6040516103379190613648565b60405180910390f35b34801561034c57600080fd5b5061036760048036038101906103629190612c74565b610b1b565b005b34801561037557600080fd5b50610390600480360381019061038b9190612d8a565b610b7b565b60405161039d9190613648565b60405180910390f35b6103ae610c20565b005b6103ca60048036038101906103c59190612d8a565b610cdc565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190612c74565b610dc9565b005b34801561040157600080fd5b5061041c60048036038101906104179190612c07565b610de9565b60405161042991906133a9565b60405180910390f35b34801561043e57600080fd5b5061045960048036038101906104549190612e9a565b610e97565b005b34801561046757600080fd5b50610482600480360381019061047d9190612e9a565b610f1d565b60405161048f9190613648565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190612e51565b610f8e565b005b3480156104cd57600080fd5b506104e860048036038101906104e39190612e9a565b611024565b005b3480156104f657600080fd5b506104ff6110aa565b60405161050c91906133cb565b60405180910390f35b34801561052157600080fd5b5061053c60048036038101906105379190612e9a565b6110bd565b6040516105499190613342565b60405180910390f35b34801561055e57600080fd5b5061056761116f565b60405161057491906133e6565b60405180910390f35b34801561058957600080fd5b506105a4600480360381019061059f9190612c07565b6111fd565b6040516105b19190613648565b60405180910390f35b3480156105c657600080fd5b506105cf6112b5565b005b3480156105dd57600080fd5b506105e661133d565b6040516105f39190613648565b60405180910390f35b34801561060857600080fd5b50610611611343565b60405161061e9190613342565b60405180910390f35b34801561063357600080fd5b5061063c61136d565b60405161064991906133e6565b60405180910390f35b34801561065e57600080fd5b5061067960048036038101906106749190612d4a565b6113ff565b005b34801561068757600080fd5b506106a2600480360381019061069d9190612cc7565b611580565b005b3480156106b057600080fd5b506106b96115e2565b6040516106c691906133e6565b60405180910390f35b3480156106db57600080fd5b506106f660048036038101906106f19190612e9a565b611670565b60405161070391906133e6565b60405180910390f35b34801561071857600080fd5b5061072161171b565b60405161072e9190613648565b60405180910390f35b34801561074357600080fd5b5061075e60048036038101906107599190612e51565b611721565b005b34801561076c57600080fd5b5061078760048036038101906107829190612c34565b6117b7565b60405161079491906133cb565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190612c07565b61184b565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083957506108388261195b565b5b9050919050565b610848611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610866611343565b73ffffffffffffffffffffffffffffffffffffffff16146108bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b390613588565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6060600080546108e890613946565b80601f016020809104026020016040519081016040528092919081815260200182805461091490613946565b80156109615780601f1061093657610100808354040283529160200191610961565b820191906000526020600020905b81548152906001019060200180831161094457829003601f168201915b5050505050905090565b600061097682611a45565b6109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac90613568565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109fb826110bd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a63906135e8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a8b611a3d565b73ffffffffffffffffffffffffffffffffffffffff161480610aba5750610ab981610ab4611a3d565b6117b7565b5b610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af0906134e8565b60405180910390fd5b610b038383611ab1565b505050565b600d5481565b6000600880549050905090565b610b2c610b26611a3d565b82611b6a565b610b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6290613608565b60405180910390fd5b610b76838383611c48565b505050565b6000610b86836111fd565b8210610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe90613408565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c28611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610c46611343565b73ffffffffffffffffffffffffffffffffffffffff1614610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9390613588565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610cda57600080fd5b565b6000610ce6610b0e565b9050601060009054906101000a900460ff1615610d0257600080fd5b60008211610d0f57600080fd5b600f54821115610d1e57600080fd5b600e548282610d2d919061377b565b1115610d3857600080fd5b610d40611343565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d8d5781600d54610d809190613802565b341015610d8c57600080fd5b5b6000600190505b828111610dc357610db0848284610dab919061377b565b611ea4565b8080610dbb906139a9565b915050610d94565b50505050565b610de483838360405180602001604052806000815250611580565b505050565b60606000610df6836111fd565b905060008167ffffffffffffffff811115610e1457610e13613b0e565b5b604051908082528060200260200182016040528015610e425781602001602082028036833780820191505090505b50905060005b82811015610e8c57610e5a8582610b7b565b828281518110610e6d57610e6c613adf565b5b6020026020010181815250508080610e84906139a9565b915050610e48565b508092505050919050565b610e9f611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610ebd611343565b73ffffffffffffffffffffffffffffffffffffffff1614610f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0a90613588565b60405180910390fd5b80600d8190555050565b6000610f27610b0e565b8210610f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5f90613628565b60405180910390fd5b60088281548110610f7c57610f7b613adf565b5b90600052602060002001549050919050565b610f96611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610fb4611343565b73ffffffffffffffffffffffffffffffffffffffff161461100a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100190613588565b60405180910390fd5b80600b9080519060200190611020929190612a1b565b5050565b61102c611a3d565b73ffffffffffffffffffffffffffffffffffffffff1661104a611343565b73ffffffffffffffffffffffffffffffffffffffff16146110a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109790613588565b60405180910390fd5b80600f8190555050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d90613528565b60405180910390fd5b80915050919050565b600b805461117c90613946565b80601f01602080910402602001604051908101604052809291908181526020018280546111a890613946565b80156111f55780601f106111ca576101008083540402835291602001916111f5565b820191906000526020600020905b8154815290600101906020018083116111d857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561126e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126590613508565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112bd611a3d565b73ffffffffffffffffffffffffffffffffffffffff166112db611343565b73ffffffffffffffffffffffffffffffffffffffff1614611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132890613588565b60405180910390fd5b61133b6000611ec2565b565b600f5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461137c90613946565b80601f01602080910402602001604051908101604052809291908181526020018280546113a890613946565b80156113f55780601f106113ca576101008083540402835291602001916113f5565b820191906000526020600020905b8154815290600101906020018083116113d857829003601f168201915b5050505050905090565b611407611a3d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146c906134a8565b60405180910390fd5b8060056000611482611a3d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661152f611a3d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161157491906133cb565b60405180910390a35050565b61159161158b611a3d565b83611b6a565b6115d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c790613608565b60405180910390fd5b6115dc84848484611f88565b50505050565b600c80546115ef90613946565b80601f016020809104026020016040519081016040528092919081815260200182805461161b90613946565b80156116685780601f1061163d57610100808354040283529160200191611668565b820191906000526020600020905b81548152906001019060200180831161164b57829003601f168201915b505050505081565b606061167b82611a45565b6116ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b1906135c8565b60405180910390fd5b60006116c4611fe4565b905060008151116116e45760405180602001604052806000815250611713565b600b6116ef84612076565b600c60405160200161170393929190613311565b6040516020818303038152906040525b915050919050565b600e5481565b611729611a3d565b73ffffffffffffffffffffffffffffffffffffffff16611747611343565b73ffffffffffffffffffffffffffffffffffffffff161461179d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179490613588565b60405180910390fd5b80600c90805190602001906117b3929190612a1b565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611853611a3d565b73ffffffffffffffffffffffffffffffffffffffff16611871611343565b73ffffffffffffffffffffffffffffffffffffffff16146118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be90613588565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192e90613448565b60405180910390fd5b61194081611ec2565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a2657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a365750611a35826121d7565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b24836110bd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b7582611a45565b611bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bab906134c8565b60405180910390fd5b6000611bbf836110bd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c2e57508373ffffffffffffffffffffffffffffffffffffffff16611c168461096b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c3f5750611c3e81856117b7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c68826110bd565b73ffffffffffffffffffffffffffffffffffffffff1614611cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb5906135a8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2590613488565b60405180910390fd5b611d39838383612241565b611d44600082611ab1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d94919061385c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611deb919061377b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611ebe828260405180602001604052806000815250612355565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f93848484611c48565b611f9f848484846123b0565b611fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd590613428565b60405180910390fd5b50505050565b6060600b8054611ff390613946565b80601f016020809104026020016040519081016040528092919081815260200182805461201f90613946565b801561206c5780601f106120415761010080835404028352916020019161206c565b820191906000526020600020905b81548152906001019060200180831161204f57829003601f168201915b5050505050905090565b606060008214156120be576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121d2565b600082905060005b600082146120f05780806120d9906139a9565b915050600a826120e991906137d1565b91506120c6565b60008167ffffffffffffffff81111561210c5761210b613b0e565b5b6040519080825280601f01601f19166020018201604052801561213e5781602001600182028036833780820191505090505b5090505b600085146121cb57600182612157919061385c565b9150600a8561216691906139f2565b6030612172919061377b565b60f81b81838151811061218857612187613adf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121c491906137d1565b9450612142565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61224c838383611956565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561228f5761228a81612547565b6122ce565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122cd576122cc8382612590565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123115761230c816126fd565b612350565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461234f5761234e82826127ce565b5b5b505050565b61235f838361284d565b61236c60008484846123b0565b6123ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a290613428565b60405180910390fd5b505050565b60006123d18473ffffffffffffffffffffffffffffffffffffffff16611943565b1561253a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123fa611a3d565b8786866040518563ffffffff1660e01b815260040161241c949392919061335d565b602060405180830381600087803b15801561243657600080fd5b505af192505050801561246757506040513d601f19601f820116820180604052508101906124649190612e24565b60015b6124ea573d8060008114612497576040519150601f19603f3d011682016040523d82523d6000602084013e61249c565b606091505b506000815114156124e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d990613428565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061253f565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161259d846111fd565b6125a7919061385c565b905060006007600084815260200190815260200160002054905081811461268c576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612711919061385c565b905060006009600084815260200190815260200160002054905060006008838154811061274157612740613adf565b5b90600052602060002001549050806008838154811061276357612762613adf565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806127b2576127b1613ab0565b5b6001900381819060005260206000200160009055905550505050565b60006127d9836111fd565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b490613548565b60405180910390fd5b6128c681611a45565b15612906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fd90613468565b60405180910390fd5b61291260008383612241565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612962919061377b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612a2790613946565b90600052602060002090601f016020900481019282612a495760008555612a90565b82601f10612a6257805160ff1916838001178555612a90565b82800160010185558215612a90579182015b82811115612a8f578251825591602001919060010190612a74565b5b509050612a9d9190612aa1565b5090565b5b80821115612aba576000816000905550600101612aa2565b5090565b6000612ad1612acc84613688565b613663565b905082815260208101848484011115612aed57612aec613b42565b5b612af8848285613904565b509392505050565b6000612b13612b0e846136b9565b613663565b905082815260208101848484011115612b2f57612b2e613b42565b5b612b3a848285613904565b509392505050565b600081359050612b5181614058565b92915050565b600081359050612b668161406f565b92915050565b600081359050612b7b81614086565b92915050565b600081519050612b9081614086565b92915050565b600082601f830112612bab57612baa613b3d565b5b8135612bbb848260208601612abe565b91505092915050565b600082601f830112612bd957612bd8613b3d565b5b8135612be9848260208601612b00565b91505092915050565b600081359050612c018161409d565b92915050565b600060208284031215612c1d57612c1c613b4c565b5b6000612c2b84828501612b42565b91505092915050565b60008060408385031215612c4b57612c4a613b4c565b5b6000612c5985828601612b42565b9250506020612c6a85828601612b42565b9150509250929050565b600080600060608486031215612c8d57612c8c613b4c565b5b6000612c9b86828701612b42565b9350506020612cac86828701612b42565b9250506040612cbd86828701612bf2565b9150509250925092565b60008060008060808587031215612ce157612ce0613b4c565b5b6000612cef87828801612b42565b9450506020612d0087828801612b42565b9350506040612d1187828801612bf2565b925050606085013567ffffffffffffffff811115612d3257612d31613b47565b5b612d3e87828801612b96565b91505092959194509250565b60008060408385031215612d6157612d60613b4c565b5b6000612d6f85828601612b42565b9250506020612d8085828601612b57565b9150509250929050565b60008060408385031215612da157612da0613b4c565b5b6000612daf85828601612b42565b9250506020612dc085828601612bf2565b9150509250929050565b600060208284031215612de057612ddf613b4c565b5b6000612dee84828501612b57565b91505092915050565b600060208284031215612e0d57612e0c613b4c565b5b6000612e1b84828501612b6c565b91505092915050565b600060208284031215612e3a57612e39613b4c565b5b6000612e4884828501612b81565b91505092915050565b600060208284031215612e6757612e66613b4c565b5b600082013567ffffffffffffffff811115612e8557612e84613b47565b5b612e9184828501612bc4565b91505092915050565b600060208284031215612eb057612eaf613b4c565b5b6000612ebe84828501612bf2565b91505092915050565b6000612ed383836132f3565b60208301905092915050565b612ee881613890565b82525050565b6000612ef98261370f565b612f03818561373d565b9350612f0e836136ea565b8060005b83811015612f3f578151612f268882612ec7565b9750612f3183613730565b925050600181019050612f12565b5085935050505092915050565b612f55816138a2565b82525050565b6000612f668261371a565b612f70818561374e565b9350612f80818560208601613913565b612f8981613b51565b840191505092915050565b6000612f9f82613725565b612fa9818561375f565b9350612fb9818560208601613913565b612fc281613b51565b840191505092915050565b6000612fd882613725565b612fe28185613770565b9350612ff2818560208601613913565b80840191505092915050565b6000815461300b81613946565b6130158186613770565b94506001821660008114613030576001811461304157613074565b60ff19831686528186019350613074565b61304a856136fa565b60005b8381101561306c5781548189015260018201915060208101905061304d565b838801955050505b50505092915050565b600061308a602b8361375f565b915061309582613b62565b604082019050919050565b60006130ad60328361375f565b91506130b882613bb1565b604082019050919050565b60006130d060268361375f565b91506130db82613c00565b604082019050919050565b60006130f3601c8361375f565b91506130fe82613c4f565b602082019050919050565b600061311660248361375f565b915061312182613c78565b604082019050919050565b600061313960198361375f565b915061314482613cc7565b602082019050919050565b600061315c602c8361375f565b915061316782613cf0565b604082019050919050565b600061317f60388361375f565b915061318a82613d3f565b604082019050919050565b60006131a2602a8361375f565b91506131ad82613d8e565b604082019050919050565b60006131c560298361375f565b91506131d082613ddd565b604082019050919050565b60006131e860208361375f565b91506131f382613e2c565b602082019050919050565b600061320b602c8361375f565b915061321682613e55565b604082019050919050565b600061322e60208361375f565b915061323982613ea4565b602082019050919050565b600061325160298361375f565b915061325c82613ecd565b604082019050919050565b6000613274602f8361375f565b915061327f82613f1c565b604082019050919050565b600061329760218361375f565b91506132a282613f6b565b604082019050919050565b60006132ba60318361375f565b91506132c582613fba565b604082019050919050565b60006132dd602c8361375f565b91506132e882614009565b604082019050919050565b6132fc816138fa565b82525050565b61330b816138fa565b82525050565b600061331d8286612ffe565b91506133298285612fcd565b91506133358284612ffe565b9150819050949350505050565b60006020820190506133576000830184612edf565b92915050565b60006080820190506133726000830187612edf565b61337f6020830186612edf565b61338c6040830185613302565b818103606083015261339e8184612f5b565b905095945050505050565b600060208201905081810360008301526133c38184612eee565b905092915050565b60006020820190506133e06000830184612f4c565b92915050565b600060208201905081810360008301526134008184612f94565b905092915050565b600060208201905081810360008301526134218161307d565b9050919050565b60006020820190508181036000830152613441816130a0565b9050919050565b60006020820190508181036000830152613461816130c3565b9050919050565b60006020820190508181036000830152613481816130e6565b9050919050565b600060208201905081810360008301526134a181613109565b9050919050565b600060208201905081810360008301526134c18161312c565b9050919050565b600060208201905081810360008301526134e18161314f565b9050919050565b6000602082019050818103600083015261350181613172565b9050919050565b6000602082019050818103600083015261352181613195565b9050919050565b60006020820190508181036000830152613541816131b8565b9050919050565b60006020820190508181036000830152613561816131db565b9050919050565b60006020820190508181036000830152613581816131fe565b9050919050565b600060208201905081810360008301526135a181613221565b9050919050565b600060208201905081810360008301526135c181613244565b9050919050565b600060208201905081810360008301526135e181613267565b9050919050565b600060208201905081810360008301526136018161328a565b9050919050565b60006020820190508181036000830152613621816132ad565b9050919050565b60006020820190508181036000830152613641816132d0565b9050919050565b600060208201905061365d6000830184613302565b92915050565b600061366d61367e565b90506136798282613978565b919050565b6000604051905090565b600067ffffffffffffffff8211156136a3576136a2613b0e565b5b6136ac82613b51565b9050602081019050919050565b600067ffffffffffffffff8211156136d4576136d3613b0e565b5b6136dd82613b51565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613786826138fa565b9150613791836138fa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137c6576137c5613a23565b5b828201905092915050565b60006137dc826138fa565b91506137e7836138fa565b9250826137f7576137f6613a52565b5b828204905092915050565b600061380d826138fa565b9150613818836138fa565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561385157613850613a23565b5b828202905092915050565b6000613867826138fa565b9150613872836138fa565b92508282101561388557613884613a23565b5b828203905092915050565b600061389b826138da565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613931578082015181840152602081019050613916565b83811115613940576000848401525b50505050565b6000600282049050600182168061395e57607f821691505b6020821081141561397257613971613a81565b5b50919050565b61398182613b51565b810181811067ffffffffffffffff821117156139a05761399f613b0e565b5b80604052505050565b60006139b4826138fa565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139e7576139e6613a23565b5b600182019050919050565b60006139fd826138fa565b9150613a08836138fa565b925082613a1857613a17613a52565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61406181613890565b811461406c57600080fd5b50565b614078816138a2565b811461408357600080fd5b50565b61408f816138ae565b811461409a57600080fd5b50565b6140a6816138fa565b81146140b157600080fd5b5056fea26469706673582212200cf43a9b33355c296c0d652f7376a4312d6620b800b5203db482c20b9733560a64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e4379626572204a7572617373696300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044a55524100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d624d755138527263796d7974736f43324d767344467079644778424d4147334a745a436755706a694b4c6b432f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c806358484ccc1161010d57806395d89b41116100a0578063c87b56dd1161006f578063c87b56dd146106cf578063d5abeb011461070c578063da3ef23f14610737578063e985e9c514610760578063f2fde38b1461079d576101ee565b806395d89b4114610627578063a22cb46514610652578063b88d4fde1461067b578063c6682862146106a4576101ee565b806370a08231116100dc57806370a082311461057d578063715018a6146105ba57806377afbe03146105d15780638da5cb5b146105fc576101ee565b806358484ccc146104c15780635c975abb146104ea5780636352211e146105155780636c0360eb14610552576101ee565b80632f745c5911610185578063438b630011610154578063438b6300146103f557806344a0d68a146104325780634f6ccce71461045b57806355f804b314610498576101ee565b80632f745c59146103695780633ccfd60b146103a657806340c10f19146103b057806342842e0e146103cc576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806313faede6146102ea57806318160ddd1461031557806323b872dd14610340576101ee565b806301ffc9a7146101f357806302329a291461023057806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612df7565b6107c6565b60405161022791906133cb565b60405180910390f35b34801561023c57600080fd5b5061025760048036038101906102529190612dca565b610840565b005b34801561026557600080fd5b5061026e6108d9565b60405161027b91906133e6565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a69190612e9a565b61096b565b6040516102b89190613342565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e39190612d8a565b6109f0565b005b3480156102f657600080fd5b506102ff610b08565b60405161030c9190613648565b60405180910390f35b34801561032157600080fd5b5061032a610b0e565b6040516103379190613648565b60405180910390f35b34801561034c57600080fd5b5061036760048036038101906103629190612c74565b610b1b565b005b34801561037557600080fd5b50610390600480360381019061038b9190612d8a565b610b7b565b60405161039d9190613648565b60405180910390f35b6103ae610c20565b005b6103ca60048036038101906103c59190612d8a565b610cdc565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190612c74565b610dc9565b005b34801561040157600080fd5b5061041c60048036038101906104179190612c07565b610de9565b60405161042991906133a9565b60405180910390f35b34801561043e57600080fd5b5061045960048036038101906104549190612e9a565b610e97565b005b34801561046757600080fd5b50610482600480360381019061047d9190612e9a565b610f1d565b60405161048f9190613648565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190612e51565b610f8e565b005b3480156104cd57600080fd5b506104e860048036038101906104e39190612e9a565b611024565b005b3480156104f657600080fd5b506104ff6110aa565b60405161050c91906133cb565b60405180910390f35b34801561052157600080fd5b5061053c60048036038101906105379190612e9a565b6110bd565b6040516105499190613342565b60405180910390f35b34801561055e57600080fd5b5061056761116f565b60405161057491906133e6565b60405180910390f35b34801561058957600080fd5b506105a4600480360381019061059f9190612c07565b6111fd565b6040516105b19190613648565b60405180910390f35b3480156105c657600080fd5b506105cf6112b5565b005b3480156105dd57600080fd5b506105e661133d565b6040516105f39190613648565b60405180910390f35b34801561060857600080fd5b50610611611343565b60405161061e9190613342565b60405180910390f35b34801561063357600080fd5b5061063c61136d565b60405161064991906133e6565b60405180910390f35b34801561065e57600080fd5b5061067960048036038101906106749190612d4a565b6113ff565b005b34801561068757600080fd5b506106a2600480360381019061069d9190612cc7565b611580565b005b3480156106b057600080fd5b506106b96115e2565b6040516106c691906133e6565b60405180910390f35b3480156106db57600080fd5b506106f660048036038101906106f19190612e9a565b611670565b60405161070391906133e6565b60405180910390f35b34801561071857600080fd5b5061072161171b565b60405161072e9190613648565b60405180910390f35b34801561074357600080fd5b5061075e60048036038101906107599190612e51565b611721565b005b34801561076c57600080fd5b5061078760048036038101906107829190612c34565b6117b7565b60405161079491906133cb565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190612c07565b61184b565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083957506108388261195b565b5b9050919050565b610848611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610866611343565b73ffffffffffffffffffffffffffffffffffffffff16146108bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b390613588565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6060600080546108e890613946565b80601f016020809104026020016040519081016040528092919081815260200182805461091490613946565b80156109615780601f1061093657610100808354040283529160200191610961565b820191906000526020600020905b81548152906001019060200180831161094457829003601f168201915b5050505050905090565b600061097682611a45565b6109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac90613568565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109fb826110bd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a63906135e8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a8b611a3d565b73ffffffffffffffffffffffffffffffffffffffff161480610aba5750610ab981610ab4611a3d565b6117b7565b5b610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af0906134e8565b60405180910390fd5b610b038383611ab1565b505050565b600d5481565b6000600880549050905090565b610b2c610b26611a3d565b82611b6a565b610b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6290613608565b60405180910390fd5b610b76838383611c48565b505050565b6000610b86836111fd565b8210610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe90613408565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c28611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610c46611343565b73ffffffffffffffffffffffffffffffffffffffff1614610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9390613588565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610cda57600080fd5b565b6000610ce6610b0e565b9050601060009054906101000a900460ff1615610d0257600080fd5b60008211610d0f57600080fd5b600f54821115610d1e57600080fd5b600e548282610d2d919061377b565b1115610d3857600080fd5b610d40611343565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d8d5781600d54610d809190613802565b341015610d8c57600080fd5b5b6000600190505b828111610dc357610db0848284610dab919061377b565b611ea4565b8080610dbb906139a9565b915050610d94565b50505050565b610de483838360405180602001604052806000815250611580565b505050565b60606000610df6836111fd565b905060008167ffffffffffffffff811115610e1457610e13613b0e565b5b604051908082528060200260200182016040528015610e425781602001602082028036833780820191505090505b50905060005b82811015610e8c57610e5a8582610b7b565b828281518110610e6d57610e6c613adf565b5b6020026020010181815250508080610e84906139a9565b915050610e48565b508092505050919050565b610e9f611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610ebd611343565b73ffffffffffffffffffffffffffffffffffffffff1614610f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0a90613588565b60405180910390fd5b80600d8190555050565b6000610f27610b0e565b8210610f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5f90613628565b60405180910390fd5b60088281548110610f7c57610f7b613adf565b5b90600052602060002001549050919050565b610f96611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610fb4611343565b73ffffffffffffffffffffffffffffffffffffffff161461100a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100190613588565b60405180910390fd5b80600b9080519060200190611020929190612a1b565b5050565b61102c611a3d565b73ffffffffffffffffffffffffffffffffffffffff1661104a611343565b73ffffffffffffffffffffffffffffffffffffffff16146110a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109790613588565b60405180910390fd5b80600f8190555050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d90613528565b60405180910390fd5b80915050919050565b600b805461117c90613946565b80601f01602080910402602001604051908101604052809291908181526020018280546111a890613946565b80156111f55780601f106111ca576101008083540402835291602001916111f5565b820191906000526020600020905b8154815290600101906020018083116111d857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561126e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126590613508565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112bd611a3d565b73ffffffffffffffffffffffffffffffffffffffff166112db611343565b73ffffffffffffffffffffffffffffffffffffffff1614611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132890613588565b60405180910390fd5b61133b6000611ec2565b565b600f5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461137c90613946565b80601f01602080910402602001604051908101604052809291908181526020018280546113a890613946565b80156113f55780601f106113ca576101008083540402835291602001916113f5565b820191906000526020600020905b8154815290600101906020018083116113d857829003601f168201915b5050505050905090565b611407611a3d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146c906134a8565b60405180910390fd5b8060056000611482611a3d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661152f611a3d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161157491906133cb565b60405180910390a35050565b61159161158b611a3d565b83611b6a565b6115d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c790613608565b60405180910390fd5b6115dc84848484611f88565b50505050565b600c80546115ef90613946565b80601f016020809104026020016040519081016040528092919081815260200182805461161b90613946565b80156116685780601f1061163d57610100808354040283529160200191611668565b820191906000526020600020905b81548152906001019060200180831161164b57829003601f168201915b505050505081565b606061167b82611a45565b6116ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b1906135c8565b60405180910390fd5b60006116c4611fe4565b905060008151116116e45760405180602001604052806000815250611713565b600b6116ef84612076565b600c60405160200161170393929190613311565b6040516020818303038152906040525b915050919050565b600e5481565b611729611a3d565b73ffffffffffffffffffffffffffffffffffffffff16611747611343565b73ffffffffffffffffffffffffffffffffffffffff161461179d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179490613588565b60405180910390fd5b80600c90805190602001906117b3929190612a1b565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611853611a3d565b73ffffffffffffffffffffffffffffffffffffffff16611871611343565b73ffffffffffffffffffffffffffffffffffffffff16146118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be90613588565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192e90613448565b60405180910390fd5b61194081611ec2565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a2657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a365750611a35826121d7565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b24836110bd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b7582611a45565b611bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bab906134c8565b60405180910390fd5b6000611bbf836110bd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c2e57508373ffffffffffffffffffffffffffffffffffffffff16611c168461096b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c3f5750611c3e81856117b7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c68826110bd565b73ffffffffffffffffffffffffffffffffffffffff1614611cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb5906135a8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2590613488565b60405180910390fd5b611d39838383612241565b611d44600082611ab1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d94919061385c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611deb919061377b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611ebe828260405180602001604052806000815250612355565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f93848484611c48565b611f9f848484846123b0565b611fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd590613428565b60405180910390fd5b50505050565b6060600b8054611ff390613946565b80601f016020809104026020016040519081016040528092919081815260200182805461201f90613946565b801561206c5780601f106120415761010080835404028352916020019161206c565b820191906000526020600020905b81548152906001019060200180831161204f57829003601f168201915b5050505050905090565b606060008214156120be576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121d2565b600082905060005b600082146120f05780806120d9906139a9565b915050600a826120e991906137d1565b91506120c6565b60008167ffffffffffffffff81111561210c5761210b613b0e565b5b6040519080825280601f01601f19166020018201604052801561213e5781602001600182028036833780820191505090505b5090505b600085146121cb57600182612157919061385c565b9150600a8561216691906139f2565b6030612172919061377b565b60f81b81838151811061218857612187613adf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121c491906137d1565b9450612142565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61224c838383611956565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561228f5761228a81612547565b6122ce565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122cd576122cc8382612590565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123115761230c816126fd565b612350565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461234f5761234e82826127ce565b5b5b505050565b61235f838361284d565b61236c60008484846123b0565b6123ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a290613428565b60405180910390fd5b505050565b60006123d18473ffffffffffffffffffffffffffffffffffffffff16611943565b1561253a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123fa611a3d565b8786866040518563ffffffff1660e01b815260040161241c949392919061335d565b602060405180830381600087803b15801561243657600080fd5b505af192505050801561246757506040513d601f19601f820116820180604052508101906124649190612e24565b60015b6124ea573d8060008114612497576040519150601f19603f3d011682016040523d82523d6000602084013e61249c565b606091505b506000815114156124e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d990613428565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061253f565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161259d846111fd565b6125a7919061385c565b905060006007600084815260200190815260200160002054905081811461268c576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612711919061385c565b905060006009600084815260200190815260200160002054905060006008838154811061274157612740613adf565b5b90600052602060002001549050806008838154811061276357612762613adf565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806127b2576127b1613ab0565b5b6001900381819060005260206000200160009055905550505050565b60006127d9836111fd565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b490613548565b60405180910390fd5b6128c681611a45565b15612906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fd90613468565b60405180910390fd5b61291260008383612241565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612962919061377b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612a2790613946565b90600052602060002090601f016020900481019282612a495760008555612a90565b82601f10612a6257805160ff1916838001178555612a90565b82800160010185558215612a90579182015b82811115612a8f578251825591602001919060010190612a74565b5b509050612a9d9190612aa1565b5090565b5b80821115612aba576000816000905550600101612aa2565b5090565b6000612ad1612acc84613688565b613663565b905082815260208101848484011115612aed57612aec613b42565b5b612af8848285613904565b509392505050565b6000612b13612b0e846136b9565b613663565b905082815260208101848484011115612b2f57612b2e613b42565b5b612b3a848285613904565b509392505050565b600081359050612b5181614058565b92915050565b600081359050612b668161406f565b92915050565b600081359050612b7b81614086565b92915050565b600081519050612b9081614086565b92915050565b600082601f830112612bab57612baa613b3d565b5b8135612bbb848260208601612abe565b91505092915050565b600082601f830112612bd957612bd8613b3d565b5b8135612be9848260208601612b00565b91505092915050565b600081359050612c018161409d565b92915050565b600060208284031215612c1d57612c1c613b4c565b5b6000612c2b84828501612b42565b91505092915050565b60008060408385031215612c4b57612c4a613b4c565b5b6000612c5985828601612b42565b9250506020612c6a85828601612b42565b9150509250929050565b600080600060608486031215612c8d57612c8c613b4c565b5b6000612c9b86828701612b42565b9350506020612cac86828701612b42565b9250506040612cbd86828701612bf2565b9150509250925092565b60008060008060808587031215612ce157612ce0613b4c565b5b6000612cef87828801612b42565b9450506020612d0087828801612b42565b9350506040612d1187828801612bf2565b925050606085013567ffffffffffffffff811115612d3257612d31613b47565b5b612d3e87828801612b96565b91505092959194509250565b60008060408385031215612d6157612d60613b4c565b5b6000612d6f85828601612b42565b9250506020612d8085828601612b57565b9150509250929050565b60008060408385031215612da157612da0613b4c565b5b6000612daf85828601612b42565b9250506020612dc085828601612bf2565b9150509250929050565b600060208284031215612de057612ddf613b4c565b5b6000612dee84828501612b57565b91505092915050565b600060208284031215612e0d57612e0c613b4c565b5b6000612e1b84828501612b6c565b91505092915050565b600060208284031215612e3a57612e39613b4c565b5b6000612e4884828501612b81565b91505092915050565b600060208284031215612e6757612e66613b4c565b5b600082013567ffffffffffffffff811115612e8557612e84613b47565b5b612e9184828501612bc4565b91505092915050565b600060208284031215612eb057612eaf613b4c565b5b6000612ebe84828501612bf2565b91505092915050565b6000612ed383836132f3565b60208301905092915050565b612ee881613890565b82525050565b6000612ef98261370f565b612f03818561373d565b9350612f0e836136ea565b8060005b83811015612f3f578151612f268882612ec7565b9750612f3183613730565b925050600181019050612f12565b5085935050505092915050565b612f55816138a2565b82525050565b6000612f668261371a565b612f70818561374e565b9350612f80818560208601613913565b612f8981613b51565b840191505092915050565b6000612f9f82613725565b612fa9818561375f565b9350612fb9818560208601613913565b612fc281613b51565b840191505092915050565b6000612fd882613725565b612fe28185613770565b9350612ff2818560208601613913565b80840191505092915050565b6000815461300b81613946565b6130158186613770565b94506001821660008114613030576001811461304157613074565b60ff19831686528186019350613074565b61304a856136fa565b60005b8381101561306c5781548189015260018201915060208101905061304d565b838801955050505b50505092915050565b600061308a602b8361375f565b915061309582613b62565b604082019050919050565b60006130ad60328361375f565b91506130b882613bb1565b604082019050919050565b60006130d060268361375f565b91506130db82613c00565b604082019050919050565b60006130f3601c8361375f565b91506130fe82613c4f565b602082019050919050565b600061311660248361375f565b915061312182613c78565b604082019050919050565b600061313960198361375f565b915061314482613cc7565b602082019050919050565b600061315c602c8361375f565b915061316782613cf0565b604082019050919050565b600061317f60388361375f565b915061318a82613d3f565b604082019050919050565b60006131a2602a8361375f565b91506131ad82613d8e565b604082019050919050565b60006131c560298361375f565b91506131d082613ddd565b604082019050919050565b60006131e860208361375f565b91506131f382613e2c565b602082019050919050565b600061320b602c8361375f565b915061321682613e55565b604082019050919050565b600061322e60208361375f565b915061323982613ea4565b602082019050919050565b600061325160298361375f565b915061325c82613ecd565b604082019050919050565b6000613274602f8361375f565b915061327f82613f1c565b604082019050919050565b600061329760218361375f565b91506132a282613f6b565b604082019050919050565b60006132ba60318361375f565b91506132c582613fba565b604082019050919050565b60006132dd602c8361375f565b91506132e882614009565b604082019050919050565b6132fc816138fa565b82525050565b61330b816138fa565b82525050565b600061331d8286612ffe565b91506133298285612fcd565b91506133358284612ffe565b9150819050949350505050565b60006020820190506133576000830184612edf565b92915050565b60006080820190506133726000830187612edf565b61337f6020830186612edf565b61338c6040830185613302565b818103606083015261339e8184612f5b565b905095945050505050565b600060208201905081810360008301526133c38184612eee565b905092915050565b60006020820190506133e06000830184612f4c565b92915050565b600060208201905081810360008301526134008184612f94565b905092915050565b600060208201905081810360008301526134218161307d565b9050919050565b60006020820190508181036000830152613441816130a0565b9050919050565b60006020820190508181036000830152613461816130c3565b9050919050565b60006020820190508181036000830152613481816130e6565b9050919050565b600060208201905081810360008301526134a181613109565b9050919050565b600060208201905081810360008301526134c18161312c565b9050919050565b600060208201905081810360008301526134e18161314f565b9050919050565b6000602082019050818103600083015261350181613172565b9050919050565b6000602082019050818103600083015261352181613195565b9050919050565b60006020820190508181036000830152613541816131b8565b9050919050565b60006020820190508181036000830152613561816131db565b9050919050565b60006020820190508181036000830152613581816131fe565b9050919050565b600060208201905081810360008301526135a181613221565b9050919050565b600060208201905081810360008301526135c181613244565b9050919050565b600060208201905081810360008301526135e181613267565b9050919050565b600060208201905081810360008301526136018161328a565b9050919050565b60006020820190508181036000830152613621816132ad565b9050919050565b60006020820190508181036000830152613641816132d0565b9050919050565b600060208201905061365d6000830184613302565b92915050565b600061366d61367e565b90506136798282613978565b919050565b6000604051905090565b600067ffffffffffffffff8211156136a3576136a2613b0e565b5b6136ac82613b51565b9050602081019050919050565b600067ffffffffffffffff8211156136d4576136d3613b0e565b5b6136dd82613b51565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613786826138fa565b9150613791836138fa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137c6576137c5613a23565b5b828201905092915050565b60006137dc826138fa565b91506137e7836138fa565b9250826137f7576137f6613a52565b5b828204905092915050565b600061380d826138fa565b9150613818836138fa565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561385157613850613a23565b5b828202905092915050565b6000613867826138fa565b9150613872836138fa565b92508282101561388557613884613a23565b5b828203905092915050565b600061389b826138da565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613931578082015181840152602081019050613916565b83811115613940576000848401525b50505050565b6000600282049050600182168061395e57607f821691505b6020821081141561397257613971613a81565b5b50919050565b61398182613b51565b810181811067ffffffffffffffff821117156139a05761399f613b0e565b5b80604052505050565b60006139b4826138fa565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139e7576139e6613a23565b5b600182019050919050565b60006139fd826138fa565b9150613a08836138fa565b925082613a1857613a17613a52565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61406181613890565b811461406c57600080fd5b50565b614078816138a2565b811461408357600080fd5b50565b61408f816138ae565b811461409a57600080fd5b50565b6140a6816138fa565b81146140b157600080fd5b5056fea26469706673582212200cf43a9b33355c296c0d652f7376a4312d6620b800b5203db482c20b9733560a64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e4379626572204a7572617373696300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044a55524100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d624d755138527263796d7974736f43324d767344467079644778424d4147334a745a436755706a694b4c6b432f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Cyber Jurassic
Arg [1] : _symbol (string): JURA
Arg [2] : _initBaseURI (string): https://gateway.pinata.cloud/ipfs/QmbMuQ8RrcymytsoC2MvsDFpydGxBMAG3JtZCgUpjiKLkC/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [4] : 4379626572204a75726173736963000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4a55524100000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [8] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [9] : 732f516d624d755138527263796d7974736f43324d767344467079644778424d
Arg [10] : 4147334a745a436755706a694b4c6b432f000000000000000000000000000000


Deployed Bytecode Sourcemap

43200:2557:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36977:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45561:71;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24869:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26428:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25951:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43369:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37617:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27318:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37285:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45636:114;;;:::i;:::-;;43910:445;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27728:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44359:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45133:78;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37807:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45337:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45215:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43488:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24563:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43297:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24293:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9092:94;;;;;;;;;;;;;:::i;:::-;;43447:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8441:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25038:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26721:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27984:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43325:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44697:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43408:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45437:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27087:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9341:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36977:224;37079:4;37118:35;37103:50;;;:11;:50;;;;:90;;;;37157:36;37181:11;37157:23;:36::i;:::-;37103:90;37096:97;;36977:224;;;:::o;45561:71::-;8672:12;:10;:12::i;:::-;8661:23;;:7;:5;:7::i;:::-;:23;;;8653:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45622:6:::1;45615;;:13;;;;;;;;;;;;;;;;;;45561:71:::0;:::o;24869:100::-;24923:13;24956:5;24949:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24869:100;:::o;26428:221::-;26504:7;26532:16;26540:7;26532;:16::i;:::-;26524:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26617:15;:24;26633:7;26617:24;;;;;;;;;;;;;;;;;;;;;26610:31;;26428:221;;;:::o;25951:411::-;26032:13;26048:23;26063:7;26048:14;:23::i;:::-;26032:39;;26096:5;26090:11;;:2;:11;;;;26082:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;26190:5;26174:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;26199:37;26216:5;26223:12;:10;:12::i;:::-;26199:16;:37::i;:::-;26174:62;26152:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;26333:21;26342:2;26346:7;26333:8;:21::i;:::-;26021:341;25951:411;;:::o;43369:32::-;;;;:::o;37617:113::-;37678:7;37705:10;:17;;;;37698:24;;37617:113;:::o;27318:339::-;27513:41;27532:12;:10;:12::i;:::-;27546:7;27513:18;:41::i;:::-;27505:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27621:28;27631:4;27637:2;27641:7;27621:9;:28::i;:::-;27318:339;;;:::o;37285:256::-;37382:7;37418:23;37435:5;37418:16;:23::i;:::-;37410:5;:31;37402:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;37507:12;:19;37520:5;37507:19;;;;;;;;;;;;;;;:26;37527:5;37507:26;;;;;;;;;;;;37500:33;;37285:256;;;;:::o;45636:114::-;8672:12;:10;:12::i;:::-;8661:23;;:7;:5;:7::i;:::-;:23;;;8653:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45706:10:::1;45698:24;;:47;45723:21;45698:47;;;;;;;;;;;;;;;;;;;;;;;45690:56;;;::::0;::::1;;45636:114::o:0;43910:445::-;43982:14;43999:13;:11;:13::i;:::-;43982:30;;44029:6;;;;;;;;;;;44028:7;44019:17;;;;;;44067:1;44052:12;:16;44043:26;;;;;;44101:14;;44085:12;:30;;44076:40;;;;;;44157:9;;44141:12;44132:6;:21;;;;:::i;:::-;:34;;44123:44;;;;;;44192:7;:5;:7::i;:::-;44178:21;;:10;:21;;;44174:88;;44241:12;44234:4;;:19;;;;:::i;:::-;44221:9;:32;;44212:42;;;;;;44174:88;44273:9;44283:1;44273:11;;44268:84;44291:12;44286:1;:17;44268:84;;44321:23;44331:3;44342:1;44335:6;:8;;;;:::i;:::-;44321:9;:23::i;:::-;44305:3;;;;;:::i;:::-;;;;44268:84;;;;43975:380;43910:445;;:::o;27728:185::-;27866:39;27883:4;27889:2;27893:7;27866:39;;;;;;;;;;;;:16;:39::i;:::-;27728:185;;;:::o;44359:334::-;44424:16;44450:23;44476:17;44486:6;44476:9;:17::i;:::-;44450:43;;44500:25;44543:15;44528:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44500:59;;44571:9;44566:102;44584:15;44582:1;:17;44566:102;;;44631:29;44651:6;44658:1;44631:19;:29::i;:::-;44617:8;44626:1;44617:11;;;;;;;;:::i;:::-;;;;;;;:43;;;;;44601:3;;;;;:::i;:::-;;;;44566:102;;;;44681:8;44674:15;;;;44359:334;;;:::o;45133:78::-;8672:12;:10;:12::i;:::-;8661:23;;:7;:5;:7::i;:::-;:23;;;8653:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45199:8:::1;45194:4;:13;;;;45133:78:::0;:::o;37807:233::-;37882:7;37918:30;:28;:30::i;:::-;37910:5;:38;37902:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;38015:10;38026:5;38015:17;;;;;;;;:::i;:::-;;;;;;;;;;38008:24;;37807:233;;;:::o;45337:96::-;8672:12;:10;:12::i;:::-;8661:23;;:7;:5;:7::i;:::-;:23;;;8653:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45418:11:::1;45410:7;:19;;;;;;;;;;;;:::i;:::-;;45337:96:::0;:::o;45215:118::-;8672:12;:10;:12::i;:::-;8661:23;;:7;:5;:7::i;:::-;:23;;;8653:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45311:18:::1;45296:14;:33;;;;45215:118:::0;:::o;43488:26::-;;;;;;;;;;;;;:::o;24563:239::-;24635:7;24655:13;24671:7;:16;24679:7;24671:16;;;;;;;;;;;;;;;;;;;;;24655:32;;24723:1;24706:19;;:5;:19;;;;24698:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24789:5;24782:12;;;24563:239;;;:::o;43297:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24293:208::-;24365:7;24410:1;24393:19;;:5;:19;;;;24385:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;24477:9;:16;24487:5;24477:16;;;;;;;;;;;;;;;;24470:23;;24293:208;;;:::o;9092:94::-;8672:12;:10;:12::i;:::-;8661:23;;:7;:5;:7::i;:::-;:23;;;8653:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9157:21:::1;9175:1;9157:9;:21::i;:::-;9092:94::o:0;43447:34::-;;;;:::o;8441:87::-;8487:7;8514:6;;;;;;;;;;;8507:13;;8441:87;:::o;25038:104::-;25094:13;25127:7;25120:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25038:104;:::o;26721:295::-;26836:12;:10;:12::i;:::-;26824:24;;:8;:24;;;;26816:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;26936:8;26891:18;:32;26910:12;:10;:12::i;:::-;26891:32;;;;;;;;;;;;;;;:42;26924:8;26891:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;26989:8;26960:48;;26975:12;:10;:12::i;:::-;26960:48;;;26999:8;26960:48;;;;;;:::i;:::-;;;;;;;;26721:295;;:::o;27984:328::-;28159:41;28178:12;:10;:12::i;:::-;28192:7;28159:18;:41::i;:::-;28151:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28265:39;28279:4;28285:2;28289:7;28298:5;28265:13;:39::i;:::-;27984:328;;;;:::o;43325:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44697:416::-;44798:13;44840:17;44849:7;44840;:17::i;:::-;44825:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;44927:28;44958:10;:8;:10::i;:::-;44927:41;;45019:1;44994:14;44987:29;:33;:118;;;;;;;;;;;;;;;;;45053:7;45061:18;:7;:16;:18::i;:::-;45080:13;45036:58;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44987:118;44975:130;;;44697:416;;;:::o;43408:32::-;;;;:::o;45437:120::-;8672:12;:10;:12::i;:::-;8661:23;;:7;:5;:7::i;:::-;:23;;;8653:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45536:17:::1;45522:13;:31;;;;;;;;;;;;:::i;:::-;;45437:120:::0;:::o;27087:164::-;27184:4;27208:18;:25;27227:5;27208:25;;;;;;;;;;;;;;;:35;27234:8;27208:35;;;;;;;;;;;;;;;;;;;;;;;;;27201:42;;27087:164;;;;:::o;9341:192::-;8672:12;:10;:12::i;:::-;8661:23;;:7;:5;:7::i;:::-;:23;;;8653:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9450:1:::1;9430:22;;:8;:22;;;;9422:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;9506:19;9516:8;9506:9;:19::i;:::-;9341:192:::0;:::o;13542:387::-;13602:4;13810:12;13877:7;13865:20;13857:28;;13920:1;13913:4;:8;13906:15;;;13542:387;;;:::o;35914:126::-;;;;:::o;23924:305::-;24026:4;24078:25;24063:40;;;:11;:40;;;;:105;;;;24135:33;24120:48;;;:11;:48;;;;24063:105;:158;;;;24185:36;24209:11;24185:23;:36::i;:::-;24063:158;24043:178;;23924:305;;;:::o;7232:98::-;7285:7;7312:10;7305:17;;7232:98;:::o;29822:127::-;29887:4;29939:1;29911:30;;:7;:16;29919:7;29911:16;;;;;;;;;;;;;;;;;;;;;:30;;;;29904:37;;29822:127;;;:::o;33804:174::-;33906:2;33879:15;:24;33895:7;33879:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33962:7;33958:2;33924:46;;33933:23;33948:7;33933:14;:23::i;:::-;33924:46;;;;;;;;;;;;33804:174;;:::o;30116:348::-;30209:4;30234:16;30242:7;30234;:16::i;:::-;30226:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30310:13;30326:23;30341:7;30326:14;:23::i;:::-;30310:39;;30379:5;30368:16;;:7;:16;;;:51;;;;30412:7;30388:31;;:20;30400:7;30388:11;:20::i;:::-;:31;;;30368:51;:87;;;;30423:32;30440:5;30447:7;30423:16;:32::i;:::-;30368:87;30360:96;;;30116:348;;;;:::o;33108:578::-;33267:4;33240:31;;:23;33255:7;33240:14;:23::i;:::-;:31;;;33232:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;33350:1;33336:16;;:2;:16;;;;33328:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;33406:39;33427:4;33433:2;33437:7;33406:20;:39::i;:::-;33510:29;33527:1;33531:7;33510:8;:29::i;:::-;33571:1;33552:9;:15;33562:4;33552:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;33600:1;33583:9;:13;33593:2;33583:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33631:2;33612:7;:16;33620:7;33612:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33670:7;33666:2;33651:27;;33660:4;33651:27;;;;;;;;;;;;33108:578;;;:::o;30806:110::-;30882:26;30892:2;30896:7;30882:26;;;;;;;;;;;;:9;:26::i;:::-;30806:110;;:::o;9541:173::-;9597:16;9616:6;;;;;;;;;;;9597:25;;9642:8;9633:6;;:17;;;;;;;;;;;;;;;;;;9697:8;9666:40;;9687:8;9666:40;;;;;;;;;;;;9586:128;9541:173;:::o;29194:315::-;29351:28;29361:4;29367:2;29371:7;29351:9;:28::i;:::-;29398:48;29421:4;29427:2;29431:7;29440:5;29398:22;:48::i;:::-;29390:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;29194:315;;;;:::o;43797:101::-;43858:13;43887:7;43880:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43797:101;:::o;11009:723::-;11065:13;11295:1;11286:5;:10;11282:53;;;11313:10;;;;;;;;;;;;;;;;;;;;;11282:53;11345:12;11360:5;11345:20;;11376:14;11401:78;11416:1;11408:4;:9;11401:78;;11434:8;;;;;:::i;:::-;;;;11465:2;11457:10;;;;;:::i;:::-;;;11401:78;;;11489:19;11521:6;11511:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11489:39;;11539:154;11555:1;11546:5;:10;11539:154;;11583:1;11573:11;;;;;:::i;:::-;;;11650:2;11642:5;:10;;;;:::i;:::-;11629:2;:24;;;;:::i;:::-;11616:39;;11599:6;11606;11599:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;11679:2;11670:11;;;;;:::i;:::-;;;11539:154;;;11717:6;11703:21;;;;;11009:723;;;;:::o;10534:157::-;10619:4;10658:25;10643:40;;;:11;:40;;;;10636:47;;10534:157;;;:::o;38653:589::-;38797:45;38824:4;38830:2;38834:7;38797:26;:45::i;:::-;38875:1;38859:18;;:4;:18;;;38855:187;;;38894:40;38926:7;38894:31;:40::i;:::-;38855:187;;;38964:2;38956:10;;:4;:10;;;38952:90;;38983:47;39016:4;39022:7;38983:32;:47::i;:::-;38952:90;38855:187;39070:1;39056:16;;:2;:16;;;39052:183;;;39089:45;39126:7;39089:36;:45::i;:::-;39052:183;;;39162:4;39156:10;;:2;:10;;;39152:83;;39183:40;39211:2;39215:7;39183:27;:40::i;:::-;39152:83;39052:183;38653:589;;;:::o;31143:321::-;31273:18;31279:2;31283:7;31273:5;:18::i;:::-;31324:54;31355:1;31359:2;31363:7;31372:5;31324:22;:54::i;:::-;31302:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;31143:321;;;:::o;34543:799::-;34698:4;34719:15;:2;:13;;;:15::i;:::-;34715:620;;;34771:2;34755:36;;;34792:12;:10;:12::i;:::-;34806:4;34812:7;34821:5;34755:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34751:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35014:1;34997:6;:13;:18;34993:272;;;35040:60;;;;;;;;;;:::i;:::-;;;;;;;;34993:272;35215:6;35209:13;35200:6;35196:2;35192:15;35185:38;34751:529;34888:41;;;34878:51;;;:6;:51;;;;34871:58;;;;;34715:620;35319:4;35312:11;;34543:799;;;;;;;:::o;39965:164::-;40069:10;:17;;;;40042:15;:24;40058:7;40042:24;;;;;;;;;;;:44;;;;40097:10;40113:7;40097:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39965:164;:::o;40756:988::-;41022:22;41072:1;41047:22;41064:4;41047:16;:22::i;:::-;:26;;;;:::i;:::-;41022:51;;41084:18;41105:17;:26;41123:7;41105:26;;;;;;;;;;;;41084:47;;41252:14;41238:10;:28;41234:328;;41283:19;41305:12;:18;41318:4;41305:18;;;;;;;;;;;;;;;:34;41324:14;41305:34;;;;;;;;;;;;41283:56;;41389:11;41356:12;:18;41369:4;41356:18;;;;;;;;;;;;;;;:30;41375:10;41356:30;;;;;;;;;;;:44;;;;41506:10;41473:17;:30;41491:11;41473:30;;;;;;;;;;;:43;;;;41268:294;41234:328;41658:17;:26;41676:7;41658:26;;;;;;;;;;;41651:33;;;41702:12;:18;41715:4;41702:18;;;;;;;;;;;;;;;:34;41721:14;41702:34;;;;;;;;;;;41695:41;;;40837:907;;40756:988;;:::o;42039:1079::-;42292:22;42337:1;42317:10;:17;;;;:21;;;;:::i;:::-;42292:46;;42349:18;42370:15;:24;42386:7;42370:24;;;;;;;;;;;;42349:45;;42721:19;42743:10;42754:14;42743:26;;;;;;;;:::i;:::-;;;;;;;;;;42721:48;;42807:11;42782:10;42793;42782:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;42918:10;42887:15;:28;42903:11;42887:28;;;;;;;;;;;:41;;;;43059:15;:24;43075:7;43059:24;;;;;;;;;;;43052:31;;;43094:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42110:1008;;;42039:1079;:::o;39543:221::-;39628:14;39645:20;39662:2;39645:16;:20::i;:::-;39628:37;;39703:7;39676:12;:16;39689:2;39676:16;;;;;;;;;;;;;;;:24;39693:6;39676:24;;;;;;;;;;;:34;;;;39750:6;39721:17;:26;39739:7;39721:26;;;;;;;;;;;:35;;;;39617:147;39543:221;;:::o;31800:382::-;31894:1;31880:16;;:2;:16;;;;31872:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;31953:16;31961:7;31953;:16::i;:::-;31952:17;31944:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;32015:45;32044:1;32048:2;32052:7;32015:20;:45::i;:::-;32090:1;32073:9;:13;32083:2;32073:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32121:2;32102:7;:16;32110:7;32102:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32166:7;32162:2;32141:33;;32158:1;32141:33;;;;;;;;;;;;31800:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;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:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:179::-;7556:10;7577:46;7619:3;7611:6;7577:46;:::i;:::-;7655:4;7650:3;7646:14;7632:28;;7487:179;;;;:::o;7672:118::-;7759:24;7777:5;7759:24;:::i;:::-;7754:3;7747:37;7672:118;;:::o;7826:732::-;7945:3;7974:54;8022:5;7974:54;:::i;:::-;8044:86;8123:6;8118:3;8044:86;:::i;:::-;8037:93;;8154:56;8204:5;8154:56;:::i;:::-;8233:7;8264:1;8249:284;8274:6;8271:1;8268:13;8249:284;;;8350:6;8344:13;8377:63;8436:3;8421:13;8377:63;:::i;:::-;8370:70;;8463:60;8516:6;8463:60;:::i;:::-;8453:70;;8309:224;8296:1;8293;8289:9;8284:14;;8249:284;;;8253:14;8549:3;8542:10;;7950:608;;;7826:732;;;;:::o;8564:109::-;8645:21;8660:5;8645:21;:::i;:::-;8640:3;8633:34;8564:109;;:::o;8679:360::-;8765:3;8793:38;8825:5;8793:38;:::i;:::-;8847:70;8910:6;8905:3;8847:70;:::i;:::-;8840:77;;8926:52;8971:6;8966:3;8959:4;8952:5;8948:16;8926:52;:::i;:::-;9003:29;9025:6;9003:29;:::i;:::-;8998:3;8994:39;8987:46;;8769:270;8679:360;;;;:::o;9045:364::-;9133:3;9161:39;9194:5;9161:39;:::i;:::-;9216:71;9280:6;9275:3;9216:71;:::i;:::-;9209:78;;9296:52;9341:6;9336:3;9329:4;9322:5;9318:16;9296:52;:::i;:::-;9373:29;9395:6;9373:29;:::i;:::-;9368:3;9364:39;9357:46;;9137:272;9045:364;;;;:::o;9415:377::-;9521:3;9549:39;9582:5;9549:39;:::i;:::-;9604:89;9686:6;9681:3;9604:89;:::i;:::-;9597:96;;9702:52;9747:6;9742:3;9735:4;9728:5;9724:16;9702:52;:::i;:::-;9779:6;9774:3;9770:16;9763:23;;9525:267;9415:377;;;;:::o;9822:845::-;9925:3;9962:5;9956:12;9991:36;10017:9;9991:36;:::i;:::-;10043:89;10125:6;10120:3;10043:89;:::i;:::-;10036:96;;10163:1;10152:9;10148:17;10179:1;10174:137;;;;10325:1;10320:341;;;;10141:520;;10174:137;10258:4;10254:9;10243;10239:25;10234:3;10227:38;10294:6;10289:3;10285:16;10278:23;;10174:137;;10320:341;10387:38;10419:5;10387:38;:::i;:::-;10447:1;10461:154;10475:6;10472:1;10469:13;10461:154;;;10549:7;10543:14;10539:1;10534:3;10530:11;10523:35;10599:1;10590:7;10586:15;10575:26;;10497:4;10494:1;10490:12;10485:17;;10461:154;;;10644:6;10639:3;10635:16;10628:23;;10327:334;;10141:520;;9929:738;;9822:845;;;;:::o;10673:366::-;10815:3;10836:67;10900:2;10895:3;10836:67;:::i;:::-;10829:74;;10912:93;11001:3;10912:93;:::i;:::-;11030:2;11025:3;11021:12;11014:19;;10673:366;;;:::o;11045:::-;11187:3;11208:67;11272:2;11267:3;11208:67;:::i;:::-;11201:74;;11284:93;11373:3;11284:93;:::i;:::-;11402:2;11397:3;11393:12;11386:19;;11045:366;;;:::o;11417:::-;11559:3;11580:67;11644:2;11639:3;11580:67;:::i;:::-;11573:74;;11656:93;11745:3;11656:93;:::i;:::-;11774:2;11769:3;11765:12;11758:19;;11417:366;;;:::o;11789:::-;11931:3;11952:67;12016:2;12011:3;11952:67;:::i;:::-;11945:74;;12028:93;12117:3;12028:93;:::i;:::-;12146:2;12141:3;12137:12;12130:19;;11789:366;;;:::o;12161:::-;12303:3;12324:67;12388:2;12383:3;12324:67;:::i;:::-;12317:74;;12400:93;12489:3;12400:93;:::i;:::-;12518:2;12513:3;12509:12;12502:19;;12161:366;;;:::o;12533:::-;12675:3;12696:67;12760:2;12755:3;12696:67;:::i;:::-;12689:74;;12772:93;12861:3;12772:93;:::i;:::-;12890:2;12885:3;12881:12;12874:19;;12533:366;;;:::o;12905:::-;13047:3;13068:67;13132:2;13127:3;13068:67;:::i;:::-;13061:74;;13144:93;13233:3;13144:93;:::i;:::-;13262:2;13257:3;13253:12;13246:19;;12905:366;;;:::o;13277:::-;13419:3;13440:67;13504:2;13499:3;13440:67;:::i;:::-;13433:74;;13516:93;13605:3;13516:93;:::i;:::-;13634:2;13629:3;13625:12;13618:19;;13277:366;;;:::o;13649:::-;13791:3;13812:67;13876:2;13871:3;13812:67;:::i;:::-;13805:74;;13888:93;13977:3;13888:93;:::i;:::-;14006:2;14001:3;13997:12;13990:19;;13649:366;;;:::o;14021:::-;14163:3;14184:67;14248:2;14243:3;14184:67;:::i;:::-;14177:74;;14260:93;14349:3;14260:93;:::i;:::-;14378:2;14373:3;14369:12;14362:19;;14021:366;;;:::o;14393:::-;14535:3;14556:67;14620:2;14615:3;14556:67;:::i;:::-;14549:74;;14632:93;14721:3;14632:93;:::i;:::-;14750:2;14745:3;14741:12;14734:19;;14393:366;;;:::o;14765:::-;14907:3;14928:67;14992:2;14987:3;14928:67;:::i;:::-;14921:74;;15004:93;15093:3;15004:93;:::i;:::-;15122:2;15117:3;15113:12;15106:19;;14765:366;;;:::o;15137:::-;15279:3;15300:67;15364:2;15359:3;15300:67;:::i;:::-;15293:74;;15376:93;15465:3;15376:93;:::i;:::-;15494:2;15489:3;15485:12;15478:19;;15137:366;;;:::o;15509:::-;15651:3;15672:67;15736:2;15731:3;15672:67;:::i;:::-;15665:74;;15748:93;15837:3;15748:93;:::i;:::-;15866:2;15861:3;15857:12;15850:19;;15509:366;;;:::o;15881:::-;16023:3;16044:67;16108:2;16103:3;16044:67;:::i;:::-;16037:74;;16120:93;16209:3;16120:93;:::i;:::-;16238:2;16233:3;16229:12;16222:19;;15881:366;;;:::o;16253:::-;16395:3;16416:67;16480:2;16475:3;16416:67;:::i;:::-;16409:74;;16492:93;16581:3;16492:93;:::i;:::-;16610:2;16605:3;16601:12;16594:19;;16253:366;;;:::o;16625:::-;16767:3;16788:67;16852:2;16847:3;16788:67;:::i;:::-;16781:74;;16864:93;16953:3;16864:93;:::i;:::-;16982:2;16977:3;16973:12;16966:19;;16625:366;;;:::o;16997:::-;17139:3;17160:67;17224:2;17219:3;17160:67;:::i;:::-;17153:74;;17236:93;17325:3;17236:93;:::i;:::-;17354:2;17349:3;17345:12;17338:19;;16997:366;;;:::o;17369:108::-;17446:24;17464:5;17446:24;:::i;:::-;17441:3;17434:37;17369:108;;:::o;17483:118::-;17570:24;17588:5;17570:24;:::i;:::-;17565:3;17558:37;17483:118;;:::o;17607:583::-;17829:3;17851:92;17939:3;17930:6;17851:92;:::i;:::-;17844:99;;17960:95;18051:3;18042:6;17960:95;:::i;:::-;17953:102;;18072:92;18160:3;18151:6;18072:92;:::i;:::-;18065:99;;18181:3;18174:10;;17607:583;;;;;;:::o;18196:222::-;18289:4;18327:2;18316:9;18312:18;18304:26;;18340:71;18408:1;18397:9;18393:17;18384:6;18340:71;:::i;:::-;18196:222;;;;:::o;18424:640::-;18619:4;18657:3;18646:9;18642:19;18634:27;;18671:71;18739:1;18728:9;18724:17;18715:6;18671:71;:::i;:::-;18752:72;18820:2;18809:9;18805:18;18796:6;18752:72;:::i;:::-;18834;18902:2;18891:9;18887:18;18878:6;18834:72;:::i;:::-;18953:9;18947:4;18943:20;18938:2;18927:9;18923:18;18916:48;18981:76;19052:4;19043:6;18981:76;:::i;:::-;18973:84;;18424:640;;;;;;;:::o;19070:373::-;19213:4;19251:2;19240:9;19236:18;19228:26;;19300:9;19294:4;19290:20;19286:1;19275:9;19271:17;19264:47;19328:108;19431:4;19422:6;19328:108;:::i;:::-;19320:116;;19070:373;;;;:::o;19449:210::-;19536:4;19574:2;19563:9;19559:18;19551:26;;19587:65;19649:1;19638:9;19634:17;19625:6;19587:65;:::i;:::-;19449:210;;;;:::o;19665:313::-;19778:4;19816:2;19805:9;19801:18;19793:26;;19865:9;19859:4;19855:20;19851:1;19840:9;19836:17;19829:47;19893:78;19966:4;19957:6;19893:78;:::i;:::-;19885:86;;19665:313;;;;:::o;19984:419::-;20150:4;20188:2;20177:9;20173:18;20165:26;;20237:9;20231:4;20227:20;20223:1;20212:9;20208:17;20201:47;20265:131;20391:4;20265:131;:::i;:::-;20257:139;;19984:419;;;:::o;20409:::-;20575:4;20613:2;20602:9;20598:18;20590:26;;20662:9;20656:4;20652:20;20648:1;20637:9;20633:17;20626:47;20690:131;20816:4;20690:131;:::i;:::-;20682:139;;20409:419;;;:::o;20834:::-;21000:4;21038:2;21027:9;21023:18;21015:26;;21087:9;21081:4;21077:20;21073:1;21062:9;21058:17;21051:47;21115:131;21241:4;21115:131;:::i;:::-;21107:139;;20834:419;;;:::o;21259:::-;21425:4;21463:2;21452:9;21448:18;21440:26;;21512:9;21506:4;21502:20;21498:1;21487:9;21483:17;21476:47;21540:131;21666:4;21540:131;:::i;:::-;21532:139;;21259:419;;;:::o;21684:::-;21850:4;21888:2;21877:9;21873:18;21865:26;;21937:9;21931:4;21927:20;21923:1;21912:9;21908:17;21901:47;21965:131;22091:4;21965:131;:::i;:::-;21957:139;;21684:419;;;:::o;22109:::-;22275:4;22313:2;22302:9;22298:18;22290:26;;22362:9;22356:4;22352:20;22348:1;22337:9;22333:17;22326:47;22390:131;22516:4;22390:131;:::i;:::-;22382:139;;22109:419;;;:::o;22534:::-;22700:4;22738:2;22727:9;22723:18;22715:26;;22787:9;22781:4;22777:20;22773:1;22762:9;22758:17;22751:47;22815:131;22941:4;22815:131;:::i;:::-;22807:139;;22534:419;;;:::o;22959:::-;23125:4;23163:2;23152:9;23148:18;23140:26;;23212:9;23206:4;23202:20;23198:1;23187:9;23183:17;23176:47;23240:131;23366:4;23240:131;:::i;:::-;23232:139;;22959:419;;;:::o;23384:::-;23550:4;23588:2;23577:9;23573:18;23565:26;;23637:9;23631:4;23627:20;23623:1;23612:9;23608:17;23601:47;23665:131;23791:4;23665:131;:::i;:::-;23657:139;;23384:419;;;:::o;23809:::-;23975:4;24013:2;24002:9;23998:18;23990:26;;24062:9;24056:4;24052:20;24048:1;24037:9;24033:17;24026:47;24090:131;24216:4;24090:131;:::i;:::-;24082:139;;23809:419;;;:::o;24234:::-;24400:4;24438:2;24427:9;24423:18;24415:26;;24487:9;24481:4;24477:20;24473:1;24462:9;24458:17;24451:47;24515:131;24641:4;24515:131;:::i;:::-;24507:139;;24234:419;;;:::o;24659:::-;24825:4;24863:2;24852:9;24848:18;24840:26;;24912:9;24906:4;24902:20;24898:1;24887:9;24883:17;24876:47;24940:131;25066:4;24940:131;:::i;:::-;24932:139;;24659:419;;;:::o;25084:::-;25250:4;25288:2;25277:9;25273:18;25265:26;;25337:9;25331:4;25327:20;25323:1;25312:9;25308:17;25301:47;25365:131;25491:4;25365:131;:::i;:::-;25357:139;;25084:419;;;:::o;25509:::-;25675:4;25713:2;25702:9;25698:18;25690:26;;25762:9;25756:4;25752:20;25748:1;25737:9;25733:17;25726:47;25790:131;25916:4;25790:131;:::i;:::-;25782:139;;25509:419;;;:::o;25934:::-;26100:4;26138:2;26127:9;26123:18;26115:26;;26187:9;26181:4;26177:20;26173:1;26162:9;26158:17;26151:47;26215:131;26341:4;26215:131;:::i;:::-;26207:139;;25934:419;;;:::o;26359:::-;26525:4;26563:2;26552:9;26548:18;26540:26;;26612:9;26606:4;26602:20;26598:1;26587:9;26583:17;26576:47;26640:131;26766:4;26640:131;:::i;:::-;26632:139;;26359:419;;;:::o;26784:::-;26950:4;26988:2;26977:9;26973:18;26965:26;;27037:9;27031:4;27027:20;27023:1;27012:9;27008:17;27001:47;27065:131;27191:4;27065:131;:::i;:::-;27057:139;;26784:419;;;:::o;27209:::-;27375:4;27413:2;27402:9;27398:18;27390:26;;27462:9;27456:4;27452:20;27448:1;27437:9;27433:17;27426:47;27490:131;27616:4;27490:131;:::i;:::-;27482:139;;27209:419;;;:::o;27634:222::-;27727:4;27765:2;27754:9;27750:18;27742:26;;27778:71;27846:1;27835:9;27831:17;27822:6;27778:71;:::i;:::-;27634:222;;;;:::o;27862:129::-;27896:6;27923:20;;:::i;:::-;27913:30;;27952:33;27980:4;27972:6;27952:33;:::i;:::-;27862:129;;;:::o;27997:75::-;28030:6;28063:2;28057:9;28047:19;;27997:75;:::o;28078:307::-;28139:4;28229:18;28221:6;28218:30;28215:56;;;28251:18;;:::i;:::-;28215:56;28289:29;28311:6;28289:29;:::i;:::-;28281:37;;28373:4;28367;28363:15;28355:23;;28078:307;;;:::o;28391:308::-;28453:4;28543:18;28535:6;28532:30;28529:56;;;28565:18;;:::i;:::-;28529:56;28603:29;28625:6;28603:29;:::i;:::-;28595:37;;28687:4;28681;28677:15;28669:23;;28391:308;;;:::o;28705:132::-;28772:4;28795:3;28787:11;;28825:4;28820:3;28816:14;28808:22;;28705:132;;;:::o;28843:141::-;28892:4;28915:3;28907:11;;28938:3;28935:1;28928:14;28972:4;28969:1;28959:18;28951:26;;28843:141;;;:::o;28990:114::-;29057:6;29091:5;29085:12;29075:22;;28990:114;;;:::o;29110:98::-;29161:6;29195:5;29189:12;29179:22;;29110:98;;;:::o;29214:99::-;29266:6;29300:5;29294:12;29284:22;;29214:99;;;:::o;29319:113::-;29389:4;29421;29416:3;29412:14;29404:22;;29319:113;;;:::o;29438:184::-;29537:11;29571:6;29566:3;29559:19;29611:4;29606:3;29602:14;29587:29;;29438:184;;;;:::o;29628:168::-;29711:11;29745:6;29740:3;29733:19;29785:4;29780:3;29776:14;29761:29;;29628:168;;;;:::o;29802:169::-;29886:11;29920:6;29915:3;29908:19;29960:4;29955:3;29951:14;29936:29;;29802:169;;;;:::o;29977:148::-;30079:11;30116:3;30101:18;;29977:148;;;;:::o;30131:305::-;30171:3;30190:20;30208:1;30190:20;:::i;:::-;30185:25;;30224:20;30242:1;30224:20;:::i;:::-;30219:25;;30378:1;30310:66;30306:74;30303:1;30300:81;30297:107;;;30384:18;;:::i;:::-;30297:107;30428:1;30425;30421:9;30414:16;;30131:305;;;;:::o;30442:185::-;30482:1;30499:20;30517:1;30499:20;:::i;:::-;30494:25;;30533:20;30551:1;30533:20;:::i;:::-;30528:25;;30572:1;30562:35;;30577:18;;:::i;:::-;30562:35;30619:1;30616;30612:9;30607:14;;30442:185;;;;:::o;30633:348::-;30673:7;30696:20;30714:1;30696:20;:::i;:::-;30691:25;;30730:20;30748:1;30730:20;:::i;:::-;30725:25;;30918:1;30850:66;30846:74;30843:1;30840:81;30835:1;30828:9;30821:17;30817:105;30814:131;;;30925:18;;:::i;:::-;30814:131;30973:1;30970;30966:9;30955:20;;30633:348;;;;:::o;30987:191::-;31027:4;31047:20;31065:1;31047:20;:::i;:::-;31042:25;;31081:20;31099:1;31081:20;:::i;:::-;31076:25;;31120:1;31117;31114:8;31111:34;;;31125:18;;:::i;:::-;31111:34;31170:1;31167;31163:9;31155:17;;30987:191;;;;:::o;31184:96::-;31221:7;31250:24;31268:5;31250:24;:::i;:::-;31239:35;;31184:96;;;:::o;31286:90::-;31320:7;31363:5;31356:13;31349:21;31338:32;;31286:90;;;:::o;31382:149::-;31418:7;31458:66;31451:5;31447:78;31436:89;;31382:149;;;:::o;31537:126::-;31574:7;31614:42;31607:5;31603:54;31592:65;;31537:126;;;:::o;31669:77::-;31706:7;31735:5;31724:16;;31669:77;;;:::o;31752:154::-;31836:6;31831:3;31826;31813:30;31898:1;31889:6;31884:3;31880:16;31873:27;31752:154;;;:::o;31912:307::-;31980:1;31990:113;32004:6;32001:1;31998:13;31990:113;;;32089:1;32084:3;32080:11;32074:18;32070:1;32065:3;32061:11;32054:39;32026:2;32023:1;32019:10;32014:15;;31990:113;;;32121:6;32118:1;32115:13;32112:101;;;32201:1;32192:6;32187:3;32183:16;32176:27;32112:101;31961:258;31912:307;;;:::o;32225:320::-;32269:6;32306:1;32300:4;32296:12;32286:22;;32353:1;32347:4;32343:12;32374:18;32364:81;;32430:4;32422:6;32418:17;32408:27;;32364:81;32492:2;32484:6;32481:14;32461:18;32458:38;32455:84;;;32511:18;;:::i;:::-;32455:84;32276:269;32225:320;;;:::o;32551:281::-;32634:27;32656:4;32634:27;:::i;:::-;32626:6;32622:40;32764:6;32752:10;32749:22;32728:18;32716:10;32713:34;32710:62;32707:88;;;32775:18;;:::i;:::-;32707:88;32815:10;32811:2;32804:22;32594:238;32551:281;;:::o;32838:233::-;32877:3;32900:24;32918:5;32900:24;:::i;:::-;32891:33;;32946:66;32939:5;32936:77;32933:103;;;33016:18;;:::i;:::-;32933:103;33063:1;33056:5;33052:13;33045:20;;32838:233;;;:::o;33077:176::-;33109:1;33126:20;33144:1;33126:20;:::i;:::-;33121:25;;33160:20;33178:1;33160:20;:::i;:::-;33155:25;;33199:1;33189:35;;33204:18;;:::i;:::-;33189:35;33245:1;33242;33238:9;33233:14;;33077:176;;;;:::o;33259:180::-;33307:77;33304:1;33297:88;33404:4;33401:1;33394:15;33428:4;33425:1;33418:15;33445:180;33493:77;33490:1;33483:88;33590:4;33587:1;33580:15;33614:4;33611:1;33604:15;33631:180;33679:77;33676:1;33669:88;33776:4;33773:1;33766:15;33800:4;33797:1;33790:15;33817:180;33865:77;33862:1;33855:88;33962:4;33959:1;33952:15;33986:4;33983:1;33976:15;34003:180;34051:77;34048:1;34041:88;34148:4;34145:1;34138:15;34172:4;34169:1;34162:15;34189:180;34237:77;34234:1;34227:88;34334:4;34331:1;34324:15;34358:4;34355:1;34348:15;34375:117;34484:1;34481;34474:12;34498:117;34607:1;34604;34597:12;34621:117;34730:1;34727;34720:12;34744:117;34853:1;34850;34843:12;34867:102;34908:6;34959:2;34955:7;34950:2;34943:5;34939:14;34935:28;34925:38;;34867:102;;;:::o;34975:230::-;35115:34;35111:1;35103:6;35099:14;35092:58;35184:13;35179:2;35171:6;35167:15;35160:38;34975:230;:::o;35211:237::-;35351:34;35347:1;35339:6;35335:14;35328:58;35420:20;35415:2;35407:6;35403:15;35396:45;35211:237;:::o;35454:225::-;35594:34;35590:1;35582:6;35578:14;35571:58;35663:8;35658:2;35650:6;35646:15;35639:33;35454:225;:::o;35685:178::-;35825:30;35821:1;35813:6;35809:14;35802:54;35685:178;:::o;35869:223::-;36009:34;36005:1;35997:6;35993:14;35986:58;36078:6;36073:2;36065:6;36061:15;36054:31;35869:223;:::o;36098:175::-;36238:27;36234:1;36226:6;36222:14;36215:51;36098:175;:::o;36279:231::-;36419:34;36415:1;36407:6;36403:14;36396:58;36488:14;36483:2;36475:6;36471:15;36464:39;36279:231;:::o;36516:243::-;36656:34;36652:1;36644:6;36640:14;36633:58;36725:26;36720:2;36712:6;36708:15;36701:51;36516:243;:::o;36765:229::-;36905:34;36901:1;36893:6;36889:14;36882:58;36974:12;36969:2;36961:6;36957:15;36950:37;36765:229;:::o;37000:228::-;37140:34;37136:1;37128:6;37124:14;37117:58;37209:11;37204:2;37196:6;37192:15;37185:36;37000:228;:::o;37234:182::-;37374:34;37370:1;37362:6;37358:14;37351:58;37234:182;:::o;37422:231::-;37562:34;37558:1;37550:6;37546:14;37539:58;37631:14;37626:2;37618:6;37614:15;37607:39;37422:231;:::o;37659:182::-;37799:34;37795:1;37787:6;37783:14;37776:58;37659:182;:::o;37847:228::-;37987:34;37983:1;37975:6;37971:14;37964:58;38056:11;38051:2;38043:6;38039:15;38032:36;37847:228;:::o;38081:234::-;38221:34;38217:1;38209:6;38205:14;38198:58;38290:17;38285:2;38277:6;38273:15;38266:42;38081:234;:::o;38321:220::-;38461:34;38457:1;38449:6;38445:14;38438:58;38530:3;38525:2;38517:6;38513:15;38506:28;38321:220;:::o;38547:236::-;38687:34;38683:1;38675:6;38671:14;38664:58;38756:19;38751:2;38743:6;38739:15;38732:44;38547:236;:::o;38789:231::-;38929:34;38925:1;38917:6;38913:14;38906:58;38998:14;38993:2;38985:6;38981:15;38974:39;38789:231;:::o;39026:122::-;39099:24;39117:5;39099:24;:::i;:::-;39092:5;39089:35;39079:63;;39138:1;39135;39128:12;39079:63;39026:122;:::o;39154:116::-;39224:21;39239:5;39224:21;:::i;:::-;39217:5;39214:32;39204:60;;39260:1;39257;39250:12;39204:60;39154:116;:::o;39276:120::-;39348:23;39365:5;39348:23;:::i;:::-;39341:5;39338:34;39328:62;;39386:1;39383;39376:12;39328:62;39276:120;:::o;39402:122::-;39475:24;39493:5;39475:24;:::i;:::-;39468:5;39465:35;39455:63;;39514:1;39511;39504:12;39455:63;39402:122;:::o

Swarm Source

ipfs://0cf43a9b33355c296c0d652f7376a4312d6620b800b5203db482c20b9733560a
Loading...
Loading
Loading...
Loading
[ 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.