ETH Price: $1,761.91 (-1.09%)

Token

BoredTigerYachtClub (BTYC)
 

Overview

Max Total Supply

336 BTYC

Holders

77

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 BTYC
0x176d83328aad92bdd088fa1fe1f7ece248d5ee7a
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:
NFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-15
*/

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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



pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

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

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



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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



pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: btyc.sol



pragma solidity >=0.7.0 <0.9.0;



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

  string public baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.09 ether;
  uint256 public maxSupply = 10000;
  uint256 public maxMintAmount = 20;
  bool public paused = false;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    mint(50);
  }

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

  // public
  function mint(uint256 _mintAmount) public payable {
    require(!paused, "This contract is not active right now.");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "You need to mint at least 1 NFT.");
    require(supply + _mintAmount <= maxSupply, "Max NFT supply limit exceeded.");

    if (msg.sender != owner()) {
      require(_mintAmount <= maxMintAmount, "Max mint amount per session has exceeded.");
      require(msg.value >= cost * _mintAmount, "Insufficient funds.");
    }

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

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

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

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

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

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner() {
    maxMintAmount = _newmaxMintAmount;
  }

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

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

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

  function withdraw() public payable onlyOwner {
    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
    require(success);
  }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200005192919062000efd565b5067013fbe85edc90000600d55612710600e556014600f556000601060006101000a81548160ff0219169083151502179055503480156200009157600080fd5b5060405162005fe638038062005fe68339818101604052810190620000b7919062001074565b82828160009080519060200190620000d192919062000efd565b508060019080519060200190620000ea92919062000efd565b5050506200010d620001016200013960201b60201c565b6200014160201b60201c565b6200011e816200020760201b60201c565b620001306032620002b260201b60201c565b50505062001af9565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002176200013960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200023d620004de60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000296576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028d9062001414565b60405180910390fd5b80600b9080519060200190620002ae92919062000efd565b5050565b601060009054906101000a900460ff161562000305576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002fc9062001458565b60405180910390fd5b6000620003176200050860201b60201c565b9050600082116200035f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003569062001436565b60405180910390fd5b600e5482826200037091906200154a565b1115620003b4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003ab906200147a565b60405180910390fd5b620003c4620004de60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146200049557600f548211156200043f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200043690620013ae565b60405180910390fd5b81600d546200044f9190620015a7565b34101562000494576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200048b906200149c565b60405180910390fd5b5b6000600190505b828111620004d957620004c3338284620004b791906200154a565b6200051560201b60201c565b8080620004d0906200174f565b9150506200049c565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600880549050905090565b620005378282604051806020016040528060008152506200053b60201b60201c565b5050565b6200054d8383620005a960201b60201c565b6200056260008484846200078f60201b60201c565b620005a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200059b906200136a565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200061c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200061390620013f2565b60405180910390fd5b6200062d816200094960201b60201c565b1562000670576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000667906200138c565b60405180910390fd5b6200068460008383620009b560201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620006d691906200154a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620007bd8473ffffffffffffffffffffffffffffffffffffffff1662000afc60201b62001a881760201c565b156200093c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620007ef6200013960201b60201c565b8786866040518563ffffffff1660e01b815260040162000813949392919062001316565b602060405180830381600087803b1580156200082e57600080fd5b505af19250505080156200086257506040513d601f19601f820116820180604052508101906200085f919062001042565b60015b620008eb573d806000811462000895576040519150601f19603f3d011682016040523d82523d6000602084013e6200089a565b606091505b50600081511415620008e3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008da906200136a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000941565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620009cd83838362000b0f60201b62001a9b1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000a1a5762000a148162000b1460201b60201c565b62000a62565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000a615762000a60838262000b5d60201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000aaf5762000aa98162000cda60201b60201c565b62000af7565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000af65762000af5828262000db660201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000b778462000e4260201b620010c91760201c565b62000b83919062001608565b905060006007600084815260200190815260200160002054905081811462000c69576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000cf0919062001608565b905060006009600084815260200190815260200160002054905060006008838154811062000d235762000d226200182a565b5b90600052602060002001549050806008838154811062000d485762000d476200182a565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000d9a5762000d99620017fb565b5b6001900381819060005260206000200160009055905550505050565b600062000dce8362000e4260201b620010c91760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000eb6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ead90620013d0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000f0b90620016e3565b90600052602060002090601f01602090048101928262000f2f576000855562000f7b565b82601f1062000f4a57805160ff191683800117855562000f7b565b8280016001018555821562000f7b579182015b8281111562000f7a57825182559160200191906001019062000f5d565b5b50905062000f8a919062000f8e565b5090565b5b8082111562000fa957600081600090555060010162000f8f565b5090565b600062000fc462000fbe84620014e7565b620014be565b90508281526020810184848401111562000fe35762000fe26200188d565b5b62000ff0848285620016ad565b509392505050565b600081519050620010098162001adf565b92915050565b600082601f83011262001027576200102662001888565b5b81516200103984826020860162000fad565b91505092915050565b6000602082840312156200105b576200105a62001897565b5b60006200106b8482850162000ff8565b91505092915050565b60008060006060848603121562001090576200108f62001897565b5b600084015167ffffffffffffffff811115620010b157620010b062001892565b5b620010bf868287016200100f565b935050602084015167ffffffffffffffff811115620010e357620010e262001892565b5b620010f1868287016200100f565b925050604084015167ffffffffffffffff81111562001115576200111462001892565b5b62001123868287016200100f565b9150509250925092565b620011388162001643565b82525050565b60006200114b826200151d565b62001157818562001528565b935062001169818560208601620016ad565b62001174816200189c565b840191505092915050565b60006200118e60328362001539565b91506200119b82620018ad565b604082019050919050565b6000620011b5601c8362001539565b9150620011c282620018fc565b602082019050919050565b6000620011dc60298362001539565b9150620011e98262001925565b604082019050919050565b600062001203602a8362001539565b9150620012108262001974565b604082019050919050565b60006200122a60208362001539565b91506200123782620019c3565b602082019050919050565b60006200125160208362001539565b91506200125e82620019ec565b602082019050919050565b60006200127860208362001539565b9150620012858262001a15565b602082019050919050565b60006200129f60268362001539565b9150620012ac8262001a3e565b604082019050919050565b6000620012c6601e8362001539565b9150620012d38262001a8d565b602082019050919050565b6000620012ed60138362001539565b9150620012fa8262001ab6565b602082019050919050565b6200131081620016a3565b82525050565b60006080820190506200132d60008301876200112d565b6200133c60208301866200112d565b6200134b604083018562001305565b81810360608301526200135f81846200113e565b905095945050505050565b6000602082019050818103600083015262001385816200117f565b9050919050565b60006020820190508181036000830152620013a781620011a6565b9050919050565b60006020820190508181036000830152620013c981620011cd565b9050919050565b60006020820190508181036000830152620013eb81620011f4565b9050919050565b600060208201905081810360008301526200140d816200121b565b9050919050565b600060208201905081810360008301526200142f8162001242565b9050919050565b60006020820190508181036000830152620014518162001269565b9050919050565b60006020820190508181036000830152620014738162001290565b9050919050565b600060208201905081810360008301526200149581620012b7565b9050919050565b60006020820190508181036000830152620014b781620012de565b9050919050565b6000620014ca620014dd565b9050620014d8828262001719565b919050565b6000604051905090565b600067ffffffffffffffff82111562001505576200150462001859565b5b62001510826200189c565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006200155782620016a3565b91506200156483620016a3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200159c576200159b6200179d565b5b828201905092915050565b6000620015b482620016a3565b9150620015c183620016a3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620015fd57620015fc6200179d565b5b828202905092915050565b60006200161582620016a3565b91506200162283620016a3565b9250828210156200163857620016376200179d565b5b828203905092915050565b6000620016508262001683565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620016cd578082015181840152602081019050620016b0565b83811115620016dd576000848401525b50505050565b60006002820490506001821680620016fc57607f821691505b60208210811415620017135762001712620017cc565b5b50919050565b62001724826200189c565b810181811067ffffffffffffffff8211171562001746576200174562001859565b5b80604052505050565b60006200175c82620016a3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200179257620017916200179d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d6178206d696e7420616d6f756e74207065722073657373696f6e206861732060008201527f65786365656465642e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f75206e65656420746f206d696e74206174206c656173742031204e46542e600082015250565b7f5468697320636f6e7472616374206973206e6f7420616374697665207269676860008201527f74206e6f772e0000000000000000000000000000000000000000000000000000602082015250565b7f4d6178204e465420737570706c79206c696d69742065786365656465642e0000600082015250565b7f496e73756666696369656e742066756e64732e00000000000000000000000000600082015250565b62001aea8162001657565b811462001af657600080fd5b50565b6144dd8062001b096000396000f3fe6080604052600436106101ee5760003560e01c80635c975abb1161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146106cf578063d5abeb011461070c578063da3ef23f14610737578063e985e9c514610760578063f2fde38b1461079d576101ee565b8063a0712d6814610636578063a22cb46514610652578063b88d4fde1461067b578063c6682862146106a4576101ee565b8063715018a6116100dc578063715018a6146105a05780637f00c7a6146105b75780638da5cb5b146105e057806395d89b411461060b576101ee565b80635c975abb146104d05780636352211e146104fb5780636c0360eb1461053857806370a0823114610563576101ee565b806323b872dd11610185578063438b630011610154578063438b63001461040457806344a0d68a146104415780634f6ccce71461046a57806355f804b3146104a7576101ee565b806323b872dd1461036b5780632f745c59146103945780633ccfd60b146103d157806342842e0e146103db576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806313faede6146102ea57806318160ddd14610315578063239c70ae14610340576101ee565b806301ffc9a7146101f357806302329a291461023057806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612f3c565b6107c6565b60405161022791906135f7565b60405180910390f35b34801561023c57600080fd5b5061025760048036038101906102529190612f0f565b610840565b005b34801561026557600080fd5b5061026e6108d9565b60405161027b9190613612565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a69190612fdf565b61096b565b6040516102b8919061356e565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e39190612ecf565b6109f0565b005b3480156102f657600080fd5b506102ff610b08565b60405161030c9190613914565b60405180910390f35b34801561032157600080fd5b5061032a610b0e565b6040516103379190613914565b60405180910390f35b34801561034c57600080fd5b50610355610b1b565b6040516103629190613914565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d9190612db9565b610b21565b005b3480156103a057600080fd5b506103bb60048036038101906103b69190612ecf565b610b81565b6040516103c89190613914565b60405180910390f35b6103d9610c26565b005b3480156103e757600080fd5b5061040260048036038101906103fd9190612db9565b610d1b565b005b34801561041057600080fd5b5061042b60048036038101906104269190612d4c565b610d3b565b60405161043891906135d5565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190612fdf565b610de9565b005b34801561047657600080fd5b50610491600480360381019061048c9190612fdf565b610e6f565b60405161049e9190613914565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190612f96565b610ee0565b005b3480156104dc57600080fd5b506104e5610f76565b6040516104f291906135f7565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d9190612fdf565b610f89565b60405161052f919061356e565b60405180910390f35b34801561054457600080fd5b5061054d61103b565b60405161055a9190613612565b60405180910390f35b34801561056f57600080fd5b5061058a60048036038101906105859190612d4c565b6110c9565b6040516105979190613914565b60405180910390f35b3480156105ac57600080fd5b506105b5611181565b005b3480156105c357600080fd5b506105de60048036038101906105d99190612fdf565b611209565b005b3480156105ec57600080fd5b506105f561128f565b604051610602919061356e565b60405180910390f35b34801561061757600080fd5b506106206112b9565b60405161062d9190613612565b60405180910390f35b610650600480360381019061064b9190612fdf565b61134b565b005b34801561065e57600080fd5b5061067960048036038101906106749190612e8f565b611545565b005b34801561068757600080fd5b506106a2600480360381019061069d9190612e0c565b6116c6565b005b3480156106b057600080fd5b506106b9611728565b6040516106c69190613612565b60405180910390f35b3480156106db57600080fd5b506106f660048036038101906106f19190612fdf565b6117b6565b6040516107039190613612565b60405180910390f35b34801561071857600080fd5b50610721611860565b60405161072e9190613914565b60405180910390f35b34801561074357600080fd5b5061075e60048036038101906107599190612f96565b611866565b005b34801561076c57600080fd5b5061078760048036038101906107829190612d79565b6118fc565b60405161079491906135f7565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190612d4c565b611990565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610839575061083882611aa0565b5b9050919050565b610848611b82565b73ffffffffffffffffffffffffffffffffffffffff1661086661128f565b73ffffffffffffffffffffffffffffffffffffffff16146108bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b3906137d4565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6060600080546108e890613c1d565b80601f016020809104026020016040519081016040528092919081815260200182805461091490613c1d565b80156109615780601f1061093657610100808354040283529160200191610961565b820191906000526020600020905b81548152906001019060200180831161094457829003601f168201915b5050505050905090565b600061097682611b8a565b6109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac906137b4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109fb82610f89565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6390613854565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a8b611b82565b73ffffffffffffffffffffffffffffffffffffffff161480610aba5750610ab981610ab4611b82565b6118fc565b5b610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af090613734565b60405180910390fd5b610b038383611bf6565b505050565b600d5481565b6000600880549050905090565b600f5481565b610b32610b2c611b82565b82611caf565b610b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6890613874565b60405180910390fd5b610b7c838383611d8d565b505050565b6000610b8c836110c9565b8210610bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc490613634565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c2e611b82565b73ffffffffffffffffffffffffffffffffffffffff16610c4c61128f565b73ffffffffffffffffffffffffffffffffffffffff1614610ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c99906137d4565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610cc890613559565b60006040518083038185875af1925050503d8060008114610d05576040519150601f19603f3d011682016040523d82523d6000602084013e610d0a565b606091505b5050905080610d1857600080fd5b50565b610d36838383604051806020016040528060008152506116c6565b505050565b60606000610d48836110c9565b905060008167ffffffffffffffff811115610d6657610d65613de5565b5b604051908082528060200260200182016040528015610d945781602001602082028036833780820191505090505b50905060005b82811015610dde57610dac8582610b81565b828281518110610dbf57610dbe613db6565b5b6020026020010181815250508080610dd690613c80565b915050610d9a565b508092505050919050565b610df1611b82565b73ffffffffffffffffffffffffffffffffffffffff16610e0f61128f565b73ffffffffffffffffffffffffffffffffffffffff1614610e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5c906137d4565b60405180910390fd5b80600d8190555050565b6000610e79610b0e565b8210610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb190613894565b60405180910390fd5b60088281548110610ece57610ecd613db6565b5b90600052602060002001549050919050565b610ee8611b82565b73ffffffffffffffffffffffffffffffffffffffff16610f0661128f565b73ffffffffffffffffffffffffffffffffffffffff1614610f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f53906137d4565b60405180910390fd5b80600b9080519060200190610f72929190612b60565b5050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611032576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102990613774565b60405180910390fd5b80915050919050565b600b805461104890613c1d565b80601f016020809104026020016040519081016040528092919081815260200182805461107490613c1d565b80156110c15780601f10611096576101008083540402835291602001916110c1565b820191906000526020600020905b8154815290600101906020018083116110a457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561113a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113190613754565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611189611b82565b73ffffffffffffffffffffffffffffffffffffffff166111a761128f565b73ffffffffffffffffffffffffffffffffffffffff16146111fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f4906137d4565b60405180910390fd5b6112076000611fe9565b565b611211611b82565b73ffffffffffffffffffffffffffffffffffffffff1661122f61128f565b73ffffffffffffffffffffffffffffffffffffffff1614611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c906137d4565b60405180910390fd5b80600f8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546112c890613c1d565b80601f01602080910402602001604051908101604052809291908181526020018280546112f490613c1d565b80156113415780601f1061131657610100808354040283529160200191611341565b820191906000526020600020905b81548152906001019060200180831161132457829003601f168201915b5050505050905090565b601060009054906101000a900460ff161561139b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611392906138b4565b60405180910390fd5b60006113a5610b0e565b9050600082116113ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e190613834565b60405180910390fd5b600e5482826113f99190613a52565b111561143a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611431906138d4565b60405180910390fd5b61144261128f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461150a57600f548211156114b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b0906136f4565b60405180910390fd5b81600d546114c79190613ad9565b341015611509576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611500906138f4565b60405180910390fd5b5b6000600190505b8281116115405761152d3382846115289190613a52565b6120af565b808061153890613c80565b915050611511565b505050565b61154d611b82565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b2906136d4565b60405180910390fd5b80600560006115c8611b82565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611675611b82565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116ba91906135f7565b60405180910390a35050565b6116d76116d1611b82565b83611caf565b611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d90613874565b60405180910390fd5b611722848484846120cd565b50505050565b600c805461173590613c1d565b80601f016020809104026020016040519081016040528092919081815260200182805461176190613c1d565b80156117ae5780601f10611783576101008083540402835291602001916117ae565b820191906000526020600020905b81548152906001019060200180831161179157829003601f168201915b505050505081565b60606117c182611b8a565b611800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f790613814565b60405180910390fd5b600061180a612129565b9050600081511161182a5760405180602001604052806000815250611858565b80611834846121bb565b600c60405160200161184893929190613528565b6040516020818303038152906040525b915050919050565b600e5481565b61186e611b82565b73ffffffffffffffffffffffffffffffffffffffff1661188c61128f565b73ffffffffffffffffffffffffffffffffffffffff16146118e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d9906137d4565b60405180910390fd5b80600c90805190602001906118f8929190612b60565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611998611b82565b73ffffffffffffffffffffffffffffffffffffffff166119b661128f565b73ffffffffffffffffffffffffffffffffffffffff1614611a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a03906137d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7390613674565b60405180910390fd5b611a8581611fe9565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b6b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b7b5750611b7a8261231c565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c6983610f89565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611cba82611b8a565b611cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf090613714565b60405180910390fd5b6000611d0483610f89565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d7357508373ffffffffffffffffffffffffffffffffffffffff16611d5b8461096b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d845750611d8381856118fc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611dad82610f89565b73ffffffffffffffffffffffffffffffffffffffff1614611e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfa906137f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6a906136b4565b60405180910390fd5b611e7e838383612386565b611e89600082611bf6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ed99190613b33565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f309190613a52565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6120c982826040518060200160405280600081525061249a565b5050565b6120d8848484611d8d565b6120e4848484846124f5565b612123576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211a90613654565b60405180910390fd5b50505050565b6060600b805461213890613c1d565b80601f016020809104026020016040519081016040528092919081815260200182805461216490613c1d565b80156121b15780601f10612186576101008083540402835291602001916121b1565b820191906000526020600020905b81548152906001019060200180831161219457829003601f168201915b5050505050905090565b60606000821415612203576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612317565b600082905060005b6000821461223557808061221e90613c80565b915050600a8261222e9190613aa8565b915061220b565b60008167ffffffffffffffff81111561225157612250613de5565b5b6040519080825280601f01601f1916602001820160405280156122835781602001600182028036833780820191505090505b5090505b600085146123105760018261229c9190613b33565b9150600a856122ab9190613cc9565b60306122b79190613a52565b60f81b8183815181106122cd576122cc613db6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123099190613aa8565b9450612287565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612391838383611a9b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123d4576123cf8161268c565b612413565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146124125761241183826126d5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124565761245181612842565b612495565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612494576124938282612913565b5b5b505050565b6124a48383612992565b6124b160008484846124f5565b6124f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e790613654565b60405180910390fd5b505050565b60006125168473ffffffffffffffffffffffffffffffffffffffff16611a88565b1561267f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261253f611b82565b8786866040518563ffffffff1660e01b81526004016125619493929190613589565b602060405180830381600087803b15801561257b57600080fd5b505af19250505080156125ac57506040513d601f19601f820116820180604052508101906125a99190612f69565b60015b61262f573d80600081146125dc576040519150601f19603f3d011682016040523d82523d6000602084013e6125e1565b606091505b50600081511415612627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261e90613654565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612684565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016126e2846110c9565b6126ec9190613b33565b90506000600760008481526020019081526020016000205490508181146127d1576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128569190613b33565b905060006009600084815260200190815260200160002054905060006008838154811061288657612885613db6565b5b9060005260206000200154905080600883815481106128a8576128a7613db6565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806128f7576128f6613d87565b5b6001900381819060005260206000200160009055905550505050565b600061291e836110c9565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f990613794565b60405180910390fd5b612a0b81611b8a565b15612a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4290613694565b60405180910390fd5b612a5760008383612386565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612aa79190613a52565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612b6c90613c1d565b90600052602060002090601f016020900481019282612b8e5760008555612bd5565b82601f10612ba757805160ff1916838001178555612bd5565b82800160010185558215612bd5579182015b82811115612bd4578251825591602001919060010190612bb9565b5b509050612be29190612be6565b5090565b5b80821115612bff576000816000905550600101612be7565b5090565b6000612c16612c1184613954565b61392f565b905082815260208101848484011115612c3257612c31613e19565b5b612c3d848285613bdb565b509392505050565b6000612c58612c5384613985565b61392f565b905082815260208101848484011115612c7457612c73613e19565b5b612c7f848285613bdb565b509392505050565b600081359050612c968161444b565b92915050565b600081359050612cab81614462565b92915050565b600081359050612cc081614479565b92915050565b600081519050612cd581614479565b92915050565b600082601f830112612cf057612cef613e14565b5b8135612d00848260208601612c03565b91505092915050565b600082601f830112612d1e57612d1d613e14565b5b8135612d2e848260208601612c45565b91505092915050565b600081359050612d4681614490565b92915050565b600060208284031215612d6257612d61613e23565b5b6000612d7084828501612c87565b91505092915050565b60008060408385031215612d9057612d8f613e23565b5b6000612d9e85828601612c87565b9250506020612daf85828601612c87565b9150509250929050565b600080600060608486031215612dd257612dd1613e23565b5b6000612de086828701612c87565b9350506020612df186828701612c87565b9250506040612e0286828701612d37565b9150509250925092565b60008060008060808587031215612e2657612e25613e23565b5b6000612e3487828801612c87565b9450506020612e4587828801612c87565b9350506040612e5687828801612d37565b925050606085013567ffffffffffffffff811115612e7757612e76613e1e565b5b612e8387828801612cdb565b91505092959194509250565b60008060408385031215612ea657612ea5613e23565b5b6000612eb485828601612c87565b9250506020612ec585828601612c9c565b9150509250929050565b60008060408385031215612ee657612ee5613e23565b5b6000612ef485828601612c87565b9250506020612f0585828601612d37565b9150509250929050565b600060208284031215612f2557612f24613e23565b5b6000612f3384828501612c9c565b91505092915050565b600060208284031215612f5257612f51613e23565b5b6000612f6084828501612cb1565b91505092915050565b600060208284031215612f7f57612f7e613e23565b5b6000612f8d84828501612cc6565b91505092915050565b600060208284031215612fac57612fab613e23565b5b600082013567ffffffffffffffff811115612fca57612fc9613e1e565b5b612fd684828501612d09565b91505092915050565b600060208284031215612ff557612ff4613e23565b5b600061300384828501612d37565b91505092915050565b6000613018838361350a565b60208301905092915050565b61302d81613b67565b82525050565b600061303e826139db565b6130488185613a09565b9350613053836139b6565b8060005b8381101561308457815161306b888261300c565b9750613076836139fc565b925050600181019050613057565b5085935050505092915050565b61309a81613b79565b82525050565b60006130ab826139e6565b6130b58185613a1a565b93506130c5818560208601613bea565b6130ce81613e28565b840191505092915050565b60006130e4826139f1565b6130ee8185613a36565b93506130fe818560208601613bea565b61310781613e28565b840191505092915050565b600061311d826139f1565b6131278185613a47565b9350613137818560208601613bea565b80840191505092915050565b6000815461315081613c1d565b61315a8186613a47565b945060018216600081146131755760018114613186576131b9565b60ff198316865281860193506131b9565b61318f856139c6565b60005b838110156131b157815481890152600182019150602081019050613192565b838801955050505b50505092915050565b60006131cf602b83613a36565b91506131da82613e39565b604082019050919050565b60006131f2603283613a36565b91506131fd82613e88565b604082019050919050565b6000613215602683613a36565b915061322082613ed7565b604082019050919050565b6000613238601c83613a36565b915061324382613f26565b602082019050919050565b600061325b602483613a36565b915061326682613f4f565b604082019050919050565b600061327e601983613a36565b915061328982613f9e565b602082019050919050565b60006132a1602983613a36565b91506132ac82613fc7565b604082019050919050565b60006132c4602c83613a36565b91506132cf82614016565b604082019050919050565b60006132e7603883613a36565b91506132f282614065565b604082019050919050565b600061330a602a83613a36565b9150613315826140b4565b604082019050919050565b600061332d602983613a36565b915061333882614103565b604082019050919050565b6000613350602083613a36565b915061335b82614152565b602082019050919050565b6000613373602c83613a36565b915061337e8261417b565b604082019050919050565b6000613396602083613a36565b91506133a1826141ca565b602082019050919050565b60006133b9602983613a36565b91506133c4826141f3565b604082019050919050565b60006133dc602f83613a36565b91506133e782614242565b604082019050919050565b60006133ff602083613a36565b915061340a82614291565b602082019050919050565b6000613422602183613a36565b915061342d826142ba565b604082019050919050565b6000613445600083613a2b565b915061345082614309565b600082019050919050565b6000613468603183613a36565b91506134738261430c565b604082019050919050565b600061348b602c83613a36565b91506134968261435b565b604082019050919050565b60006134ae602683613a36565b91506134b9826143aa565b604082019050919050565b60006134d1601e83613a36565b91506134dc826143f9565b602082019050919050565b60006134f4601383613a36565b91506134ff82614422565b602082019050919050565b61351381613bd1565b82525050565b61352281613bd1565b82525050565b60006135348286613112565b91506135408285613112565b915061354c8284613143565b9150819050949350505050565b600061356482613438565b9150819050919050565b60006020820190506135836000830184613024565b92915050565b600060808201905061359e6000830187613024565b6135ab6020830186613024565b6135b86040830185613519565b81810360608301526135ca81846130a0565b905095945050505050565b600060208201905081810360008301526135ef8184613033565b905092915050565b600060208201905061360c6000830184613091565b92915050565b6000602082019050818103600083015261362c81846130d9565b905092915050565b6000602082019050818103600083015261364d816131c2565b9050919050565b6000602082019050818103600083015261366d816131e5565b9050919050565b6000602082019050818103600083015261368d81613208565b9050919050565b600060208201905081810360008301526136ad8161322b565b9050919050565b600060208201905081810360008301526136cd8161324e565b9050919050565b600060208201905081810360008301526136ed81613271565b9050919050565b6000602082019050818103600083015261370d81613294565b9050919050565b6000602082019050818103600083015261372d816132b7565b9050919050565b6000602082019050818103600083015261374d816132da565b9050919050565b6000602082019050818103600083015261376d816132fd565b9050919050565b6000602082019050818103600083015261378d81613320565b9050919050565b600060208201905081810360008301526137ad81613343565b9050919050565b600060208201905081810360008301526137cd81613366565b9050919050565b600060208201905081810360008301526137ed81613389565b9050919050565b6000602082019050818103600083015261380d816133ac565b9050919050565b6000602082019050818103600083015261382d816133cf565b9050919050565b6000602082019050818103600083015261384d816133f2565b9050919050565b6000602082019050818103600083015261386d81613415565b9050919050565b6000602082019050818103600083015261388d8161345b565b9050919050565b600060208201905081810360008301526138ad8161347e565b9050919050565b600060208201905081810360008301526138cd816134a1565b9050919050565b600060208201905081810360008301526138ed816134c4565b9050919050565b6000602082019050818103600083015261390d816134e7565b9050919050565b60006020820190506139296000830184613519565b92915050565b600061393961394a565b90506139458282613c4f565b919050565b6000604051905090565b600067ffffffffffffffff82111561396f5761396e613de5565b5b61397882613e28565b9050602081019050919050565b600067ffffffffffffffff8211156139a05761399f613de5565b5b6139a982613e28565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a5d82613bd1565b9150613a6883613bd1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a9d57613a9c613cfa565b5b828201905092915050565b6000613ab382613bd1565b9150613abe83613bd1565b925082613ace57613acd613d29565b5b828204905092915050565b6000613ae482613bd1565b9150613aef83613bd1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b2857613b27613cfa565b5b828202905092915050565b6000613b3e82613bd1565b9150613b4983613bd1565b925082821015613b5c57613b5b613cfa565b5b828203905092915050565b6000613b7282613bb1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c08578082015181840152602081019050613bed565b83811115613c17576000848401525b50505050565b60006002820490506001821680613c3557607f821691505b60208210811415613c4957613c48613d58565b5b50919050565b613c5882613e28565b810181811067ffffffffffffffff82111715613c7757613c76613de5565b5b80604052505050565b6000613c8b82613bd1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cbe57613cbd613cfa565b5b600182019050919050565b6000613cd482613bd1565b9150613cdf83613bd1565b925082613cef57613cee613d29565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d6178206d696e7420616d6f756e74207065722073657373696f6e206861732060008201527f65786365656465642e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f596f75206e65656420746f206d696e74206174206c656173742031204e46542e600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5468697320636f6e7472616374206973206e6f7420616374697665207269676860008201527f74206e6f772e0000000000000000000000000000000000000000000000000000602082015250565b7f4d6178204e465420737570706c79206c696d69742065786365656465642e0000600082015250565b7f496e73756666696369656e742066756e64732e00000000000000000000000000600082015250565b61445481613b67565b811461445f57600080fd5b50565b61446b81613b79565b811461447657600080fd5b50565b61448281613b85565b811461448d57600080fd5b50565b61449981613bd1565b81146144a457600080fd5b5056fea26469706673582212208585d8a842641590f6b541ead802a6d3e7eabfeecfd0105d750ea3c3a88558f364736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000013426f72656454696765725961636874436c756200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000442545943000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d57646f4c5664354b637044777233684465576e696d4e5531574c4c6277704375796a564336594231447643722f00000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80635c975abb1161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146106cf578063d5abeb011461070c578063da3ef23f14610737578063e985e9c514610760578063f2fde38b1461079d576101ee565b8063a0712d6814610636578063a22cb46514610652578063b88d4fde1461067b578063c6682862146106a4576101ee565b8063715018a6116100dc578063715018a6146105a05780637f00c7a6146105b75780638da5cb5b146105e057806395d89b411461060b576101ee565b80635c975abb146104d05780636352211e146104fb5780636c0360eb1461053857806370a0823114610563576101ee565b806323b872dd11610185578063438b630011610154578063438b63001461040457806344a0d68a146104415780634f6ccce71461046a57806355f804b3146104a7576101ee565b806323b872dd1461036b5780632f745c59146103945780633ccfd60b146103d157806342842e0e146103db576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806313faede6146102ea57806318160ddd14610315578063239c70ae14610340576101ee565b806301ffc9a7146101f357806302329a291461023057806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612f3c565b6107c6565b60405161022791906135f7565b60405180910390f35b34801561023c57600080fd5b5061025760048036038101906102529190612f0f565b610840565b005b34801561026557600080fd5b5061026e6108d9565b60405161027b9190613612565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a69190612fdf565b61096b565b6040516102b8919061356e565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e39190612ecf565b6109f0565b005b3480156102f657600080fd5b506102ff610b08565b60405161030c9190613914565b60405180910390f35b34801561032157600080fd5b5061032a610b0e565b6040516103379190613914565b60405180910390f35b34801561034c57600080fd5b50610355610b1b565b6040516103629190613914565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d9190612db9565b610b21565b005b3480156103a057600080fd5b506103bb60048036038101906103b69190612ecf565b610b81565b6040516103c89190613914565b60405180910390f35b6103d9610c26565b005b3480156103e757600080fd5b5061040260048036038101906103fd9190612db9565b610d1b565b005b34801561041057600080fd5b5061042b60048036038101906104269190612d4c565b610d3b565b60405161043891906135d5565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190612fdf565b610de9565b005b34801561047657600080fd5b50610491600480360381019061048c9190612fdf565b610e6f565b60405161049e9190613914565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190612f96565b610ee0565b005b3480156104dc57600080fd5b506104e5610f76565b6040516104f291906135f7565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d9190612fdf565b610f89565b60405161052f919061356e565b60405180910390f35b34801561054457600080fd5b5061054d61103b565b60405161055a9190613612565b60405180910390f35b34801561056f57600080fd5b5061058a60048036038101906105859190612d4c565b6110c9565b6040516105979190613914565b60405180910390f35b3480156105ac57600080fd5b506105b5611181565b005b3480156105c357600080fd5b506105de60048036038101906105d99190612fdf565b611209565b005b3480156105ec57600080fd5b506105f561128f565b604051610602919061356e565b60405180910390f35b34801561061757600080fd5b506106206112b9565b60405161062d9190613612565b60405180910390f35b610650600480360381019061064b9190612fdf565b61134b565b005b34801561065e57600080fd5b5061067960048036038101906106749190612e8f565b611545565b005b34801561068757600080fd5b506106a2600480360381019061069d9190612e0c565b6116c6565b005b3480156106b057600080fd5b506106b9611728565b6040516106c69190613612565b60405180910390f35b3480156106db57600080fd5b506106f660048036038101906106f19190612fdf565b6117b6565b6040516107039190613612565b60405180910390f35b34801561071857600080fd5b50610721611860565b60405161072e9190613914565b60405180910390f35b34801561074357600080fd5b5061075e60048036038101906107599190612f96565b611866565b005b34801561076c57600080fd5b5061078760048036038101906107829190612d79565b6118fc565b60405161079491906135f7565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190612d4c565b611990565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610839575061083882611aa0565b5b9050919050565b610848611b82565b73ffffffffffffffffffffffffffffffffffffffff1661086661128f565b73ffffffffffffffffffffffffffffffffffffffff16146108bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b3906137d4565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6060600080546108e890613c1d565b80601f016020809104026020016040519081016040528092919081815260200182805461091490613c1d565b80156109615780601f1061093657610100808354040283529160200191610961565b820191906000526020600020905b81548152906001019060200180831161094457829003601f168201915b5050505050905090565b600061097682611b8a565b6109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac906137b4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109fb82610f89565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6390613854565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a8b611b82565b73ffffffffffffffffffffffffffffffffffffffff161480610aba5750610ab981610ab4611b82565b6118fc565b5b610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af090613734565b60405180910390fd5b610b038383611bf6565b505050565b600d5481565b6000600880549050905090565b600f5481565b610b32610b2c611b82565b82611caf565b610b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6890613874565b60405180910390fd5b610b7c838383611d8d565b505050565b6000610b8c836110c9565b8210610bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc490613634565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c2e611b82565b73ffffffffffffffffffffffffffffffffffffffff16610c4c61128f565b73ffffffffffffffffffffffffffffffffffffffff1614610ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c99906137d4565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610cc890613559565b60006040518083038185875af1925050503d8060008114610d05576040519150601f19603f3d011682016040523d82523d6000602084013e610d0a565b606091505b5050905080610d1857600080fd5b50565b610d36838383604051806020016040528060008152506116c6565b505050565b60606000610d48836110c9565b905060008167ffffffffffffffff811115610d6657610d65613de5565b5b604051908082528060200260200182016040528015610d945781602001602082028036833780820191505090505b50905060005b82811015610dde57610dac8582610b81565b828281518110610dbf57610dbe613db6565b5b6020026020010181815250508080610dd690613c80565b915050610d9a565b508092505050919050565b610df1611b82565b73ffffffffffffffffffffffffffffffffffffffff16610e0f61128f565b73ffffffffffffffffffffffffffffffffffffffff1614610e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5c906137d4565b60405180910390fd5b80600d8190555050565b6000610e79610b0e565b8210610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb190613894565b60405180910390fd5b60088281548110610ece57610ecd613db6565b5b90600052602060002001549050919050565b610ee8611b82565b73ffffffffffffffffffffffffffffffffffffffff16610f0661128f565b73ffffffffffffffffffffffffffffffffffffffff1614610f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f53906137d4565b60405180910390fd5b80600b9080519060200190610f72929190612b60565b5050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611032576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102990613774565b60405180910390fd5b80915050919050565b600b805461104890613c1d565b80601f016020809104026020016040519081016040528092919081815260200182805461107490613c1d565b80156110c15780601f10611096576101008083540402835291602001916110c1565b820191906000526020600020905b8154815290600101906020018083116110a457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561113a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113190613754565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611189611b82565b73ffffffffffffffffffffffffffffffffffffffff166111a761128f565b73ffffffffffffffffffffffffffffffffffffffff16146111fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f4906137d4565b60405180910390fd5b6112076000611fe9565b565b611211611b82565b73ffffffffffffffffffffffffffffffffffffffff1661122f61128f565b73ffffffffffffffffffffffffffffffffffffffff1614611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c906137d4565b60405180910390fd5b80600f8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546112c890613c1d565b80601f01602080910402602001604051908101604052809291908181526020018280546112f490613c1d565b80156113415780601f1061131657610100808354040283529160200191611341565b820191906000526020600020905b81548152906001019060200180831161132457829003601f168201915b5050505050905090565b601060009054906101000a900460ff161561139b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611392906138b4565b60405180910390fd5b60006113a5610b0e565b9050600082116113ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e190613834565b60405180910390fd5b600e5482826113f99190613a52565b111561143a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611431906138d4565b60405180910390fd5b61144261128f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461150a57600f548211156114b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b0906136f4565b60405180910390fd5b81600d546114c79190613ad9565b341015611509576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611500906138f4565b60405180910390fd5b5b6000600190505b8281116115405761152d3382846115289190613a52565b6120af565b808061153890613c80565b915050611511565b505050565b61154d611b82565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b2906136d4565b60405180910390fd5b80600560006115c8611b82565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611675611b82565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116ba91906135f7565b60405180910390a35050565b6116d76116d1611b82565b83611caf565b611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d90613874565b60405180910390fd5b611722848484846120cd565b50505050565b600c805461173590613c1d565b80601f016020809104026020016040519081016040528092919081815260200182805461176190613c1d565b80156117ae5780601f10611783576101008083540402835291602001916117ae565b820191906000526020600020905b81548152906001019060200180831161179157829003601f168201915b505050505081565b60606117c182611b8a565b611800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f790613814565b60405180910390fd5b600061180a612129565b9050600081511161182a5760405180602001604052806000815250611858565b80611834846121bb565b600c60405160200161184893929190613528565b6040516020818303038152906040525b915050919050565b600e5481565b61186e611b82565b73ffffffffffffffffffffffffffffffffffffffff1661188c61128f565b73ffffffffffffffffffffffffffffffffffffffff16146118e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d9906137d4565b60405180910390fd5b80600c90805190602001906118f8929190612b60565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611998611b82565b73ffffffffffffffffffffffffffffffffffffffff166119b661128f565b73ffffffffffffffffffffffffffffffffffffffff1614611a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a03906137d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7390613674565b60405180910390fd5b611a8581611fe9565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b6b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b7b5750611b7a8261231c565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c6983610f89565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611cba82611b8a565b611cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf090613714565b60405180910390fd5b6000611d0483610f89565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d7357508373ffffffffffffffffffffffffffffffffffffffff16611d5b8461096b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d845750611d8381856118fc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611dad82610f89565b73ffffffffffffffffffffffffffffffffffffffff1614611e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfa906137f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6a906136b4565b60405180910390fd5b611e7e838383612386565b611e89600082611bf6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ed99190613b33565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f309190613a52565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6120c982826040518060200160405280600081525061249a565b5050565b6120d8848484611d8d565b6120e4848484846124f5565b612123576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211a90613654565b60405180910390fd5b50505050565b6060600b805461213890613c1d565b80601f016020809104026020016040519081016040528092919081815260200182805461216490613c1d565b80156121b15780601f10612186576101008083540402835291602001916121b1565b820191906000526020600020905b81548152906001019060200180831161219457829003601f168201915b5050505050905090565b60606000821415612203576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612317565b600082905060005b6000821461223557808061221e90613c80565b915050600a8261222e9190613aa8565b915061220b565b60008167ffffffffffffffff81111561225157612250613de5565b5b6040519080825280601f01601f1916602001820160405280156122835781602001600182028036833780820191505090505b5090505b600085146123105760018261229c9190613b33565b9150600a856122ab9190613cc9565b60306122b79190613a52565b60f81b8183815181106122cd576122cc613db6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123099190613aa8565b9450612287565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612391838383611a9b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123d4576123cf8161268c565b612413565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146124125761241183826126d5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124565761245181612842565b612495565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612494576124938282612913565b5b5b505050565b6124a48383612992565b6124b160008484846124f5565b6124f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e790613654565b60405180910390fd5b505050565b60006125168473ffffffffffffffffffffffffffffffffffffffff16611a88565b1561267f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261253f611b82565b8786866040518563ffffffff1660e01b81526004016125619493929190613589565b602060405180830381600087803b15801561257b57600080fd5b505af19250505080156125ac57506040513d601f19601f820116820180604052508101906125a99190612f69565b60015b61262f573d80600081146125dc576040519150601f19603f3d011682016040523d82523d6000602084013e6125e1565b606091505b50600081511415612627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261e90613654565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612684565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016126e2846110c9565b6126ec9190613b33565b90506000600760008481526020019081526020016000205490508181146127d1576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128569190613b33565b905060006009600084815260200190815260200160002054905060006008838154811061288657612885613db6565b5b9060005260206000200154905080600883815481106128a8576128a7613db6565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806128f7576128f6613d87565b5b6001900381819060005260206000200160009055905550505050565b600061291e836110c9565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f990613794565b60405180910390fd5b612a0b81611b8a565b15612a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4290613694565b60405180910390fd5b612a5760008383612386565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612aa79190613a52565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612b6c90613c1d565b90600052602060002090601f016020900481019282612b8e5760008555612bd5565b82601f10612ba757805160ff1916838001178555612bd5565b82800160010185558215612bd5579182015b82811115612bd4578251825591602001919060010190612bb9565b5b509050612be29190612be6565b5090565b5b80821115612bff576000816000905550600101612be7565b5090565b6000612c16612c1184613954565b61392f565b905082815260208101848484011115612c3257612c31613e19565b5b612c3d848285613bdb565b509392505050565b6000612c58612c5384613985565b61392f565b905082815260208101848484011115612c7457612c73613e19565b5b612c7f848285613bdb565b509392505050565b600081359050612c968161444b565b92915050565b600081359050612cab81614462565b92915050565b600081359050612cc081614479565b92915050565b600081519050612cd581614479565b92915050565b600082601f830112612cf057612cef613e14565b5b8135612d00848260208601612c03565b91505092915050565b600082601f830112612d1e57612d1d613e14565b5b8135612d2e848260208601612c45565b91505092915050565b600081359050612d4681614490565b92915050565b600060208284031215612d6257612d61613e23565b5b6000612d7084828501612c87565b91505092915050565b60008060408385031215612d9057612d8f613e23565b5b6000612d9e85828601612c87565b9250506020612daf85828601612c87565b9150509250929050565b600080600060608486031215612dd257612dd1613e23565b5b6000612de086828701612c87565b9350506020612df186828701612c87565b9250506040612e0286828701612d37565b9150509250925092565b60008060008060808587031215612e2657612e25613e23565b5b6000612e3487828801612c87565b9450506020612e4587828801612c87565b9350506040612e5687828801612d37565b925050606085013567ffffffffffffffff811115612e7757612e76613e1e565b5b612e8387828801612cdb565b91505092959194509250565b60008060408385031215612ea657612ea5613e23565b5b6000612eb485828601612c87565b9250506020612ec585828601612c9c565b9150509250929050565b60008060408385031215612ee657612ee5613e23565b5b6000612ef485828601612c87565b9250506020612f0585828601612d37565b9150509250929050565b600060208284031215612f2557612f24613e23565b5b6000612f3384828501612c9c565b91505092915050565b600060208284031215612f5257612f51613e23565b5b6000612f6084828501612cb1565b91505092915050565b600060208284031215612f7f57612f7e613e23565b5b6000612f8d84828501612cc6565b91505092915050565b600060208284031215612fac57612fab613e23565b5b600082013567ffffffffffffffff811115612fca57612fc9613e1e565b5b612fd684828501612d09565b91505092915050565b600060208284031215612ff557612ff4613e23565b5b600061300384828501612d37565b91505092915050565b6000613018838361350a565b60208301905092915050565b61302d81613b67565b82525050565b600061303e826139db565b6130488185613a09565b9350613053836139b6565b8060005b8381101561308457815161306b888261300c565b9750613076836139fc565b925050600181019050613057565b5085935050505092915050565b61309a81613b79565b82525050565b60006130ab826139e6565b6130b58185613a1a565b93506130c5818560208601613bea565b6130ce81613e28565b840191505092915050565b60006130e4826139f1565b6130ee8185613a36565b93506130fe818560208601613bea565b61310781613e28565b840191505092915050565b600061311d826139f1565b6131278185613a47565b9350613137818560208601613bea565b80840191505092915050565b6000815461315081613c1d565b61315a8186613a47565b945060018216600081146131755760018114613186576131b9565b60ff198316865281860193506131b9565b61318f856139c6565b60005b838110156131b157815481890152600182019150602081019050613192565b838801955050505b50505092915050565b60006131cf602b83613a36565b91506131da82613e39565b604082019050919050565b60006131f2603283613a36565b91506131fd82613e88565b604082019050919050565b6000613215602683613a36565b915061322082613ed7565b604082019050919050565b6000613238601c83613a36565b915061324382613f26565b602082019050919050565b600061325b602483613a36565b915061326682613f4f565b604082019050919050565b600061327e601983613a36565b915061328982613f9e565b602082019050919050565b60006132a1602983613a36565b91506132ac82613fc7565b604082019050919050565b60006132c4602c83613a36565b91506132cf82614016565b604082019050919050565b60006132e7603883613a36565b91506132f282614065565b604082019050919050565b600061330a602a83613a36565b9150613315826140b4565b604082019050919050565b600061332d602983613a36565b915061333882614103565b604082019050919050565b6000613350602083613a36565b915061335b82614152565b602082019050919050565b6000613373602c83613a36565b915061337e8261417b565b604082019050919050565b6000613396602083613a36565b91506133a1826141ca565b602082019050919050565b60006133b9602983613a36565b91506133c4826141f3565b604082019050919050565b60006133dc602f83613a36565b91506133e782614242565b604082019050919050565b60006133ff602083613a36565b915061340a82614291565b602082019050919050565b6000613422602183613a36565b915061342d826142ba565b604082019050919050565b6000613445600083613a2b565b915061345082614309565b600082019050919050565b6000613468603183613a36565b91506134738261430c565b604082019050919050565b600061348b602c83613a36565b91506134968261435b565b604082019050919050565b60006134ae602683613a36565b91506134b9826143aa565b604082019050919050565b60006134d1601e83613a36565b91506134dc826143f9565b602082019050919050565b60006134f4601383613a36565b91506134ff82614422565b602082019050919050565b61351381613bd1565b82525050565b61352281613bd1565b82525050565b60006135348286613112565b91506135408285613112565b915061354c8284613143565b9150819050949350505050565b600061356482613438565b9150819050919050565b60006020820190506135836000830184613024565b92915050565b600060808201905061359e6000830187613024565b6135ab6020830186613024565b6135b86040830185613519565b81810360608301526135ca81846130a0565b905095945050505050565b600060208201905081810360008301526135ef8184613033565b905092915050565b600060208201905061360c6000830184613091565b92915050565b6000602082019050818103600083015261362c81846130d9565b905092915050565b6000602082019050818103600083015261364d816131c2565b9050919050565b6000602082019050818103600083015261366d816131e5565b9050919050565b6000602082019050818103600083015261368d81613208565b9050919050565b600060208201905081810360008301526136ad8161322b565b9050919050565b600060208201905081810360008301526136cd8161324e565b9050919050565b600060208201905081810360008301526136ed81613271565b9050919050565b6000602082019050818103600083015261370d81613294565b9050919050565b6000602082019050818103600083015261372d816132b7565b9050919050565b6000602082019050818103600083015261374d816132da565b9050919050565b6000602082019050818103600083015261376d816132fd565b9050919050565b6000602082019050818103600083015261378d81613320565b9050919050565b600060208201905081810360008301526137ad81613343565b9050919050565b600060208201905081810360008301526137cd81613366565b9050919050565b600060208201905081810360008301526137ed81613389565b9050919050565b6000602082019050818103600083015261380d816133ac565b9050919050565b6000602082019050818103600083015261382d816133cf565b9050919050565b6000602082019050818103600083015261384d816133f2565b9050919050565b6000602082019050818103600083015261386d81613415565b9050919050565b6000602082019050818103600083015261388d8161345b565b9050919050565b600060208201905081810360008301526138ad8161347e565b9050919050565b600060208201905081810360008301526138cd816134a1565b9050919050565b600060208201905081810360008301526138ed816134c4565b9050919050565b6000602082019050818103600083015261390d816134e7565b9050919050565b60006020820190506139296000830184613519565b92915050565b600061393961394a565b90506139458282613c4f565b919050565b6000604051905090565b600067ffffffffffffffff82111561396f5761396e613de5565b5b61397882613e28565b9050602081019050919050565b600067ffffffffffffffff8211156139a05761399f613de5565b5b6139a982613e28565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a5d82613bd1565b9150613a6883613bd1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a9d57613a9c613cfa565b5b828201905092915050565b6000613ab382613bd1565b9150613abe83613bd1565b925082613ace57613acd613d29565b5b828204905092915050565b6000613ae482613bd1565b9150613aef83613bd1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b2857613b27613cfa565b5b828202905092915050565b6000613b3e82613bd1565b9150613b4983613bd1565b925082821015613b5c57613b5b613cfa565b5b828203905092915050565b6000613b7282613bb1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c08578082015181840152602081019050613bed565b83811115613c17576000848401525b50505050565b60006002820490506001821680613c3557607f821691505b60208210811415613c4957613c48613d58565b5b50919050565b613c5882613e28565b810181811067ffffffffffffffff82111715613c7757613c76613de5565b5b80604052505050565b6000613c8b82613bd1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cbe57613cbd613cfa565b5b600182019050919050565b6000613cd482613bd1565b9150613cdf83613bd1565b925082613cef57613cee613d29565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d6178206d696e7420616d6f756e74207065722073657373696f6e206861732060008201527f65786365656465642e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f596f75206e65656420746f206d696e74206174206c656173742031204e46542e600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5468697320636f6e7472616374206973206e6f7420616374697665207269676860008201527f74206e6f772e0000000000000000000000000000000000000000000000000000602082015250565b7f4d6178204e465420737570706c79206c696d69742065786365656465642e0000600082015250565b7f496e73756666696369656e742066756e64732e00000000000000000000000000600082015250565b61445481613b67565b811461445f57600080fd5b50565b61446b81613b79565b811461447657600080fd5b50565b61448281613b85565b811461448d57600080fd5b50565b61449981613bd1565b81146144a457600080fd5b5056fea26469706673582212208585d8a842641590f6b541ead802a6d3e7eabfeecfd0105d750ea3c3a88558f364736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000013426f72656454696765725961636874436c756200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000442545943000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d57646f4c5664354b637044777233684465576e696d4e5531574c4c6277704375796a564336594231447643722f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): BoredTigerYachtClub
