ETH Price: $3,313.77 (-2.86%)
Gas: 14 Gwei

Token

KIA Ordinance (KAO)
 

Overview

Max Total Supply

988 KAO

Holders

903

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
agogojoe.eth
Balance
1 KAO
0x13546cdb4fea70936acacd8e8a07b2117af765ca
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:
KAO

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// Sources flattened with hardhat v2.6.0 https://hardhat.org

// File @openzeppelin/contracts/utils/introspection/[email protected]

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


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/token/ERC721/extensions/[email protected]


pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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/utils/[email protected]


pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/utils/[email protected]


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/introspection/[email protected]


pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


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(to).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/[email protected]


pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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 @openzeppelin/contracts/access/[email protected]


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

pragma solidity ^0.8.0;


contract KAO is ERC721Enumerable, Ownable {
  using Strings for uint256;

  address public _vault;
  bool public _active = false;
  string public _baseTokenURI;
  uint256 public _mintLimit;
  uint256 public _price;
  uint256 public _supply = 0;

  string public _crateType;
  string[] public crateTypes;

  constructor() ERC721("KIA Ordinance", "KAO"){}

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

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

  function setCrateType(string memory crateType) public onlyOwner {
    _crateType = crateType;
  }

  function setActive(bool active) public onlyOwner {
     _active = active;
  }

  function setMintLimit(uint256 mintLimit) public onlyOwner {
    _mintLimit = mintLimit;
  }

  function setPrice(uint256 price) public onlyOwner {
    _price = price;
  }

  function setSupply(uint256 newSupply) public onlyOwner {
    uint256 supply = totalSupply();

    require( supply <= newSupply, "New Supply is less than total supply.");

    _supply = newSupply;
  }

  function setVault(address vault) public onlyOwner {
    _vault = vault;
  }

  function getCrateType(uint256 tokenId) public view returns (string memory){
    return crateTypes[tokenId];
  }

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

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


  function mint(uint256 _amount) public payable {
    uint256 supply = totalSupply();

    require( _active, "Sale is not active.");
    require( _amount <= _mintLimit, "Provided amount exceeds mint limit.");
    require( msg.value >= _price * _amount, "Insufficient ether provided.");
    require( supply + _amount <= _supply, "Supply exceeded with provided amount.");

    for(uint256 i; i < _amount; i++){
      _safeMint( msg.sender, supply + i );
      crateTypes.push( _crateType );
    }
  }

  function devMint(uint256 _amount, address _to) public onlyOwner {
    uint256 supply = totalSupply();

    for(uint256 i; i < _amount; i++){
      _safeMint( _to, supply + i );
      crateTypes.push( _crateType );
    }
  }

  function withdraw() public payable onlyOwner {
    uint256 _payout = address(this).balance;
    require(payable(_vault).send(_payout));
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_crateType","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_vault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"crateTypes","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getCrateType","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getTokensByWallet","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","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":[],"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":"bool","name":"active","type":"bool"}],"name":"setActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"crateType","type":"string"}],"name":"setCrateType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintLimit","type":"uint256"}],"name":"setMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"vault","type":"address"}],"name":"setVault","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":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526000600b60146101000a81548160ff0219169083151502179055506000600f553480156200003157600080fd5b506040518060400160405280600d81526020017f4b4941204f7264696e616e6365000000000000000000000000000000000000008152506040518060400160405280600381526020017f4b414f00000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000b6929190620001c6565b508060019080519060200190620000cf929190620001c6565b505050620000f2620000e6620000f860201b60201c565b6200010060201b60201c565b620002db565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001d49062000276565b90600052602060002090601f016020900481019282620001f8576000855562000244565b82601f106200021357805160ff191683800117855562000244565b8280016001018555821562000244579182015b828111156200024357825182559160200191906001019062000226565b5b50905062000253919062000257565b5090565b5b808211156200027257600081600090555060010162000258565b5090565b600060028204905060018216806200028f57607f821691505b60208210811415620002a657620002a5620002ac565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614aac80620002eb6000396000f3fe6080604052600436106102305760003560e01c80636817031b1161012e578063b88d4fde116100ab578063e985e9c51161006f578063e985e9c514610843578063f1cf640914610880578063f2fde38b146108ab578063f38fa52d146108d4578063fd243da3146108fd57610230565b8063b88d4fde14610738578063c87b56dd14610761578063cfc86f7b1461079e578063d3b90b30146107c9578063d544b7771461080657610230565b806395d89b41116100f257806395d89b41146106765780639e6a1d7d146106a1578063a0712d68146106ca578063a22cb465146106e6578063acec338a1461070f57610230565b80636817031b146105a557806370a08231146105ce578063715018a61461060b5780638da5cb5b1461062257806391b7f5ed1461064d57610230565b80632d1a12f6116101bc5780634c2fea53116101805780634c2fea531461049a5780634d615d23146104d75780634f6ccce71461050257806355f804b31461053f5780636352211e1461056857610230565b80632d1a12f6146103d85780632f745c59146104015780633b4c4b251461043e5780633ccfd60b1461046757806342842e0e1461047157610230565b80630e223102116102035780630e22310214610303578063159457901461032e57806318160ddd14610359578063235b6ea11461038457806323b872dd146103af57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613616565b610928565b6040516102699190613c35565b60405180910390f35b34801561027e57600080fd5b506102876109a2565b6040516102949190613c50565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf91906136a9565b610a34565b6040516102d19190613bac565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc91906135b1565b610ab9565b005b34801561030f57600080fd5b50610318610bd1565b6040516103259190613c50565b60405180910390f35b34801561033a57600080fd5b50610343610c5f565b6040516103509190613f52565b60405180910390f35b34801561036557600080fd5b5061036e610c65565b60405161037b9190613f52565b60405180910390f35b34801561039057600080fd5b50610399610c72565b6040516103a69190613f52565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d191906134ab565b610c78565b005b3480156103e457600080fd5b506103ff60048036038101906103fa91906136d2565b610cd8565b005b34801561040d57600080fd5b50610428600480360381019061042391906135b1565b610dda565b6040516104359190613f52565b60405180910390f35b34801561044a57600080fd5b50610465600480360381019061046091906136a9565b610e7f565b005b61046f610f55565b005b34801561047d57600080fd5b50610498600480360381019061049391906134ab565b611039565b005b3480156104a657600080fd5b506104c160048036038101906104bc91906136a9565b611059565b6040516104ce9190613c50565b60405180910390f35b3480156104e357600080fd5b506104ec61112f565b6040516104f99190613c35565b60405180910390f35b34801561050e57600080fd5b50610529600480360381019061052491906136a9565b611142565b6040516105369190613f52565b60405180910390f35b34801561054b57600080fd5b5061056660048036038101906105619190613668565b6111d9565b005b34801561057457600080fd5b5061058f600480360381019061058a91906136a9565b61126f565b60405161059c9190613bac565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c79190613446565b611321565b005b3480156105da57600080fd5b506105f560048036038101906105f09190613446565b6113e1565b6040516106029190613f52565b60405180910390f35b34801561061757600080fd5b50610620611499565b005b34801561062e57600080fd5b50610637611521565b6040516106449190613bac565b60405180910390f35b34801561065957600080fd5b50610674600480360381019061066f91906136a9565b61154b565b005b34801561068257600080fd5b5061068b6115d1565b6040516106989190613c50565b60405180910390f35b3480156106ad57600080fd5b506106c860048036038101906106c391906136a9565b611663565b005b6106e460048036038101906106df91906136a9565b6116e9565b005b3480156106f257600080fd5b5061070d60048036038101906107089190613575565b6118a2565b005b34801561071b57600080fd5b50610736600480360381019061073191906135ed565b611a23565b005b34801561074457600080fd5b5061075f600480360381019061075a91906134fa565b611abc565b005b34801561076d57600080fd5b50610788600480360381019061078391906136a9565b611b1e565b6040516107959190613c50565b60405180910390f35b3480156107aa57600080fd5b506107b3611bc5565b6040516107c09190613c50565b60405180910390f35b3480156107d557600080fd5b506107f060048036038101906107eb9190613446565b611c53565b6040516107fd9190613c13565b60405180910390f35b34801561081257600080fd5b5061082d600480360381019061082891906136a9565b611d4d565b60405161083a9190613c50565b60405180910390f35b34801561084f57600080fd5b5061086a6004803603810190610865919061346f565b611df9565b6040516108779190613c35565b60405180910390f35b34801561088c57600080fd5b50610895611e8d565b6040516108a29190613f52565b60405180910390f35b3480156108b757600080fd5b506108d260048036038101906108cd9190613446565b611e93565b005b3480156108e057600080fd5b506108fb60048036038101906108f69190613668565b611f8b565b005b34801561090957600080fd5b50610912612021565b60405161091f9190613bac565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099b575061099a82612047565b5b9050919050565b6060600080546109b19061423b565b80601f01602080910402602001604051908101604052809291908181526020018280546109dd9061423b565b8015610a2a5780601f106109ff57610100808354040283529160200191610a2a565b820191906000526020600020905b815481529060010190602001808311610a0d57829003601f168201915b5050505050905090565b6000610a3f82612129565b610a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7590613e12565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ac48261126f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2c90613eb2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b54612195565b73ffffffffffffffffffffffffffffffffffffffff161480610b835750610b8281610b7d612195565b611df9565b5b610bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb990613d52565b60405180910390fd5b610bcc838361219d565b505050565b60108054610bde9061423b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0a9061423b565b8015610c575780601f10610c2c57610100808354040283529160200191610c57565b820191906000526020600020905b815481529060010190602001808311610c3a57829003601f168201915b505050505081565b600f5481565b6000600880549050905090565b600e5481565b610c89610c83612195565b82612256565b610cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbf90613ef2565b60405180910390fd5b610cd3838383612334565b505050565b610ce0612195565b73ffffffffffffffffffffffffffffffffffffffff16610cfe611521565b73ffffffffffffffffffffffffffffffffffffffff1614610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b90613e32565b60405180910390fd5b6000610d5e610c65565b905060005b83811015610dd457610d80838284610d7b9190614070565b612590565b6011601090806001815401808255809150506001900390600052602060002001600090919091909150908054610db59061423b565b610dc09291906131dd565b508080610dcc9061429e565b915050610d63565b50505050565b6000610de5836113e1565b8210610e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1d90613c72565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610e87612195565b73ffffffffffffffffffffffffffffffffffffffff16610ea5611521565b73ffffffffffffffffffffffffffffffffffffffff1614610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef290613e32565b60405180910390fd5b6000610f05610c65565b905081811115610f4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4190613df2565b60405180910390fd5b81600f819055505050565b610f5d612195565b73ffffffffffffffffffffffffffffffffffffffff16610f7b611521565b73ffffffffffffffffffffffffffffffffffffffff1614610fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc890613e32565b60405180910390fd5b6000479050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061103657600080fd5b50565b61105483838360405180602001604052806000815250611abc565b505050565b606060118281548110611095577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200180546110aa9061423b565b80601f01602080910402602001604051908101604052809291908181526020018280546110d69061423b565b80156111235780601f106110f857610100808354040283529160200191611123565b820191906000526020600020905b81548152906001019060200180831161110657829003601f168201915b50505050509050919050565b600b60149054906101000a900460ff1681565b600061114c610c65565b821061118d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118490613f12565b60405180910390fd5b600882815481106111c7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6111e1612195565b73ffffffffffffffffffffffffffffffffffffffff166111ff611521565b73ffffffffffffffffffffffffffffffffffffffff1614611255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124c90613e32565b60405180910390fd5b80600c908051906020019061126b92919061326a565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130f90613d92565b60405180910390fd5b80915050919050565b611329612195565b73ffffffffffffffffffffffffffffffffffffffff16611347611521565b73ffffffffffffffffffffffffffffffffffffffff161461139d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139490613e32565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611452576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144990613d72565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114a1612195565b73ffffffffffffffffffffffffffffffffffffffff166114bf611521565b73ffffffffffffffffffffffffffffffffffffffff1614611515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150c90613e32565b60405180910390fd5b61151f60006125ae565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611553612195565b73ffffffffffffffffffffffffffffffffffffffff16611571611521565b73ffffffffffffffffffffffffffffffffffffffff16146115c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115be90613e32565b60405180910390fd5b80600e8190555050565b6060600180546115e09061423b565b80601f016020809104026020016040519081016040528092919081815260200182805461160c9061423b565b80156116595780601f1061162e57610100808354040283529160200191611659565b820191906000526020600020905b81548152906001019060200180831161163c57829003601f168201915b5050505050905090565b61166b612195565b73ffffffffffffffffffffffffffffffffffffffff16611689611521565b73ffffffffffffffffffffffffffffffffffffffff16146116df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d690613e32565b60405180910390fd5b80600d8190555050565b60006116f3610c65565b9050600b60149054906101000a900460ff16611744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173b90613e92565b60405180910390fd5b600d54821115611789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178090613f32565b60405180910390fd5b81600e5461179791906140f7565b3410156117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090613db2565b60405180910390fd5b600f5482826117e89190614070565b1115611829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182090613ed2565b60405180910390fd5b60005b8281101561189d576118493382846118449190614070565b612590565b601160109080600181540180825580915050600190039060005260206000200160009091909190915090805461187e9061423b565b6118899291906131dd565b5080806118959061429e565b91505061182c565b505050565b6118aa612195565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190f90613d12565b60405180910390fd5b8060056000611925612195565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119d2612195565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a179190613c35565b60405180910390a35050565b611a2b612195565b73ffffffffffffffffffffffffffffffffffffffff16611a49611521565b73ffffffffffffffffffffffffffffffffffffffff1614611a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9690613e32565b60405180910390fd5b80600b60146101000a81548160ff02191690831515021790555050565b611acd611ac7612195565b83612256565b611b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0390613ef2565b60405180910390fd5b611b1884848484612674565b50505050565b6060611b2982612129565b611b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5f90613e72565b60405180910390fd5b6000611b726126d0565b90506000815111611b925760405180602001604052806000815250611bbd565b80611b9c84612762565b604051602001611bad929190613b88565b6040516020818303038152906040525b915050919050565b600c8054611bd29061423b565b80601f0160208091040260200160405190810160405280929190818152602001828054611bfe9061423b565b8015611c4b5780601f10611c2057610100808354040283529160200191611c4b565b820191906000526020600020905b815481529060010190602001808311611c2e57829003601f168201915b505050505081565b60606000611c60836113e1565b905060008167ffffffffffffffff811115611ca4577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611cd25781602001602082028036833780820191505090505b50905060005b82811015611d4257611cea8582610dda565b828281518110611d23577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080611d3a9061429e565b915050611cd8565b508092505050919050565b60118181548110611d5d57600080fd5b906000526020600020016000915090508054611d789061423b565b80601f0160208091040260200160405190810160405280929190818152602001828054611da49061423b565b8015611df15780601f10611dc657610100808354040283529160200191611df1565b820191906000526020600020905b815481529060010190602001808311611dd457829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d5481565b611e9b612195565b73ffffffffffffffffffffffffffffffffffffffff16611eb9611521565b73ffffffffffffffffffffffffffffffffffffffff1614611f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0690613e32565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7690613cb2565b60405180910390fd5b611f88816125ae565b50565b611f93612195565b73ffffffffffffffffffffffffffffffffffffffff16611fb1611521565b73ffffffffffffffffffffffffffffffffffffffff1614612007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffe90613e32565b60405180910390fd5b806010908051906020019061201d92919061326a565b5050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061211257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061212257506121218261290f565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122108361126f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061226182612129565b6122a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229790613d32565b60405180910390fd5b60006122ab8361126f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061231a57508373ffffffffffffffffffffffffffffffffffffffff1661230284610a34565b73ffffffffffffffffffffffffffffffffffffffff16145b8061232b575061232a8185611df9565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166123548261126f565b73ffffffffffffffffffffffffffffffffffffffff16146123aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a190613e52565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561241a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241190613cf2565b60405180910390fd5b612425838383612979565b61243060008261219d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124809190614151565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124d79190614070565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6125aa828260405180602001604052806000815250612a8d565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61267f848484612334565b61268b84848484612ae8565b6126ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c190613c92565b60405180910390fd5b50505050565b6060600c80546126df9061423b565b80601f016020809104026020016040519081016040528092919081815260200182805461270b9061423b565b80156127585780601f1061272d57610100808354040283529160200191612758565b820191906000526020600020905b81548152906001019060200180831161273b57829003601f168201915b5050505050905090565b606060008214156127aa576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061290a565b600082905060005b600082146127dc5780806127c59061429e565b915050600a826127d591906140c6565b91506127b2565b60008167ffffffffffffffff81111561281e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156128505781602001600182028036833780820191505090505b5090505b60008514612903576001826128699190614151565b9150600a8561287891906142e7565b60306128849190614070565b60f81b8183815181106128c0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128fc91906140c6565b9450612854565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612984838383612c7f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129c7576129c281612c84565b612a06565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612a0557612a048382612ccd565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a4957612a4481612e3a565b612a88565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612a8757612a868282612f7d565b5b5b505050565b612a978383612ffc565b612aa46000848484612ae8565b612ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ada90613c92565b60405180910390fd5b505050565b6000612b098473ffffffffffffffffffffffffffffffffffffffff166131ca565b15612c72578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b32612195565b8786866040518563ffffffff1660e01b8152600401612b549493929190613bc7565b602060405180830381600087803b158015612b6e57600080fd5b505af1925050508015612b9f57506040513d601f19601f82011682018060405250810190612b9c919061363f565b60015b612c22573d8060008114612bcf576040519150601f19603f3d011682016040523d82523d6000602084013e612bd4565b606091505b50600081511415612c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1190613c92565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c77565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612cda846113e1565b612ce49190614151565b9050600060076000848152602001908152602001600020549050818114612dc9576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612e4e9190614151565b9050600060096000848152602001908152602001600020549050600060088381548110612ea4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612eec577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612f61577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612f88836113e1565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561306c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306390613dd2565b60405180910390fd5b61307581612129565b156130b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ac90613cd2565b60405180910390fd5b6130c160008383612979565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131119190614070565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546131e99061423b565b90600052602060002090601f01602090048101928261320b5760008555613259565b82601f1061321c5780548555613259565b8280016001018555821561325957600052602060002091601f016020900482015b8281111561325857825482559160010191906001019061323d565b5b50905061326691906132f0565b5090565b8280546132769061423b565b90600052602060002090601f01602090048101928261329857600085556132df565b82601f106132b157805160ff19168380011785556132df565b828001600101855582156132df579182015b828111156132de5782518255916020019190600101906132c3565b5b5090506132ec91906132f0565b5090565b5b808211156133095760008160009055506001016132f1565b5090565b600061332061331b84613f92565b613f6d565b90508281526020810184848401111561333857600080fd5b6133438482856141f9565b509392505050565b600061335e61335984613fc3565b613f6d565b90508281526020810184848401111561337657600080fd5b6133818482856141f9565b509392505050565b60008135905061339881614a1a565b92915050565b6000813590506133ad81614a31565b92915050565b6000813590506133c281614a48565b92915050565b6000815190506133d781614a48565b92915050565b600082601f8301126133ee57600080fd5b81356133fe84826020860161330d565b91505092915050565b600082601f83011261341857600080fd5b813561342884826020860161334b565b91505092915050565b60008135905061344081614a5f565b92915050565b60006020828403121561345857600080fd5b600061346684828501613389565b91505092915050565b6000806040838503121561348257600080fd5b600061349085828601613389565b92505060206134a185828601613389565b9150509250929050565b6000806000606084860312156134c057600080fd5b60006134ce86828701613389565b93505060206134df86828701613389565b92505060406134f086828701613431565b9150509250925092565b6000806000806080858703121561351057600080fd5b600061351e87828801613389565b945050602061352f87828801613389565b935050604061354087828801613431565b925050606085013567ffffffffffffffff81111561355d57600080fd5b613569878288016133dd565b91505092959194509250565b6000806040838503121561358857600080fd5b600061359685828601613389565b92505060206135a78582860161339e565b9150509250929050565b600080604083850312156135c457600080fd5b60006135d285828601613389565b92505060206135e385828601613431565b9150509250929050565b6000602082840312156135ff57600080fd5b600061360d8482850161339e565b91505092915050565b60006020828403121561362857600080fd5b6000613636848285016133b3565b91505092915050565b60006020828403121561365157600080fd5b600061365f848285016133c8565b91505092915050565b60006020828403121561367a57600080fd5b600082013567ffffffffffffffff81111561369457600080fd5b6136a084828501613407565b91505092915050565b6000602082840312156136bb57600080fd5b60006136c984828501613431565b91505092915050565b600080604083850312156136e557600080fd5b60006136f385828601613431565b925050602061370485828601613389565b9150509250929050565b600061371a8383613b6a565b60208301905092915050565b61372f81614185565b82525050565b600061374082614004565b61374a8185614032565b935061375583613ff4565b8060005b8381101561378657815161376d888261370e565b975061377883614025565b925050600181019050613759565b5085935050505092915050565b61379c81614197565b82525050565b60006137ad8261400f565b6137b78185614043565b93506137c7818560208601614208565b6137d0816143d4565b840191505092915050565b60006137e68261401a565b6137f08185614054565b9350613800818560208601614208565b613809816143d4565b840191505092915050565b600061381f8261401a565b6138298185614065565b9350613839818560208601614208565b80840191505092915050565b6000613852602b83614054565b915061385d826143e5565b604082019050919050565b6000613875603283614054565b915061388082614434565b604082019050919050565b6000613898602683614054565b91506138a382614483565b604082019050919050565b60006138bb601c83614054565b91506138c6826144d2565b602082019050919050565b60006138de602483614054565b91506138e9826144fb565b604082019050919050565b6000613901601983614054565b915061390c8261454a565b602082019050919050565b6000613924602c83614054565b915061392f82614573565b604082019050919050565b6000613947603883614054565b9150613952826145c2565b604082019050919050565b600061396a602a83614054565b915061397582614611565b604082019050919050565b600061398d602983614054565b915061399882614660565b604082019050919050565b60006139b0601c83614054565b91506139bb826146af565b602082019050919050565b60006139d3602083614054565b91506139de826146d8565b602082019050919050565b60006139f6602583614054565b9150613a0182614701565b604082019050919050565b6000613a19602c83614054565b9150613a2482614750565b604082019050919050565b6000613a3c602083614054565b9150613a478261479f565b602082019050919050565b6000613a5f602983614054565b9150613a6a826147c8565b604082019050919050565b6000613a82602f83614054565b9150613a8d82614817565b604082019050919050565b6000613aa5601383614054565b9150613ab082614866565b602082019050919050565b6000613ac8602183614054565b9150613ad38261488f565b604082019050919050565b6000613aeb602583614054565b9150613af6826148de565b604082019050919050565b6000613b0e603183614054565b9150613b198261492d565b604082019050919050565b6000613b31602c83614054565b9150613b3c8261497c565b604082019050919050565b6000613b54602383614054565b9150613b5f826149cb565b604082019050919050565b613b73816141ef565b82525050565b613b82816141ef565b82525050565b6000613b948285613814565b9150613ba08284613814565b91508190509392505050565b6000602082019050613bc16000830184613726565b92915050565b6000608082019050613bdc6000830187613726565b613be96020830186613726565b613bf66040830185613b79565b8181036060830152613c0881846137a2565b905095945050505050565b60006020820190508181036000830152613c2d8184613735565b905092915050565b6000602082019050613c4a6000830184613793565b92915050565b60006020820190508181036000830152613c6a81846137db565b905092915050565b60006020820190508181036000830152613c8b81613845565b9050919050565b60006020820190508181036000830152613cab81613868565b9050919050565b60006020820190508181036000830152613ccb8161388b565b9050919050565b60006020820190508181036000830152613ceb816138ae565b9050919050565b60006020820190508181036000830152613d0b816138d1565b9050919050565b60006020820190508181036000830152613d2b816138f4565b9050919050565b60006020820190508181036000830152613d4b81613917565b9050919050565b60006020820190508181036000830152613d6b8161393a565b9050919050565b60006020820190508181036000830152613d8b8161395d565b9050919050565b60006020820190508181036000830152613dab81613980565b9050919050565b60006020820190508181036000830152613dcb816139a3565b9050919050565b60006020820190508181036000830152613deb816139c6565b9050919050565b60006020820190508181036000830152613e0b816139e9565b9050919050565b60006020820190508181036000830152613e2b81613a0c565b9050919050565b60006020820190508181036000830152613e4b81613a2f565b9050919050565b60006020820190508181036000830152613e6b81613a52565b9050919050565b60006020820190508181036000830152613e8b81613a75565b9050919050565b60006020820190508181036000830152613eab81613a98565b9050919050565b60006020820190508181036000830152613ecb81613abb565b9050919050565b60006020820190508181036000830152613eeb81613ade565b9050919050565b60006020820190508181036000830152613f0b81613b01565b9050919050565b60006020820190508181036000830152613f2b81613b24565b9050919050565b60006020820190508181036000830152613f4b81613b47565b9050919050565b6000602082019050613f676000830184613b79565b92915050565b6000613f77613f88565b9050613f83828261426d565b919050565b6000604051905090565b600067ffffffffffffffff821115613fad57613fac6143a5565b5b613fb6826143d4565b9050602081019050919050565b600067ffffffffffffffff821115613fde57613fdd6143a5565b5b613fe7826143d4565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061407b826141ef565b9150614086836141ef565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140bb576140ba614318565b5b828201905092915050565b60006140d1826141ef565b91506140dc836141ef565b9250826140ec576140eb614347565b5b828204905092915050565b6000614102826141ef565b915061410d836141ef565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561414657614145614318565b5b828202905092915050565b600061415c826141ef565b9150614167836141ef565b92508282101561417a57614179614318565b5b828203905092915050565b6000614190826141cf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561422657808201518184015260208101905061420b565b83811115614235576000848401525b50505050565b6000600282049050600182168061425357607f821691505b6020821081141561426757614266614376565b5b50919050565b614276826143d4565b810181811067ffffffffffffffff82111715614295576142946143a5565b5b80604052505050565b60006142a9826141ef565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142dc576142db614318565b5b600182019050919050565b60006142f2826141ef565b91506142fd836141ef565b92508261430d5761430c614347565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742065746865722070726f76696465642e00000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4e657720537570706c79206973206c657373207468616e20746f74616c20737560008201527f70706c792e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f537570706c7920657863656564656420776974682070726f766964656420616d60008201527f6f756e742e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f50726f766964656420616d6f756e742065786365656473206d696e74206c696d60008201527f69742e0000000000000000000000000000000000000000000000000000000000602082015250565b614a2381614185565b8114614a2e57600080fd5b50565b614a3a81614197565b8114614a4557600080fd5b50565b614a51816141a3565b8114614a5c57600080fd5b50565b614a68816141ef565b8114614a7357600080fd5b5056fea26469706673582212208e2dfaa7bb3d170e8c30f598e10e30d4b1eecb342d576c80a14770579f30892064736f6c63430008040033

