Contract Address Details

0x8743b1CEC8939E456F05194503fBb6500A3Ba67d

Token
Fox and the Hounds (FTH)
Creator
0xdbbb04–864ba9 at 0x21b333–88b9d5
Balance
0 Doge
Tokens
Fetching tokens...
Transactions
2,032 Transactions
Transfers
0 Transfers
Gas Used
1,205,304,023
Last Balance Update
25403000
Contract name:
FoxNTheHounds




Optimization enabled
false
Compiler version
v0.8.16+commit.07a7930e




EVM Version
default




Verified at
2022-11-19T17:03:53.243870Z

Contract source code

pragma solidity ^0.8.16;
//SPDX-License-Identifier: UNLICENSED

library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

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

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

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

abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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

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

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

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 {}
}

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

contract FoxNTheHounds is ERC721Enumerable, Ownable {
  using Strings for uint256;
  using SafeMath for uint256;
  using Counters for Counters.Counter;


  // Constants
  string public baseExtension = ".json";

    uint256 public cost = 125 ether;

  // Supply
  uint256 public maxSupply = 5000;
  uint256 public lastSupply = maxSupply;
  uint256 public maxMintAmount = 10;

  // Reflection
  uint256 public reflectionBalance;
  uint256 public totalDividend;

  // Lists 
  uint256[5000] public remainingIds;
  mapping(uint256 => uint256) public lastDividendAt;
  mapping(uint256 => address) public minters;

  // Params
  bool public paused = true;
  string private _baseTokenURI;
  address private _wallet;

  // Constructor
  constructor() ERC721("Fox and the Hounds", "FTH") {
      // Save URI
      _baseTokenURI = "ipfs://bafybeih2hv6lbydmen3ka4h2lauqgglmnyk4gqolagpk7rhspds2xintdy/";
      // Save dev wallet
      _wallet = 0xdBBb04F9D2A83376a0aa35d4c5F0658445864BA9;
      _regularMint();

  }


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

  // Setters
  function setBaseURI(string memory baseURI) external onlyOwner {
      _baseTokenURI = baseURI;
  }
    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }
  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }
  function pause(bool _state) public onlyOwner {
    paused = _state;
  }

  // Minting
  function mint(uint256 _mintAmount) public payable {
    // Checks
    require(!paused, "FoxNTheHounds: minting has not started yet");
    require(_mintAmount > 0, "FoxNTheHounds: you have to mint at least one");
    require(_mintAmount <= maxMintAmount,  "FoxNTheHounds: you can only mint 10 at a time");
    require(lastSupply >= _mintAmount,  "FoxNTheHounds: the collection is sold out");
        if (msg.sender != owner()) {
            require(
                msg.value >= cost * _mintAmount,
                "FoxNTheHounds: total cost isn't match"
            );
        }
    // Minting
    for (uint256 i = 1; i <= _mintAmount; i++) {
      // Mint for caller
      _randomMint(msg.sender);
      // Split cost
      handleMintReward(msg.value/_mintAmount);
    }
  }

  // Give a random NFT to a contest winner
  function randomGiveaway(address _winner, uint256 _amount) external onlyOwner {
    // Checks
    require(_winner != address(0), "FoxNTheHounds: zero address");
    require(_amount > 0, "FoxNTheHounds: you have to mint at least one");
    require(lastSupply != 0,  "FoxNTheHounds: the collection is sold out");
    // Mint random NFTs for a winner
    for (uint256 i = 1; i <= _amount; i++) {
      _randomMint(_winner);
    }
  }

  // Random mint
  function _randomMint(address _target) internal returns (uint256) {
    // Get Random id to mint
    uint256 _index = _getRandom() % lastSupply;
    uint256 _realIndex = getValue(_index) + 1;
    // Reduce supply
    lastSupply--;
    // Replace used id by last
    remainingIds[_index] = getValue(lastSupply);
    // Mint
    _safeMint(_target, _realIndex);
    // Save Original minters
    minters[_realIndex] = msg.sender;
    // Save dividend
    lastDividendAt[_realIndex] = totalDividend;
    return _realIndex;
  }

  // Mint for reserved spots
  function _regularMint() internal returns (uint256) {
    // Get Actual id to mint
    uint256 _index = totalSupply();
    uint256 _realIndex = getValue(_index) + 1;
    // Reduce supply
    lastSupply--;
    // Replace used id by last
    remainingIds[_index] = getValue(lastSupply);
    // Mint
    _safeMint(msg.sender, _realIndex);
    // Save Original minters
    minters[_realIndex] = msg.sender;
    // Save dividend
    lastDividendAt[_realIndex] = totalDividend;
    return _realIndex;
  }

  // Get Token List
  function getTokenIds(address _owner) public view returns (uint256[] memory) {
    // Count owned Token
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    // Get ids of owned Token
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

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

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

  // Reflections
  function handleMintReward(uint256 _amount) private {
      // Send owner share
      payable(_wallet).transfer(_amount);
  }

  // Add dividend
  function reflectDividend(uint256 _amount) private {
      reflectionBalance = reflectionBalance.add(_amount);
      totalDividend = totalDividend.add((_amount.div(totalSupply())));
  }

  function reflectToOwners() public payable {
      reflectDividend(msg.value);
  }

  function getReflectionBalances(address _owner) public view returns (uint256) {
      uint count = balanceOf(_owner);
      uint256 total = 0;
      for(uint i = 0; i < count; i++){
          uint tokenId = tokenOfOwnerByIndex(_owner, i);
          total = total.add(getReflectionBalance(tokenId));
      }
      return total;
  }

  function getReflectionBalance(uint256 tokenId) public view returns (uint256) {
      return totalDividend.sub(lastDividendAt[tokenId]);
  }

  function claimRewards() public {
    uint count = balanceOf(msg.sender);
    uint256 balance = 0;
    for(uint i = 0; i < count; i++){
        uint tokenId = tokenOfOwnerByIndex(msg.sender, i);
        balance = balance.add(getReflectionBalance(tokenId));
        lastDividendAt[tokenId] = totalDividend;
    }
    payable(msg.sender).transfer(balance);
  }


  // Utils

  // Get value from a remaining id node
  function getValue(uint _index) internal view returns(uint256){
    if(remainingIds[_index] != 0) return remainingIds[_index];
    else return _index;
  }

  // Create a random id for minting
  function _getRandom() internal view returns (uint256) {
    return
      uint256(
        keccak256(
          abi.encodePacked(block.difficulty, block.timestamp, lastSupply)
        )
      );
  }
}
        

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"approved","internalType":"address","indexed":true},{"type":"uint256","name":"tokenId","internalType":"uint256","indexed":true}],"anonymous":false},{"type":"event","name":"ApprovalForAll","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"operator","internalType":"address","indexed":true},{"type":"bool","name":"approved","internalType":"bool","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"tokenId","internalType":"uint256","indexed":true}],"anonymous":false},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"approve","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"owner","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"baseExtension","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"claimRewards","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"cost","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"getApproved","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getReflectionBalance","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getReflectionBalances","inputs":[{"type":"address","name":"_owner","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256[]","name":"","internalType":"uint256[]"}],"name":"getTokenIds","inputs":[{"type":"address","name":"_owner","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isApprovedForAll","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"operator","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"lastDividendAt","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"lastSupply","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maxMintAmount","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maxSupply","inputs":[]},{"type":"function","stateMutability":"payable","outputs":[],"name":"mint","inputs":[{"type":"uint256","name":"_mintAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"minters","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"ownerOf","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"pause","inputs":[{"type":"bool","name":"_state","internalType":"bool"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"paused","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"randomGiveaway","inputs":[{"type":"address","name":"_winner","internalType":"address"},{"type":"uint256","name":"_amount","internalType":"uint256"}]},{"type":"function","stateMutability":"payable","outputs":[],"name":"reflectToOwners","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"reflectionBalance","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"remainingIds","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"safeTransferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"safeTransferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"},{"type":"bytes","name":"_data","internalType":"bytes"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setApprovalForAll","inputs":[{"type":"address","name":"operator","internalType":"address"},{"type":"bool","name":"approved","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setBaseExtension","inputs":[{"type":"string","name":"_newBaseExtension","internalType":"string"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setBaseURI","inputs":[{"type":"string","name":"baseURI","internalType":"string"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setCost","inputs":[{"type":"uint256","name":"_newCost","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setmaxMintAmount","inputs":[{"type":"uint256","name":"_newmaxMintAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"supportsInterface","inputs":[{"type":"bytes4","name":"interfaceId","internalType":"bytes4"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"tokenByIndex","inputs":[{"type":"uint256","name":"index","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"tokenOfOwnerByIndex","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"uint256","name":"index","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"tokenURI","inputs":[{"type":"uint256","name":"_id","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalDividend","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"payable","outputs":[],"name":"withdraw","inputs":[]}]
            

Contract Creation Code

0x60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90816200004a91906200105e565b506806c6b935b8bbd40000600c55611388600d55600d54600e55600a600f55600161139c60006101000a81548160ff0219169083151502179055503480156200009257600080fd5b506040518060400160405280601281526020017f466f7820616e642074686520486f756e647300000000000000000000000000008152506040518060400160405280600381526020017f465448000000000000000000000000000000000000000000000000000000000081525081600090816200011091906200105e565b5080600190816200012291906200105e565b5050506200014562000139620001de60201b60201c565b620001e660201b60201c565b604051806080016040528060438152602001620065ce6043913961139d90816200017091906200105e565b5073dbbb04f9d2a83376a0aa35d4c5f0658445864ba961139e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001d7620002ac60201b60201c565b5062001673565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080620002bf620003b660201b60201c565b905060006001620002d683620003c360201b60201c565b620002e2919062001174565b9050600e6000815480929190620002f990620011af565b919050555062000311600e54620003c360201b60201c565b6012836113888110620003295762000328620011dd565b5b01819055506200034033826200041160201b60201c565b3361139b600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060115461139a600083815260200190815260200160002081905550809250505090565b6000600880549050905090565b6000806012836113888110620003de57620003dd620011dd565b5b01541462000408576012826113888110620003fe57620003fd620011dd565b5b015490506200040c565b8190505b919050565b620004338282604051806020016040528060008152506200043760201b60201c565b5050565b620004498383620004a560201b60201c565b6200045e60008484846200068a60201b60201c565b620004a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004979062001293565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000517576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200050e9062001305565b60405180910390fd5b62000528816200083360201b60201c565b156200056b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005629062001377565b60405180910390fd5b6200057f600083836200089f60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620005d1919062001174565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620006b88473ffffffffffffffffffffffffffffffffffffffff16620009e460201b62001f981760201c565b1562000826578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620006ea620001de60201b60201c565b8786866040518563ffffffff1660e01b81526004016200070e949392919062001489565b6020604051808303816000875af19250505080156200074d57506040513d601f19601f820116820180604052508101906200074a91906200153f565b60015b620007d5573d806000811462000780576040519150601f19603f3d011682016040523d82523d6000602084013e62000785565b606091505b506000815103620007cd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007c49062001293565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506200082b565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620008b7838383620009f760201b62001fab1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200090357620008fd81620009fc60201b60201c565b6200094b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146200094a5762000949838262000a4560201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200099757620009918162000bc260201b60201c565b620009df565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620009de57620009dd828262000c9e60201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000a5f8462000d2a60201b620012cd1760201c565b62000a6b919062001571565b905060006007600084815260200190815260200160002054905081811462000b51576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000bd8919062001571565b905060006009600084815260200190815260200160002054905060006008838154811062000c0b5762000c0a620011dd565b5b90600052602060002001549050806008838154811062000c305762000c2f620011dd565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000c825762000c81620015ac565b5b6001900381819060005260206000200160009055905550505050565b600062000cb68362000d2a60201b620012cd1760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000d9d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d949062001651565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000e6657607f821691505b60208210810362000e7c5762000e7b62000e1e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000ee67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ea7565b62000ef2868362000ea7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000f3f62000f3962000f338462000f0a565b62000f14565b62000f0a565b9050919050565b6000819050919050565b62000f5b8362000f1e565b62000f7362000f6a8262000f46565b84845462000eb4565b825550505050565b600090565b62000f8a62000f7b565b62000f9781848462000f50565b505050565b5b8181101562000fbf5762000fb360008262000f80565b60018101905062000f9d565b5050565b601f8211156200100e5762000fd88162000e82565b62000fe38462000e97565b8101602085101562000ff3578190505b6200100b620010028562000e97565b83018262000f9c565b50505b505050565b600082821c905092915050565b6000620010336000198460080262001013565b1980831691505092915050565b60006200104e838362001020565b9150826002028217905092915050565b620010698262000de4565b67ffffffffffffffff81111562001085576200108462000def565b5b62001091825462000e4d565b6200109e82828562000fc3565b600060209050601f831160018114620010d65760008415620010c1578287015190505b620010cd858262001040565b8655506200113d565b601f198416620010e68662000e82565b60005b828110156200111057848901518255600182019150602085019450602081019050620010e9565b868310156200113057848901516200112c601f89168262001020565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620011818262000f0a565b91506200118e8362000f0a565b9250828201905080821115620011a957620011a862001145565b5b92915050565b6000620011bc8262000f0a565b915060008203620011d257620011d162001145565b5b600182039050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600082825260208201905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006200127b6032836200120c565b915062001288826200121d565b604082019050919050565b60006020820190508181036000830152620012ae816200126c565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000620012ed6020836200120c565b9150620012fa82620012b5565b602082019050919050565b600060208201905081810360008301526200132081620012de565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006200135f601c836200120c565b91506200136c8262001327565b602082019050919050565b60006020820190508181036000830152620013928162001350565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620013c68262001399565b9050919050565b620013d881620013b9565b82525050565b620013e98162000f0a565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b838110156200142b5780820151818401526020810190506200140e565b60008484015250505050565b6000601f19601f8301169050919050565b60006200145582620013ef565b620014618185620013fa565b9350620014738185602086016200140b565b6200147e8162001437565b840191505092915050565b6000608082019050620014a06000830187620013cd565b620014af6020830186620013cd565b620014be6040830185620013de565b8181036060830152620014d2818462001448565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6200151981620014e2565b81146200152557600080fd5b50565b60008151905062001539816200150e565b92915050565b600060208284031215620015585762001557620014dd565b5b6000620015688482850162001528565b91505092915050565b60006200157e8262000f0a565b91506200158b8362000f0a565b9250828203905081811115620015a657620015a562001145565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600062001639602a836200120c565b91506200164682620015db565b604082019050919050565b600060208201905081810360008301526200166c816200162a565b9050919050565b614f4b80620016836000396000f3fe60806040526004361061025b5760003560e01c80636352211e11610144578063b88d4fde116100b6578063d5abeb011161007a578063d5abeb01146108e2578063da3ef23f1461090d578063e985e9c514610936578063ee6d9d6d14610973578063f2fde38b146109b0578063f75b8c5f146109d95761025b565b8063b88d4fde146107d7578063c668286214610800578063c87b56dd1461082b578063d004b03614610868578063d2068857146108a55761025b565b80638da5cb5b116101085780638da5cb5b146106d657806395d89b4114610701578063a0712d681461072c578063a22cb46514610748578063a708d40414610771578063b3ef77f2146107ae5761025b565b80636352211e146105df57806370a082311461061c578063715018a6146106595780637f00c7a6146106705780638623ec7b146106995761025b565b806323b872dd116101dd57806342842e0e116101a157806342842e0e146104d157806344a0d68a146104fa5780634b6acafb146105235780634f6ccce71461054e57806355f804b31461058b5780635c975abb146105b45761025b565b806323b872dd1461041f5780632f745c5914610448578063372500ab146104855780633ccfd60b1461049c5780634131ff99146104a65761025b565b8063081812fc11610224578063081812fc14610338578063095ea7b31461037557806313faede61461039e57806318160ddd146103c9578063239c70ae146103f45761025b565b8062fe50c61461026057806301ffc9a71461029d57806302329a29146102da578063047d5e801461030357806306fdde031461030d575b600080fd5b34801561026c57600080fd5b5061028760048036038101906102829190613316565b610a04565b6040516102949190613352565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf91906133c5565b610a36565b6040516102d1919061340d565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190613454565b610ab0565b005b61030b610b4a565b005b34801561031957600080fd5b50610322610b55565b60405161032f9190613511565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a9190613316565b610be7565b60405161036c9190613574565b60405180910390f35b34801561038157600080fd5b5061039c600480360381019061039791906135bb565b610c6c565b005b3480156103aa57600080fd5b506103b3610d83565b6040516103c09190613352565b60405180910390f35b3480156103d557600080fd5b506103de610d89565b6040516103eb9190613352565b60405180910390f35b34801561040057600080fd5b50610409610d96565b6040516104169190613352565b60405180910390f35b34801561042b57600080fd5b50610446600480360381019061044191906135fb565b610d9c565b005b34801561045457600080fd5b5061046f600480360381019061046a91906135bb565b610dfc565b60405161047c9190613352565b60405180910390f35b34801561049157600080fd5b5061049a610ea1565b005b6104a4610f60565b005b3480156104b257600080fd5b506104bb611055565b6040516104c89190613352565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f391906135fb565b61105b565b005b34801561050657600080fd5b50610521600480360381019061051c9190613316565b61107b565b005b34801561052f57600080fd5b50610538611101565b6040516105459190613352565b60405180910390f35b34801561055a57600080fd5b5061057560048036038101906105709190613316565b611107565b6040516105829190613352565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad9190613783565b611178565b005b3480156105c057600080fd5b506105c9611208565b6040516105d6919061340d565b60405180910390f35b3480156105eb57600080fd5b5061060660048036038101906106019190613316565b61121c565b6040516106139190613574565b60405180910390f35b34801561062857600080fd5b50610643600480360381019061063e91906137cc565b6112cd565b6040516106509190613352565b60405180910390f35b34801561066557600080fd5b5061066e611384565b005b34801561067c57600080fd5b5061069760048036038101906106929190613316565b61140c565b005b3480156106a557600080fd5b506106c060048036038101906106bb9190613316565b611492565b6040516106cd9190613574565b60405180910390f35b3480156106e257600080fd5b506106eb6114c6565b6040516106f89190613574565b60405180910390f35b34801561070d57600080fd5b506107166114f0565b6040516107239190613511565b60405180910390f35b61074660048036038101906107419190613316565b611582565b005b34801561075457600080fd5b5061076f600480360381019061076a91906137f9565b61176e565b005b34801561077d57600080fd5b50610798600480360381019061079391906137cc565b6118ee565b6040516107a59190613352565b60405180910390f35b3480156107ba57600080fd5b506107d560048036038101906107d091906135bb565b611952565b005b3480156107e357600080fd5b506107fe60048036038101906107f991906138da565b611af5565b005b34801561080c57600080fd5b50610815611b57565b6040516108229190613511565b60405180910390f35b34801561083757600080fd5b50610852600480360381019061084d9190613316565b611be5565b60405161085f9190613511565b60405180910390f35b34801561087457600080fd5b5061088f600480360381019061088a91906137cc565b611c8f565b60405161089c9190613a1b565b60405180910390f35b3480156108b157600080fd5b506108cc60048036038101906108c79190613316565b611d3d565b6040516108d99190613352565b60405180910390f35b3480156108ee57600080fd5b506108f7611d56565b6040516109049190613352565b60405180910390f35b34801561091957600080fd5b50610934600480360381019061092f9190613783565b611d5c565b005b34801561094257600080fd5b5061095d60048036038101906109589190613a3d565b611deb565b60405161096a919061340d565b60405180910390f35b34801561097f57600080fd5b5061099a60048036038101906109959190613316565b611e7f565b6040516109a79190613352565b60405180910390f35b3480156109bc57600080fd5b506109d760048036038101906109d291906137cc565b611e9b565b005b3480156109e557600080fd5b506109ee611f92565b6040516109fb9190613352565b60405180910390f35b6000610a2f61139a600084815260200190815260200160002054601154611fb090919063ffffffff16565b9050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aa95750610aa882611fc6565b5b9050919050565b610ab86120a8565b73ffffffffffffffffffffffffffffffffffffffff16610ad66114c6565b73ffffffffffffffffffffffffffffffffffffffff1614610b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2390613ac9565b60405180910390fd5b8061139c60006101000a81548160ff02191690831515021790555050565b610b53346120b0565b565b606060008054610b6490613b18565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9090613b18565b8015610bdd5780601f10610bb257610100808354040283529160200191610bdd565b820191906000526020600020905b815481529060010190602001808311610bc057829003601f168201915b5050505050905090565b6000610bf282612102565b610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2890613bbb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c778261121c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cde90613c4d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d066120a8565b73ffffffffffffffffffffffffffffffffffffffff161480610d355750610d3481610d2f6120a8565b611deb565b5b610d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6b90613cdf565b60405180910390fd5b610d7e838361216e565b505050565b600c5481565b6000600880549050905090565b600f5481565b610dad610da76120a8565b82612227565b610dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de390613d71565b60405180910390fd5b610df7838383612305565b505050565b6000610e07836112cd565b8210610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f90613e03565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000610eac336112cd565b90506000805b82811015610f14576000610ec63383610dfc565b9050610ee3610ed482610a04565b8461256090919063ffffffff16565b925060115461139a600083815260200190815260200160002081905550508080610f0c90613e52565b915050610eb2565b503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f5b573d6000803e3d6000fd5b505050565b610f686120a8565b73ffffffffffffffffffffffffffffffffffffffff16610f866114c6565b73ffffffffffffffffffffffffffffffffffffffff1614610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd390613ac9565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161100290613ecb565b60006040518083038185875af1925050503d806000811461103f576040519150601f19603f3d011682016040523d82523d6000602084013e611044565b606091505b505090508061105257600080fd5b50565b60105481565b61107683838360405180602001604052806000815250611af5565b505050565b6110836120a8565b73ffffffffffffffffffffffffffffffffffffffff166110a16114c6565b73ffffffffffffffffffffffffffffffffffffffff16146110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee90613ac9565b60405180910390fd5b80600c8190555050565b60115481565b6000611111610d89565b8210611152576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114990613f52565b60405180910390fd5b6008828154811061116657611165613f72565b5b90600052602060002001549050919050565b6111806120a8565b73ffffffffffffffffffffffffffffffffffffffff1661119e6114c6565b73ffffffffffffffffffffffffffffffffffffffff16146111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb90613ac9565b60405180910390fd5b8061139d9081611204919061414d565b5050565b61139c60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb90614291565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361133d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133490614323565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61138c6120a8565b73ffffffffffffffffffffffffffffffffffffffff166113aa6114c6565b73ffffffffffffffffffffffffffffffffffffffff1614611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f790613ac9565b60405180910390fd5b61140a6000612576565b565b6114146120a8565b73ffffffffffffffffffffffffffffffffffffffff166114326114c6565b73ffffffffffffffffffffffffffffffffffffffff1614611488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147f90613ac9565b60405180910390fd5b80600f8190555050565b61139b6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546114ff90613b18565b80601f016020809104026020016040519081016040528092919081815260200182805461152b90613b18565b80156115785780601f1061154d57610100808354040283529160200191611578565b820191906000526020600020905b81548152906001019060200180831161155b57829003601f168201915b5050505050905090565b61139c60009054906101000a900460ff16156115d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ca906143b5565b60405180910390fd5b60008111611616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160d90614447565b60405180910390fd5b600f5481111561165b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611652906144d9565b60405180910390fd5b80600e5410156116a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116979061456b565b60405180910390fd5b6116a86114c6565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461172b5780600c546116e8919061458b565b34101561172a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172190614657565b60405180910390fd5b5b6000600190505b81811161176a576117423361263c565b50611757823461175291906146a6565b61272e565b808061176290613e52565b915050611732565b5050565b6117766120a8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117da90614723565b60405180910390fd5b80600560006117f06120a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661189d6120a8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118e2919061340d565b60405180910390a35050565b6000806118fa836112cd565b90506000805b828110156119475760006119148683610dfc565b905061193161192282610a04565b8461256090919063ffffffff16565b925050808061193f90613e52565b915050611900565b508092505050919050565b61195a6120a8565b73ffffffffffffffffffffffffffffffffffffffff166119786114c6565b73ffffffffffffffffffffffffffffffffffffffff16146119ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c590613ac9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a349061478f565b60405180910390fd5b60008111611a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7790614447565b60405180910390fd5b6000600e5403611ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abc9061456b565b60405180910390fd5b6000600190505b818111611af057611adc8361263c565b508080611ae890613e52565b915050611acc565b505050565b611b06611b006120a8565b83612227565b611b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3c90613d71565b60405180910390fd5b611b518484848461279b565b50505050565b600b8054611b6490613b18565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9090613b18565b8015611bdd5780601f10611bb257610100808354040283529160200191611bdd565b820191906000526020600020905b815481529060010190602001808311611bc057829003601f168201915b505050505081565b6060611bf082612102565b611c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2690614821565b60405180910390fd5b6000611c396127f7565b90506000815111611c595760405180602001604052806000815250611c87565b80611c638461288a565b600b604051602001611c7793929190614900565b6040516020818303038152906040525b915050919050565b60606000611c9c836112cd565b905060008167ffffffffffffffff811115611cba57611cb9613658565b5b604051908082528060200260200182016040528015611ce85781602001602082028036833780820191505090505b50905060005b82811015611d3257611d008582610dfc565b828281518110611d1357611d12613f72565b5b6020026020010181815250508080611d2a90613e52565b915050611cee565b508092505050919050565b61139a6020528060005260406000206000915090505481565b600d5481565b611d646120a8565b73ffffffffffffffffffffffffffffffffffffffff16611d826114c6565b73ffffffffffffffffffffffffffffffffffffffff1614611dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcf90613ac9565b60405180910390fd5b80600b9081611de7919061414d565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6012816113888110611e9057600080fd5b016000915090505481565b611ea36120a8565b73ffffffffffffffffffffffffffffffffffffffff16611ec16114c6565b73ffffffffffffffffffffffffffffffffffffffff1614611f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0e90613ac9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7d906149a3565b60405180910390fd5b611f8f81612576565b50565b600e5481565b600080823b905060008111915050919050565b505050565b60008183611fbe91906149c3565b905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061209157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806120a157506120a0826129ea565b5b9050919050565b600033905090565b6120c58160105461256090919063ffffffff16565b6010819055506120f96120e86120d9610d89565b83612a5490919063ffffffff16565b60115461256090919063ffffffff16565b60118190555050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166121e18361121c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061223282612102565b612271576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226890614a69565b60405180910390fd5b600061227c8361121c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806122eb57508373ffffffffffffffffffffffffffffffffffffffff166122d384610be7565b73ffffffffffffffffffffffffffffffffffffffff16145b806122fc57506122fb8185611deb565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166123258261121c565b73ffffffffffffffffffffffffffffffffffffffff161461237b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237290614afb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e190614b8d565b60405180910390fd5b6123f5838383612a6a565b61240060008261216e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461245091906149c3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124a79190614bad565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000818361256e9190614bad565b905092915050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080600e5461264a612b7c565b6126549190614be1565b90506000600161266383612bb3565b61266d9190614bad565b9050600e600081548092919061268290614c12565b9190505550612692600e54612bb3565b60128361138881106126a7576126a6613f72565b5b01819055506126b68482612bf9565b3361139b600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060115461139a6000838152602001908152602001600020819055508092505050919050565b61139e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612797573d6000803e3d6000fd5b5050565b6127a6848484612305565b6127b284848484612c17565b6127f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e890614cad565b60405180910390fd5b50505050565b606061139d805461280790613b18565b80601f016020809104026020016040519081016040528092919081815260200182805461283390613b18565b80156128805780601f1061285557610100808354040283529160200191612880565b820191906000526020600020905b81548152906001019060200180831161286357829003601f168201915b5050505050905090565b6060600082036128d1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129e5565b600082905060005b600082146129035780806128ec90613e52565b915050600a826128fc91906146a6565b91506128d9565b60008167ffffffffffffffff81111561291f5761291e613658565b5b6040519080825280601f01601f1916602001820160405280156129515781602001600182028036833780820191505090505b5090505b600085146129de5760018261296a91906149c3565b9150600a856129799190614be1565b60306129859190614bad565b60f81b81838151811061299b5761299a613f72565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129d791906146a6565b9450612955565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008183612a6291906146a6565b905092915050565b612a75838383611fab565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612ab757612ab281612d9e565b612af6565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612af557612af48382612de7565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b3857612b3381612f54565b612b77565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612b7657612b758282613025565b5b5b505050565b60004442600e54604051602001612b9593929190614cee565b6040516020818303038152906040528051906020012060001c905090565b6000806012836113888110612bcb57612bca613f72565b5b015414612bf0576012826113888110612be757612be6613f72565b5b01549050612bf4565b8190505b919050565b612c138282604051806020016040528060008152506130a4565b5050565b6000612c388473ffffffffffffffffffffffffffffffffffffffff16611f98565b15612d91578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c616120a8565b8786866040518563ffffffff1660e01b8152600401612c839493929190614d80565b6020604051808303816000875af1925050508015612cbf57506040513d601f19601f82011682018060405250810190612cbc9190614de1565b60015b612d41573d8060008114612cef576040519150601f19603f3d011682016040523d82523d6000602084013e612cf4565b606091505b506000815103612d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3090614cad565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d96565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612df4846112cd565b612dfe91906149c3565b9050600060076000848152602001908152602001600020549050818114612ee3576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612f6891906149c3565b9050600060096000848152602001908152602001600020549050600060088381548110612f9857612f97613f72565b5b906000526020600020015490508060088381548110612fba57612fb9613f72565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061300957613008614e0e565b5b6001900381819060005260206000200160009055905550505050565b6000613030836112cd565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6130ae83836130ff565b6130bb6000848484612c17565b6130fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f190614cad565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361316e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316590614e89565b60405180910390fd5b61317781612102565b156131b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ae90614ef5565b60405180910390fd5b6131c360008383612a6a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132139190614bad565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b6132f3816132e0565b81146132fe57600080fd5b50565b600081359050613310816132ea565b92915050565b60006020828403121561332c5761332b6132d6565b5b600061333a84828501613301565b91505092915050565b61334c816132e0565b82525050565b60006020820190506133676000830184613343565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6133a28161336d565b81146133ad57600080fd5b50565b6000813590506133bf81613399565b92915050565b6000602082840312156133db576133da6132d6565b5b60006133e9848285016133b0565b91505092915050565b60008115159050919050565b613407816133f2565b82525050565b600060208201905061342260008301846133fe565b92915050565b613431816133f2565b811461343c57600080fd5b50565b60008135905061344e81613428565b92915050565b60006020828403121561346a576134696132d6565b5b60006134788482850161343f565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156134bb5780820151818401526020810190506134a0565b60008484015250505050565b6000601f19601f8301169050919050565b60006134e382613481565b6134ed818561348c565b93506134fd81856020860161349d565b613506816134c7565b840191505092915050565b6000602082019050818103600083015261352b81846134d8565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061355e82613533565b9050919050565b61356e81613553565b82525050565b60006020820190506135896000830184613565565b92915050565b61359881613553565b81146135a357600080fd5b50565b6000813590506135b58161358f565b92915050565b600080604083850312156135d2576135d16132d6565b5b60006135e0858286016135a6565b92505060206135f185828601613301565b9150509250929050565b600080600060608486031215613614576136136132d6565b5b6000613622868287016135a6565b9350506020613633868287016135a6565b925050604061364486828701613301565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613690826134c7565b810181811067ffffffffffffffff821117156136af576136ae613658565b5b80604052505050565b60006136c26132cc565b90506136ce8282613687565b919050565b600067ffffffffffffffff8211156136ee576136ed613658565b5b6136f7826134c7565b9050602081019050919050565b82818337600083830152505050565b6000613726613721846136d3565b6136b8565b90508281526020810184848401111561374257613741613653565b5b61374d848285613704565b509392505050565b600082601f83011261376a5761376961364e565b5b813561377a848260208601613713565b91505092915050565b600060208284031215613799576137986132d6565b5b600082013567ffffffffffffffff8111156137b7576137b66132db565b5b6137c384828501613755565b91505092915050565b6000602082840312156137e2576137e16132d6565b5b60006137f0848285016135a6565b91505092915050565b600080604083850312156138105761380f6132d6565b5b600061381e858286016135a6565b925050602061382f8582860161343f565b9150509250929050565b600067ffffffffffffffff82111561385457613853613658565b5b61385d826134c7565b9050602081019050919050565b600061387d61387884613839565b6136b8565b90508281526020810184848401111561389957613898613653565b5b6138a4848285613704565b509392505050565b600082601f8301126138c1576138c061364e565b5b81356138d184826020860161386a565b91505092915050565b600080600080608085870312156138f4576138f36132d6565b5b6000613902878288016135a6565b9450506020613913878288016135a6565b935050604061392487828801613301565b925050606085013567ffffffffffffffff811115613945576139446132db565b5b613951878288016138ac565b91505092959194509250565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613992816132e0565b82525050565b60006139a48383613989565b60208301905092915050565b6000602082019050919050565b60006139c88261395d565b6139d28185613968565b93506139dd83613979565b8060005b83811015613a0e5781516139f58882613998565b9750613a00836139b0565b9250506001810190506139e1565b5085935050505092915050565b60006020820190508181036000830152613a3581846139bd565b905092915050565b60008060408385031215613a5457613a536132d6565b5b6000613a62858286016135a6565b9250506020613a73858286016135a6565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ab360208361348c565b9150613abe82613a7d565b602082019050919050565b60006020820190508181036000830152613ae281613aa6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b3057607f821691505b602082108103613b4357613b42613ae9565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613ba5602c8361348c565b9150613bb082613b49565b604082019050919050565b60006020820190508181036000830152613bd481613b98565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c3760218361348c565b9150613c4282613bdb565b604082019050919050565b60006020820190508181036000830152613c6681613c2a565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613cc960388361348c565b9150613cd482613c6d565b604082019050919050565b60006020820190508181036000830152613cf881613cbc565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613d5b60318361348c565b9150613d6682613cff565b604082019050919050565b60006020820190508181036000830152613d8a81613d4e565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613ded602b8361348c565b9150613df882613d91565b604082019050919050565b60006020820190508181036000830152613e1c81613de0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613e5d826132e0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613e8f57613e8e613e23565b5b600182019050919050565b600081905092915050565b50565b6000613eb5600083613e9a565b9150613ec082613ea5565b600082019050919050565b6000613ed682613ea8565b9150819050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613f3c602c8361348c565b9150613f4782613ee0565b604082019050919050565b60006020820190508181036000830152613f6b81613f2f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026140037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613fc6565b61400d8683613fc6565b95508019841693508086168417925050509392505050565b6000819050919050565b600061404a614045614040846132e0565b614025565b6132e0565b9050919050565b6000819050919050565b6140648361402f565b61407861407082614051565b848454613fd3565b825550505050565b600090565b61408d614080565b61409881848461405b565b505050565b5b818110156140bc576140b1600082614085565b60018101905061409e565b5050565b601f821115614101576140d281613fa1565b6140db84613fb6565b810160208510156140ea578190505b6140fe6140f685613fb6565b83018261409d565b50505b505050565b600082821c905092915050565b600061412460001984600802614106565b1980831691505092915050565b600061413d8383614113565b9150826002028217905092915050565b61415682613481565b67ffffffffffffffff81111561416f5761416e613658565b5b6141798254613b18565b6141848282856140c0565b600060209050601f8311600181146141b757600084156141a5578287015190505b6141af8582614131565b865550614217565b601f1984166141c586613fa1565b60005b828110156141ed578489015182556001820191506020850194506020810190506141c8565b8683101561420a5784890151614206601f891682614113565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061427b60298361348c565b91506142868261421f565b604082019050919050565b600060208201905081810360008301526142aa8161426e565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061430d602a8361348c565b9150614318826142b1565b604082019050919050565b6000602082019050818103600083015261433c81614300565b9050919050565b7f466f784e546865486f756e64733a206d696e74696e6720686173206e6f74207360008201527f7461727465642079657400000000000000000000000000000000000000000000602082015250565b600061439f602a8361348c565b91506143aa82614343565b604082019050919050565b600060208201905081810360008301526143ce81614392565b9050919050565b7f466f784e546865486f756e64733a20796f75206861766520746f206d696e742060008201527f6174206c65617374206f6e650000000000000000000000000000000000000000602082015250565b6000614431602c8361348c565b915061443c826143d5565b604082019050919050565b6000602082019050818103600083015261446081614424565b9050919050565b7f466f784e546865486f756e64733a20796f752063616e206f6e6c79206d696e7460008201527f20313020617420612074696d6500000000000000000000000000000000000000602082015250565b60006144c3602d8361348c565b91506144ce82614467565b604082019050919050565b600060208201905081810360008301526144f2816144b6565b9050919050565b7f466f784e546865486f756e64733a2074686520636f6c6c656374696f6e20697360008201527f20736f6c64206f75740000000000000000000000000000000000000000000000602082015250565b600061455560298361348c565b9150614560826144f9565b604082019050919050565b6000602082019050818103600083015261458481614548565b9050919050565b6000614596826132e0565b91506145a1836132e0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145da576145d9613e23565b5b828202905092915050565b7f466f784e546865486f756e64733a20746f74616c20636f73742069736e27742060008201527f6d61746368000000000000000000000000000000000000000000000000000000602082015250565b600061464160258361348c565b915061464c826145e5565b604082019050919050565b6000602082019050818103600083015261467081614634565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006146b1826132e0565b91506146bc836132e0565b9250826146cc576146cb614677565b5b828204905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061470d60198361348c565b9150614718826146d7565b602082019050919050565b6000602082019050818103600083015261473c81614700565b9050919050565b7f466f784e546865486f756e64733a207a65726f20616464726573730000000000600082015250565b6000614779601b8361348c565b915061478482614743565b602082019050919050565b600060208201905081810360008301526147a88161476c565b9050919050565b7f466f784e546865486f756e64733a2055524920717565727920666f72206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b600061480b602e8361348c565b9150614816826147af565b604082019050919050565b6000602082019050818103600083015261483a816147fe565b9050919050565b600081905092915050565b600061485782613481565b6148618185614841565b935061487181856020860161349d565b80840191505092915050565b6000815461488a81613b18565b6148948186614841565b945060018216600081146148af57600181146148c4576148f7565b60ff19831686528115158202860193506148f7565b6148cd85613fa1565b60005b838110156148ef578154818901526001820191506020810190506148d0565b838801955050505b50505092915050565b600061490c828661484c565b9150614918828561484c565b9150614924828461487d565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061498d60268361348c565b915061499882614931565b604082019050919050565b600060208201905081810360008301526149bc81614980565b9050919050565b60006149ce826132e0565b91506149d9836132e0565b92508282039050818111156149f1576149f0613e23565b5b92915050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614a53602c8361348c565b9150614a5e826149f7565b604082019050919050565b60006020820190508181036000830152614a8281614a46565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614ae560298361348c565b9150614af082614a89565b604082019050919050565b60006020820190508181036000830152614b1481614ad8565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b7760248361348c565b9150614b8282614b1b565b604082019050919050565b60006020820190508181036000830152614ba681614b6a565b9050919050565b6000614bb8826132e0565b9150614bc3836132e0565b9250828201905080821115614bdb57614bda613e23565b5b92915050565b6000614bec826132e0565b9150614bf7836132e0565b925082614c0757614c06614677565b5b828206905092915050565b6000614c1d826132e0565b915060008203614c3057614c2f613e23565b5b600182039050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614c9760328361348c565b9150614ca282614c3b565b604082019050919050565b60006020820190508181036000830152614cc681614c8a565b9050919050565b6000819050919050565b614ce8614ce3826132e0565b614ccd565b82525050565b6000614cfa8286614cd7565b602082019150614d0a8285614cd7565b602082019150614d1a8284614cd7565b602082019150819050949350505050565b600081519050919050565b600082825260208201905092915050565b6000614d5282614d2b565b614d5c8185614d36565b9350614d6c81856020860161349d565b614d75816134c7565b840191505092915050565b6000608082019050614d956000830187613565565b614da26020830186613565565b614daf6040830185613343565b8181036060830152614dc18184614d47565b905095945050505050565b600081519050614ddb81613399565b92915050565b600060208284031215614df757614df66132d6565b5b6000614e0584828501614dcc565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614e7360208361348c565b9150614e7e82614e3d565b602082019050919050565b60006020820190508181036000830152614ea281614e66565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614edf601c8361348c565b9150614eea82614ea9565b602082019050919050565b60006020820190508181036000830152614f0e81614ed2565b905091905056fea2646970667358221220bf913e1816db2deb7abdc549fd7d4a2954c7df041271a8fc03996bd3059685f164736f6c63430008100033697066733a2f2f6261667962656968326876366c6279646d656e336b613468326c61757167676c6d6e796b3467716f6c6167706b377268737064733278696e7464792f

Deployed ByteCode

0x60806040526004361061025b5760003560e01c80636352211e11610144578063b88d4fde116100b6578063d5abeb011161007a578063d5abeb01146108e2578063da3ef23f1461090d578063e985e9c514610936578063ee6d9d6d14610973578063f2fde38b146109b0578063f75b8c5f146109d95761025b565b8063b88d4fde146107d7578063c668286214610800578063c87b56dd1461082b578063d004b03614610868578063d2068857146108a55761025b565b80638da5cb5b116101085780638da5cb5b146106d657806395d89b4114610701578063a0712d681461072c578063a22cb46514610748578063a708d40414610771578063b3ef77f2146107ae5761025b565b80636352211e146105df57806370a082311461061c578063715018a6146106595780637f00c7a6146106705780638623ec7b146106995761025b565b806323b872dd116101dd57806342842e0e116101a157806342842e0e146104d157806344a0d68a146104fa5780634b6acafb146105235780634f6ccce71461054e57806355f804b31461058b5780635c975abb146105b45761025b565b806323b872dd1461041f5780632f745c5914610448578063372500ab146104855780633ccfd60b1461049c5780634131ff99146104a65761025b565b8063081812fc11610224578063081812fc14610338578063095ea7b31461037557806313faede61461039e57806318160ddd146103c9578063239c70ae146103f45761025b565b8062fe50c61461026057806301ffc9a71461029d57806302329a29146102da578063047d5e801461030357806306fdde031461030d575b600080fd5b34801561026c57600080fd5b5061028760048036038101906102829190613316565b610a04565b6040516102949190613352565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf91906133c5565b610a36565b6040516102d1919061340d565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190613454565b610ab0565b005b61030b610b4a565b005b34801561031957600080fd5b50610322610b55565b60405161032f9190613511565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a9190613316565b610be7565b60405161036c9190613574565b60405180910390f35b34801561038157600080fd5b5061039c600480360381019061039791906135bb565b610c6c565b005b3480156103aa57600080fd5b506103b3610d83565b6040516103c09190613352565b60405180910390f35b3480156103d557600080fd5b506103de610d89565b6040516103eb9190613352565b60405180910390f35b34801561040057600080fd5b50610409610d96565b6040516104169190613352565b60405180910390f35b34801561042b57600080fd5b50610446600480360381019061044191906135fb565b610d9c565b005b34801561045457600080fd5b5061046f600480360381019061046a91906135bb565b610dfc565b60405161047c9190613352565b60405180910390f35b34801561049157600080fd5b5061049a610ea1565b005b6104a4610f60565b005b3480156104b257600080fd5b506104bb611055565b6040516104c89190613352565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f391906135fb565b61105b565b005b34801561050657600080fd5b50610521600480360381019061051c9190613316565b61107b565b005b34801561052f57600080fd5b50610538611101565b6040516105459190613352565b60405180910390f35b34801561055a57600080fd5b5061057560048036038101906105709190613316565b611107565b6040516105829190613352565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad9190613783565b611178565b005b3480156105c057600080fd5b506105c9611208565b6040516105d6919061340d565b60405180910390f35b3480156105eb57600080fd5b5061060660048036038101906106019190613316565b61121c565b6040516106139190613574565b60405180910390f35b34801561062857600080fd5b50610643600480360381019061063e91906137cc565b6112cd565b6040516106509190613352565b60405180910390f35b34801561066557600080fd5b5061066e611384565b005b34801561067c57600080fd5b5061069760048036038101906106929190613316565b61140c565b005b3480156106a557600080fd5b506106c060048036038101906106bb9190613316565b611492565b6040516106cd9190613574565b60405180910390f35b3480156106e257600080fd5b506106eb6114c6565b6040516106f89190613574565b60405180910390f35b34801561070d57600080fd5b506107166114f0565b6040516107239190613511565b60405180910390f35b61074660048036038101906107419190613316565b611582565b005b34801561075457600080fd5b5061076f600480360381019061076a91906137f9565b61176e565b005b34801561077d57600080fd5b50610798600480360381019061079391906137cc565b6118ee565b6040516107a59190613352565b60405180910390f35b3480156107ba57600080fd5b506107d560048036038101906107d091906135bb565b611952565b005b3480156107e357600080fd5b506107fe60048036038101906107f991906138da565b611af5565b005b34801561080c57600080fd5b50610815611b57565b6040516108229190613511565b60405180910390f35b34801561083757600080fd5b50610852600480360381019061084d9190613316565b611be5565b60405161085f9190613511565b60405180910390f35b34801561087457600080fd5b5061088f600480360381019061088a91906137cc565b611c8f565b60405161089c9190613a1b565b60405180910390f35b3480156108b157600080fd5b506108cc60048036038101906108c79190613316565b611d3d565b6040516108d99190613352565b60405180910390f35b3480156108ee57600080fd5b506108f7611d56565b6040516109049190613352565b60405180910390f35b34801561091957600080fd5b50610934600480360381019061092f9190613783565b611d5c565b005b34801561094257600080fd5b5061095d60048036038101906109589190613a3d565b611deb565b60405161096a919061340d565b60405180910390f35b34801561097f57600080fd5b5061099a60048036038101906109959190613316565b611e7f565b6040516109a79190613352565b60405180910390f35b3480156109bc57600080fd5b506109d760048036038101906109d291906137cc565b611e9b565b005b3480156109e557600080fd5b506109ee611f92565b6040516109fb9190613352565b60405180910390f35b6000610a2f61139a600084815260200190815260200160002054601154611fb090919063ffffffff16565b9050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aa95750610aa882611fc6565b5b9050919050565b610ab86120a8565b73ffffffffffffffffffffffffffffffffffffffff16610ad66114c6565b73ffffffffffffffffffffffffffffffffffffffff1614610b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2390613ac9565b60405180910390fd5b8061139c60006101000a81548160ff02191690831515021790555050565b610b53346120b0565b565b606060008054610b6490613b18565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9090613b18565b8015610bdd5780601f10610bb257610100808354040283529160200191610bdd565b820191906000526020600020905b815481529060010190602001808311610bc057829003601f168201915b5050505050905090565b6000610bf282612102565b610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2890613bbb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c778261121c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cde90613c4d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d066120a8565b73ffffffffffffffffffffffffffffffffffffffff161480610d355750610d3481610d2f6120a8565b611deb565b5b610d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6b90613cdf565b60405180910390fd5b610d7e838361216e565b505050565b600c5481565b6000600880549050905090565b600f5481565b610dad610da76120a8565b82612227565b610dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de390613d71565b60405180910390fd5b610df7838383612305565b505050565b6000610e07836112cd565b8210610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f90613e03565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000610eac336112cd565b90506000805b82811015610f14576000610ec63383610dfc565b9050610ee3610ed482610a04565b8461256090919063ffffffff16565b925060115461139a600083815260200190815260200160002081905550508080610f0c90613e52565b915050610eb2565b503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f5b573d6000803e3d6000fd5b505050565b610f686120a8565b73ffffffffffffffffffffffffffffffffffffffff16610f866114c6565b73ffffffffffffffffffffffffffffffffffffffff1614610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd390613ac9565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161100290613ecb565b60006040518083038185875af1925050503d806000811461103f576040519150601f19603f3d011682016040523d82523d6000602084013e611044565b606091505b505090508061105257600080fd5b50565b60105481565b61107683838360405180602001604052806000815250611af5565b505050565b6110836120a8565b73ffffffffffffffffffffffffffffffffffffffff166110a16114c6565b73ffffffffffffffffffffffffffffffffffffffff16146110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee90613ac9565b60405180910390fd5b80600c8190555050565b60115481565b6000611111610d89565b8210611152576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114990613f52565b60405180910390fd5b6008828154811061116657611165613f72565b5b90600052602060002001549050919050565b6111806120a8565b73ffffffffffffffffffffffffffffffffffffffff1661119e6114c6565b73ffffffffffffffffffffffffffffffffffffffff16146111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb90613ac9565b60405180910390fd5b8061139d9081611204919061414d565b5050565b61139c60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb90614291565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361133d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133490614323565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61138c6120a8565b73ffffffffffffffffffffffffffffffffffffffff166113aa6114c6565b73ffffffffffffffffffffffffffffffffffffffff1614611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f790613ac9565b60405180910390fd5b61140a6000612576565b565b6114146120a8565b73ffffffffffffffffffffffffffffffffffffffff166114326114c6565b73ffffffffffffffffffffffffffffffffffffffff1614611488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147f90613ac9565b60405180910390fd5b80600f8190555050565b61139b6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546114ff90613b18565b80601f016020809104026020016040519081016040528092919081815260200182805461152b90613b18565b80156115785780601f1061154d57610100808354040283529160200191611578565b820191906000526020600020905b81548152906001019060200180831161155b57829003601f168201915b5050505050905090565b61139c60009054906101000a900460ff16156115d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ca906143b5565b60405180910390fd5b60008111611616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160d90614447565b60405180910390fd5b600f5481111561165b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611652906144d9565b60405180910390fd5b80600e5410156116a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116979061456b565b60405180910390fd5b6116a86114c6565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461172b5780600c546116e8919061458b565b34101561172a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172190614657565b60405180910390fd5b5b6000600190505b81811161176a576117423361263c565b50611757823461175291906146a6565b61272e565b808061176290613e52565b915050611732565b5050565b6117766120a8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117da90614723565b60405180910390fd5b80600560006117f06120a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661189d6120a8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118e2919061340d565b60405180910390a35050565b6000806118fa836112cd565b90506000805b828110156119475760006119148683610dfc565b905061193161192282610a04565b8461256090919063ffffffff16565b925050808061193f90613e52565b915050611900565b508092505050919050565b61195a6120a8565b73ffffffffffffffffffffffffffffffffffffffff166119786114c6565b73ffffffffffffffffffffffffffffffffffffffff16146119ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c590613ac9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a349061478f565b60405180910390fd5b60008111611a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7790614447565b60405180910390fd5b6000600e5403611ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abc9061456b565b60405180910390fd5b6000600190505b818111611af057611adc8361263c565b508080611ae890613e52565b915050611acc565b505050565b611b06611b006120a8565b83612227565b611b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3c90613d71565b60405180910390fd5b611b518484848461279b565b50505050565b600b8054611b6490613b18565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9090613b18565b8015611bdd5780601f10611bb257610100808354040283529160200191611bdd565b820191906000526020600020905b815481529060010190602001808311611bc057829003601f168201915b505050505081565b6060611bf082612102565b611c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2690614821565b60405180910390fd5b6000611c396127f7565b90506000815111611c595760405180602001604052806000815250611c87565b80611c638461288a565b600b604051602001611c7793929190614900565b6040516020818303038152906040525b915050919050565b60606000611c9c836112cd565b905060008167ffffffffffffffff811115611cba57611cb9613658565b5b604051908082528060200260200182016040528015611ce85781602001602082028036833780820191505090505b50905060005b82811015611d3257611d008582610dfc565b828281518110611d1357611d12613f72565b5b6020026020010181815250508080611d2a90613e52565b915050611cee565b508092505050919050565b61139a6020528060005260406000206000915090505481565b600d5481565b611d646120a8565b73ffffffffffffffffffffffffffffffffffffffff16611d826114c6565b73ffffffffffffffffffffffffffffffffffffffff1614611dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcf90613ac9565b60405180910390fd5b80600b9081611de7919061414d565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6012816113888110611e9057600080fd5b016000915090505481565b611ea36120a8565b73ffffffffffffffffffffffffffffffffffffffff16611ec16114c6565b73ffffffffffffffffffffffffffffffffffffffff1614611f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0e90613ac9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7d906149a3565b60405180910390fd5b611f8f81612576565b50565b600e5481565b600080823b905060008111915050919050565b505050565b60008183611fbe91906149c3565b905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061209157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806120a157506120a0826129ea565b5b9050919050565b600033905090565b6120c58160105461256090919063ffffffff16565b6010819055506120f96120e86120d9610d89565b83612a5490919063ffffffff16565b60115461256090919063ffffffff16565b60118190555050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166121e18361121c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061223282612102565b612271576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226890614a69565b60405180910390fd5b600061227c8361121c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806122eb57508373ffffffffffffffffffffffffffffffffffffffff166122d384610be7565b73ffffffffffffffffffffffffffffffffffffffff16145b806122fc57506122fb8185611deb565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166123258261121c565b73ffffffffffffffffffffffffffffffffffffffff161461237b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237290614afb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e190614b8d565b60405180910390fd5b6123f5838383612a6a565b61240060008261216e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461245091906149c3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124a79190614bad565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000818361256e9190614bad565b905092915050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080600e5461264a612b7c565b6126549190614be1565b90506000600161266383612bb3565b61266d9190614bad565b9050600e600081548092919061268290614c12565b9190505550612692600e54612bb3565b60128361138881106126a7576126a6613f72565b5b01819055506126b68482612bf9565b3361139b600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060115461139a6000838152602001908152602001600020819055508092505050919050565b61139e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612797573d6000803e3d6000fd5b5050565b6127a6848484612305565b6127b284848484612c17565b6127f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e890614cad565b60405180910390fd5b50505050565b606061139d805461280790613b18565b80601f016020809104026020016040519081016040528092919081815260200182805461283390613b18565b80156128805780601f1061285557610100808354040283529160200191612880565b820191906000526020600020905b81548152906001019060200180831161286357829003601f168201915b5050505050905090565b6060600082036128d1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129e5565b600082905060005b600082146129035780806128ec90613e52565b915050600a826128fc91906146a6565b91506128d9565b60008167ffffffffffffffff81111561291f5761291e613658565b5b6040519080825280601f01601f1916602001820160405280156129515781602001600182028036833780820191505090505b5090505b600085146129de5760018261296a91906149c3565b9150600a856129799190614be1565b60306129859190614bad565b60f81b81838151811061299b5761299a613f72565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129d791906146a6565b9450612955565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008183612a6291906146a6565b905092915050565b612a75838383611fab565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612ab757612ab281612d9e565b612af6565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612af557612af48382612de7565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b3857612b3381612f54565b612b77565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612b7657612b758282613025565b5b5b505050565b60004442600e54604051602001612b9593929190614cee565b6040516020818303038152906040528051906020012060001c905090565b6000806012836113888110612bcb57612bca613f72565b5b015414612bf0576012826113888110612be757612be6613f72565b5b01549050612bf4565b8190505b919050565b612c138282604051806020016040528060008152506130a4565b5050565b6000612c388473ffffffffffffffffffffffffffffffffffffffff16611f98565b15612d91578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c616120a8565b8786866040518563ffffffff1660e01b8152600401612c839493929190614d80565b6020604051808303816000875af1925050508015612cbf57506040513d601f19601f82011682018060405250810190612cbc9190614de1565b60015b612d41573d8060008114612cef576040519150601f19603f3d011682016040523d82523d6000602084013e612cf4565b606091505b506000815103612d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3090614cad565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d96565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612df4846112cd565b612dfe91906149c3565b9050600060076000848152602001908152602001600020549050818114612ee3576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612f6891906149c3565b9050600060096000848152602001908152602001600020549050600060088381548110612f9857612f97613f72565b5b906000526020600020015490508060088381548110612fba57612fb9613f72565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061300957613008614e0e565b5b6001900381819060005260206000200160009055905550505050565b6000613030836112cd565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6130ae83836130ff565b6130bb6000848484612c17565b6130fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f190614cad565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361316e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316590614e89565b60405180910390fd5b61317781612102565b156131b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ae90614ef5565b60405180910390fd5b6131c360008383612a6a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132139190614bad565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b6132f3816132e0565b81146132fe57600080fd5b50565b600081359050613310816132ea565b92915050565b60006020828403121561332c5761332b6132d6565b5b600061333a84828501613301565b91505092915050565b61334c816132e0565b82525050565b60006020820190506133676000830184613343565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6133a28161336d565b81146133ad57600080fd5b50565b6000813590506133bf81613399565b92915050565b6000602082840312156133db576133da6132d6565b5b60006133e9848285016133b0565b91505092915050565b60008115159050919050565b613407816133f2565b82525050565b600060208201905061342260008301846133fe565b92915050565b613431816133f2565b811461343c57600080fd5b50565b60008135905061344e81613428565b92915050565b60006020828403121561346a576134696132d6565b5b60006134788482850161343f565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156134bb5780820151818401526020810190506134a0565b60008484015250505050565b6000601f19601f8301169050919050565b60006134e382613481565b6134ed818561348c565b93506134fd81856020860161349d565b613506816134c7565b840191505092915050565b6000602082019050818103600083015261352b81846134d8565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061355e82613533565b9050919050565b61356e81613553565b82525050565b60006020820190506135896000830184613565565b92915050565b61359881613553565b81146135a357600080fd5b50565b6000813590506135b58161358f565b92915050565b600080604083850312156135d2576135d16132d6565b5b60006135e0858286016135a6565b92505060206135f185828601613301565b9150509250929050565b600080600060608486031215613614576136136132d6565b5b6000613622868287016135a6565b9350506020613633868287016135a6565b925050604061364486828701613301565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613690826134c7565b810181811067ffffffffffffffff821117156136af576136ae613658565b5b80604052505050565b60006136c26132cc565b90506136ce8282613687565b919050565b600067ffffffffffffffff8211156136ee576136ed613658565b5b6136f7826134c7565b9050602081019050919050565b82818337600083830152505050565b6000613726613721846136d3565b6136b8565b90508281526020810184848401111561374257613741613653565b5b61374d848285613704565b509392505050565b600082601f83011261376a5761376961364e565b5b813561377a848260208601613713565b91505092915050565b600060208284031215613799576137986132d6565b5b600082013567ffffffffffffffff8111156137b7576137b66132db565b5b6137c384828501613755565b91505092915050565b6000602082840312156137e2576137e16132d6565b5b60006137f0848285016135a6565b91505092915050565b600080604083850312156138105761380f6132d6565b5b600061381e858286016135a6565b925050602061382f8582860161343f565b9150509250929050565b600067ffffffffffffffff82111561385457613853613658565b5b61385d826134c7565b9050602081019050919050565b600061387d61387884613839565b6136b8565b90508281526020810184848401111561389957613898613653565b5b6138a4848285613704565b509392505050565b600082601f8301126138c1576138c061364e565b5b81356138d184826020860161386a565b91505092915050565b600080600080608085870312156138f4576138f36132d6565b5b6000613902878288016135a6565b9450506020613913878288016135a6565b935050604061392487828801613301565b925050606085013567ffffffffffffffff811115613945576139446132db565b5b613951878288016138ac565b91505092959194509250565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613992816132e0565b82525050565b60006139a48383613989565b60208301905092915050565b6000602082019050919050565b60006139c88261395d565b6139d28185613968565b93506139dd83613979565b8060005b83811015613a0e5781516139f58882613998565b9750613a00836139b0565b9250506001810190506139e1565b5085935050505092915050565b60006020820190508181036000830152613a3581846139bd565b905092915050565b60008060408385031215613a5457613a536132d6565b5b6000613a62858286016135a6565b9250506020613a73858286016135a6565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ab360208361348c565b9150613abe82613a7d565b602082019050919050565b60006020820190508181036000830152613ae281613aa6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b3057607f821691505b602082108103613b4357613b42613ae9565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613ba5602c8361348c565b9150613bb082613b49565b604082019050919050565b60006020820190508181036000830152613bd481613b98565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c3760218361348c565b9150613c4282613bdb565b604082019050919050565b60006020820190508181036000830152613c6681613c2a565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613cc960388361348c565b9150613cd482613c6d565b604082019050919050565b60006020820190508181036000830152613cf881613cbc565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613d5b60318361348c565b9150613d6682613cff565b604082019050919050565b60006020820190508181036000830152613d8a81613d4e565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613ded602b8361348c565b9150613df882613d91565b604082019050919050565b60006020820190508181036000830152613e1c81613de0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613e5d826132e0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613e8f57613e8e613e23565b5b600182019050919050565b600081905092915050565b50565b6000613eb5600083613e9a565b9150613ec082613ea5565b600082019050919050565b6000613ed682613ea8565b9150819050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613f3c602c8361348c565b9150613f4782613ee0565b604082019050919050565b60006020820190508181036000830152613f6b81613f2f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026140037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613fc6565b61400d8683613fc6565b95508019841693508086168417925050509392505050565b6000819050919050565b600061404a614045614040846132e0565b614025565b6132e0565b9050919050565b6000819050919050565b6140648361402f565b61407861407082614051565b848454613fd3565b825550505050565b600090565b61408d614080565b61409881848461405b565b505050565b5b818110156140bc576140b1600082614085565b60018101905061409e565b5050565b601f821115614101576140d281613fa1565b6140db84613fb6565b810160208510156140ea578190505b6140fe6140f685613fb6565b83018261409d565b50505b505050565b600082821c905092915050565b600061412460001984600802614106565b1980831691505092915050565b600061413d8383614113565b9150826002028217905092915050565b61415682613481565b67ffffffffffffffff81111561416f5761416e613658565b5b6141798254613b18565b6141848282856140c0565b600060209050601f8311600181146141b757600084156141a5578287015190505b6141af8582614131565b865550614217565b601f1984166141c586613fa1565b60005b828110156141ed578489015182556001820191506020850194506020810190506141c8565b8683101561420a5784890151614206601f891682614113565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061427b60298361348c565b91506142868261421f565b604082019050919050565b600060208201905081810360008301526142aa8161426e565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061430d602a8361348c565b9150614318826142b1565b604082019050919050565b6000602082019050818103600083015261433c81614300565b9050919050565b7f466f784e546865486f756e64733a206d696e74696e6720686173206e6f74207360008201527f7461727465642079657400000000000000000000000000000000000000000000602082015250565b600061439f602a8361348c565b91506143aa82614343565b604082019050919050565b600060208201905081810360008301526143ce81614392565b9050919050565b7f466f784e546865486f756e64733a20796f75206861766520746f206d696e742060008201527f6174206c65617374206f6e650000000000000000000000000000000000000000602082015250565b6000614431602c8361348c565b915061443c826143d5565b604082019050919050565b6000602082019050818103600083015261446081614424565b9050919050565b7f466f784e546865486f756e64733a20796f752063616e206f6e6c79206d696e7460008201527f20313020617420612074696d6500000000000000000000000000000000000000602082015250565b60006144c3602d8361348c565b91506144ce82614467565b604082019050919050565b600060208201905081810360008301526144f2816144b6565b9050919050565b7f466f784e546865486f756e64733a2074686520636f6c6c656374696f6e20697360008201527f20736f6c64206f75740000000000000000000000000000000000000000000000602082015250565b600061455560298361348c565b9150614560826144f9565b604082019050919050565b6000602082019050818103600083015261458481614548565b9050919050565b6000614596826132e0565b91506145a1836132e0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145da576145d9613e23565b5b828202905092915050565b7f466f784e546865486f756e64733a20746f74616c20636f73742069736e27742060008201527f6d61746368000000000000000000000000000000000000000000000000000000602082015250565b600061464160258361348c565b915061464c826145e5565b604082019050919050565b6000602082019050818103600083015261467081614634565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006146b1826132e0565b91506146bc836132e0565b9250826146cc576146cb614677565b5b828204905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061470d60198361348c565b9150614718826146d7565b602082019050919050565b6000602082019050818103600083015261473c81614700565b9050919050565b7f466f784e546865486f756e64733a207a65726f20616464726573730000000000600082015250565b6000614779601b8361348c565b915061478482614743565b602082019050919050565b600060208201905081810360008301526147a88161476c565b9050919050565b7f466f784e546865486f756e64733a2055524920717565727920666f72206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b600061480b602e8361348c565b9150614816826147af565b604082019050919050565b6000602082019050818103600083015261483a816147fe565b9050919050565b600081905092915050565b600061485782613481565b6148618185614841565b935061487181856020860161349d565b80840191505092915050565b6000815461488a81613b18565b6148948186614841565b945060018216600081146148af57600181146148c4576148f7565b60ff19831686528115158202860193506148f7565b6148cd85613fa1565b60005b838110156148ef578154818901526001820191506020810190506148d0565b838801955050505b50505092915050565b600061490c828661484c565b9150614918828561484c565b9150614924828461487d565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061498d60268361348c565b915061499882614931565b604082019050919050565b600060208201905081810360008301526149bc81614980565b9050919050565b60006149ce826132e0565b91506149d9836132e0565b92508282039050818111156149f1576149f0613e23565b5b92915050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614a53602c8361348c565b9150614a5e826149f7565b604082019050919050565b60006020820190508181036000830152614a8281614a46565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614ae560298361348c565b9150614af082614a89565b604082019050919050565b60006020820190508181036000830152614b1481614ad8565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b7760248361348c565b9150614b8282614b1b565b604082019050919050565b60006020820190508181036000830152614ba681614b6a565b9050919050565b6000614bb8826132e0565b9150614bc3836132e0565b9250828201905080821115614bdb57614bda613e23565b5b92915050565b6000614bec826132e0565b9150614bf7836132e0565b925082614c0757614c06614677565b5b828206905092915050565b6000614c1d826132e0565b915060008203614c3057614c2f613e23565b5b600182039050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614c9760328361348c565b9150614ca282614c3b565b604082019050919050565b60006020820190508181036000830152614cc681614c8a565b9050919050565b6000819050919050565b614ce8614ce3826132e0565b614ccd565b82525050565b6000614cfa8286614cd7565b602082019150614d0a8285614cd7565b602082019150614d1a8284614cd7565b602082019150819050949350505050565b600081519050919050565b600082825260208201905092915050565b6000614d5282614d2b565b614d5c8185614d36565b9350614d6c81856020860161349d565b614d75816134c7565b840191505092915050565b6000608082019050614d956000830187613565565b614da26020830186613565565b614daf6040830185613343565b8181036060830152614dc18184614d47565b905095945050505050565b600081519050614ddb81613399565b92915050565b600060208284031215614df757614df66132d6565b5b6000614e0584828501614dcc565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614e7360208361348c565b9150614e7e82614e3d565b602082019050919050565b60006020820190508181036000830152614ea281614e66565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614edf601c8361348c565b9150614eea82614ea9565b602082019050919050565b60006020820190508181036000830152614f0e81614ed2565b905091905056fea2646970667358221220bf913e1816db2deb7abdc549fd7d4a2954c7df041271a8fc03996bd3059685f164736f6c63430008100033