Arg [1] : _symbol (string): BTYC
Arg [2] : _initBaseURI (string): ipfs://QmWdoLVd5KcpDwr3hDeWnimNU1WLLbwpCuyjVC6YB1DvCr/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [4] : 426f72656454696765725961636874436c756200000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4254594300000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d57646f4c5664354b637044777233684465576e696d4e55
Arg [9] : 31574c4c6277704375796a564336594231447643722f00000000000000000000


Deployed Bytecode Sourcemap

43179:2717:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36967:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45656:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24859:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26418:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25941:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43326:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37607:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43400:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27308:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37275:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45735:158;;;:::i;:::-;;27718:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44413:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45212:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37797:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45424:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43438:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24553:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43258:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24283:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4558:94;;;;;;;;;;;;;:::i;:::-;;45300:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3907:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25028:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43792:615;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26711:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27974:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43284:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44767:423;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43363:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45528:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27077:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4807:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36967:224;37069:4;37108:35;37093:50;;;:11;:50;;;;:90;;;;37147:36;37171:11;37147:23;:36::i;:::-;37093:90;37086:97;;36967:224;;;:::o;45656:73::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45717:6:::1;45708;;:15;;;;;;;;;;;;;;;;;;45656:73:::0;:::o;24859:100::-;24913:13;24946:5;24939:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24859:100;:::o;26418:221::-;26494:7;26522:16;26530:7;26522;:16::i;:::-;26514:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26607:15;:24;26623:7;26607:24;;;;;;;;;;;;;;;;;;;;;26600:31;;26418:221;;;:::o;25941:411::-;26022:13;26038:23;26053:7;26038:14;:23::i;:::-;26022:39;;26086:5;26080:11;;:2;:11;;;;26072:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;26180:5;26164:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;26189:37;26206:5;26213:12;:10;:12::i;:::-;26189:16;:37::i;:::-;26164:62;26142:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;26323:21;26332:2;26336:7;26323:8;:21::i;:::-;26011:341;25941:411;;:::o;43326:32::-;;;;:::o;37607:113::-;37668:7;37695:10;:17;;;;37688:24;;37607:113;:::o;43400:33::-;;;;:::o;27308:339::-;27503:41;27522:12;:10;:12::i;:::-;27536:7;27503:18;:41::i;:::-;27495:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27611:28;27621:4;27627:2;27631:7;27611:9;:28::i;:::-;27308:339;;;:::o;37275:256::-;37372:7;37408:23;37425:5;37408:16;:23::i;:::-;37400:5;:31;37392:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;37497:12;:19;37510:5;37497:19;;;;;;;;;;;;;;;:26;37517:5;37497:26;;;;;;;;;;;;37490:33;;37275:256;;;;:::o;45735:158::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45788:12:::1;45814:10;45806:24;;45838:21;45806:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45787:77;;;45879:7;45871:16;;;::::0;::::1;;45780:113;45735:158::o:0;27718:185::-;27856:39;27873:4;27879:2;27883:7;27856:39;;;;;;;;;;;;:16;:39::i;:::-;27718:185;;;:::o;44413:348::-;44488:16;44516:23;44542:17;44552:6;44542:9;:17::i;:::-;44516:43;;44566:25;44608:15;44594:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44566:58;;44636:9;44631:103;44651:15;44647:1;:19;44631:103;;;44696:30;44716:6;44724:1;44696:19;:30::i;:::-;44682:8;44691:1;44682:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;44668:3;;;;;:::i;:::-;;;;44631:103;;;;44747:8;44740:15;;;;44413:348;;;:::o;45212:82::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45280:8:::1;45273:4;:15;;;;45212:82:::0;:::o;37797:233::-;37872:7;37908:30;:28;:30::i;:::-;37900:5;:38;37892:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;38005:10;38016:5;38005:17;;;;;;;;:::i;:::-;;;;;;;;;;37998:24;;37797:233;;;:::o;45424:98::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45505:11:::1;45495:7;:21;;;;;;;;;;;;:::i;:::-;;45424:98:::0;:::o;43438:26::-;;;;;;;;;;;;;:::o;24553:239::-;24625:7;24645:13;24661:7;:16;24669:7;24661:16;;;;;;;;;;;;;;;;;;;;;24645:32;;24713:1;24696:19;;:5;:19;;;;24688:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24779:5;24772:12;;;24553:239;;;:::o;43258:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24283:208::-;24355:7;24400:1;24383:19;;:5;:19;;;;24375:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;24467:9;:16;24477:5;24467:16;;;;;;;;;;;;;;;;24460:23;;24283:208;;;:::o;4558:94::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4623:21:::1;4641:1;4623:9;:21::i;:::-;4558:94::o:0;45300:118::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45395:17:::1;45379:13;:33;;;;45300:118:::0;:::o;3907:87::-;3953:7;3980:6;;;;;;;;;;;3973:13;;3907:87;:::o;25028:104::-;25084:13;25117:7;25110:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25028:104;:::o;43792:615::-;43858:6;;;;;;;;;;;43857:7;43849:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;43914:14;43931:13;:11;:13::i;:::-;43914:30;;43973:1;43959:11;:15;43951:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;44050:9;;44035:11;44026:6;:20;;;;:::i;:::-;:33;;44018:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;44121:7;:5;:7::i;:::-;44107:21;;:10;:21;;;44103:198;;44162:13;;44147:11;:28;;44139:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;44258:11;44251:4;;:18;;;;:::i;:::-;44238:9;:31;;44230:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;44103:198;44314:9;44326:1;44314:13;;44309:93;44334:11;44329:1;:16;44309:93;;44361:33;44371:10;44392:1;44383:6;:10;;;;:::i;:::-;44361:9;:33::i;:::-;44347:3;;;;;:::i;:::-;;;;44309:93;;;;43842:565;43792:615;:::o;26711:295::-;26826:12;:10;:12::i;:::-;26814:24;;:8;:24;;;;26806:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;26926:8;26881:18;:32;26900:12;:10;:12::i;:::-;26881:32;;;;;;;;;;;;;;;:42;26914:8;26881:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;26979:8;26950:48;;26965:12;:10;:12::i;:::-;26950:48;;;26989:8;26950:48;;;;;;:::i;:::-;;;;;;;;26711:295;;:::o;27974:328::-;28149:41;28168:12;:10;:12::i;:::-;28182:7;28149:18;:41::i;:::-;28141:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28255:39;28269:4;28275:2;28279:7;28288:5;28255:13;:39::i;:::-;27974:328;;;;:::o;43284:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44767:423::-;44865:13;44906:16;44914:7;44906;:16::i;:::-;44890:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;44996:28;45027:10;:8;:10::i;:::-;44996:41;;45082:1;45057:14;45051:28;:32;:133;;;;;;;;;;;;;;;;;45119:14;45135:18;:7;:16;:18::i;:::-;45155:13;45102:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45051:133;45044:140;;;44767:423;;;:::o;43363:32::-;;;;:::o;45528:122::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45627:17:::1;45611:13;:33;;;;;;;;;;;;:::i;:::-;;45528:122:::0;:::o;27077:164::-;27174:4;27198:18;:25;27217:5;27198:25;;;;;;;;;;;;;;;:35;27224:8;27198:35;;;;;;;;;;;;;;;;;;;;;;;;;27191:42;;27077:164;;;;:::o;4807:192::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4916:1:::1;4896:22;;:8;:22;;;;4888:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4972:19;4982:8;4972:9;:19::i;:::-;4807:192:::0;:::o;5953:387::-;6013:4;6221:12;6288:7;6276:20;6268:28;;6331:1;6324:4;:8;6317:15;;;5953:387;;;:::o;35904:126::-;;;;:::o;23914:305::-;24016:4;24068:25;24053:40;;;:11;:40;;;;:105;;;;24125:33;24110:48;;;:11;:48;;;;24053:105;:158;;;;24175:36;24199:11;24175:23;:36::i;:::-;24053:158;24033:178;;23914:305;;;:::o;2695:98::-;2748:7;2775:10;2768:17;;2695:98;:::o;29812:127::-;29877:4;29929:1;29901:30;;:7;:16;29909:7;29901:16;;;;;;;;;;;;;;;;;;;;;:30;;;;29894:37;;29812:127;;;:::o;33794:174::-;33896:2;33869:15;:24;33885:7;33869:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33952:7;33948:2;33914:46;;33923:23;33938:7;33923:14;:23::i;:::-;33914:46;;;;;;;;;;;;33794:174;;:::o;30106:348::-;30199:4;30224:16;30232:7;30224;:16::i;:::-;30216:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30300:13;30316:23;30331:7;30316:14;:23::i;:::-;30300:39;;30369:5;30358:16;;:7;:16;;;:51;;;;30402:7;30378:31;;:20;30390:7;30378:11;:20::i;:::-;:31;;;30358:51;:87;;;;30413:32;30430:5;30437:7;30413:16;:32::i;:::-;30358:87;30350:96;;;30106:348;;;;:::o;33098:578::-;33257:4;33230:31;;:23;33245:7;33230:14;:23::i;:::-;:31;;;33222:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;33340:1;33326:16;;:2;:16;;;;33318:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;33396:39;33417:4;33423:2;33427:7;33396:20;:39::i;:::-;33500:29;33517:1;33521:7;33500:8;:29::i;:::-;33561:1;33542:9;:15;33552:4;33542:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;33590:1;33573:9;:13;33583:2;33573:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33621:2;33602:7;:16;33610:7;33602:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33660:7;33656:2;33641:27;;33650:4;33641:27;;;;;;;;;;;;33098:578;;;:::o;5007:173::-;5063:16;5082:6;;;;;;;;;;;5063:25;;5108:8;5099:6;;:17;;;;;;;;;;;;;;;;;;5163:8;5132:40;;5153:8;5132:40;;;;;;;;;;;;5052:128;5007:173;:::o;30796:110::-;30872:26;30882:2;30886:7;30872:26;;;;;;;;;;;;:9;:26::i;:::-;30796:110;;:::o;29184:315::-;29341:28;29351:4;29357:2;29361:7;29341:9;:28::i;:::-;29388:48;29411:4;29417:2;29421:7;29430:5;29388:22;:48::i;:::-;29380:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;29184:315;;;;:::o;43671:102::-;43731:13;43760:7;43753:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43671:102;:::o;311:723::-;367:13;597:1;588:5;:10;584:53;;;615:10;;;;;;;;;;;;;;;;;;;;;584:53;647:12;662:5;647:20;;678:14;703:78;718:1;710:4;:9;703:78;;736:8;;;;;:::i;:::-;;;;767:2;759:10;;;;;:::i;:::-;;;703:78;;;791:19;823:6;813:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;791:39;;841:154;857:1;848:5;:10;841:154;;885:1;875:11;;;;;:::i;:::-;;;952:2;944:5;:10;;;;:::i;:::-;931:2;:24;;;;:::i;:::-;918:39;;901:6;908;901:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;841:154;;;1019:6;1005:21;;;;;311:723;;;;:::o;15893:157::-;15978:4;16017:25;16002:40;;;:11;:40;;;;15995:47;;15893:157;;;:::o;38643:589::-;38787:45;38814:4;38820:2;38824:7;38787:26;:45::i;:::-;38865:1;38849:18;;:4;:18;;;38845:187;;;38884:40;38916:7;38884:31;:40::i;:::-;38845:187;;;38954:2;38946:10;;:4;:10;;;38942:90;;38973:47;39006:4;39012:7;38973:32;:47::i;:::-;38942:90;38845:187;39060:1;39046:16;;:2;:16;;;39042:183;;;39079:45;39116:7;39079:36;:45::i;:::-;39042:183;;;39152:4;39146:10;;:2;:10;;;39142:83;;39173:40;39201:2;39205:7;39173:27;:40::i;:::-;39142:83;39042:183;38643:589;;;:::o;31133:321::-;31263:18;31269:2;31273:7;31263:5;:18::i;:::-;31314:54;31345:1;31349:2;31353:7;31362:5;31314:22;:54::i;:::-;31292:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;31133:321;;;:::o;34533:799::-;34688:4;34709:15;:2;:13;;;:15::i;:::-;34705:620;;;34761:2;34745:36;;;34782:12;:10;:12::i;:::-;34796:4;34802:7;34811:5;34745:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34741:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35004:1;34987:6;:13;:18;34983:272;;;35030:60;;;;;;;;;;:::i;:::-;;;;;;;;34983:272;35205:6;35199:13;35190:6;35186:2;35182:15;35175:38;34741:529;34878:41;;;34868:51;;;:6;:51;;;;34861:58;;;;;34705:620;35309:4;35302:11;;34533:799;;;;;;;:::o;39955:164::-;40059:10;:17;;;;40032:15;:24;40048:7;40032:24;;;;;;;;;;;:44;;;;40087:10;40103:7;40087:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39955:164;:::o;40746:988::-;41012:22;41062:1;41037:22;41054:4;41037:16;:22::i;:::-;:26;;;;:::i;:::-;41012:51;;41074:18;41095:17;:26;41113:7;41095:26;;;;;;;;;;;;41074:47;;41242:14;41228:10;:28;41224:328;;41273:19;41295:12;:18;41308:4;41295:18;;;;;;;;;;;;;;;:34;41314:14;41295:34;;;;;;;;;;;;41273:56;;41379:11;41346:12;:18;41359:4;41346:18;;;;;;;;;;;;;;;:30;41365:10;41346:30;;;;;;;;;;;:44;;;;41496:10;41463:17;:30;41481:11;41463:30;;;;;;;;;;;:43;;;;41258:294;41224:328;41648:17;:26;41666:7;41648:26;;;;;;;;;;;41641:33;;;41692:12;:18;41705:4;41692:18;;;;;;;;;;;;;;;:34;41711:14;41692:34;;;;;;;;;;;41685:41;;;40827:907;;40746:988;;:::o;42029:1079::-;42282:22;42327:1;42307:10;:17;;;;:21;;;;:::i;:::-;42282:46;;42339:18;42360:15;:24;42376:7;42360:24;;;;;;;;;;;;42339:45;;42711:19;42733:10;42744:14;42733:26;;;;;;;;:::i;:::-;;;;;;;;;;42711:48;;42797:11;42772:10;42783;42772:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;42908:10;42877:15;:28;42893:11;42877:28;;;;;;;;;;;:41;;;;43049:15;:24;43065:7;43049:24;;;;;;;;;;;43042:31;;;43084:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42100:1008;;;42029:1079;:::o;39533:221::-;39618:14;39635:20;39652:2;39635:16;:20::i;:::-;39618:37;;39693:7;39666:12;:16;39679:2;39666:16;;;;;;;;;;;;;;;:24;39683:6;39666:24;;;;;;;;;;;:34;;;;39740:6;39711:17;:26;39729:7;39711:26;;;;;;;;;;;:35;;;;39607:147;39533:221;;:::o;31790:382::-;31884:1;31870:16;;:2;:16;;;;31862:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;31943:16;31951:7;31943;:16::i;:::-;31942:17;31934:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;32005:45;32034:1;32038:2;32042:7;32005:20;:45::i;:::-;32080:1;32063:9;:13;32073:2;32063:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32111:2;32092:7;:16;32100:7;32092:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32156:7;32152:2;32131:33;;32148:1;32131:33;;;;;;;;;;;;31790:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:179::-;7556:10;7577:46;7619:3;7611:6;7577:46;:::i;:::-;7655:4;7650:3;7646:14;7632:28;;7487:179;;;;:::o;7672:118::-;7759:24;7777:5;7759:24;:::i;:::-;7754:3;7747:37;7672:118;;:::o;7826:732::-;7945:3;7974:54;8022:5;7974:54;:::i;:::-;8044:86;8123:6;8118:3;8044:86;:::i;:::-;8037:93;;8154:56;8204:5;8154:56;:::i;:::-;8233:7;8264:1;8249:284;8274:6;8271:1;8268:13;8249:284;;;8350:6;8344:13;8377:63;8436:3;8421:13;8377:63;:::i;:::-;8370:70;;8463:60;8516:6;8463:60;:::i;:::-;8453:70;;8309:224;8296:1;8293;8289:9;8284:14;;8249:284;;;8253:14;8549:3;8542:10;;7950:608;;;7826:732;;;;:::o;8564:109::-;8645:21;8660:5;8645:21;:::i;:::-;8640:3;8633:34;8564:109;;:::o;8679:360::-;8765:3;8793:38;8825:5;8793:38;:::i;:::-;8847:70;8910:6;8905:3;8847:70;:::i;:::-;8840:77;;8926:52;8971:6;8966:3;8959:4;8952:5;8948:16;8926:52;:::i;:::-;9003:29;9025:6;9003:29;:::i;:::-;8998:3;8994:39;8987:46;;8769:270;8679:360;;;;:::o;9045:364::-;9133:3;9161:39;9194:5;9161:39;:::i;:::-;9216:71;9280:6;9275:3;9216:71;:::i;:::-;9209:78;;9296:52;9341:6;9336:3;9329:4;9322:5;9318:16;9296:52;:::i;:::-;9373:29;9395:6;9373:29;:::i;:::-;9368:3;9364:39;9357:46;;9137:272;9045:364;;;;:::o;9415:377::-;9521:3;9549:39;9582:5;9549:39;:::i;:::-;9604:89;9686:6;9681:3;9604:89;:::i;:::-;9597:96;;9702:52;9747:6;9742:3;9735:4;9728:5;9724:16;9702:52;:::i;:::-;9779:6;9774:3;9770:16;9763:23;;9525:267;9415:377;;;;:::o;9822:845::-;9925:3;9962:5;9956:12;9991:36;10017:9;9991:36;:::i;:::-;10043:89;10125:6;10120:3;10043:89;:::i;:::-;10036:96;;10163:1;10152:9;10148:17;10179:1;10174:137;;;;10325:1;10320:341;;;;10141:520;;10174:137;10258:4;10254:9;10243;10239:25;10234:3;10227:38;10294:6;10289:3;10285:16;10278:23;;10174:137;;10320:341;10387:38;10419:5;10387:38;:::i;:::-;10447:1;10461:154;10475:6;10472:1;10469:13;10461:154;;;10549:7;10543:14;10539:1;10534:3;10530:11;10523:35;10599:1;10590:7;10586:15;10575:26;;10497:4;10494:1;10490:12;10485:17;;10461:154;;;10644:6;10639:3;10635:16;10628:23;;10327:334;;10141:520;;9929:738;;9822:845;;;;:::o;10673:366::-;10815:3;10836:67;10900:2;10895:3;10836:67;:::i;:::-;10829:74;;10912:93;11001:3;10912:93;:::i;:::-;11030:2;11025:3;11021:12;11014:19;;10673:366;;;:::o;11045:::-;11187:3;11208:67;11272:2;11267:3;11208:67;:::i;:::-;11201:74;;11284:93;11373:3;11284:93;:::i;:::-;11402:2;11397:3;11393:12;11386:19;;11045:366;;;:::o;11417:::-;11559:3;11580:67;11644:2;11639:3;11580:67;:::i;:::-;11573:74;;11656:93;11745:3;11656:93;:::i;:::-;11774:2;11769:3;11765:12;11758:19;;11417:366;;;:::o;11789:::-;11931:3;11952:67;12016:2;12011:3;11952:67;:::i;:::-;11945:74;;12028:93;12117:3;12028:93;:::i;:::-;12146:2;12141:3;12137:12;12130:19;;11789:366;;;:::o;12161:::-;12303:3;12324:67;12388:2;12383:3;12324:67;:::i;:::-;12317:74;;12400:93;12489:3;12400:93;:::i;:::-;12518:2;12513:3;12509:12;12502:19;;12161:366;;;:::o;12533:::-;12675:3;12696:67;12760:2;12755:3;12696:67;:::i;:::-;12689:74;;12772:93;12861:3;12772:93;:::i;:::-;12890:2;12885:3;12881:12;12874:19;;12533:366;;;:::o;12905:::-;13047:3;13068:67;13132:2;13127:3;13068:67;:::i;:::-;13061:74;;13144:93;13233:3;13144:93;:::i;:::-;13262:2;13257:3;13253:12;13246:19;;12905:366;;;:::o;13277:::-;13419:3;13440:67;13504:2;13499:3;13440:67;:::i;:::-;13433:74;;13516:93;13605:3;13516:93;:::i;:::-;13634:2;13629:3;13625:12;13618:19;;13277:366;;;:::o;13649:::-;13791:3;13812:67;13876:2;13871:3;13812:67;:::i;:::-;13805:74;;13888:93;13977:3;13888:93;:::i;:::-;14006:2;14001:3;13997:12;13990:19;;13649:366;;;:::o;14021:::-;14163:3;14184:67;14248:2;14243:3;14184:67;:::i;:::-;14177:74;;14260:93;14349:3;14260:93;:::i;:::-;14378:2;14373:3;14369:12;14362:19;;14021:366;;;:::o;14393:::-;14535:3;14556:67;14620:2;14615:3;14556:67;:::i;:::-;14549:74;;14632:93;14721:3;14632:93;:::i;:::-;14750:2;14745:3;14741:12;14734:19;;14393:366;;;:::o;14765:::-;14907:3;14928:67;14992:2;14987:3;14928:67;:::i;:::-;14921:74;;15004:93;15093:3;15004:93;:::i;:::-;15122:2;15117:3;15113:12;15106:19;;14765:366;;;:::o;15137:::-;15279:3;15300:67;15364:2;15359:3;15300:67;:::i;:::-;15293:74;;15376:93;15465:3;15376:93;:::i;:::-;15494:2;15489:3;15485:12;15478:19;;15137:366;;;:::o;15509:::-;15651:3;15672:67;15736:2;15731:3;15672:67;:::i;:::-;15665:74;;15748:93;15837:3;15748:93;:::i;:::-;15866:2;15861:3;15857:12;15850:19;;15509:366;;;:::o;15881:::-;16023:3;16044:67;16108:2;16103:3;16044:67;:::i;:::-;16037:74;;16120:93;16209:3;16120:93;:::i;:::-;16238:2;16233:3;16229:12;16222:19;;15881:366;;;:::o;16253:::-;16395:3;16416:67;16480:2;16475:3;16416:67;:::i;:::-;16409:74;;16492:93;16581:3;16492:93;:::i;:::-;16610:2;16605:3;16601:12;16594:19;;16253:366;;;:::o;16625:::-;16767:3;16788:67;16852:2;16847:3;16788:67;:::i;:::-;16781:74;;16864:93;16953:3;16864:93;:::i;:::-;16982:2;16977:3;16973:12;16966:19;;16625:366;;;:::o;16997:::-;17139:3;17160:67;17224:2;17219:3;17160:67;:::i;:::-;17153:74;;17236:93;17325:3;17236:93;:::i;:::-;17354:2;17349:3;17345:12;17338:19;;16997:366;;;:::o;17369:398::-;17528:3;17549:83;17630:1;17625:3;17549:83;:::i;:::-;17542:90;;17641:93;17730:3;17641:93;:::i;:::-;17759:1;17754:3;17750:11;17743:18;;17369:398;;;:::o;17773:366::-;17915:3;17936:67;18000:2;17995:3;17936:67;:::i;:::-;17929:74;;18012:93;18101:3;18012:93;:::i;:::-;18130:2;18125:3;18121:12;18114:19;;17773:366;;;:::o;18145:::-;18287:3;18308:67;18372:2;18367:3;18308:67;:::i;:::-;18301:74;;18384:93;18473:3;18384:93;:::i;:::-;18502:2;18497:3;18493:12;18486:19;;18145:366;;;:::o;18517:::-;18659:3;18680:67;18744:2;18739:3;18680:67;:::i;:::-;18673:74;;18756:93;18845:3;18756:93;:::i;:::-;18874:2;18869:3;18865:12;18858:19;;18517:366;;;:::o;18889:::-;19031:3;19052:67;19116:2;19111:3;19052:67;:::i;:::-;19045:74;;19128:93;19217:3;19128:93;:::i;:::-;19246:2;19241:3;19237:12;19230:19;;18889:366;;;:::o;19261:::-;19403:3;19424:67;19488:2;19483:3;19424:67;:::i;:::-;19417:74;;19500:93;19589:3;19500:93;:::i;:::-;19618:2;19613:3;19609:12;19602:19;;19261:366;;;:::o;19633:108::-;19710:24;19728:5;19710:24;:::i;:::-;19705:3;19698:37;19633:108;;:::o;19747:118::-;19834:24;19852:5;19834:24;:::i;:::-;19829:3;19822:37;19747:118;;:::o;19871:589::-;20096:3;20118:95;20209:3;20200:6;20118:95;:::i;:::-;20111:102;;20230:95;20321:3;20312:6;20230:95;:::i;:::-;20223:102;;20342:92;20430:3;20421:6;20342:92;:::i;:::-;20335:99;;20451:3;20444:10;;19871:589;;;;;;:::o;20466:379::-;20650:3;20672:147;20815:3;20672:147;:::i;:::-;20665:154;;20836:3;20829:10;;20466:379;;;:::o;20851:222::-;20944:4;20982:2;20971:9;20967:18;20959:26;;20995:71;21063:1;21052:9;21048:17;21039:6;20995:71;:::i;:::-;20851:222;;;;:::o;21079:640::-;21274:4;21312:3;21301:9;21297:19;21289:27;;21326:71;21394:1;21383:9;21379:17;21370:6;21326:71;:::i;:::-;21407:72;21475:2;21464:9;21460:18;21451:6;21407:72;:::i;:::-;21489;21557:2;21546:9;21542:18;21533:6;21489:72;:::i;:::-;21608:9;21602:4;21598:20;21593:2;21582:9;21578:18;21571:48;21636:76;21707:4;21698:6;21636:76;:::i;:::-;21628:84;;21079:640;;;;;;;:::o;21725:373::-;21868:4;21906:2;21895:9;21891:18;21883:26;;21955:9;21949:4;21945:20;21941:1;21930:9;21926:17;21919:47;21983:108;22086:4;22077:6;21983:108;:::i;:::-;21975:116;;21725:373;;;;:::o;22104:210::-;22191:4;22229:2;22218:9;22214:18;22206:26;;22242:65;22304:1;22293:9;22289:17;22280:6;22242:65;:::i;:::-;22104:210;;;;:::o;22320:313::-;22433:4;22471:2;22460:9;22456:18;22448:26;;22520:9;22514:4;22510:20;22506:1;22495:9;22491:17;22484:47;22548:78;22621:4;22612:6;22548:78;:::i;:::-;22540:86;;22320:313;;;;:::o;22639:419::-;22805:4;22843:2;22832:9;22828:18;22820:26;;22892:9;22886:4;22882:20;22878:1;22867:9;22863:17;22856:47;22920:131;23046:4;22920:131;:::i;:::-;22912:139;;22639:419;;;:::o;23064:::-;23230:4;23268:2;23257:9;23253:18;23245:26;;23317:9;23311:4;23307:20;23303:1;23292:9;23288:17;23281:47;23345:131;23471:4;23345:131;:::i;:::-;23337:139;;23064:419;;;:::o;23489:::-;23655:4;23693:2;23682:9;23678:18;23670:26;;23742:9;23736:4;23732:20;23728:1;23717:9;23713:17;23706:47;23770:131;23896:4;23770:131;:::i;:::-;23762:139;;23489:419;;;:::o;23914:::-;24080:4;24118:2;24107:9;24103:18;24095:26;;24167:9;24161:4;24157:20;24153:1;24142:9;24138:17;24131:47;24195:131;24321:4;24195:131;:::i;:::-;24187:139;;23914:419;;;:::o;24339:::-;24505:4;24543:2;24532:9;24528:18;24520:26;;24592:9;24586:4;24582:20;24578:1;24567:9;24563:17;24556:47;24620:131;24746:4;24620:131;:::i;:::-;24612:139;;24339:419;;;:::o;24764:::-;24930:4;24968:2;24957:9;24953:18;24945:26;;25017:9;25011:4;25007:20;25003:1;24992:9;24988:17;24981:47;25045:131;25171:4;25045:131;:::i;:::-;25037:139;;24764:419;;;:::o;25189:::-;25355:4;25393:2;25382:9;25378:18;25370:26;;25442:9;25436:4;25432:20;25428:1;25417:9;25413:17;25406:47;25470:131;25596:4;25470:131;:::i;:::-;25462:139;;25189:419;;;:::o;25614:::-;25780:4;25818:2;25807:9;25803:18;25795:26;;25867:9;25861:4;25857:20;25853:1;25842:9;25838:17;25831:47;25895:131;26021:4;25895:131;:::i;:::-;25887:139;;25614:419;;;:::o;26039:::-;26205:4;26243:2;26232:9;26228:18;26220:26;;26292:9;26286:4;26282:20;26278:1;26267:9;26263:17;26256:47;26320:131;26446:4;26320:131;:::i;:::-;26312:139;;26039:419;;;:::o;26464:::-;26630:4;26668:2;26657:9;26653:18;26645:26;;26717:9;26711:4;26707:20;26703:1;26692:9;26688:17;26681:47;26745:131;26871:4;26745:131;:::i;:::-;26737:139;;26464:419;;;:::o;26889:::-;27055:4;27093:2;27082:9;27078:18;27070:26;;27142:9;27136:4;27132:20;27128:1;27117:9;27113:17;27106:47;27170:131;27296:4;27170:131;:::i;:::-;27162:139;;26889:419;;;:::o;27314:::-;27480:4;27518:2;27507:9;27503:18;27495:26;;27567:9;27561:4;27557:20;27553:1;27542:9;27538:17;27531:47;27595:131;27721:4;27595:131;:::i;:::-;27587:139;;27314:419;;;:::o;27739:::-;27905:4;27943:2;27932:9;27928:18;27920:26;;27992:9;27986:4;27982:20;27978:1;27967:9;27963:17;27956:47;28020:131;28146:4;28020:131;:::i;:::-;28012:139;;27739:419;;;:::o;28164:::-;28330:4;28368:2;28357:9;28353:18;28345:26;;28417:9;28411:4;28407:20;28403:1;28392:9;28388:17;28381:47;28445:131;28571:4;28445:131;:::i;:::-;28437:139;;28164:419;;;:::o;28589:::-;28755:4;28793:2;28782:9;28778:18;28770:26;;28842:9;28836:4;28832:20;28828:1;28817:9;28813:17;28806:47;28870:131;28996:4;28870:131;:::i;:::-;28862:139;;28589:419;;;:::o;29014:::-;29180:4;29218:2;29207:9;29203:18;29195:26;;29267:9;29261:4;29257:20;29253:1;29242:9;29238:17;29231:47;29295:131;29421:4;29295:131;:::i;:::-;29287:139;;29014:419;;;:::o;29439:::-;29605:4;29643:2;29632:9;29628:18;29620:26;;29692:9;29686:4;29682:20;29678:1;29667:9;29663:17;29656:47;29720:131;29846:4;29720:131;:::i;:::-;29712:139;;29439:419;;;:::o;29864:::-;30030:4;30068:2;30057:9;30053:18;30045:26;;30117:9;30111:4;30107:20;30103:1;30092:9;30088:17;30081:47;30145:131;30271:4;30145:131;:::i;:::-;30137:139;;29864:419;;;:::o;30289:::-;30455:4;30493:2;30482:9;30478:18;30470:26;;30542:9;30536:4;30532:20;30528:1;30517:9;30513:17;30506:47;30570:131;30696:4;30570:131;:::i;:::-;30562:139;;30289:419;;;:::o;30714:::-;30880:4;30918:2;30907:9;30903:18;30895:26;;30967:9;30961:4;30957:20;30953:1;30942:9;30938:17;30931:47;30995:131;31121:4;30995:131;:::i;:::-;30987:139;;30714:419;;;:::o;31139:::-;31305:4;31343:2;31332:9;31328:18;31320:26;;31392:9;31386:4;31382:20;31378:1;31367:9;31363:17;31356:47;31420:131;31546:4;31420:131;:::i;:::-;31412:139;;31139:419;;;:::o;31564:::-;31730:4;31768:2;31757:9;31753:18;31745:26;;31817:9;31811:4;31807:20;31803:1;31792:9;31788:17;31781:47;31845:131;31971:4;31845:131;:::i;:::-;31837:139;;31564:419;;;:::o;31989:::-;32155:4;32193:2;32182:9;32178:18;32170:26;;32242:9;32236:4;32232:20;32228:1;32217:9;32213:17;32206:47;32270:131;32396:4;32270:131;:::i;:::-;32262:139;;31989:419;;;:::o;32414:222::-;32507:4;32545:2;32534:9;32530:18;32522:26;;32558:71;32626:1;32615:9;32611:17;32602:6;32558:71;:::i;:::-;32414:222;;;;:::o;32642:129::-;32676:6;32703:20;;:::i;:::-;32693:30;;32732:33;32760:4;32752:6;32732:33;:::i;:::-;32642:129;;;:::o;32777:75::-;32810:6;32843:2;32837:9;32827:19;;32777:75;:::o;32858:307::-;32919:4;33009:18;33001:6;32998:30;32995:56;;;33031:18;;:::i;:::-;32995:56;33069:29;33091:6;33069:29;:::i;:::-;33061:37;;33153:4;33147;33143:15;33135:23;;32858:307;;;:::o;33171:308::-;33233:4;33323:18;33315:6;33312:30;33309:56;;;33345:18;;:::i;:::-;33309:56;33383:29;33405:6;33383:29;:::i;:::-;33375:37;;33467:4;33461;33457:15;33449:23;;33171:308;;;:::o;33485:132::-;33552:4;33575:3;33567:11;;33605:4;33600:3;33596:14;33588:22;;33485:132;;;:::o;33623:141::-;33672:4;33695:3;33687:11;;33718:3;33715:1;33708:14;33752:4;33749:1;33739:18;33731:26;;33623:141;;;:::o;33770:114::-;33837:6;33871:5;33865:12;33855:22;;33770:114;;;:::o;33890:98::-;33941:6;33975:5;33969:12;33959:22;;33890:98;;;:::o;33994:99::-;34046:6;34080:5;34074:12;34064:22;;33994:99;;;:::o;34099:113::-;34169:4;34201;34196:3;34192:14;34184:22;;34099:113;;;:::o;34218:184::-;34317:11;34351:6;34346:3;34339:19;34391:4;34386:3;34382:14;34367:29;;34218:184;;;;:::o;34408:168::-;34491:11;34525:6;34520:3;34513:19;34565:4;34560:3;34556:14;34541:29;;34408:168;;;;:::o;34582:147::-;34683:11;34720:3;34705:18;;34582:147;;;;:::o;34735:169::-;34819:11;34853:6;34848:3;34841:19;34893:4;34888:3;34884:14;34869:29;;34735:169;;;;:::o;34910:148::-;35012:11;35049:3;35034:18;;34910:148;;;;:::o;35064:305::-;35104:3;35123:20;35141:1;35123:20;:::i;:::-;35118:25;;35157:20;35175:1;35157:20;:::i;:::-;35152:25;;35311:1;35243:66;35239:74;35236:1;35233:81;35230:107;;;35317:18;;:::i;:::-;35230:107;35361:1;35358;35354:9;35347:16;;35064:305;;;;:::o;35375:185::-;35415:1;35432:20;35450:1;35432:20;:::i;:::-;35427:25;;35466:20;35484:1;35466:20;:::i;:::-;35461:25;;35505:1;35495:35;;35510:18;;:::i;:::-;35495:35;35552:1;35549;35545:9;35540:14;;35375:185;;;;:::o;35566:348::-;35606:7;35629:20;35647:1;35629:20;:::i;:::-;35624:25;;35663:20;35681:1;35663:20;:::i;:::-;35658:25;;35851:1;35783:66;35779:74;35776:1;35773:81;35768:1;35761:9;35754:17;35750:105;35747:131;;;35858:18;;:::i;:::-;35747:131;35906:1;35903;35899:9;35888:20;;35566:348;;;;:::o;35920:191::-;35960:4;35980:20;35998:1;35980:20;:::i;:::-;35975:25;;36014:20;36032:1;36014:20;:::i;:::-;36009:25;;36053:1;36050;36047:8;36044:34;;;36058:18;;:::i;:::-;36044:34;36103:1;36100;36096:9;36088:17;;35920:191;;;;:::o;36117:96::-;36154:7;36183:24;36201:5;36183:24;:::i;:::-;36172:35;;36117:96;;;:::o;36219:90::-;36253:7;36296:5;36289:13;36282:21;36271:32;;36219:90;;;:::o;36315:149::-;36351:7;36391:66;36384:5;36380:78;36369:89;;36315:149;;;:::o;36470:126::-;36507:7;36547:42;36540:5;36536:54;36525:65;;36470:126;;;:::o;36602:77::-;36639:7;36668:5;36657:16;;36602:77;;;:::o;36685:154::-;36769:6;36764:3;36759;36746:30;36831:1;36822:6;36817:3;36813:16;36806:27;36685:154;;;:::o;36845:307::-;36913:1;36923:113;36937:6;36934:1;36931:13;36923:113;;;37022:1;37017:3;37013:11;37007:18;37003:1;36998:3;36994:11;36987:39;36959:2;36956:1;36952:10;36947:15;;36923:113;;;37054:6;37051:1;37048:13;37045:101;;;37134:1;37125:6;37120:3;37116:16;37109:27;37045:101;36894:258;36845:307;;;:::o;37158:320::-;37202:6;37239:1;37233:4;37229:12;37219:22;;37286:1;37280:4;37276:12;37307:18;37297:81;;37363:4;37355:6;37351:17;37341:27;;37297:81;37425:2;37417:6;37414:14;37394:18;37391:38;37388:84;;;37444:18;;:::i;:::-;37388:84;37209:269;37158:320;;;:::o;37484:281::-;37567:27;37589:4;37567:27;:::i;:::-;37559:6;37555:40;37697:6;37685:10;37682:22;37661:18;37649:10;37646:34;37643:62;37640:88;;;37708:18;;:::i;:::-;37640:88;37748:10;37744:2;37737:22;37527:238;37484:281;;:::o;37771:233::-;37810:3;37833:24;37851:5;37833:24;:::i;:::-;37824:33;;37879:66;37872:5;37869:77;37866:103;;;37949:18;;:::i;:::-;37866:103;37996:1;37989:5;37985:13;37978:20;;37771:233;;;:::o;38010:176::-;38042:1;38059:20;38077:1;38059:20;:::i;:::-;38054:25;;38093:20;38111:1;38093:20;:::i;:::-;38088:25;;38132:1;38122:35;;38137:18;;:::i;:::-;38122:35;38178:1;38175;38171:9;38166:14;;38010:176;;;;:::o;38192:180::-;38240:77;38237:1;38230:88;38337:4;38334:1;38327:15;38361:4;38358:1;38351:15;38378:180;38426:77;38423:1;38416:88;38523:4;38520:1;38513:15;38547:4;38544:1;38537:15;38564:180;38612:77;38609:1;38602:88;38709:4;38706:1;38699:15;38733:4;38730:1;38723:15;38750:180;38798:77;38795:1;38788:88;38895:4;38892:1;38885:15;38919:4;38916:1;38909:15;38936:180;38984:77;38981:1;38974:88;39081:4;39078:1;39071:15;39105:4;39102:1;39095:15;39122:180;39170:77;39167:1;39160:88;39267:4;39264:1;39257:15;39291:4;39288:1;39281:15;39308:117;39417:1;39414;39407:12;39431:117;39540:1;39537;39530:12;39554:117;39663:1;39660;39653:12;39677:117;39786:1;39783;39776:12;39800:102;39841:6;39892:2;39888:7;39883:2;39876:5;39872:14;39868:28;39858:38;;39800:102;;;:::o;39908:230::-;40048:34;40044:1;40036:6;40032:14;40025:58;40117:13;40112:2;40104:6;40100:15;40093:38;39908:230;:::o;40144:237::-;40284:34;40280:1;40272:6;40268:14;40261:58;40353:20;40348:2;40340:6;40336:15;40329:45;40144:237;:::o;40387:225::-;40527:34;40523:1;40515:6;40511:14;40504:58;40596:8;40591:2;40583:6;40579:15;40572:33;40387:225;:::o;40618:178::-;40758:30;40754:1;40746:6;40742:14;40735:54;40618:178;:::o;40802:223::-;40942:34;40938:1;40930:6;40926:14;40919:58;41011:6;41006:2;40998:6;40994:15;40987:31;40802:223;:::o;41031:175::-;41171:27;41167:1;41159:6;41155:14;41148:51;41031:175;:::o;41212:228::-;41352:34;41348:1;41340:6;41336:14;41329:58;41421:11;41416:2;41408:6;41404:15;41397:36;41212:228;:::o;41446:231::-;41586:34;41582:1;41574:6;41570:14;41563:58;41655:14;41650:2;41642:6;41638:15;41631:39;41446:231;:::o;41683:243::-;41823:34;41819:1;41811:6;41807:14;41800:58;41892:26;41887:2;41879:6;41875:15;41868:51;41683:243;:::o;41932:229::-;42072:34;42068:1;42060:6;42056:14;42049:58;42141:12;42136:2;42128:6;42124:15;42117:37;41932:229;:::o;42167:228::-;42307:34;42303:1;42295:6;42291:14;42284:58;42376:11;42371:2;42363:6;42359:15;42352:36;42167:228;:::o;42401:182::-;42541:34;42537:1;42529:6;42525:14;42518:58;42401:182;:::o;42589:231::-;42729:34;42725:1;42717:6;42713:14;42706:58;42798:14;42793:2;42785:6;42781:15;42774:39;42589:231;:::o;42826:182::-;42966:34;42962:1;42954:6;42950:14;42943:58;42826:182;:::o;43014:228::-;43154:34;43150:1;43142:6;43138:14;43131:58;43223:11;43218:2;43210:6;43206:15;43199:36;43014:228;:::o;43248:234::-;43388:34;43384:1;43376:6;43372:14;43365:58;43457:17;43452:2;43444:6;43440:15;43433:42;43248:234;:::o;43488:182::-;43628:34;43624:1;43616:6;43612:14;43605:58;43488:182;:::o;43676:220::-;43816:34;43812:1;43804:6;43800:14;43793:58;43885:3;43880:2;43872:6;43868:15;43861:28;43676:220;:::o;43902:114::-;;:::o;44022:236::-;44162:34;44158:1;44150:6;44146:14;44139:58;44231:19;44226:2;44218:6;44214:15;44207:44;44022:236;:::o;44264:231::-;44404:34;44400:1;44392:6;44388:14;44381:58;44473:14;44468:2;44460:6;44456:15;44449:39;44264:231;:::o;44501:225::-;44641:34;44637:1;44629:6;44625:14;44618:58;44710:8;44705:2;44697:6;44693:15;44686:33;44501:225;:::o;44732:180::-;44872:32;44868:1;44860:6;44856:14;44849:56;44732:180;:::o;44918:169::-;45058:21;45054:1;45046:6;45042:14;45035:45;44918:169;:::o;45093:122::-;45166:24;45184:5;45166:24;:::i;:::-;45159:5;45156:35;45146:63;;45205:1;45202;45195:12;45146:63;45093:122;:::o;45221:116::-;45291:21;45306:5;45291:21;:::i;:::-;45284:5;45281:32;45271:60;;45327:1;45324;45317:12;45271:60;45221:116;:::o;45343:120::-;45415:23;45432:5;45415:23;:::i;:::-;45408:5;45405:34;45395:62;;45453:1;45450;45443:12;45395:62;45343:120;:::o;45469:122::-;45542:24;45560:5;45542:24;:::i;:::-;45535:5;45532:35;45522:63;;45581:1;45578;45571:12;45522:63;45469:122;:::o

Swarm Source

ipfs://8585d8a842641590f6b541ead802a6d3e7eabfeecfd0105d750ea3c3a88558f3
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.