Deployed Bytecode

0x6080604052600436106102305760003560e01c80636817031b1161012e578063b88d4fde116100ab578063e985e9c51161006f578063e985e9c514610843578063f1cf640914610880578063f2fde38b146108ab578063f38fa52d146108d4578063fd243da3146108fd57610230565b8063b88d4fde14610738578063c87b56dd14610761578063cfc86f7b1461079e578063d3b90b30146107c9578063d544b7771461080657610230565b806395d89b41116100f257806395d89b41146106765780639e6a1d7d146106a1578063a0712d68146106ca578063a22cb465146106e6578063acec338a1461070f57610230565b80636817031b146105a557806370a08231146105ce578063715018a61461060b5780638da5cb5b1461062257806391b7f5ed1461064d57610230565b80632d1a12f6116101bc5780634c2fea53116101805780634c2fea531461049a5780634d615d23146104d75780634f6ccce71461050257806355f804b31461053f5780636352211e1461056857610230565b80632d1a12f6146103d85780632f745c59146104015780633b4c4b251461043e5780633ccfd60b1461046757806342842e0e1461047157610230565b80630e223102116102035780630e22310214610303578063159457901461032e57806318160ddd14610359578063235b6ea11461038457806323b872dd146103af57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613616565b610928565b6040516102699190613c35565b60405180910390f35b34801561027e57600080fd5b506102876109a2565b6040516102949190613c50565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf91906136a9565b610a34565b6040516102d19190613bac565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc91906135b1565b610ab9565b005b34801561030f57600080fd5b50610318610bd1565b6040516103259190613c50565b60405180910390f35b34801561033a57600080fd5b50610343610c5f565b6040516103509190613f52565b60405180910390f35b34801561036557600080fd5b5061036e610c65565b60405161037b9190613f52565b60405180910390f35b34801561039057600080fd5b50610399610c72565b6040516103a69190613f52565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d191906134ab565b610c78565b005b3480156103e457600080fd5b506103ff60048036038101906103fa91906136d2565b610cd8565b005b34801561040d57600080fd5b50610428600480360381019061042391906135b1565b610dda565b6040516104359190613f52565b60405180910390f35b34801561044a57600080fd5b50610465600480360381019061046091906136a9565b610e7f565b005b61046f610f55565b005b34801561047d57600080fd5b50610498600480360381019061049391906134ab565b611039565b005b3480156104a657600080fd5b506104c160048036038101906104bc91906136a9565b611059565b6040516104ce9190613c50565b60405180910390f35b3480156104e357600080fd5b506104ec61112f565b6040516104f99190613c35565b60405180910390f35b34801561050e57600080fd5b50610529600480360381019061052491906136a9565b611142565b6040516105369190613f52565b60405180910390f35b34801561054b57600080fd5b5061056660048036038101906105619190613668565b6111d9565b005b34801561057457600080fd5b5061058f600480360381019061058a91906136a9565b61126f565b60405161059c9190613bac565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c79190613446565b611321565b005b3480156105da57600080fd5b506105f560048036038101906105f09190613446565b6113e1565b6040516106029190613f52565b60405180910390f35b34801561061757600080fd5b50610620611499565b005b34801561062e57600080fd5b50610637611521565b6040516106449190613bac565b60405180910390f35b34801561065957600080fd5b50610674600480360381019061066f91906136a9565b61154b565b005b34801561068257600080fd5b5061068b6115d1565b6040516106989190613c50565b60405180910390f35b3480156106ad57600080fd5b506106c860048036038101906106c391906136a9565b611663565b005b6106e460048036038101906106df91906136a9565b6116e9565b005b3480156106f257600080fd5b5061070d60048036038101906107089190613575565b6118a2565b005b34801561071b57600080fd5b50610736600480360381019061073191906135ed565b611a23565b005b34801561074457600080fd5b5061075f600480360381019061075a91906134fa565b611abc565b005b34801561076d57600080fd5b50610788600480360381019061078391906136a9565b611b1e565b6040516107959190613c50565b60405180910390f35b3480156107aa57600080fd5b506107b3611bc5565b6040516107c09190613c50565b60405180910390f35b3480156107d557600080fd5b506107f060048036038101906107eb9190613446565b611c53565b6040516107fd9190613c13565b60405180910390f35b34801561081257600080fd5b5061082d600480360381019061082891906136a9565b611d4d565b60405161083a9190613c50565b60405180910390f35b34801561084f57600080fd5b5061086a6004803603810190610865919061346f565b611df9565b6040516108779190613c35565b60405180910390f35b34801561088c57600080fd5b50610895611e8d565b6040516108a29190613f52565b60405180910390f35b3480156108b757600080fd5b506108d260048036038101906108cd9190613446565b611e93565b005b3480156108e057600080fd5b506108fb60048036038101906108f69190613668565b611f8b565b005b34801561090957600080fd5b50610912612021565b60405161091f9190613bac565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099b575061099a82612047565b5b9050919050565b6060600080546109b19061423b565b80601f01602080910402602001604051908101604052809291908181526020018280546109dd9061423b565b8015610a2a5780601f106109ff57610100808354040283529160200191610a2a565b820191906000526020600020905b815481529060010190602001808311610a0d57829003601f168201915b5050505050905090565b6000610a3f82612129565b610a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7590613e12565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ac48261126f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2c90613eb2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b54612195565b73ffffffffffffffffffffffffffffffffffffffff161480610b835750610b8281610b7d612195565b611df9565b5b610bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb990613d52565b60405180910390fd5b610bcc838361219d565b505050565b60108054610bde9061423b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0a9061423b565b8015610c575780601f10610c2c57610100808354040283529160200191610c57565b820191906000526020600020905b815481529060010190602001808311610c3a57829003601f168201915b505050505081565b600f5481565b6000600880549050905090565b600e5481565b610c89610c83612195565b82612256565b610cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbf90613ef2565b60405180910390fd5b610cd3838383612334565b505050565b610ce0612195565b73ffffffffffffffffffffffffffffffffffffffff16610cfe611521565b73ffffffffffffffffffffffffffffffffffffffff1614610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b90613e32565b60405180910390fd5b6000610d5e610c65565b905060005b83811015610dd457610d80838284610d7b9190614070565b612590565b6011601090806001815401808255809150506001900390600052602060002001600090919091909150908054610db59061423b565b610dc09291906131dd565b508080610dcc9061429e565b915050610d63565b50505050565b6000610de5836113e1565b8210610e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1d90613c72565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610e87612195565b73ffffffffffffffffffffffffffffffffffffffff16610ea5611521565b73ffffffffffffffffffffffffffffffffffffffff1614610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef290613e32565b60405180910390fd5b6000610f05610c65565b905081811115610f4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4190613df2565b60405180910390fd5b81600f819055505050565b610f5d612195565b73ffffffffffffffffffffffffffffffffffffffff16610f7b611521565b73ffffffffffffffffffffffffffffffffffffffff1614610fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc890613e32565b60405180910390fd5b6000479050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061103657600080fd5b50565b61105483838360405180602001604052806000815250611abc565b505050565b606060118281548110611095577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200180546110aa9061423b565b80601f01602080910402602001604051908101604052809291908181526020018280546110d69061423b565b80156111235780601f106110f857610100808354040283529160200191611123565b820191906000526020600020905b81548152906001019060200180831161110657829003601f168201915b50505050509050919050565b600b60149054906101000a900460ff1681565b600061114c610c65565b821061118d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118490613f12565b60405180910390fd5b600882815481106111c7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6111e1612195565b73ffffffffffffffffffffffffffffffffffffffff166111ff611521565b73ffffffffffffffffffffffffffffffffffffffff1614611255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124c90613e32565b60405180910390fd5b80600c908051906020019061126b92919061326a565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130f90613d92565b60405180910390fd5b80915050919050565b611329612195565b73ffffffffffffffffffffffffffffffffffffffff16611347611521565b73ffffffffffffffffffffffffffffffffffffffff161461139d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139490613e32565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611452576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144990613d72565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114a1612195565b73ffffffffffffffffffffffffffffffffffffffff166114bf611521565b73ffffffffffffffffffffffffffffffffffffffff1614611515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150c90613e32565b60405180910390fd5b61151f60006125ae565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611553612195565b73ffffffffffffffffffffffffffffffffffffffff16611571611521565b73ffffffffffffffffffffffffffffffffffffffff16146115c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115be90613e32565b60405180910390fd5b80600e8190555050565b6060600180546115e09061423b565b80601f016020809104026020016040519081016040528092919081815260200182805461160c9061423b565b80156116595780601f1061162e57610100808354040283529160200191611659565b820191906000526020600020905b81548152906001019060200180831161163c57829003601f168201915b5050505050905090565b61166b612195565b73ffffffffffffffffffffffffffffffffffffffff16611689611521565b73ffffffffffffffffffffffffffffffffffffffff16146116df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d690613e32565b60405180910390fd5b80600d8190555050565b60006116f3610c65565b9050600b60149054906101000a900460ff16611744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173b90613e92565b60405180910390fd5b600d54821115611789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178090613f32565b60405180910390fd5b81600e5461179791906140f7565b3410156117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090613db2565b60405180910390fd5b600f5482826117e89190614070565b1115611829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182090613ed2565b60405180910390fd5b60005b8281101561189d576118493382846118449190614070565b612590565b601160109080600181540180825580915050600190039060005260206000200160009091909190915090805461187e9061423b565b6118899291906131dd565b5080806118959061429e565b91505061182c565b505050565b6118aa612195565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190f90613d12565b60405180910390fd5b8060056000611925612195565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119d2612195565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a179190613c35565b60405180910390a35050565b611a2b612195565b73ffffffffffffffffffffffffffffffffffffffff16611a49611521565b73ffffffffffffffffffffffffffffffffffffffff1614611a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9690613e32565b60405180910390fd5b80600b60146101000a81548160ff02191690831515021790555050565b611acd611ac7612195565b83612256565b611b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0390613ef2565b60405180910390fd5b611b1884848484612674565b50505050565b6060611b2982612129565b611b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5f90613e72565b60405180910390fd5b6000611b726126d0565b90506000815111611b925760405180602001604052806000815250611bbd565b80611b9c84612762565b604051602001611bad929190613b88565b6040516020818303038152906040525b915050919050565b600c8054611bd29061423b565b80601f0160208091040260200160405190810160405280929190818152602001828054611bfe9061423b565b8015611c4b5780601f10611c2057610100808354040283529160200191611c4b565b820191906000526020600020905b815481529060010190602001808311611c2e57829003601f168201915b505050505081565b60606000611c60836113e1565b905060008167ffffffffffffffff811115611ca4577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611cd25781602001602082028036833780820191505090505b50905060005b82811015611d4257611cea8582610dda565b828281518110611d23577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080611d3a9061429e565b915050611cd8565b508092505050919050565b60118181548110611d5d57600080fd5b906000526020600020016000915090508054611d789061423b565b80601f0160208091040260200160405190810160405280929190818152602001828054611da49061423b565b8015611df15780601f10611dc657610100808354040283529160200191611df1565b820191906000526020600020905b815481529060010190602001808311611dd457829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d5481565b611e9b612195565b73ffffffffffffffffffffffffffffffffffffffff16611eb9611521565b73ffffffffffffffffffffffffffffffffffffffff1614611f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0690613e32565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7690613cb2565b60405180910390fd5b611f88816125ae565b50565b611f93612195565b73ffffffffffffffffffffffffffffffffffffffff16611fb1611521565b73ffffffffffffffffffffffffffffffffffffffff1614612007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffe90613e32565b60405180910390fd5b806010908051906020019061201d92919061326a565b5050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061211257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061212257506121218261290f565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122108361126f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061226182612129565b6122a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229790613d32565b60405180910390fd5b60006122ab8361126f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061231a57508373ffffffffffffffffffffffffffffffffffffffff1661230284610a34565b73ffffffffffffffffffffffffffffffffffffffff16145b8061232b575061232a8185611df9565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166123548261126f565b73ffffffffffffffffffffffffffffffffffffffff16146123aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a190613e52565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561241a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241190613cf2565b60405180910390fd5b612425838383612979565b61243060008261219d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124809190614151565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124d79190614070565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6125aa828260405180602001604052806000815250612a8d565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61267f848484612334565b61268b84848484612ae8565b6126ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c190613c92565b60405180910390fd5b50505050565b6060600c80546126df9061423b565b80601f016020809104026020016040519081016040528092919081815260200182805461270b9061423b565b80156127585780601f1061272d57610100808354040283529160200191612758565b820191906000526020600020905b81548152906001019060200180831161273b57829003601f168201915b5050505050905090565b606060008214156127aa576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061290a565b600082905060005b600082146127dc5780806127c59061429e565b915050600a826127d591906140c6565b91506127b2565b60008167ffffffffffffffff81111561281e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156128505781602001600182028036833780820191505090505b5090505b60008514612903576001826128699190614151565b9150600a8561287891906142e7565b60306128849190614070565b60f81b8183815181106128c0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128fc91906140c6565b9450612854565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612984838383612c7f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129c7576129c281612c84565b612a06565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612a0557612a048382612ccd565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a4957612a4481612e3a565b612a88565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612a8757612a868282612f7d565b5b5b505050565b612a978383612ffc565b612aa46000848484612ae8565b612ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ada90613c92565b60405180910390fd5b505050565b6000612b098473ffffffffffffffffffffffffffffffffffffffff166131ca565b15612c72578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b32612195565b8786866040518563ffffffff1660e01b8152600401612b549493929190613bc7565b602060405180830381600087803b158015612b6e57600080fd5b505af1925050508015612b9f57506040513d601f19601f82011682018060405250810190612b9c919061363f565b60015b612c22573d8060008114612bcf576040519150601f19603f3d011682016040523d82523d6000602084013e612bd4565b606091505b50600081511415612c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1190613c92565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c77565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612cda846113e1565b612ce49190614151565b9050600060076000848152602001908152602001600020549050818114612dc9576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612e4e9190614151565b9050600060096000848152602001908152602001600020549050600060088381548110612ea4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612eec577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612f61577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612f88836113e1565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561306c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306390613dd2565b60405180910390fd5b61307581612129565b156130b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ac90613cd2565b60405180910390fd5b6130c160008383612979565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131119190614070565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546131e99061423b565b90600052602060002090601f01602090048101928261320b5760008555613259565b82601f1061321c5780548555613259565b8280016001018555821561325957600052602060002091601f016020900482015b8281111561325857825482559160010191906001019061323d565b5b50905061326691906132f0565b5090565b8280546132769061423b565b90600052602060002090601f01602090048101928261329857600085556132df565b82601f106132b157805160ff19168380011785556132df565b828001600101855582156132df579182015b828111156132de5782518255916020019190600101906132c3565b5b5090506132ec91906132f0565b5090565b5b808211156133095760008160009055506001016132f1565b5090565b600061332061331b84613f92565b613f6d565b90508281526020810184848401111561333857600080fd5b6133438482856141f9565b509392505050565b600061335e61335984613fc3565b613f6d565b90508281526020810184848401111561337657600080fd5b6133818482856141f9565b509392505050565b60008135905061339881614a1a565b92915050565b6000813590506133ad81614a31565b92915050565b6000813590506133c281614a48565b92915050565b6000815190506133d781614a48565b92915050565b600082601f8301126133ee57600080fd5b81356133fe84826020860161330d565b91505092915050565b600082601f83011261341857600080fd5b813561342884826020860161334b565b91505092915050565b60008135905061344081614a5f565b92915050565b60006020828403121561345857600080fd5b600061346684828501613389565b91505092915050565b6000806040838503121561348257600080fd5b600061349085828601613389565b92505060206134a185828601613389565b9150509250929050565b6000806000606084860312156134c057600080fd5b60006134ce86828701613389565b93505060206134df86828701613389565b92505060406134f086828701613431565b9150509250925092565b6000806000806080858703121561351057600080fd5b600061351e87828801613389565b945050602061352f87828801613389565b935050604061354087828801613431565b925050606085013567ffffffffffffffff81111561355d57600080fd5b613569878288016133dd565b91505092959194509250565b6000806040838503121561358857600080fd5b600061359685828601613389565b92505060206135a78582860161339e565b9150509250929050565b600080604083850312156135c457600080fd5b60006135d285828601613389565b92505060206135e385828601613431565b9150509250929050565b6000602082840312156135ff57600080fd5b600061360d8482850161339e565b91505092915050565b60006020828403121561362857600080fd5b6000613636848285016133b3565b91505092915050565b60006020828403121561365157600080fd5b600061365f848285016133c8565b91505092915050565b60006020828403121561367a57600080fd5b600082013567ffffffffffffffff81111561369457600080fd5b6136a084828501613407565b91505092915050565b6000602082840312156136bb57600080fd5b60006136c984828501613431565b91505092915050565b600080604083850312156136e557600080fd5b60006136f385828601613431565b925050602061370485828601613389565b9150509250929050565b600061371a8383613b6a565b60208301905092915050565b61372f81614185565b82525050565b600061374082614004565b61374a8185614032565b935061375583613ff4565b8060005b8381101561378657815161376d888261370e565b975061377883614025565b925050600181019050613759565b5085935050505092915050565b61379c81614197565b82525050565b60006137ad8261400f565b6137b78185614043565b93506137c7818560208601614208565b6137d0816143d4565b840191505092915050565b60006137e68261401a565b6137f08185614054565b9350613800818560208601614208565b613809816143d4565b840191505092915050565b600061381f8261401a565b6138298185614065565b9350613839818560208601614208565b80840191505092915050565b6000613852602b83614054565b915061385d826143e5565b604082019050919050565b6000613875603283614054565b915061388082614434565b604082019050919050565b6000613898602683614054565b91506138a382614483565b604082019050919050565b60006138bb601c83614054565b91506138c6826144d2565b602082019050919050565b60006138de602483614054565b91506138e9826144fb565b604082019050919050565b6000613901601983614054565b915061390c8261454a565b602082019050919050565b6000613924602c83614054565b915061392f82614573565b604082019050919050565b6000613947603883614054565b9150613952826145c2565b604082019050919050565b600061396a602a83614054565b915061397582614611565b604082019050919050565b600061398d602983614054565b915061399882614660565b604082019050919050565b60006139b0601c83614054565b91506139bb826146af565b602082019050919050565b60006139d3602083614054565b91506139de826146d8565b602082019050919050565b60006139f6602583614054565b9150613a0182614701565b604082019050919050565b6000613a19602c83614054565b9150613a2482614750565b604082019050919050565b6000613a3c602083614054565b9150613a478261479f565b602082019050919050565b6000613a5f602983614054565b9150613a6a826147c8565b604082019050919050565b6000613a82602f83614054565b9150613a8d82614817565b604082019050919050565b6000613aa5601383614054565b9150613ab082614866565b602082019050919050565b6000613ac8602183614054565b9150613ad38261488f565b604082019050919050565b6000613aeb602583614054565b9150613af6826148de565b604082019050919050565b6000613b0e603183614054565b9150613b198261492d565b604082019050919050565b6000613b31602c83614054565b9150613b3c8261497c565b604082019050919050565b6000613b54602383614054565b9150613b5f826149cb565b604082019050919050565b613b73816141ef565b82525050565b613b82816141ef565b82525050565b6000613b948285613814565b9150613ba08284613814565b91508190509392505050565b6000602082019050613bc16000830184613726565b92915050565b6000608082019050613bdc6000830187613726565b613be96020830186613726565b613bf66040830185613b79565b8181036060830152613c0881846137a2565b905095945050505050565b60006020820190508181036000830152613c2d8184613735565b905092915050565b6000602082019050613c4a6000830184613793565b92915050565b60006020820190508181036000830152613c6a81846137db565b905092915050565b60006020820190508181036000830152613c8b81613845565b9050919050565b60006020820190508181036000830152613cab81613868565b9050919050565b60006020820190508181036000830152613ccb8161388b565b9050919050565b60006020820190508181036000830152613ceb816138ae565b9050919050565b60006020820190508181036000830152613d0b816138d1565b9050919050565b60006020820190508181036000830152613d2b816138f4565b9050919050565b60006020820190508181036000830152613d4b81613917565b9050919050565b60006020820190508181036000830152613d6b8161393a565b9050919050565b60006020820190508181036000830152613d8b8161395d565b9050919050565b60006020820190508181036000830152613dab81613980565b9050919050565b60006020820190508181036000830152613dcb816139a3565b9050919050565b60006020820190508181036000830152613deb816139c6565b9050919050565b60006020820190508181036000830152613e0b816139e9565b9050919050565b60006020820190508181036000830152613e2b81613a0c565b9050919050565b60006020820190508181036000830152613e4b81613a2f565b9050919050565b60006020820190508181036000830152613e6b81613a52565b9050919050565b60006020820190508181036000830152613e8b81613a75565b9050919050565b60006020820190508181036000830152613eab81613a98565b9050919050565b60006020820190508181036000830152613ecb81613abb565b9050919050565b60006020820190508181036000830152613eeb81613ade565b9050919050565b60006020820190508181036000830152613f0b81613b01565b9050919050565b60006020820190508181036000830152613f2b81613b24565b9050919050565b60006020820190508181036000830152613f4b81613b47565b9050919050565b6000602082019050613f676000830184613b79565b92915050565b6000613f77613f88565b9050613f83828261426d565b919050565b6000604051905090565b600067ffffffffffffffff821115613fad57613fac6143a5565b5b613fb6826143d4565b9050602081019050919050565b600067ffffffffffffffff821115613fde57613fdd6143a5565b5b613fe7826143d4565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061407b826141ef565b9150614086836141ef565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140bb576140ba614318565b5b828201905092915050565b60006140d1826141ef565b91506140dc836141ef565b9250826140ec576140eb614347565b5b828204905092915050565b6000614102826141ef565b915061410d836141ef565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561414657614145614318565b5b828202905092915050565b600061415c826141ef565b9150614167836141ef565b92508282101561417a57614179614318565b5b828203905092915050565b6000614190826141cf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561422657808201518184015260208101905061420b565b83811115614235576000848401525b50505050565b6000600282049050600182168061425357607f821691505b6020821081141561426757614266614376565b5b50919050565b614276826143d4565b810181811067ffffffffffffffff82111715614295576142946143a5565b5b80604052505050565b60006142a9826141ef565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142dc576142db614318565b5b600182019050919050565b60006142f2826141ef565b91506142fd836141ef565b92508261430d5761430c614347565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742065746865722070726f76696465642e00000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4e657720537570706c79206973206c657373207468616e20746f74616c20737560008201527f70706c792e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f537570706c7920657863656564656420776974682070726f766964656420616d60008201527f6f756e742e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f50726f766964656420616d6f756e742065786365656473206d696e74206c696d60008201527f69742e0000000000000000000000000000000000000000000000000000000000602082015250565b614a2381614185565b8114614a2e57600080fd5b50565b614a3a81614197565b8114614a4557600080fd5b50565b614a51816141a3565b8114614a5c57600080fd5b50565b614a68816141ef565b8114614a7357600080fd5b5056fea26469706673582212208e2dfaa7bb3d170e8c30f598e10e30d4b1eecb342d576c80a14770579f30892064736f6c63430008040033

Deployed Bytecode Sourcemap

43114:2596:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34624:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21513:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23072:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22595:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43372:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43339:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35264:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43313:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23962:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45329:230;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34932:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44074:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45565:142;;;:::i;:::-;;24372:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44368:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43219:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35454:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43600:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21207:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44285:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20937:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42425:94;;;;;;;;;;;;;:::i;:::-;;41774:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43991:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21682:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43892:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44815:508;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23365:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43807:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24628:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21857:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43251:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44487:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43401:26;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23731:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43283:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42674:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43702:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43193:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34624:224;34726:4;34765:35;34750:50;;;:11;:50;;;;:90;;;;34804:36;34828:11;34804:23;:36::i;:::-;34750:90;34743:97;;34624:224;;;:::o;21513:100::-;21567:13;21600:5;21593:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21513:100;:::o;23072:221::-;23148:7;23176:16;23184:7;23176;:16::i;:::-;23168:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23261:15;:24;23277:7;23261:24;;;;;;;;;;;;;;;;;;;;;23254:31;;23072:221;;;:::o;22595:411::-;22676:13;22692:23;22707:7;22692:14;:23::i;:::-;22676:39;;22740:5;22734:11;;:2;:11;;;;22726:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22834:5;22818:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22843:37;22860:5;22867:12;:10;:12::i;:::-;22843:16;:37::i;:::-;22818:62;22796:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;22977:21;22986:2;22990:7;22977:8;:21::i;:::-;22595:411;;;:::o;43372:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43339:26::-;;;;:::o;35264:113::-;35325:7;35352:10;:17;;;;35345:24;;35264:113;:::o;43313:21::-;;;;:::o;23962:339::-;24157:41;24176:12;:10;:12::i;:::-;24190:7;24157:18;:41::i;:::-;24149:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24265:28;24275:4;24281:2;24285:7;24265:9;:28::i;:::-;23962:339;;;:::o;45329:230::-;42005:12;:10;:12::i;:::-;41994:23;;:7;:5;:7::i;:::-;:23;;;41986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45400:14:::1;45417:13;:11;:13::i;:::-;45400:30;;45443:9;45439:115;45458:7;45454:1;:11;45439:115;;;45480:28;45491:3;45505:1;45496:6;:10;;;;:::i;:::-;45480:9;:28::i;:::-;45517:10;45534;45517:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;:::i;:::-;;45467:3;;;;;:::i;:::-;;;;45439:115;;;;42065:1;45329:230:::0;;:::o;34932:256::-;35029:7;35065:23;35082:5;35065:16;:23::i;:::-;35057:5;:31;35049:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35154:12;:19;35167:5;35154:19;;;;;;;;;;;;;;;:26;35174:5;35154:26;;;;;;;;;;;;35147:33;;34932:256;;;;:::o;44074:205::-;42005:12;:10;:12::i;:::-;41994:23;;:7;:5;:7::i;:::-;:23;;;41986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44136:14:::1;44153:13;:11;:13::i;:::-;44136:30;;44194:9;44184:6;:19;;44175:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;44264:9;44254:7;:19;;;;42065:1;44074:205:::0;:::o;45565:142::-;42005:12;:10;:12::i;:::-;41994:23;;:7;:5;:7::i;:::-;:23;;;41986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45617:15:::1;45635:21;45617:39;;45679:6;;;;;;;;;;;45671:20;;:29;45692:7;45671:29;;;;;;;;;;;;;;;;;;;;;;;45663:38;;;::::0;::::1;;42065:1;45565:142::o:0;24372:185::-;24510:39;24527:4;24533:2;24537:7;24510:39;;;;;;;;;;;;:16;:39::i;:::-;24372:185;;;:::o;44368:113::-;44428:13;44456:10;44467:7;44456:19;;;;;;;;;;;;;;;;;;;;;;;44449:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44368:113;;;:::o;43219:27::-;;;;;;;;;;;;;:::o;35454:233::-;35529:7;35565:30;:28;:30::i;:::-;35557:5;:38;35549:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35662:10;35673:5;35662:17;;;;;;;;;;;;;;;;;;;;;;;;35655:24;;35454:233;;;:::o;43600:96::-;42005:12;:10;:12::i;:::-;41994:23;;:7;:5;:7::i;:::-;:23;;;41986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43683:7:::1;43667:13;:23;;;;;;;;;;;;:::i;:::-;;43600:96:::0;:::o;21207:239::-;21279:7;21299:13;21315:7;:16;21323:7;21315:16;;;;;;;;;;;;;;;;;;;;;21299:32;;21367:1;21350:19;;:5;:19;;;;21342:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21433:5;21426:12;;;21207:239;;;:::o;44285:77::-;42005:12;:10;:12::i;:::-;41994:23;;:7;:5;:7::i;:::-;:23;;;41986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44351:5:::1;44342:6;;:14;;;;;;;;;;;;;;;;;;44285:77:::0;:::o;20937:208::-;21009:7;21054:1;21037:19;;:5;:19;;;;21029:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21121:9;:16;21131:5;21121:16;;;;;;;;;;;;;;;;21114:23;;20937:208;;;:::o;42425:94::-;42005:12;:10;:12::i;:::-;41994:23;;:7;:5;:7::i;:::-;:23;;;41986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42490:21:::1;42508:1;42490:9;:21::i;:::-;42425:94::o:0;41774:87::-;41820:7;41847:6;;;;;;;;;;;41840:13;;41774:87;:::o;43991:77::-;42005:12;:10;:12::i;:::-;41994:23;;:7;:5;:7::i;:::-;:23;;;41986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44057:5:::1;44048:6;:14;;;;43991:77:::0;:::o;21682:104::-;21738:13;21771:7;21764:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21682:104;:::o;43892:93::-;42005:12;:10;:12::i;:::-;41994:23;;:7;:5;:7::i;:::-;:23;;;41986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43970:9:::1;43957:10;:22;;;;43892:93:::0;:::o;44815:508::-;44868:14;44885:13;:11;:13::i;:::-;44868:30;;44916:7;;;;;;;;;;;44907:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;44974:10;;44963:7;:21;;44954:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;45062:7;45053:6;;:16;;;;:::i;:::-;45040:9;:29;;45031:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;45138:7;;45127;45118:6;:16;;;;:::i;:::-;:27;;45109:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;45200:9;45196:122;45215:7;45211:1;:11;45196:122;;;45237:35;45248:10;45269:1;45260:6;:10;;;;:::i;:::-;45237:9;:35::i;:::-;45281:10;45298;45281:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;:::i;:::-;;45224:3;;;;;:::i;:::-;;;;45196:122;;;;44815:508;;:::o;23365:295::-;23480:12;:10;:12::i;:::-;23468:24;;:8;:24;;;;23460:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23580:8;23535:18;:32;23554:12;:10;:12::i;:::-;23535:32;;;;;;;;;;;;;;;:42;23568:8;23535:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23633:8;23604:48;;23619:12;:10;:12::i;:::-;23604:48;;;23643:8;23604:48;;;;;;:::i;:::-;;;;;;;;23365:295;;:::o;43807:79::-;42005:12;:10;:12::i;:::-;41994:23;;:7;:5;:7::i;:::-;:23;;;41986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43874:6:::1;43864:7;;:16;;;;;;;;;;;;;;;;;;43807:79:::0;:::o;24628:328::-;24803:41;24822:12;:10;:12::i;:::-;24836:7;24803:18;:41::i;:::-;24795:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24909:39;24923:4;24929:2;24933:7;24942:5;24909:13;:39::i;:::-;24628:328;;;;:::o;21857:334::-;21930:13;21964:16;21972:7;21964;:16::i;:::-;21956:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22045:21;22069:10;:8;:10::i;:::-;22045:34;;22121:1;22103:7;22097:21;:25;:86;;;;;;;;;;;;;;;;;22149:7;22158:18;:7;:16;:18::i;:::-;22132:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22097:86;22090:93;;;21857:334;;;:::o;43251:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44487:320::-;44550:16;44575:18;44596:17;44606:6;44596:9;:17::i;:::-;44575:38;;44622:25;44664:10;44650:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44622:53;;44686:9;44682:98;44701:10;44697:1;:14;44682:98;;;44742:30;44762:6;44770:1;44742:19;:30::i;:::-;44728:8;44737:1;44728:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;44713:3;;;;;:::i;:::-;;;;44682:98;;;;44793:8;44786:15;;;;44487:320;;;:::o;43401:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23731:164::-;23828:4;23852:18;:25;23871:5;23852:25;;;;;;;;;;;;;;;:35;23878:8;23852:35;;;;;;;;;;;;;;;;;;;;;;;;;23845:42;;23731:164;;;;:::o;43283:25::-;;;;:::o;42674:192::-;42005:12;:10;:12::i;:::-;41994:23;;:7;:5;:7::i;:::-;:23;;;41986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42783:1:::1;42763:22;;:8;:22;;;;42755:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42839:19;42849:8;42839:9;:19::i;:::-;42674:192:::0;:::o;43702:99::-;42005:12;:10;:12::i;:::-;41994:23;;:7;:5;:7::i;:::-;:23;;;41986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43786:9:::1;43773:10;:22;;;;;;;;;;;;:::i;:::-;;43702:99:::0;:::o;43193:21::-;;;;;;;;;;;;;:::o;20568:305::-;20670:4;20722:25;20707:40;;;:11;:40;;;;:105;;;;20779:33;20764:48;;;:11;:48;;;;20707:105;:158;;;;20829:36;20853:11;20829:23;:36::i;:::-;20707:158;20687:178;;20568:305;;;:::o;26466:127::-;26531:4;26583:1;26555:30;;:7;:16;26563:7;26555:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26548:37;;26466:127;;;:::o;15976:98::-;16029:7;16056:10;16049:17;;15976:98;:::o;30448:174::-;30550:2;30523:15;:24;30539:7;30523:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30606:7;30602:2;30568:46;;30577:23;30592:7;30577:14;:23::i;:::-;30568:46;;;;;;;;;;;;30448:174;;:::o;26760:348::-;26853:4;26878:16;26886:7;26878;:16::i;:::-;26870:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26954:13;26970:23;26985:7;26970:14;:23::i;:::-;26954:39;;27023:5;27012:16;;:7;:16;;;:51;;;;27056:7;27032:31;;:20;27044:7;27032:11;:20::i;:::-;:31;;;27012:51;:87;;;;27067:32;27084:5;27091:7;27067:16;:32::i;:::-;27012:87;27004:96;;;26760:348;;;;:::o;29752:578::-;29911:4;29884:31;;:23;29899:7;29884:14;:23::i;:::-;:31;;;29876:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29994:1;29980:16;;:2;:16;;;;29972:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30050:39;30071:4;30077:2;30081:7;30050:20;:39::i;:::-;30154:29;30171:1;30175:7;30154:8;:29::i;:::-;30215:1;30196:9;:15;30206:4;30196:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30244:1;30227:9;:13;30237:2;30227:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30275:2;30256:7;:16;30264:7;30256:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30314:7;30310:2;30295:27;;30304:4;30295:27;;;;;;;;;;;;29752:578;;;:::o;27450:110::-;27526:26;27536:2;27540:7;27526:26;;;;;;;;;;;;:9;:26::i;:::-;27450:110;;:::o;42874:173::-;42930:16;42949:6;;;;;;;;;;;42930:25;;42975:8;42966:6;;:17;;;;;;;;;;;;;;;;;;43030:8;42999:40;;43020:8;42999:40;;;;;;;;;;;;42874:173;;:::o;25838:315::-;25995:28;26005:4;26011:2;26015:7;25995:9;:28::i;:::-;26042:48;26065:4;26071:2;26075:7;26084:5;26042:22;:48::i;:::-;26034:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25838:315;;;;:::o;43486:108::-;43546:13;43575;43568:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43486:108;:::o;16507:723::-;16563:13;16793:1;16784:5;:10;16780:53;;;16811:10;;;;;;;;;;;;;;;;;;;;;16780:53;16843:12;16858:5;16843:20;;16874:14;16899:78;16914:1;16906:4;:9;16899:78;;16932:8;;;;;:::i;:::-;;;;16963:2;16955:10;;;;;:::i;:::-;;;16899:78;;;16987:19;17019:6;17009:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16987:39;;17037:154;17053:1;17044:5;:10;17037:154;;17081:1;17071:11;;;;;:::i;:::-;;;17148:2;17140:5;:10;;;;:::i;:::-;17127:2;:24;;;;:::i;:::-;17114:39;;17097:6;17104;17097:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;17177:2;17168:11;;;;;:::i;:::-;;;17037:154;;;17215:6;17201:21;;;;;16507:723;;;;:::o;19068:157::-;19153:4;19192:25;19177:40;;;:11;:40;;;;19170:47;;19068:157;;;:::o;36300:589::-;36444:45;36471:4;36477:2;36481:7;36444:26;:45::i;:::-;36522:1;36506:18;;:4;:18;;;36502:187;;;36541:40;36573:7;36541:31;:40::i;:::-;36502:187;;;36611:2;36603:10;;:4;:10;;;36599:90;;36630:47;36663:4;36669:7;36630:32;:47::i;:::-;36599:90;36502:187;36717:1;36703:16;;:2;:16;;;36699:183;;;36736:45;36773:7;36736:36;:45::i;:::-;36699:183;;;36809:4;36803:10;;:2;:10;;;36799:83;;36830:40;36858:2;36862:7;36830:27;:40::i;:::-;36799:83;36699:183;36300:589;;;:::o;27787:321::-;27917:18;27923:2;27927:7;27917:5;:18::i;:::-;27968:54;27999:1;28003:2;28007:7;28016:5;27968:22;:54::i;:::-;27946:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;27787:321;;;:::o;31187:803::-;31342:4;31363:15;:2;:13;;;:15::i;:::-;31359:624;;;31415:2;31399:36;;;31436:12;:10;:12::i;:::-;31450:4;31456:7;31465:5;31399:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31395:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31662:1;31645:6;:13;:18;31641:272;;;31688:60;;;;;;;;;;:::i;:::-;;;;;;;;31641:272;31863:6;31857:13;31848:6;31844:2;31840:15;31833:38;31395:533;31532:45;;;31522:55;;;:6;:55;;;;31515:62;;;;;31359:624;31967:4;31960:11;;31187:803;;;;;;;:::o;32562:126::-;;;;:::o;37612:164::-;37716:10;:17;;;;37689:15;:24;37705:7;37689:24;;;;;;;;;;;:44;;;;37744:10;37760:7;37744:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37612:164;:::o;38403:988::-;38669:22;38719:1;38694:22;38711:4;38694:16;:22::i;:::-;:26;;;;:::i;:::-;38669:51;;38731:18;38752:17;:26;38770:7;38752:26;;;;;;;;;;;;38731:47;;38899:14;38885:10;:28;38881:328;;38930:19;38952:12;:18;38965:4;38952:18;;;;;;;;;;;;;;;:34;38971:14;38952:34;;;;;;;;;;;;38930:56;;39036:11;39003:12;:18;39016:4;39003:18;;;;;;;;;;;;;;;:30;39022:10;39003:30;;;;;;;;;;;:44;;;;39153:10;39120:17;:30;39138:11;39120:30;;;;;;;;;;;:43;;;;38881:328;;39305:17;:26;39323:7;39305:26;;;;;;;;;;;39298:33;;;39349:12;:18;39362:4;39349:18;;;;;;;;;;;;;;;:34;39368:14;39349:34;;;;;;;;;;;39342:41;;;38403:988;;;;:::o;39686:1079::-;39939:22;39984:1;39964:10;:17;;;;:21;;;;:::i;:::-;39939:46;;39996:18;40017:15;:24;40033:7;40017:24;;;;;;;;;;;;39996:45;;40368:19;40390:10;40401:14;40390:26;;;;;;;;;;;;;;;;;;;;;;;;40368:48;;40454:11;40429:10;40440;40429:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;40565:10;40534:15;:28;40550:11;40534:28;;;;;;;;;;;:41;;;;40706:15;:24;40722:7;40706:24;;;;;;;;;;;40699:31;;;40741:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39686:1079;;;;:::o;37190:221::-;37275:14;37292:20;37309:2;37292:16;:20::i;:::-;37275:37;;37350:7;37323:12;:16;37336:2;37323:16;;;;;;;;;;;;;;;:24;37340:6;37323:24;;;;;;;;;;;:34;;;;37397:6;37368:17;:26;37386:7;37368:26;;;;;;;;;;;:35;;;;37190:221;;;:::o;28444:382::-;28538:1;28524:16;;:2;:16;;;;28516:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28597:16;28605:7;28597;:16::i;:::-;28596:17;28588:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28659:45;28688:1;28692:2;28696:7;28659:20;:45::i;:::-;28734:1;28717:9;:13;28727:2;28717:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28765:2;28746:7;:16;28754:7;28746:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28810:7;28806:2;28785:33;;28802:1;28785:33;;;;;;;;;;;;28444:382;;:::o;8232:387::-;8292:4;8500:12;8567:7;8555:20;8547:28;;8610:1;8603:4;:8;8596:15;;;8232:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343: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:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:256::-;4939:6;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:50;5114:7;5105:6;5094:9;5090:22;5072:50;:::i;:::-;5062:60;;5018:114;4946:193;;;;:::o;5145:260::-;5203:6;5252:2;5240:9;5231:7;5227:23;5223:32;5220:2;;;5268:1;5265;5258:12;5220:2;5311:1;5336:52;5380:7;5371:6;5360:9;5356:22;5336:52;:::i;:::-;5326:62;;5282:116;5210:195;;;;:::o;5411:282::-;5480:6;5529:2;5517:9;5508:7;5504:23;5500:32;5497:2;;;5545:1;5542;5535:12;5497:2;5588:1;5613:63;5668:7;5659:6;5648:9;5644:22;5613:63;:::i;:::-;5603:73;;5559:127;5487:206;;;;:::o;5699:375::-;5768:6;5817:2;5805:9;5796:7;5792:23;5788:32;5785:2;;;5833:1;5830;5823:12;5785:2;5904:1;5893:9;5889:17;5876:31;5934:18;5926:6;5923:30;5920:2;;;5966:1;5963;5956:12;5920:2;5994:63;6049:7;6040:6;6029:9;6025:22;5994:63;:::i;:::-;5984:73;;5847:220;5775:299;;;;:::o;6080:262::-;6139:6;6188:2;6176:9;6167:7;6163:23;6159:32;6156:2;;;6204:1;6201;6194:12;6156:2;6247:1;6272:53;6317:7;6308:6;6297:9;6293:22;6272:53;:::i;:::-;6262:63;;6218:117;6146:196;;;;:::o;6348:407::-;6416:6;6424;6473:2;6461:9;6452:7;6448:23;6444:32;6441:2;;;6489:1;6486;6479:12;6441:2;6532:1;6557:53;6602:7;6593:6;6582:9;6578:22;6557:53;:::i;:::-;6547:63;;6503:117;6659:2;6685:53;6730:7;6721:6;6710:9;6706:22;6685:53;:::i;:::-;6675:63;;6630:118;6431:324;;;;;:::o;6761:179::-;6830:10;6851:46;6893:3;6885:6;6851:46;:::i;:::-;6929:4;6924:3;6920:14;6906:28;;6841:99;;;;:::o;6946:118::-;7033:24;7051:5;7033:24;:::i;:::-;7028:3;7021:37;7011:53;;:::o;7100:732::-;7219:3;7248:54;7296:5;7248:54;:::i;:::-;7318:86;7397:6;7392:3;7318:86;:::i;:::-;7311:93;;7428:56;7478:5;7428:56;:::i;:::-;7507:7;7538:1;7523:284;7548:6;7545:1;7542:13;7523:284;;;7624:6;7618:13;7651:63;7710:3;7695:13;7651:63;:::i;:::-;7644:70;;7737:60;7790:6;7737:60;:::i;:::-;7727:70;;7583:224;7570:1;7567;7563:9;7558:14;;7523:284;;;7527:14;7823:3;7816:10;;7224:608;;;;;;;:::o;7838:109::-;7919:21;7934:5;7919:21;:::i;:::-;7914:3;7907:34;7897:50;;:::o;7953:360::-;8039:3;8067:38;8099:5;8067:38;:::i;:::-;8121:70;8184:6;8179:3;8121:70;:::i;:::-;8114:77;;8200:52;8245:6;8240:3;8233:4;8226:5;8222:16;8200:52;:::i;:::-;8277:29;8299:6;8277:29;:::i;:::-;8272:3;8268:39;8261:46;;8043:270;;;;;:::o;8319:364::-;8407:3;8435:39;8468:5;8435:39;:::i;:::-;8490:71;8554:6;8549:3;8490:71;:::i;:::-;8483:78;;8570:52;8615:6;8610:3;8603:4;8596:5;8592:16;8570:52;:::i;:::-;8647:29;8669:6;8647:29;:::i;:::-;8642:3;8638:39;8631:46;;8411:272;;;;;:::o;8689:377::-;8795:3;8823:39;8856:5;8823:39;:::i;:::-;8878:89;8960:6;8955:3;8878:89;:::i;:::-;8871:96;;8976:52;9021:6;9016:3;9009:4;9002:5;8998:16;8976:52;:::i;:::-;9053:6;9048:3;9044:16;9037:23;;8799:267;;;;;:::o;9072:366::-;9214:3;9235:67;9299:2;9294:3;9235:67;:::i;:::-;9228:74;;9311:93;9400:3;9311:93;:::i;:::-;9429:2;9424:3;9420:12;9413:19;;9218:220;;;:::o;9444:366::-;9586:3;9607:67;9671:2;9666:3;9607:67;:::i;:::-;9600:74;;9683:93;9772:3;9683:93;:::i;:::-;9801:2;9796:3;9792:12;9785:19;;9590:220;;;:::o;9816:366::-;9958:3;9979:67;10043:2;10038:3;9979:67;:::i;:::-;9972:74;;10055:93;10144:3;10055:93;:::i;:::-;10173:2;10168:3;10164:12;10157:19;;9962:220;;;:::o;10188:366::-;10330:3;10351:67;10415:2;10410:3;10351:67;:::i;:::-;10344:74;;10427:93;10516:3;10427:93;:::i;:::-;10545:2;10540:3;10536:12;10529:19;;10334:220;;;:::o;10560:366::-;10702:3;10723:67;10787:2;10782:3;10723:67;:::i;:::-;10716:74;;10799:93;10888:3;10799:93;:::i;:::-;10917:2;10912:3;10908:12;10901:19;;10706:220;;;:::o;10932:366::-;11074:3;11095:67;11159:2;11154:3;11095:67;:::i;:::-;11088:74;;11171:93;11260:3;11171:93;:::i;:::-;11289:2;11284:3;11280:12;11273:19;;11078:220;;;:::o;11304:366::-;11446:3;11467:67;11531:2;11526:3;11467:67;:::i;:::-;11460:74;;11543:93;11632:3;11543:93;:::i;:::-;11661:2;11656:3;11652:12;11645:19;;11450:220;;;:::o;11676:366::-;11818:3;11839:67;11903:2;11898:3;11839:67;:::i;:::-;11832:74;;11915:93;12004:3;11915:93;:::i;:::-;12033:2;12028:3;12024:12;12017:19;;11822:220;;;:::o;12048:366::-;12190:3;12211:67;12275:2;12270:3;12211:67;:::i;:::-;12204:74;;12287:93;12376:3;12287:93;:::i;:::-;12405:2;12400:3;12396:12;12389:19;;12194:220;;;:::o;12420:366::-;12562:3;12583:67;12647:2;12642:3;12583:67;:::i;:::-;12576:74;;12659:93;12748:3;12659:93;:::i;:::-;12777:2;12772:3;12768:12;12761:19;;12566:220;;;:::o;12792:366::-;12934:3;12955:67;13019:2;13014:3;12955:67;:::i;:::-;12948:74;;13031:93;13120:3;13031:93;:::i;:::-;13149:2;13144:3;13140:12;13133:19;;12938:220;;;:::o;13164:366::-;13306:3;13327:67;13391:2;13386:3;13327:67;:::i;:::-;13320:74;;13403:93;13492:3;13403:93;:::i;:::-;13521:2;13516:3;13512:12;13505:19;;13310:220;;;:::o;13536:366::-;13678:3;13699:67;13763:2;13758:3;13699:67;:::i;:::-;13692:74;;13775:93;13864:3;13775:93;:::i;:::-;13893:2;13888:3;13884:12;13877:19;;13682:220;;;:::o;13908:366::-;14050:3;14071:67;14135:2;14130:3;14071:67;:::i;:::-;14064:74;;14147:93;14236:3;14147:93;:::i;:::-;14265:2;14260:3;14256:12;14249:19;;14054:220;;;:::o;14280:366::-;14422:3;14443:67;14507:2;14502:3;14443:67;:::i;:::-;14436:74;;14519:93;14608:3;14519:93;:::i;:::-;14637:2;14632:3;14628:12;14621:19;;14426:220;;;:::o;14652:366::-;14794:3;14815:67;14879:2;14874:3;14815:67;:::i;:::-;14808:74;;14891:93;14980:3;14891:93;:::i;:::-;15009:2;15004:3;15000:12;14993:19;;14798:220;;;:::o;15024:366::-;15166:3;15187:67;15251:2;15246:3;15187:67;:::i;:::-;15180:74;;15263:93;15352:3;15263:93;:::i;:::-;15381:2;15376:3;15372:12;15365:19;;15170:220;;;:::o;15396:366::-;15538:3;15559:67;15623:2;15618:3;15559:67;:::i;:::-;15552:74;;15635:93;15724:3;15635:93;:::i;:::-;15753:2;15748:3;15744:12;15737:19;;15542:220;;;:::o;15768:366::-;15910:3;15931:67;15995:2;15990:3;15931:67;:::i;:::-;15924:74;;16007:93;16096:3;16007:93;:::i;:::-;16125:2;16120:3;16116:12;16109:19;;15914:220;;;:::o;16140:366::-;16282:3;16303:67;16367:2;16362:3;16303:67;:::i;:::-;16296:74;;16379:93;16468:3;16379:93;:::i;:::-;16497:2;16492:3;16488:12;16481:19;;16286:220;;;:::o;16512:366::-;16654:3;16675:67;16739:2;16734:3;16675:67;:::i;:::-;16668:74;;16751:93;16840:3;16751:93;:::i;:::-;16869:2;16864:3;16860:12;16853:19;;16658:220;;;:::o;16884:366::-;17026:3;17047:67;17111:2;17106:3;17047:67;:::i;:::-;17040:74;;17123:93;17212:3;17123:93;:::i;:::-;17241:2;17236:3;17232:12;17225:19;;17030:220;;;:::o;17256:366::-;17398:3;17419:67;17483:2;17478:3;17419:67;:::i;:::-;17412:74;;17495:93;17584:3;17495:93;:::i;:::-;17613:2;17608:3;17604:12;17597:19;;17402:220;;;:::o;17628:108::-;17705:24;17723:5;17705:24;:::i;:::-;17700:3;17693:37;17683:53;;:::o;17742:118::-;17829:24;17847:5;17829:24;:::i;:::-;17824:3;17817:37;17807:53;;:::o;17866:435::-;18046:3;18068:95;18159:3;18150:6;18068:95;:::i;:::-;18061:102;;18180:95;18271:3;18262:6;18180:95;:::i;:::-;18173:102;;18292:3;18285:10;;18050:251;;;;;:::o;18307:222::-;18400:4;18438:2;18427:9;18423:18;18415:26;;18451:71;18519:1;18508:9;18504:17;18495:6;18451:71;:::i;:::-;18405:124;;;;:::o;18535:640::-;18730:4;18768:3;18757:9;18753:19;18745:27;;18782:71;18850:1;18839:9;18835:17;18826:6;18782:71;:::i;:::-;18863:72;18931:2;18920:9;18916:18;18907:6;18863:72;:::i;:::-;18945;19013:2;19002:9;18998:18;18989:6;18945:72;:::i;:::-;19064:9;19058:4;19054:20;19049:2;19038:9;19034:18;19027:48;19092:76;19163:4;19154:6;19092:76;:::i;:::-;19084:84;;18735:440;;;;;;;:::o;19181:373::-;19324:4;19362:2;19351:9;19347:18;19339:26;;19411:9;19405:4;19401:20;19397:1;19386:9;19382:17;19375:47;19439:108;19542:4;19533:6;19439:108;:::i;:::-;19431:116;;19329:225;;;;:::o;19560:210::-;19647:4;19685:2;19674:9;19670:18;19662:26;;19698:65;19760:1;19749:9;19745:17;19736:6;19698:65;:::i;:::-;19652:118;;;;:::o;19776:313::-;19889:4;19927:2;19916:9;19912:18;19904:26;;19976:9;19970:4;19966:20;19962:1;19951:9;19947:17;19940:47;20004:78;20077:4;20068:6;20004:78;:::i;:::-;19996:86;;19894:195;;;;:::o;20095:419::-;20261:4;20299:2;20288:9;20284:18;20276:26;;20348:9;20342:4;20338:20;20334:1;20323:9;20319:17;20312:47;20376:131;20502:4;20376:131;:::i;:::-;20368:139;;20266:248;;;:::o;20520:419::-;20686:4;20724:2;20713:9;20709:18;20701:26;;20773:9;20767:4;20763:20;20759:1;20748:9;20744:17;20737:47;20801:131;20927:4;20801:131;:::i;:::-;20793:139;;20691:248;;;:::o;20945:419::-;21111:4;21149:2;21138:9;21134:18;21126:26;;21198:9;21192:4;21188:20;21184:1;21173:9;21169:17;21162:47;21226:131;21352:4;21226:131;:::i;:::-;21218:139;;21116:248;;;:::o;21370:419::-;21536:4;21574:2;21563:9;21559:18;21551:26;;21623:9;21617:4;21613:20;21609:1;21598:9;21594:17;21587:47;21651:131;21777:4;21651:131;:::i;:::-;21643:139;;21541:248;;;:::o;21795:419::-;21961:4;21999:2;21988:9;21984:18;21976:26;;22048:9;22042:4;22038:20;22034:1;22023:9;22019:17;22012:47;22076:131;22202:4;22076:131;:::i;:::-;22068:139;;21966:248;;;:::o;22220:419::-;22386:4;22424:2;22413:9;22409:18;22401:26;;22473:9;22467:4;22463:20;22459:1;22448:9;22444:17;22437:47;22501:131;22627:4;22501:131;:::i;:::-;22493:139;;22391:248;;;:::o;22645:419::-;22811:4;22849:2;22838:9;22834:18;22826:26;;22898:9;22892:4;22888:20;22884:1;22873:9;22869:17;22862:47;22926:131;23052:4;22926:131;:::i;:::-;22918:139;;22816:248;;;:::o;23070:419::-;23236:4;23274:2;23263:9;23259:18;23251:26;;23323:9;23317:4;23313:20;23309:1;23298:9;23294:17;23287:47;23351:131;23477:4;23351:131;:::i;:::-;23343:139;;23241:248;;;:::o;23495:419::-;23661:4;23699:2;23688:9;23684:18;23676:26;;23748:9;23742:4;23738:20;23734:1;23723:9;23719:17;23712:47;23776:131;23902:4;23776:131;:::i;:::-;23768:139;;23666:248;;;:::o;23920:419::-;24086:4;24124:2;24113:9;24109:18;24101:26;;24173:9;24167:4;24163:20;24159:1;24148:9;24144:17;24137:47;24201:131;24327:4;24201:131;:::i;:::-;24193:139;;24091:248;;;:::o;24345:419::-;24511:4;24549:2;24538:9;24534:18;24526:26;;24598:9;24592:4;24588:20;24584:1;24573:9;24569:17;24562:47;24626:131;24752:4;24626:131;:::i;:::-;24618:139;;24516:248;;;:::o;24770:419::-;24936:4;24974:2;24963:9;24959:18;24951:26;;25023:9;25017:4;25013:20;25009:1;24998:9;24994:17;24987:47;25051:131;25177:4;25051:131;:::i;:::-;25043:139;;24941:248;;;:::o;25195:419::-;25361:4;25399:2;25388:9;25384:18;25376:26;;25448:9;25442:4;25438:20;25434:1;25423:9;25419:17;25412:47;25476:131;25602:4;25476:131;:::i;:::-;25468:139;;25366:248;;;:::o;25620:419::-;25786:4;25824:2;25813:9;25809:18;25801:26;;25873:9;25867:4;25863:20;25859:1;25848:9;25844:17;25837:47;25901:131;26027:4;25901:131;:::i;:::-;25893:139;;25791:248;;;:::o;26045:419::-;26211:4;26249:2;26238:9;26234:18;26226:26;;26298:9;26292:4;26288:20;26284:1;26273:9;26269:17;26262:47;26326:131;26452:4;26326:131;:::i;:::-;26318:139;;26216:248;;;:::o;26470:419::-;26636:4;26674:2;26663:9;26659:18;26651:26;;26723:9;26717:4;26713:20;26709:1;26698:9;26694:17;26687:47;26751:131;26877:4;26751:131;:::i;:::-;26743:139;;26641:248;;;:::o;26895:419::-;27061:4;27099:2;27088:9;27084:18;27076:26;;27148:9;27142:4;27138:20;27134:1;27123:9;27119:17;27112:47;27176:131;27302:4;27176:131;:::i;:::-;27168:139;;27066:248;;;:::o;27320:419::-;27486:4;27524:2;27513:9;27509:18;27501:26;;27573:9;27567:4;27563:20;27559:1;27548:9;27544:17;27537:47;27601:131;27727:4;27601:131;:::i;:::-;27593:139;;27491:248;;;:::o;27745:419::-;27911:4;27949:2;27938:9;27934:18;27926:26;;27998:9;27992:4;27988:20;27984:1;27973:9;27969:17;27962:47;28026:131;28152:4;28026:131;:::i;:::-;28018:139;;27916:248;;;:::o;28170:419::-;28336:4;28374:2;28363:9;28359:18;28351:26;;28423:9;28417:4;28413:20;28409:1;28398:9;28394:17;28387:47;28451:131;28577:4;28451:131;:::i;:::-;28443:139;;28341:248;;;:::o;28595:419::-;28761:4;28799:2;28788:9;28784:18;28776:26;;28848:9;28842:4;28838:20;28834:1;28823:9;28819:17;28812:47;28876:131;29002:4;28876:131;:::i;:::-;28868:139;;28766:248;;;:::o;29020:419::-;29186:4;29224:2;29213:9;29209:18;29201:26;;29273:9;29267:4;29263:20;29259:1;29248:9;29244:17;29237:47;29301:131;29427:4;29301:131;:::i;:::-;29293:139;;29191:248;;;:::o;29445:419::-;29611:4;29649:2;29638:9;29634:18;29626:26;;29698:9;29692:4;29688:20;29684:1;29673:9;29669:17;29662:47;29726:131;29852:4;29726:131;:::i;:::-;29718:139;;29616:248;;;:::o;29870:222::-;29963:4;30001:2;29990:9;29986:18;29978:26;;30014:71;30082:1;30071:9;30067:17;30058:6;30014:71;:::i;:::-;29968:124;;;;:::o;30098:129::-;30132:6;30159:20;;:::i;:::-;30149:30;;30188:33;30216:4;30208:6;30188:33;:::i;:::-;30139:88;;;:::o;30233:75::-;30266:6;30299:2;30293:9;30283:19;;30273:35;:::o;30314:307::-;30375:4;30465:18;30457:6;30454:30;30451:2;;;30487:18;;:::i;:::-;30451:2;30525:29;30547:6;30525:29;:::i;:::-;30517:37;;30609:4;30603;30599:15;30591:23;;30380:241;;;:::o;30627:308::-;30689:4;30779:18;30771:6;30768:30;30765:2;;;30801:18;;:::i;:::-;30765:2;30839:29;30861:6;30839:29;:::i;:::-;30831:37;;30923:4;30917;30913:15;30905:23;;30694:241;;;:::o;30941:132::-;31008:4;31031:3;31023:11;;31061:4;31056:3;31052:14;31044:22;;31013:60;;;:::o;31079:114::-;31146:6;31180:5;31174:12;31164:22;;31153:40;;;:::o;31199:98::-;31250:6;31284:5;31278:12;31268:22;;31257:40;;;:::o;31303:99::-;31355:6;31389:5;31383:12;31373:22;;31362:40;;;:::o;31408:113::-;31478:4;31510;31505:3;31501:14;31493:22;;31483:38;;;:::o;31527:184::-;31626:11;31660:6;31655:3;31648:19;31700:4;31695:3;31691:14;31676:29;;31638:73;;;;:::o;31717:168::-;31800:11;31834:6;31829:3;31822:19;31874:4;31869:3;31865:14;31850:29;;31812:73;;;;:::o;31891:169::-;31975:11;32009:6;32004:3;31997:19;32049:4;32044:3;32040:14;32025:29;;31987:73;;;;:::o;32066:148::-;32168:11;32205:3;32190:18;;32180:34;;;;:::o;32220:305::-;32260:3;32279:20;32297:1;32279:20;:::i;:::-;32274:25;;32313:20;32331:1;32313:20;:::i;:::-;32308:25;;32467:1;32399:66;32395:74;32392:1;32389:81;32386:2;;;32473:18;;:::i;:::-;32386:2;32517:1;32514;32510:9;32503:16;;32264:261;;;;:::o;32531:185::-;32571:1;32588:20;32606:1;32588:20;:::i;:::-;32583:25;;32622:20;32640:1;32622:20;:::i;:::-;32617:25;;32661:1;32651:2;;32666:18;;:::i;:::-;32651:2;32708:1;32705;32701:9;32696:14;;32573:143;;;;:::o;32722:348::-;32762:7;32785:20;32803:1;32785:20;:::i;:::-;32780:25;;32819:20;32837:1;32819:20;:::i;:::-;32814:25;;33007:1;32939:66;32935:74;32932:1;32929:81;32924:1;32917:9;32910:17;32906:105;32903:2;;;33014:18;;:::i;:::-;32903:2;33062:1;33059;33055:9;33044:20;;32770:300;;;;:::o;33076:191::-;33116:4;33136:20;33154:1;33136:20;:::i;:::-;33131:25;;33170:20;33188:1;33170:20;:::i;:::-;33165:25;;33209:1;33206;33203:8;33200:2;;;33214:18;;:::i;:::-;33200:2;33259:1;33256;33252:9;33244:17;;33121:146;;;;:::o;33273:96::-;33310:7;33339:24;33357:5;33339:24;:::i;:::-;33328:35;;33318:51;;;:::o;33375:90::-;33409:7;33452:5;33445:13;33438:21;33427:32;;33417:48;;;:::o;33471:149::-;33507:7;33547:66;33540:5;33536:78;33525:89;;33515:105;;;:::o;33626:126::-;33663:7;33703:42;33696:5;33692:54;33681:65;;33671:81;;;:::o;33758:77::-;33795:7;33824:5;33813:16;;33803:32;;;:::o;33841:154::-;33925:6;33920:3;33915;33902:30;33987:1;33978:6;33973:3;33969:16;33962:27;33892:103;;;:::o;34001:307::-;34069:1;34079:113;34093:6;34090:1;34087:13;34079:113;;;34178:1;34173:3;34169:11;34163:18;34159:1;34154:3;34150:11;34143:39;34115:2;34112:1;34108:10;34103:15;;34079:113;;;34210:6;34207:1;34204:13;34201:2;;;34290:1;34281:6;34276:3;34272:16;34265:27;34201:2;34050:258;;;;:::o;34314:320::-;34358:6;34395:1;34389:4;34385:12;34375:22;;34442:1;34436:4;34432:12;34463:18;34453:2;;34519:4;34511:6;34507:17;34497:27;;34453:2;34581;34573:6;34570:14;34550:18;34547:38;34544:2;;;34600:18;;:::i;:::-;34544:2;34365:269;;;;:::o;34640:281::-;34723:27;34745:4;34723:27;:::i;:::-;34715:6;34711:40;34853:6;34841:10;34838:22;34817:18;34805:10;34802:34;34799:62;34796:2;;;34864:18;;:::i;:::-;34796:2;34904:10;34900:2;34893:22;34683:238;;;:::o;34927:233::-;34966:3;34989:24;35007:5;34989:24;:::i;:::-;34980:33;;35035:66;35028:5;35025:77;35022:2;;;35105:18;;:::i;:::-;35022:2;35152:1;35145:5;35141:13;35134:20;;34970:190;;;:::o;35166:176::-;35198:1;35215:20;35233:1;35215:20;:::i;:::-;35210:25;;35249:20;35267:1;35249:20;:::i;:::-;35244:25;;35288:1;35278:2;;35293:18;;:::i;:::-;35278:2;35334:1;35331;35327:9;35322:14;;35200:142;;;;:::o;35348:180::-;35396:77;35393:1;35386:88;35493:4;35490:1;35483:15;35517:4;35514:1;35507:15;35534:180;35582:77;35579:1;35572:88;35679:4;35676:1;35669:15;35703:4;35700:1;35693:15;35720:180;35768:77;35765:1;35758:88;35865:4;35862:1;35855:15;35889:4;35886:1;35879:15;35906:180;35954:77;35951:1;35944:88;36051:4;36048:1;36041:15;36075:4;36072:1;36065:15;36092:102;36133:6;36184:2;36180:7;36175:2;36168:5;36164:14;36160:28;36150:38;;36140:54;;;:::o;36200:230::-;36340:34;36336:1;36328:6;36324:14;36317:58;36409:13;36404:2;36396:6;36392:15;36385:38;36306:124;:::o;36436:237::-;36576:34;36572:1;36564:6;36560:14;36553:58;36645:20;36640:2;36632:6;36628:15;36621:45;36542:131;:::o;36679:225::-;36819:34;36815:1;36807:6;36803:14;36796:58;36888:8;36883:2;36875:6;36871:15;36864:33;36785:119;:::o;36910:178::-;37050:30;37046:1;37038:6;37034:14;37027:54;37016:72;:::o;37094:223::-;37234:34;37230:1;37222:6;37218:14;37211:58;37303:6;37298:2;37290:6;37286:15;37279:31;37200:117;:::o;37323:175::-;37463:27;37459:1;37451:6;37447:14;37440:51;37429:69;:::o;37504:231::-;37644:34;37640:1;37632:6;37628:14;37621:58;37713:14;37708:2;37700:6;37696:15;37689:39;37610:125;:::o;37741:243::-;37881:34;37877:1;37869:6;37865:14;37858:58;37950:26;37945:2;37937:6;37933:15;37926:51;37847:137;:::o;37990:229::-;38130:34;38126:1;38118:6;38114:14;38107:58;38199:12;38194:2;38186:6;38182:15;38175:37;38096:123;:::o;38225:228::-;38365:34;38361:1;38353:6;38349:14;38342:58;38434:11;38429:2;38421:6;38417:15;38410:36;38331:122;:::o;38459:178::-;38599:30;38595:1;38587:6;38583:14;38576:54;38565:72;:::o;38643:182::-;38783:34;38779:1;38771:6;38767:14;38760:58;38749:76;:::o;38831:224::-;38971:34;38967:1;38959:6;38955:14;38948:58;39040:7;39035:2;39027:6;39023:15;39016:32;38937:118;:::o;39061:231::-;39201:34;39197:1;39189:6;39185:14;39178:58;39270:14;39265:2;39257:6;39253:15;39246:39;39167:125;:::o;39298:182::-;39438:34;39434:1;39426:6;39422:14;39415:58;39404:76;:::o;39486:228::-;39626:34;39622:1;39614:6;39610:14;39603:58;39695:11;39690:2;39682:6;39678:15;39671:36;39592:122;:::o;39720:234::-;39860:34;39856:1;39848:6;39844:14;39837:58;39929:17;39924:2;39916:6;39912:15;39905:42;39826:128;:::o;39960:169::-;40100:21;40096:1;40088:6;40084:14;40077:45;40066:63;:::o;40135:220::-;40275:34;40271:1;40263:6;40259:14;40252:58;40344:3;40339:2;40331:6;40327:15;40320:28;40241:114;:::o;40361:224::-;40501:34;40497:1;40489:6;40485:14;40478:58;40570:7;40565:2;40557:6;40553:15;40546:32;40467:118;:::o;40591:236::-;40731:34;40727:1;40719:6;40715:14;40708:58;40800:19;40795:2;40787:6;40783:15;40776:44;40697:130;:::o;40833:231::-;40973:34;40969:1;40961:6;40957:14;40950:58;41042:14;41037:2;41029:6;41025:15;41018:39;40939:125;:::o;41070:222::-;41210:34;41206:1;41198:6;41194:14;41187:58;41279:5;41274:2;41266:6;41262:15;41255:30;41176:116;:::o;41298:122::-;41371:24;41389:5;41371:24;:::i;:::-;41364:5;41361:35;41351:2;;41410:1;41407;41400:12;41351:2;41341:79;:::o;41426:116::-;41496:21;41511:5;41496:21;:::i;:::-;41489:5;41486:32;41476:2;;41532:1;41529;41522:12;41476:2;41466:76;:::o;41548:120::-;41620:23;41637:5;41620:23;:::i;:::-;41613:5;41610:34;41600:2;;41658:1;41655;41648:12;41600:2;41590:78;:::o;41674:122::-;41747:24;41765:5;41747:24;:::i;:::-;41740:5;41737:35;41727:2;;41786:1;41783;41776:12;41727:2;41717:79;:::o

Swarm Source

ipfs://8e2dfaa7bb3d170e8c30f598e10e30d4b1eecb342d576c80a14770579f308920
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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