ETH Price: $3,357.07 (-2.82%)
Gas: 1 Gwei

Token

The Adventurers Text (The Adventurers Text)
 

Overview

Max Total Supply

5,000 The Adventurers Text

Holders

2,543

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 The Adventurers Text
0x384e0f613dFCC82D1C1A53b396e9Fd28976462EF
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
theAdventurerscontract

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// GO TO LINE 1904 TO SEE WHERE THE BANANA CONTRACT STARTS
 


pragma solidity >=0.6.0 <0.8.0;

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

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be

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




pragma solidity >=0.6.2 <0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.2 <0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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

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



pragma solidity >=0.6.2 <0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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



pragma solidity >=0.6.0 <0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

// File: @openzeppelin/contracts/math/SafeMath.sol



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
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) {
        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) {
        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) {
        // 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) {
        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) {
        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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        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) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @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. 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) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        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) {
        require(b > 0, "SafeMath: modulo by zero");
        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) {
        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.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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) {
        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) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

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



pragma solidity >=0.6.2 <0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

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



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing an enumerable variant of Solidity's
 * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
 * type.
 *
 * Maps have the following properties:
 *
 * - Entries are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Entries are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableMap for EnumerableMap.UintToAddressMap;
 *
 *     // Declare a set state variable
 *     EnumerableMap.UintToAddressMap private myMap;
 * }
 * ```
 *
 * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
 * supported.
 */
library EnumerableMap {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;

        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex == 0) { // Equivalent to !contains(map, key)
            map._entries.push(MapEntry({ _key: key, _value: value }));
            // The entry is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            map._indexes[key] = map._entries.length;
            return true;
        } else {
            map._entries[keyIndex - 1]._value = value;
            return false;
        }
    }

    /**
     * @dev Removes a key-value pair from a map. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function _remove(Map storage map, bytes32 key) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex != 0) { // Equivalent to contains(map, key)
            // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
            // in the array, and then remove the last entry (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = keyIndex - 1;
            uint256 lastIndex = map._entries.length - 1;

            // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            MapEntry storage lastEntry = map._entries[lastIndex];

            // Move the last entry to the index where the entry to delete is
            map._entries[toDeleteIndex] = lastEntry;
            // Update the index for the moved entry
            map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved entry was stored
            map._entries.pop();

            // Delete the index for the deleted slot
            delete map._indexes[key];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function _contains(Map storage map, bytes32 key) private view returns (bool) {
        return map._indexes[key] != 0;
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._entries.length;
    }

   /**
    * @dev Returns the key-value pair stored at position `index` in the map. O(1).
    *
    * Note that there are no guarantees on the ordering of entries inside the
    * array, and it may change when more entries are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) {
        require(map._entries.length > index, "EnumerableMap: index out of bounds");

        MapEntry storage entry = map._entries[index];
        return (entry._key, entry._value);
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     */
    function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) {
        uint256 keyIndex = map._indexes[key];
        if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key)
        return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {_tryGet}.
     */
    function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) {
        return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) {
        return _remove(map._inner, bytes32(key));
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) {
        return _contains(map._inner, bytes32(key));
    }

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(UintToAddressMap storage map) internal view returns (uint256) {
        return _length(map._inner);
    }

   /**
    * @dev Returns the element stored at position `index` in the set. O(1).
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (uint256(key), address(uint160(uint256(value))));
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     *
     * _Available since v3.4._
     */
    function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) {
        (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key));
        return (success, address(uint160(uint256(value))));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToAddressMap storage map, uint256 key) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key)))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryGet}.
     */
    function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage))));
    }
}

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



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` 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);
        uint256 index = digits - 1;
        temp = value;
        while (temp != 0) {
            buffer[index--] = bytes1(uint8(48 + temp % 10));
            temp /= 10;
        }
        return string(buffer);
    }
}

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



pragma solidity >=0.6.0 <0.8.0;

/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
 
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using SafeMath for uint256;
    using Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from holder address to their (enumerable) set of owned tokens
    mapping (address => EnumerableSet.UintSet) private _holderTokens;

    // Enumerable mapping from token ids to their owners
    EnumerableMap.UintToAddressMap private _tokenOwners;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Optional mapping for token URIs
    mapping (uint256 => string) private _tokenURIs;

    // Base URI
    string private _baseURI;

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

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

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

    /**
     * @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 _holderTokens[owner].length();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token");
    }

    /**
     * @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 _tokenURI = _tokenURIs[tokenId];
        string memory base = baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(base, tokenId.toString()));
    }

    /**
    * @dev Returns the base URI set via {_setBaseURI}. This will be
    * automatically added as a prefix in {tokenURI} to each token's URI, or
    * to the token ID if no specific URI is set for that token ID.
    */
    function baseURI() public view virtual returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        return _holderTokens[owner].at(index);
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
        return _tokenOwners.length();
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        (uint256 tokenId, ) = _tokenOwners.at(index);
        return tokenId;
    }

    /**
     * @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 || ERC721.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 _tokenOwners.contains(tokenId);
    }

    /**
     * @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 || ERC721.isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     d*
     * - `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);

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(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); // internal owner

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

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

        // Clear metadata (if any)
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(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"); // internal owner
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _holderTokens[from].remove(tokenId);
        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }

    /**
     * @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()) {
            return true;
        }
        bytes memory returndata = to.functionCall(abi.encodeWithSelector(
            IERC721Receiver(to).onERC721Received.selector,
            _msgSender(),
            from,
            tokenId,
            _data
        ), "ERC721: transfer to non ERC721Receiver implementer");
        bytes4 retval = abi.decode(returndata, (bytes4));
        return (retval == _ERC721_RECEIVED);
    }

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


//hero

pragma solidity ^0.7.0;
pragma abicoder v2;

contract theAdventurerscontract is ERC721, Ownable {
    
    using SafeMath for uint256;

    string public hero_PROVENANCE = ""; // IPFS URL WILL BE ADDED WHEN


    uint256 public constant heroPrice = 30000000000000000; // 0.03 ETH

    uint public constant maxheroPurchase = 20;
    
   uint public constant maxReroll = 3;

    uint256 public constant MAX_heroS = 5000;

    bool public saleIsActive = false;
    
    mapping(uint => string) public heroNames;
    mapping(uint => string) public minternaltokenid;
    mapping(uint => uint256) public Rerolltimes;
    mapping(address => bool) minted;
    mapping(address => uint256) purchased;
    
    // Reserve 100 hero for team - Giveaways/Prizes etc
    uint public heroReserve = 300;
    
    event heroNameChange(address _by, uint _tokenId, string _name);
    
    event heroInternaltokenidChange(address _by, uint _tokenId,  string _internaltokenID);
    
    modifier mintOnlyOnce() {
        require(!minted[_msgSender()], 'Can only mint once');
        minted[_msgSender()] = true;
        _;
    }
    
    constructor() ERC721("The Adventurers Text", "The Adventurers Text") { }
    
    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        msg.sender.transfer(balance);
    }
    
    function reserveheros(address _to, uint256 _reserveAmount) public onlyOwner {        
        uint supply = totalSupply();
        require(_reserveAmount > 0 && _reserveAmount <= heroReserve, "Not enough reserve lef");
        for (uint i = 0; i < _reserveAmount; i++) {
            _safeMint(_to, supply + i);
        }
        heroReserve = heroReserve.sub(_reserveAmount);
    }


    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        hero_PROVENANCE = provenanceHash;
    }

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


    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }
    
    
    function claim(uint numberOfTokens) public mintOnlyOnce {
        require(saleIsActive, "Sale must be active to mint hero");
        require(totalSupply().add(1) <= MAX_heroS, 'Purchase would exceed max supply of heros');
        _safeMint(msg.sender, totalSupply());

    }
    
    function mintheros(uint numberOfTokens) public payable {
    require(saleIsActive, "Sale must be active to mint hero");
    require(numberOfTokens > 0 && numberOfTokens <= maxheroPurchase, "Can only mint 20 tokens at a time");
    require(totalSupply().add(numberOfTokens) <= MAX_heroS, "Purchase would exceed max supply of heros");
    require(msg.value >= heroPrice.mul(numberOfTokens), "Ether value sent is not correct");

    for (uint i = 0; i < numberOfTokens; i++) {
      uint mintIndex = totalSupply();
      if (totalSupply() < MAX_heroS) {
        _safeMint(msg.sender, mintIndex);
      }
    }
  }
  
  
  function reroll(uint _tokenId, string memory  _internaltokenID) public payable {
    require(saleIsActive, "Sale must be active to reroll");
    require(_tokenId <= totalSupply(), "Purchase would exceed max supply of heros");
    require(ownerOf(_tokenId) == msg.sender, "Hey, your wallet doesn't own this hero!");
    require(Rerolltimes[_tokenId] < maxReroll, "Hey, this token has more than 3 reroll!");

    Rerolltimes[_tokenId] = Rerolltimes[_tokenId] + 1;
    minternaltokenid[_tokenId] = _internaltokenID;
    emit heroInternaltokenidChange(msg.sender, _tokenId, _internaltokenID);
    
    _burn(_tokenId);
    _safeMint(msg.sender, _tokenId);

  }
  
    
  function getinternaltokenID(uint _tokenId) public  view returns( string memory ){
    require(_tokenId <= totalSupply(), "ID would exceed max supply of heros");
    return minternaltokenid[_tokenId];
  }
  
    function getRerolltimes(uint _tokenId) public  view returns( uint256  ){
    require(_tokenId <= totalSupply(), "ID would exceed max supply of heros");
    return Rerolltimes[_tokenId];
  }
  
    function setinternaltokenID(uint _tokenId, string memory  _internaltokenID) public onlyOwner {
    require(_tokenId <= totalSupply(), "ID would exceed max supply of heros");
    minternaltokenid[_tokenId] = _internaltokenID;
    emit heroInternaltokenidChange(msg.sender,  _tokenId, _internaltokenID);
  }
  
     
    function changeheroName(uint _tokenId, string memory _name) public {
        require(ownerOf(_tokenId) == msg.sender, "Hey, your wallet doesn't own this hero!");
        require(sha256(bytes(_name)) != sha256(bytes(heroNames[_tokenId])), "New name is same as the current one");
        heroNames[_tokenId] = _name;
        
        emit heroNameChange(msg.sender, _tokenId, _name);
        
    }
    
    function viewheroName(uint _tokenId) public view returns( string memory ){
        require( _tokenId < totalSupply(), "Choose a hero within range" );
        return heroNames[_tokenId];
    }
    
    function tokensOfOwner(address _owner) external view returns(uint256[] memory ) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }
    
    // GET ALL hero OF A WALLET AS AN ARRAY OF STRINGS. WOULD BE BETTER MAYBE IF IT RETURNED A STRUCT WITH ID-NAME MATCH
    function heroNamesOfOwner(address _owner) external view returns(string[] memory ) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new string[](0);
        } else {
            string[] memory result = new string[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = heroNames[ tokenOfOwnerByIndex(_owner, index) ] ;
            }
            return result;
        }
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_by","type":"address"},{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"_internaltokenID","type":"string"}],"name":"heroInternaltokenidChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_by","type":"address"},{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"_name","type":"string"}],"name":"heroNameChange","type":"event"},{"inputs":[],"name":"MAX_heroS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"Rerolltimes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_name","type":"string"}],"name":"changeheroName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getRerolltimes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getinternaltokenID","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"heroNames","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"heroNamesOfOwner","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"heroPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"heroReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hero_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxReroll","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxheroPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"minternaltokenid","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintheros","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_internaltokenID","type":"string"}],"name":"reroll","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reserveheros","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_internaltokenID","type":"string"}],"name":"setinternaltokenID","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"viewheroName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600b90805190602001906200002b929190620002f2565b506000600c60006101000a81548160ff02191690831515021790555061012c6012553480156200005a57600080fd5b506040518060400160405280601481526020017f54686520416476656e74757265727320546578740000000000000000000000008152506040518060400160405280601481526020017f54686520416476656e7475726572732054657874000000000000000000000000815250620000df6301ffc9a760e01b6200021260201b60201c565b8160069080519060200190620000f7929190620002f2565b50806007908051906020019062000110929190620002f2565b50620001296380ac58cd60e01b6200021260201b60201c565b62000141635b5e139f60e01b6200021260201b60201c565b6200015963780e9d6360e01b6200021260201b60201c565b505060006200016d620002ea60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200041d565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614156200027e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027590620003ea565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200032a576000855562000376565b82601f106200034557805160ff191683800117855562000376565b8280016001018555821562000376579182015b828111156200037557825182559160200191906001019062000358565b5b50905062000385919062000389565b5090565b5b80821115620003a45760008160009055506001016200038a565b5090565b6000620003b7601c836200040c565b91507f4552433136353a20696e76616c696420696e74657266616365206964000000006000830152602082019050919050565b600060208201905081810360008301526200040581620003a8565b9050919050565b600082825260208201905092915050565b615b83806200042d6000396000f3fe6080604052600436106102725760003560e01c80635f7b13f21161014f5780639b9f9818116100c1578063e874aa6c1161007a578063e874aa6c146109a1578063e985e9c5146109de578063e9d14d0c14610a1b578063eb8d244414610a37578063ebba4dfa14610a62578063f2fde38b14610a8b57610272565b80639b9f98181461086f578063a22cb465146108ac578063b05fd812146108d5578063b17cf1eb146108fe578063b88d4fde1461093b578063c87b56dd1461096457610272565b8063736cd28911610113578063736cd289146107375780638462151c146107745780638909d3a4146107b15780638da5cb5b146107dc578063911012011461080757806395d89b411461084457610272565b80635f7b13f2146106505780636352211e1461067b5780636c0360eb146106b857806370a08231146106e3578063715018a61461072057610272565b806328efe955116101e85780633ccfd60b116101ac5780633ccfd60b1461054257806342842e0e146105595780634de7db84146105825780634f6ccce7146105bf578063507cafcd146105fc57806355f804b31461062757610272565b806328efe9551461047e5780632f745c59146104a9578063317ecaa3146104e657806334918dfd14610502578063379607f51461051957610272565b80630c5ea4061161023a5780630c5ea4061461037057806310969523146103ad57806317018bc9146103d657806318160ddd146104015780631ec50a3a1461042c57806323b872dd1461045557610272565b8063013402611461027757806301ffc9a7146102a257806306fdde03146102df578063081812fc1461030a578063095ea7b314610347575b600080fd5b34801561028357600080fd5b5061028c610ab4565b60405161029991906157d2565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c49190614278565b610ab9565b6040516102d69190615355565b60405180910390f35b3480156102eb57600080fd5b506102f4610b20565b6040516103019190615370565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c919061430b565b610bc2565b60405161033e919061526c565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190614213565b610c47565b005b34801561037c57600080fd5b506103976004803603810190610392919061430b565b610d5f565b6040516103a49190615370565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf91906142ca565b610e5e565b005b3480156103e257600080fd5b506103eb610ef4565b6040516103f891906157d2565b60405180910390f35b34801561040d57600080fd5b50610416610efa565b60405161042391906157d2565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e9190614213565b610f0b565b005b34801561046157600080fd5b5061047c6004803603810190610477919061410d565b611029565b005b34801561048a57600080fd5b50610493611089565b6040516104a091906157d2565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb9190614213565b61108f565b6040516104dd91906157d2565b60405180910390f35b61050060048036038101906104fb919061430b565b6110ea565b005b34801561050e57600080fd5b50610517611288565b005b34801561052557600080fd5b50610540600480360381019061053b919061430b565b611330565b005b34801561054e57600080fd5b506105576114e5565b005b34801561056557600080fd5b50610580600480360381019061057b919061410d565b6115b0565b005b34801561058e57600080fd5b506105a960048036038101906105a4919061430b565b6115d0565b6040516105b69190615370565b60405180910390f35b3480156105cb57600080fd5b506105e660048036038101906105e1919061430b565b611680565b6040516105f391906157d2565b60405180910390f35b34801561060857600080fd5b506106116116a3565b60405161061e91906157d2565b60405180910390f35b34801561063357600080fd5b5061064e600480360381019061064991906142ca565b6116a8565b005b34801561065c57600080fd5b50610665611730565b6040516106729190615370565b60405180910390f35b34801561068757600080fd5b506106a2600480360381019061069d919061430b565b6117ce565b6040516106af919061526c565b60405180910390f35b3480156106c457600080fd5b506106cd611805565b6040516106da9190615370565b60405180910390f35b3480156106ef57600080fd5b5061070a600480360381019061070591906140a8565b6118a7565b60405161071791906157d2565b60405180910390f35b34801561072c57600080fd5b50610735611966565b005b34801561074357600080fd5b5061075e6004803603810190610759919061430b565b611aa3565b60405161076b9190615370565b60405180910390f35b34801561078057600080fd5b5061079b600480360381019061079691906140a8565b611ba1565b6040516107a89190615333565b60405180910390f35b3480156107bd57600080fd5b506107c6611c9a565b6040516107d391906157d2565b60405180910390f35b3480156107e857600080fd5b506107f1611ca5565b6040516107fe919061526c565b60405180910390f35b34801561081357600080fd5b5061082e6004803603810190610829919061430b565b611ccf565b60405161083b91906157d2565b60405180910390f35b34801561085057600080fd5b50610859611ce7565b6040516108669190615370565b60405180910390f35b34801561087b57600080fd5b50610896600480360381019061089191906140a8565b611d89565b6040516108a39190615311565b60405180910390f35b3480156108b857600080fd5b506108d360048036038101906108ce91906141d7565b611f36565b005b3480156108e157600080fd5b506108fc60048036038101906108f79190614334565b6120b7565b005b34801561090a57600080fd5b506109256004803603810190610920919061430b565b612287565b6040516109329190615370565b60405180910390f35b34801561094757600080fd5b50610962600480360381019061095d919061415c565b612337565b005b34801561097057600080fd5b5061098b6004803603810190610986919061430b565b612399565b6040516109989190615370565b60405180910390f35b3480156109ad57600080fd5b506109c860048036038101906109c3919061430b565b61251c565b6040516109d591906157d2565b60405180910390f35b3480156109ea57600080fd5b50610a056004803603810190610a0091906140d1565b612583565b604051610a129190615355565b60405180910390f35b610a356004803603810190610a309190614334565b612617565b005b348015610a4357600080fd5b50610a4c612824565b604051610a599190615355565b60405180910390f35b348015610a6e57600080fd5b50610a896004803603810190610a849190614334565b612837565b005b348015610a9757600080fd5b50610ab26004803603810190610aad91906140a8565b612964565b005b600381565b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610bb85780601f10610b8d57610100808354040283529160200191610bb8565b820191906000526020600020905b815481529060010190602001808311610b9b57829003601f168201915b5050505050905090565b6000610bcd82612b10565b610c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0390615612565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c52826117ce565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cba906156b2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ce2612b2d565b73ffffffffffffffffffffffffffffffffffffffff161480610d115750610d1081610d0b612b2d565b612583565b5b610d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4790615552565b60405180910390fd5b610d5a8383612b35565b505050565b6060610d69610efa565b821115610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da290615772565b60405180910390fd5b600e60008381526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e525780601f10610e2757610100808354040283529160200191610e52565b820191906000526020600020905b815481529060010190602001808311610e3557829003601f168201915b50505050509050919050565b610e66612b2d565b73ffffffffffffffffffffffffffffffffffffffff16610e84611ca5565b73ffffffffffffffffffffffffffffffffffffffff1614610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed190615632565b60405180910390fd5b80600b9080519060200190610ef0929190613e67565b5050565b60125481565b6000610f066002612bee565b905090565b610f13612b2d565b73ffffffffffffffffffffffffffffffffffffffff16610f31611ca5565b73ffffffffffffffffffffffffffffffffffffffff1614610f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7e90615632565b60405180910390fd5b6000610f91610efa565b9050600082118015610fa557506012548211155b610fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdb906153b2565b60405180910390fd5b60005b8281101561100857610ffb84828401612c03565b8080600101915050610fe7565b5061101e82601254612c2190919063ffffffff16565b601281905550505050565b61103a611034612b2d565b82612c71565b611079576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611070906156f2565b60405180910390fd5b611084838383612d4f565b505050565b61138881565b60006110e282600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612f6690919063ffffffff16565b905092915050565b600c60009054906101000a900460ff16611139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113090615732565b60405180910390fd5b60008111801561114a575060148111155b611189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118090615532565b60405180910390fd5b6113886111a682611198610efa565b612f8090919063ffffffff16565b11156111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de90615752565b60405180910390fd5b61120181666a94d74f430000612fd590919063ffffffff16565b341015611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a906154b2565b60405180910390fd5b60005b81811015611284576000611258610efa565b9050611388611265610efa565b1015611276576112753382612c03565b5b508080600101915050611246565b5050565b611290612b2d565b73ffffffffffffffffffffffffffffffffffffffff166112ae611ca5565b73ffffffffffffffffffffffffffffffffffffffff1614611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb90615632565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6010600061133c612b2d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bb906156d2565b60405180910390fd5b6001601060006113d2612b2d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600c60009054906101000a900460ff16611472576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146990615732565b60405180910390fd5b6113886114906001611482610efa565b612f8090919063ffffffff16565b11156114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c890615752565b60405180910390fd5b6114e2336114dd610efa565b612c03565b50565b6114ed612b2d565b73ffffffffffffffffffffffffffffffffffffffff1661150b611ca5565b73ffffffffffffffffffffffffffffffffffffffff1614611561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155890615632565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156115ac573d6000803e3d6000fd5b5050565b6115cb83838360405180602001604052806000815250612337565b505050565b600e6020528060005260406000206000915090508054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116785780601f1061164d57610100808354040283529160200191611678565b820191906000526020600020905b81548152906001019060200180831161165b57829003601f168201915b505050505081565b60008061169783600261304590919063ffffffff16565b50905080915050919050565b601481565b6116b0612b2d565b73ffffffffffffffffffffffffffffffffffffffff166116ce611ca5565b73ffffffffffffffffffffffffffffffffffffffff1614611724576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171b90615632565b60405180910390fd5b61172d81613071565b50565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117c65780601f1061179b576101008083540402835291602001916117c6565b820191906000526020600020905b8154815290600101906020018083116117a957829003601f168201915b505050505081565b60006117fe82604051806060016040528060298152602001615b2560299139600261308b9092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561189d5780601f106118725761010080835404028352916020019161189d565b820191906000526020600020905b81548152906001019060200180831161188057829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190f90615572565b60405180910390fd5b61195f600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206130aa565b9050919050565b61196e612b2d565b73ffffffffffffffffffffffffffffffffffffffff1661198c611ca5565b73ffffffffffffffffffffffffffffffffffffffff16146119e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d990615632565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6060611aad610efa565b8210611aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae5906157b2565b60405180910390fd5b600d60008381526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b955780601f10611b6a57610100808354040283529160200191611b95565b820191906000526020600020905b815481529060010190602001808311611b7857829003601f168201915b50505050509050919050565b60606000611bae836118a7565b90506000811415611c0957600067ffffffffffffffff81118015611bd157600080fd5b50604051908082528060200260200182016040528015611c005781602001602082028036833780820191505090505b50915050611c95565b60008167ffffffffffffffff81118015611c2257600080fd5b50604051908082528060200260200182016040528015611c515781602001602082028036833780820191505090505b50905060005b82811015611c8e57611c69858261108f565b828281518110611c7557fe5b6020026020010181815250508080600101915050611c57565b8193505050505b919050565b666a94d74f43000081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f6020528060005260406000206000915090505481565b606060078054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d7f5780601f10611d5457610100808354040283529160200191611d7f565b820191906000526020600020905b815481529060010190602001808311611d6257829003601f168201915b5050505050905090565b60606000611d96836118a7565b90506000811415611df657600067ffffffffffffffff81118015611db957600080fd5b50604051908082528060200260200182016040528015611ded57816020015b6060815260200190600190039081611dd85790505b50915050611f31565b60008167ffffffffffffffff81118015611e0f57600080fd5b50604051908082528060200260200182016040528015611e4357816020015b6060815260200190600190039081611e2e5790505b50905060005b82811015611f2a57600d6000611e5f878461108f565b81526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611f015780601f10611ed657610100808354040283529160200191611f01565b820191906000526020600020905b815481529060010190602001808311611ee457829003601f168201915b5050505050828281518110611f1257fe5b60200260200101819052508080600101915050611e49565b8193505050505b919050565b611f3e612b2d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa390615492565b60405180910390fd5b8060056000611fb9612b2d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612066612b2d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120ab9190615355565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff166120d7836117ce565b73ffffffffffffffffffffffffffffffffffffffff161461212d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212490615792565b60405180910390fd5b6002600d600084815260200190815260200160002060405161214f9190615231565b602060405180830381855afa15801561216c573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061218f919061424f565b60028260405161219f919061521a565b602060405180830381855afa1580156121bc573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906121df919061424f565b1415612220576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221790615692565b60405180910390fd5b80600d60008481526020019081526020016000209080519060200190612247929190613e67565b507ffa4aeb8358ae1099d337e9d9e7ec0a4594755031608cbbbbcddb1ae03e0913b033838360405161227b939291906152d3565b60405180910390a15050565b600d6020528060005260406000206000915090508054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561232f5780601f106123045761010080835404028352916020019161232f565b820191906000526020600020905b81548152906001019060200180831161231257829003601f168201915b505050505081565b612348612342612b2d565b83612c71565b612387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237e906156f2565b60405180910390fd5b612393848484846130bf565b50505050565b60606123a482612b10565b6123e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123da90615672565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561248c5780601f106124615761010080835404028352916020019161248c565b820191906000526020600020905b81548152906001019060200180831161246f57829003601f168201915b50505050509050600061249d611805565b90506000815114156124b3578192505050612517565b6000825111156124e85780826040516020016124d0929190615248565b60405160208183030381529060405292505050612517565b806124f28561311b565b604051602001612503929190615248565b604051602081830303815290604052925050505b919050565b6000612526610efa565b821115612568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255f90615772565b60405180910390fd5b600f6000838152602001908152602001600020549050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c60009054906101000a900460ff16612666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265d906153d2565b60405180910390fd5b61266e610efa565b8211156126b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a790615752565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166126d0836117ce565b73ffffffffffffffffffffffffffffffffffffffff1614612726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271d90615792565b60405180910390fd5b6003600f6000848152602001908152602001600020541061277c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277390615592565b60405180910390fd5b6001600f60008481526020019081526020016000205401600f60008481526020019081526020016000208190555080600e600084815260200190815260200160002090805190602001906127d1929190613e67565b507f7187457ae8e74bf522a1f3e46677a8cb728949a3eeeff6730a882f3101b10546338383604051612805939291906152d3565b60405180910390a161281682613262565b6128203383612c03565b5050565b600c60009054906101000a900460ff1681565b61283f612b2d565b73ffffffffffffffffffffffffffffffffffffffff1661285d611ca5565b73ffffffffffffffffffffffffffffffffffffffff16146128b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128aa90615632565b60405180910390fd5b6128bb610efa565b8211156128fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f490615772565b60405180910390fd5b80600e60008481526020019081526020016000209080519060200190612924929190613e67565b507f7187457ae8e74bf522a1f3e46677a8cb728949a3eeeff6730a882f3101b10546338383604051612958939291906152d3565b60405180910390a15050565b61296c612b2d565b73ffffffffffffffffffffffffffffffffffffffff1661298a611ca5565b73ffffffffffffffffffffffffffffffffffffffff16146129e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d790615632565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4790615412565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000612b2682600261339c90919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612ba8836117ce565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612bfc826000016133b6565b9050919050565b612c1d8282604051806020016040528060008152506133c7565b5050565b600082821115612c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5d906154d2565b60405180910390fd5b818303905092915050565b6000612c7c82612b10565b612cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb290615512565b60405180910390fd5b6000612cc6836117ce565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612d3557508373ffffffffffffffffffffffffffffffffffffffff16612d1d84610bc2565b73ffffffffffffffffffffffffffffffffffffffff16145b80612d465750612d458185612583565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612d6f826117ce565b73ffffffffffffffffffffffffffffffffffffffff1614612dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dbc90615652565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2c90615472565b60405180910390fd5b612e40838383613422565b612e4b600082612b35565b612e9c81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061342790919063ffffffff16565b50612eee81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061344190919063ffffffff16565b50612f058183600261345b9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612f758360000183613490565b60001c905092915050565b600080828401905083811015612fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc290615452565b60405180910390fd5b8091505092915050565b600080831415612fe8576000905061303f565b6000828402905082848281612ff957fe5b041461303a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613031906155f2565b60405180910390fd5b809150505b92915050565b60008060008061305886600001866134fd565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190613087929190613e67565b5050565b600061309e846000018460001b84613580565b60001c90509392505050565b60006130b882600001613611565b9050919050565b6130ca848484612d4f565b6130d684848484613622565b613115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161310c906153f2565b60405180910390fd5b50505050565b60606000821415613163576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061325d565b600082905060005b6000821461318d578080600101915050600a828161318557fe5b04915061316b565b60008167ffffffffffffffff811180156131a657600080fd5b506040519080825280601f01601f1916602001820160405280156131d95781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461325557600a84816131fa57fe5b0660300160f81b8282806001900393508151811061321457fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161324d57fe5b0493506131e8565b819450505050505b919050565b600061326d826117ce565b905061327b81600084613422565b613286600083612b35565b600060086000848152602001908152602001600020805460018160011615610100020316600290049050146132d5576008600083815260200190815260200160002060006132d49190613ef5565b5b61332682600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061342790919063ffffffff16565b5061333b82600261378690919063ffffffff16565b5081600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006133ae836000018360001b6137a0565b905092915050565b600081600001805490509050919050565b6133d183836137c3565b6133de6000848484613622565b61341d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613414906153f2565b60405180910390fd5b505050565b505050565b6000613439836000018360001b613951565b905092915050565b6000613453836000018360001b613a39565b905092915050565b6000613487846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b613aa9565b90509392505050565b6000818360000180549050116134db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134d290615392565b60405180910390fd5b8260000182815481106134ea57fe5b9060005260206000200154905092915050565b60008082846000018054905011613549576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613540906155b2565b60405180910390fd5b600084600001848154811061355a57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600080846001016000858152602001908152602001600020549050600081141583906135e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135d99190615370565b60405180910390fd5b508460000160018203815481106135f557fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006136438473ffffffffffffffffffffffffffffffffffffffff16613b85565b613650576001905061377e565b600061371763150b7a0260e01b613665612b2d565b88878760405160240161367b9493929190615287565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001615af3603291398773ffffffffffffffffffffffffffffffffffffffff16613b989092919063ffffffff16565b905060008180602001905181019061372f91906142a1565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b6000613798836000018360001b613bb0565b905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161382a906155d2565b60405180910390fd5b61383c81612b10565b1561387c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161387390615432565b60405180910390fd5b61388860008383613422565b6138d981600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061344190919063ffffffff16565b506138f08183600261345b9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008083600101600084815260200190815260200160002054905060008114613a2d576000600182039050600060018660000180549050039050600086600001828154811061399c57fe5b90600052602060002001549050808760000184815481106139b957fe5b90600052602060002001819055506001830187600101600083815260200190815260200160002081905550866000018054806139f157fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050613a33565b60009150505b92915050565b6000613a458383613cc9565b613a9e578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613aa3565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415613b5057846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050613b7e565b82856000016001830381548110613b6357fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080823b905060008111915050919050565b6060613ba78484600085613cec565b90509392505050565b60008083600101600084815260200190815260200160002054905060008114613cbd5760006001820390506000600186600001805490500390506000866000018281548110613bfb57fe5b9060005260206000209060020201905080876000018481548110613c1b57fe5b9060005260206000209060020201600082015481600001556001820154816001015590505060018301876001016000836000015481526020019081526020016000208190555086600001805480613c6e57fe5b6001900381819060005260206000209060020201600080820160009055600182016000905550509055866001016000878152602001908152602001600020600090556001945050505050613cc3565b60009150505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015613d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d28906154f2565b60405180910390fd5b613d3a85613b85565b613d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d7090615712565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051613da2919061521a565b60006040518083038185875af1925050503d8060008114613ddf576040519150601f19603f3d011682016040523d82523d6000602084013e613de4565b606091505b5091509150613df4828286613e00565b92505050949350505050565b60608315613e1057829050613e60565b600083511115613e235782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e579190615370565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282613e9d5760008555613ee4565b82601f10613eb657805160ff1916838001178555613ee4565b82800160010185558215613ee4579182015b82811115613ee3578251825591602001919060010190613ec8565b5b509050613ef19190613f3d565b5090565b50805460018160011615610100020316600290046000825580601f10613f1b5750613f3a565b601f016020900490600052602060002090810190613f399190613f3d565b5b50565b5b80821115613f56576000816000905550600101613f3e565b5090565b6000613f6d613f688461581e565b6157ed565b905082815260208101848484011115613f8557600080fd5b613f90848285615a2a565b509392505050565b6000613fab613fa68461584e565b6157ed565b905082815260208101848484011115613fc357600080fd5b613fce848285615a2a565b509392505050565b600081359050613fe581615a7f565b92915050565b600081359050613ffa81615a96565b92915050565b60008151905061400f81615aad565b92915050565b60008135905061402481615ac4565b92915050565b60008151905061403981615ac4565b92915050565b600082601f83011261405057600080fd5b8135614060848260208601613f5a565b91505092915050565b600082601f83011261407a57600080fd5b813561408a848260208601613f98565b91505092915050565b6000813590506140a281615adb565b92915050565b6000602082840312156140ba57600080fd5b60006140c884828501613fd6565b91505092915050565b600080604083850312156140e457600080fd5b60006140f285828601613fd6565b925050602061410385828601613fd6565b9150509250929050565b60008060006060848603121561412257600080fd5b600061413086828701613fd6565b935050602061414186828701613fd6565b925050604061415286828701614093565b9150509250925092565b6000806000806080858703121561417257600080fd5b600061418087828801613fd6565b945050602061419187828801613fd6565b93505060406141a287828801614093565b925050606085013567ffffffffffffffff8111156141bf57600080fd5b6141cb8782880161403f565b91505092959194509250565b600080604083850312156141ea57600080fd5b60006141f885828601613fd6565b925050602061420985828601613feb565b9150509250929050565b6000806040838503121561422657600080fd5b600061423485828601613fd6565b925050602061424585828601614093565b9150509250929050565b60006020828403121561426157600080fd5b600061426f84828501614000565b91505092915050565b60006020828403121561428a57600080fd5b600061429884828501614015565b91505092915050565b6000602082840312156142b357600080fd5b60006142c18482850161402a565b91505092915050565b6000602082840312156142dc57600080fd5b600082013567ffffffffffffffff8111156142f657600080fd5b61430284828501614069565b91505092915050565b60006020828403121561431d57600080fd5b600061432b84828501614093565b91505092915050565b6000806040838503121561434757600080fd5b600061435585828601614093565b925050602083013567ffffffffffffffff81111561437257600080fd5b61437e85828601614069565b9150509250929050565b600061439483836145bb565b905092915050565b60006143a883836151fc565b60208301905092915050565b6143bd816159f4565b82525050565b6143cc81615976565b82525050565b6143db81615964565b82525050565b60006143ec826158b3565b6143f681856158f9565b9350836020820285016144088561587e565b8060005b8581101561444457848403895281516144258582614388565b9450614430836158df565b925060208a0199505060018101905061440c565b50829750879550505050505092915050565b6000614461826158be565b61446b818561590a565b93506144768361588e565b8060005b838110156144a757815161448e888261439c565b9750614499836158ec565b92505060018101905061447a565b5085935050505092915050565b6144bd81615988565b82525050565b60006144ce826158c9565b6144d8818561591b565b93506144e8818560208601615a39565b6144f181615a6e565b840191505092915050565b6000614507826158c9565b614511818561592c565b9350614521818560208601615a39565b80840191505092915050565b60008154600181166000811461454a576001811461456f576145b3565b607f600283041661455b818761592c565b955060ff19831686528086019350506145b3565b6002820461457d818761592c565b95506145888561589e565b60005b828110156145aa5781548189015260018201915060208101905061458b565b82880195505050505b505092915050565b60006145c6826158d4565b6145d08185615937565b93506145e0818560208601615a39565b6145e981615a6e565b840191505092915050565b60006145ff826158d4565b6146098185615948565b9350614619818560208601615a39565b61462281615a6e565b840191505092915050565b6000614638826158d4565b6146428185615959565b9350614652818560208601615a39565b80840191505092915050565b600061466b602283615948565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146d1601683615948565b91507f4e6f7420656e6f7567682072657365727665206c6566000000000000000000006000830152602082019050919050565b6000614711601d83615948565b91507f53616c65206d7573742062652061637469766520746f207265726f6c6c0000006000830152602082019050919050565b6000614751603283615948565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006147b7602683615948565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061481d601c83615948565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061485d601b83615948565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b600061489d602483615948565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614903601983615948565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614943601f83615948565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000614983601e83615948565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b60006149c3602683615948565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a29602c83615948565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614a8f602183615948565b91507f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614af5603883615948565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614b5b602a83615948565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614bc1602783615948565b91507f4865792c207468697320746f6b656e20686173206d6f7265207468616e20332060008301527f7265726f6c6c21000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c27602283615948565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c8d602083615948565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614ccd602183615948565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d33602c83615948565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614d99602083615948565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614dd9602983615948565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614e3f602f83615948565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614ea5602383615948565b91507f4e6577206e616d652069732073616d65206173207468652063757272656e742060008301527f6f6e6500000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614f0b602183615948565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614f71601283615948565b91507f43616e206f6e6c79206d696e74206f6e636500000000000000000000000000006000830152602082019050919050565b6000614fb1603183615948565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000615017601d83615948565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b6000615057602083615948565b91507f53616c65206d7573742062652061637469766520746f206d696e74206865726f6000830152602082019050919050565b6000615097602983615948565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f66206865726f7300000000000000000000000000000000000000000000006020830152604082019050919050565b60006150fd602383615948565b91507f494420776f756c6420657863656564206d617820737570706c79206f6620686560008301527f726f7300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000615163602783615948565b91507f4865792c20796f75722077616c6c657420646f65736e2774206f776e2074686960008301527f73206865726f21000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006151c9601a83615948565b91507f43686f6f73652061206865726f2077697468696e2072616e67650000000000006000830152602082019050919050565b615205816159ea565b82525050565b615214816159ea565b82525050565b600061522682846144fc565b915081905092915050565b600061523d828461452d565b915081905092915050565b6000615254828561462d565b9150615260828461462d565b91508190509392505050565b600060208201905061528160008301846143d2565b92915050565b600060808201905061529c60008301876143c3565b6152a960208301866143d2565b6152b6604083018561520b565b81810360608301526152c881846144c3565b905095945050505050565b60006060820190506152e860008301866143b4565b6152f5602083018561520b565b818103604083015261530781846145f4565b9050949350505050565b6000602082019050818103600083015261532b81846143e1565b905092915050565b6000602082019050818103600083015261534d8184614456565b905092915050565b600060208201905061536a60008301846144b4565b92915050565b6000602082019050818103600083015261538a81846145f4565b905092915050565b600060208201905081810360008301526153ab8161465e565b9050919050565b600060208201905081810360008301526153cb816146c4565b9050919050565b600060208201905081810360008301526153eb81614704565b9050919050565b6000602082019050818103600083015261540b81614744565b9050919050565b6000602082019050818103600083015261542b816147aa565b9050919050565b6000602082019050818103600083015261544b81614810565b9050919050565b6000602082019050818103600083015261546b81614850565b9050919050565b6000602082019050818103600083015261548b81614890565b9050919050565b600060208201905081810360008301526154ab816148f6565b9050919050565b600060208201905081810360008301526154cb81614936565b9050919050565b600060208201905081810360008301526154eb81614976565b9050919050565b6000602082019050818103600083015261550b816149b6565b9050919050565b6000602082019050818103600083015261552b81614a1c565b9050919050565b6000602082019050818103600083015261554b81614a82565b9050919050565b6000602082019050818103600083015261556b81614ae8565b9050919050565b6000602082019050818103600083015261558b81614b4e565b9050919050565b600060208201905081810360008301526155ab81614bb4565b9050919050565b600060208201905081810360008301526155cb81614c1a565b9050919050565b600060208201905081810360008301526155eb81614c80565b9050919050565b6000602082019050818103600083015261560b81614cc0565b9050919050565b6000602082019050818103600083015261562b81614d26565b9050919050565b6000602082019050818103600083015261564b81614d8c565b9050919050565b6000602082019050818103600083015261566b81614dcc565b9050919050565b6000602082019050818103600083015261568b81614e32565b9050919050565b600060208201905081810360008301526156ab81614e98565b9050919050565b600060208201905081810360008301526156cb81614efe565b9050919050565b600060208201905081810360008301526156eb81614f64565b9050919050565b6000602082019050818103600083015261570b81614fa4565b9050919050565b6000602082019050818103600083015261572b8161500a565b9050919050565b6000602082019050818103600083015261574b8161504a565b9050919050565b6000602082019050818103600083015261576b8161508a565b9050919050565b6000602082019050818103600083015261578b816150f0565b9050919050565b600060208201905081810360008301526157ab81615156565b9050919050565b600060208201905081810360008301526157cb816151bc565b9050919050565b60006020820190506157e7600083018461520b565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561581457615813615a6c565b5b8060405250919050565b600067ffffffffffffffff82111561583957615838615a6c565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561586957615868615a6c565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061596f826159ca565b9050919050565b6000615981826159ca565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006159ff82615a06565b9050919050565b6000615a1182615a18565b9050919050565b6000615a23826159ca565b9050919050565b82818337600083830152505050565b60005b83811015615a57578082015181840152602081019050615a3c565b83811115615a66576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b615a8881615964565b8114615a9357600080fd5b50565b615a9f81615988565b8114615aaa57600080fd5b50565b615ab681615994565b8114615ac157600080fd5b50565b615acd8161599e565b8114615ad857600080fd5b50565b615ae4816159ea565b8114615aef57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220443b51ace40c2d8269d29e4fad10b0572ba077e60a3930314ffbf05ad0f7394064736f6c63430007060033

Deployed Bytecode

0x6080604052600436106102725760003560e01c80635f7b13f21161014f5780639b9f9818116100c1578063e874aa6c1161007a578063e874aa6c146109a1578063e985e9c5146109de578063e9d14d0c14610a1b578063eb8d244414610a37578063ebba4dfa14610a62578063f2fde38b14610a8b57610272565b80639b9f98181461086f578063a22cb465146108ac578063b05fd812146108d5578063b17cf1eb146108fe578063b88d4fde1461093b578063c87b56dd1461096457610272565b8063736cd28911610113578063736cd289146107375780638462151c146107745780638909d3a4146107b15780638da5cb5b146107dc578063911012011461080757806395d89b411461084457610272565b80635f7b13f2146106505780636352211e1461067b5780636c0360eb146106b857806370a08231146106e3578063715018a61461072057610272565b806328efe955116101e85780633ccfd60b116101ac5780633ccfd60b1461054257806342842e0e146105595780634de7db84146105825780634f6ccce7146105bf578063507cafcd146105fc57806355f804b31461062757610272565b806328efe9551461047e5780632f745c59146104a9578063317ecaa3146104e657806334918dfd14610502578063379607f51461051957610272565b80630c5ea4061161023a5780630c5ea4061461037057806310969523146103ad57806317018bc9146103d657806318160ddd146104015780631ec50a3a1461042c57806323b872dd1461045557610272565b8063013402611461027757806301ffc9a7146102a257806306fdde03146102df578063081812fc1461030a578063095ea7b314610347575b600080fd5b34801561028357600080fd5b5061028c610ab4565b60405161029991906157d2565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c49190614278565b610ab9565b6040516102d69190615355565b60405180910390f35b3480156102eb57600080fd5b506102f4610b20565b6040516103019190615370565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c919061430b565b610bc2565b60405161033e919061526c565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190614213565b610c47565b005b34801561037c57600080fd5b506103976004803603810190610392919061430b565b610d5f565b6040516103a49190615370565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf91906142ca565b610e5e565b005b3480156103e257600080fd5b506103eb610ef4565b6040516103f891906157d2565b60405180910390f35b34801561040d57600080fd5b50610416610efa565b60405161042391906157d2565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e9190614213565b610f0b565b005b34801561046157600080fd5b5061047c6004803603810190610477919061410d565b611029565b005b34801561048a57600080fd5b50610493611089565b6040516104a091906157d2565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb9190614213565b61108f565b6040516104dd91906157d2565b60405180910390f35b61050060048036038101906104fb919061430b565b6110ea565b005b34801561050e57600080fd5b50610517611288565b005b34801561052557600080fd5b50610540600480360381019061053b919061430b565b611330565b005b34801561054e57600080fd5b506105576114e5565b005b34801561056557600080fd5b50610580600480360381019061057b919061410d565b6115b0565b005b34801561058e57600080fd5b506105a960048036038101906105a4919061430b565b6115d0565b6040516105b69190615370565b60405180910390f35b3480156105cb57600080fd5b506105e660048036038101906105e1919061430b565b611680565b6040516105f391906157d2565b60405180910390f35b34801561060857600080fd5b506106116116a3565b60405161061e91906157d2565b60405180910390f35b34801561063357600080fd5b5061064e600480360381019061064991906142ca565b6116a8565b005b34801561065c57600080fd5b50610665611730565b6040516106729190615370565b60405180910390f35b34801561068757600080fd5b506106a2600480360381019061069d919061430b565b6117ce565b6040516106af919061526c565b60405180910390f35b3480156106c457600080fd5b506106cd611805565b6040516106da9190615370565b60405180910390f35b3480156106ef57600080fd5b5061070a600480360381019061070591906140a8565b6118a7565b60405161071791906157d2565b60405180910390f35b34801561072c57600080fd5b50610735611966565b005b34801561074357600080fd5b5061075e6004803603810190610759919061430b565b611aa3565b60405161076b9190615370565b60405180910390f35b34801561078057600080fd5b5061079b600480360381019061079691906140a8565b611ba1565b6040516107a89190615333565b60405180910390f35b3480156107bd57600080fd5b506107c6611c9a565b6040516107d391906157d2565b60405180910390f35b3480156107e857600080fd5b506107f1611ca5565b6040516107fe919061526c565b60405180910390f35b34801561081357600080fd5b5061082e6004803603810190610829919061430b565b611ccf565b60405161083b91906157d2565b60405180910390f35b34801561085057600080fd5b50610859611ce7565b6040516108669190615370565b60405180910390f35b34801561087b57600080fd5b50610896600480360381019061089191906140a8565b611d89565b6040516108a39190615311565b60405180910390f35b3480156108b857600080fd5b506108d360048036038101906108ce91906141d7565b611f36565b005b3480156108e157600080fd5b506108fc60048036038101906108f79190614334565b6120b7565b005b34801561090a57600080fd5b506109256004803603810190610920919061430b565b612287565b6040516109329190615370565b60405180910390f35b34801561094757600080fd5b50610962600480360381019061095d919061415c565b612337565b005b34801561097057600080fd5b5061098b6004803603810190610986919061430b565b612399565b6040516109989190615370565b60405180910390f35b3480156109ad57600080fd5b506109c860048036038101906109c3919061430b565b61251c565b6040516109d591906157d2565b60405180910390f35b3480156109ea57600080fd5b50610a056004803603810190610a0091906140d1565b612583565b604051610a129190615355565b60405180910390f35b610a356004803603810190610a309190614334565b612617565b005b348015610a4357600080fd5b50610a4c612824565b604051610a599190615355565b60405180910390f35b348015610a6e57600080fd5b50610a896004803603810190610a849190614334565b612837565b005b348015610a9757600080fd5b50610ab26004803603810190610aad91906140a8565b612964565b005b600381565b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610bb85780601f10610b8d57610100808354040283529160200191610bb8565b820191906000526020600020905b815481529060010190602001808311610b9b57829003601f168201915b5050505050905090565b6000610bcd82612b10565b610c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0390615612565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c52826117ce565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cba906156b2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ce2612b2d565b73ffffffffffffffffffffffffffffffffffffffff161480610d115750610d1081610d0b612b2d565b612583565b5b610d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4790615552565b60405180910390fd5b610d5a8383612b35565b505050565b6060610d69610efa565b821115610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da290615772565b60405180910390fd5b600e60008381526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e525780601f10610e2757610100808354040283529160200191610e52565b820191906000526020600020905b815481529060010190602001808311610e3557829003601f168201915b50505050509050919050565b610e66612b2d565b73ffffffffffffffffffffffffffffffffffffffff16610e84611ca5565b73ffffffffffffffffffffffffffffffffffffffff1614610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed190615632565b60405180910390fd5b80600b9080519060200190610ef0929190613e67565b5050565b60125481565b6000610f066002612bee565b905090565b610f13612b2d565b73ffffffffffffffffffffffffffffffffffffffff16610f31611ca5565b73ffffffffffffffffffffffffffffffffffffffff1614610f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7e90615632565b60405180910390fd5b6000610f91610efa565b9050600082118015610fa557506012548211155b610fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdb906153b2565b60405180910390fd5b60005b8281101561100857610ffb84828401612c03565b8080600101915050610fe7565b5061101e82601254612c2190919063ffffffff16565b601281905550505050565b61103a611034612b2d565b82612c71565b611079576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611070906156f2565b60405180910390fd5b611084838383612d4f565b505050565b61138881565b60006110e282600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612f6690919063ffffffff16565b905092915050565b600c60009054906101000a900460ff16611139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113090615732565b60405180910390fd5b60008111801561114a575060148111155b611189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118090615532565b60405180910390fd5b6113886111a682611198610efa565b612f8090919063ffffffff16565b11156111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de90615752565b60405180910390fd5b61120181666a94d74f430000612fd590919063ffffffff16565b341015611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a906154b2565b60405180910390fd5b60005b81811015611284576000611258610efa565b9050611388611265610efa565b1015611276576112753382612c03565b5b508080600101915050611246565b5050565b611290612b2d565b73ffffffffffffffffffffffffffffffffffffffff166112ae611ca5565b73ffffffffffffffffffffffffffffffffffffffff1614611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb90615632565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6010600061133c612b2d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bb906156d2565b60405180910390fd5b6001601060006113d2612b2d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600c60009054906101000a900460ff16611472576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146990615732565b60405180910390fd5b6113886114906001611482610efa565b612f8090919063ffffffff16565b11156114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c890615752565b60405180910390fd5b6114e2336114dd610efa565b612c03565b50565b6114ed612b2d565b73ffffffffffffffffffffffffffffffffffffffff1661150b611ca5565b73ffffffffffffffffffffffffffffffffffffffff1614611561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155890615632565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156115ac573d6000803e3d6000fd5b5050565b6115cb83838360405180602001604052806000815250612337565b505050565b600e6020528060005260406000206000915090508054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116785780601f1061164d57610100808354040283529160200191611678565b820191906000526020600020905b81548152906001019060200180831161165b57829003601f168201915b505050505081565b60008061169783600261304590919063ffffffff16565b50905080915050919050565b601481565b6116b0612b2d565b73ffffffffffffffffffffffffffffffffffffffff166116ce611ca5565b73ffffffffffffffffffffffffffffffffffffffff1614611724576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171b90615632565b60405180910390fd5b61172d81613071565b50565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117c65780601f1061179b576101008083540402835291602001916117c6565b820191906000526020600020905b8154815290600101906020018083116117a957829003601f168201915b505050505081565b60006117fe82604051806060016040528060298152602001615b2560299139600261308b9092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561189d5780601f106118725761010080835404028352916020019161189d565b820191906000526020600020905b81548152906001019060200180831161188057829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190f90615572565b60405180910390fd5b61195f600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206130aa565b9050919050565b61196e612b2d565b73ffffffffffffffffffffffffffffffffffffffff1661198c611ca5565b73ffffffffffffffffffffffffffffffffffffffff16146119e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d990615632565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6060611aad610efa565b8210611aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae5906157b2565b60405180910390fd5b600d60008381526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b955780601f10611b6a57610100808354040283529160200191611b95565b820191906000526020600020905b815481529060010190602001808311611b7857829003601f168201915b50505050509050919050565b60606000611bae836118a7565b90506000811415611c0957600067ffffffffffffffff81118015611bd157600080fd5b50604051908082528060200260200182016040528015611c005781602001602082028036833780820191505090505b50915050611c95565b60008167ffffffffffffffff81118015611c2257600080fd5b50604051908082528060200260200182016040528015611c515781602001602082028036833780820191505090505b50905060005b82811015611c8e57611c69858261108f565b828281518110611c7557fe5b6020026020010181815250508080600101915050611c57565b8193505050505b919050565b666a94d74f43000081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f6020528060005260406000206000915090505481565b606060078054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d7f5780601f10611d5457610100808354040283529160200191611d7f565b820191906000526020600020905b815481529060010190602001808311611d6257829003601f168201915b5050505050905090565b60606000611d96836118a7565b90506000811415611df657600067ffffffffffffffff81118015611db957600080fd5b50604051908082528060200260200182016040528015611ded57816020015b6060815260200190600190039081611dd85790505b50915050611f31565b60008167ffffffffffffffff81118015611e0f57600080fd5b50604051908082528060200260200182016040528015611e4357816020015b6060815260200190600190039081611e2e5790505b50905060005b82811015611f2a57600d6000611e5f878461108f565b81526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611f015780601f10611ed657610100808354040283529160200191611f01565b820191906000526020600020905b815481529060010190602001808311611ee457829003601f168201915b5050505050828281518110611f1257fe5b60200260200101819052508080600101915050611e49565b8193505050505b919050565b611f3e612b2d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa390615492565b60405180910390fd5b8060056000611fb9612b2d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612066612b2d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120ab9190615355565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff166120d7836117ce565b73ffffffffffffffffffffffffffffffffffffffff161461212d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212490615792565b60405180910390fd5b6002600d600084815260200190815260200160002060405161214f9190615231565b602060405180830381855afa15801561216c573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061218f919061424f565b60028260405161219f919061521a565b602060405180830381855afa1580156121bc573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906121df919061424f565b1415612220576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221790615692565b60405180910390fd5b80600d60008481526020019081526020016000209080519060200190612247929190613e67565b507ffa4aeb8358ae1099d337e9d9e7ec0a4594755031608cbbbbcddb1ae03e0913b033838360405161227b939291906152d3565b60405180910390a15050565b600d6020528060005260406000206000915090508054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561232f5780601f106123045761010080835404028352916020019161232f565b820191906000526020600020905b81548152906001019060200180831161231257829003601f168201915b505050505081565b612348612342612b2d565b83612c71565b612387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237e906156f2565b60405180910390fd5b612393848484846130bf565b50505050565b60606123a482612b10565b6123e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123da90615672565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561248c5780601f106124615761010080835404028352916020019161248c565b820191906000526020600020905b81548152906001019060200180831161246f57829003601f168201915b50505050509050600061249d611805565b90506000815114156124b3578192505050612517565b6000825111156124e85780826040516020016124d0929190615248565b60405160208183030381529060405292505050612517565b806124f28561311b565b604051602001612503929190615248565b604051602081830303815290604052925050505b919050565b6000612526610efa565b821115612568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255f90615772565b60405180910390fd5b600f6000838152602001908152602001600020549050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c60009054906101000a900460ff16612666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265d906153d2565b60405180910390fd5b61266e610efa565b8211156126b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a790615752565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166126d0836117ce565b73ffffffffffffffffffffffffffffffffffffffff1614612726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271d90615792565b60405180910390fd5b6003600f6000848152602001908152602001600020541061277c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277390615592565b60405180910390fd5b6001600f60008481526020019081526020016000205401600f60008481526020019081526020016000208190555080600e600084815260200190815260200160002090805190602001906127d1929190613e67565b507f7187457ae8e74bf522a1f3e46677a8cb728949a3eeeff6730a882f3101b10546338383604051612805939291906152d3565b60405180910390a161281682613262565b6128203383612c03565b5050565b600c60009054906101000a900460ff1681565b61283f612b2d565b73ffffffffffffffffffffffffffffffffffffffff1661285d611ca5565b73ffffffffffffffffffffffffffffffffffffffff16146128b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128aa90615632565b60405180910390fd5b6128bb610efa565b8211156128fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f490615772565b60405180910390fd5b80600e60008481526020019081526020016000209080519060200190612924929190613e67565b507f7187457ae8e74bf522a1f3e46677a8cb728949a3eeeff6730a882f3101b10546338383604051612958939291906152d3565b60405180910390a15050565b61296c612b2d565b73ffffffffffffffffffffffffffffffffffffffff1661298a611ca5565b73ffffffffffffffffffffffffffffffffffffffff16146129e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d790615632565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4790615412565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000612b2682600261339c90919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612ba8836117ce565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612bfc826000016133b6565b9050919050565b612c1d8282604051806020016040528060008152506133c7565b5050565b600082821115612c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5d906154d2565b60405180910390fd5b818303905092915050565b6000612c7c82612b10565b612cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb290615512565b60405180910390fd5b6000612cc6836117ce565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612d3557508373ffffffffffffffffffffffffffffffffffffffff16612d1d84610bc2565b73ffffffffffffffffffffffffffffffffffffffff16145b80612d465750612d458185612583565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612d6f826117ce565b73ffffffffffffffffffffffffffffffffffffffff1614612dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dbc90615652565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2c90615472565b60405180910390fd5b612e40838383613422565b612e4b600082612b35565b612e9c81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061342790919063ffffffff16565b50612eee81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061344190919063ffffffff16565b50612f058183600261345b9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612f758360000183613490565b60001c905092915050565b600080828401905083811015612fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc290615452565b60405180910390fd5b8091505092915050565b600080831415612fe8576000905061303f565b6000828402905082848281612ff957fe5b041461303a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613031906155f2565b60405180910390fd5b809150505b92915050565b60008060008061305886600001866134fd565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190613087929190613e67565b5050565b600061309e846000018460001b84613580565b60001c90509392505050565b60006130b882600001613611565b9050919050565b6130ca848484612d4f565b6130d684848484613622565b613115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161310c906153f2565b60405180910390fd5b50505050565b60606000821415613163576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061325d565b600082905060005b6000821461318d578080600101915050600a828161318557fe5b04915061316b565b60008167ffffffffffffffff811180156131a657600080fd5b506040519080825280601f01601f1916602001820160405280156131d95781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461325557600a84816131fa57fe5b0660300160f81b8282806001900393508151811061321457fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161324d57fe5b0493506131e8565b819450505050505b919050565b600061326d826117ce565b905061327b81600084613422565b613286600083612b35565b600060086000848152602001908152602001600020805460018160011615610100020316600290049050146132d5576008600083815260200190815260200160002060006132d49190613ef5565b5b61332682600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061342790919063ffffffff16565b5061333b82600261378690919063ffffffff16565b5081600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006133ae836000018360001b6137a0565b905092915050565b600081600001805490509050919050565b6133d183836137c3565b6133de6000848484613622565b61341d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613414906153f2565b60405180910390fd5b505050565b505050565b6000613439836000018360001b613951565b905092915050565b6000613453836000018360001b613a39565b905092915050565b6000613487846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b613aa9565b90509392505050565b6000818360000180549050116134db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134d290615392565b60405180910390fd5b8260000182815481106134ea57fe5b9060005260206000200154905092915050565b60008082846000018054905011613549576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613540906155b2565b60405180910390fd5b600084600001848154811061355a57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600080846001016000858152602001908152602001600020549050600081141583906135e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135d99190615370565b60405180910390fd5b508460000160018203815481106135f557fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006136438473ffffffffffffffffffffffffffffffffffffffff16613b85565b613650576001905061377e565b600061371763150b7a0260e01b613665612b2d565b88878760405160240161367b9493929190615287565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001615af3603291398773ffffffffffffffffffffffffffffffffffffffff16613b989092919063ffffffff16565b905060008180602001905181019061372f91906142a1565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b6000613798836000018360001b613bb0565b905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161382a906155d2565b60405180910390fd5b61383c81612b10565b1561387c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161387390615432565b60405180910390fd5b61388860008383613422565b6138d981600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061344190919063ffffffff16565b506138f08183600261345b9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008083600101600084815260200190815260200160002054905060008114613a2d576000600182039050600060018660000180549050039050600086600001828154811061399c57fe5b90600052602060002001549050808760000184815481106139b957fe5b90600052602060002001819055506001830187600101600083815260200190815260200160002081905550866000018054806139f157fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050613a33565b60009150505b92915050565b6000613a458383613cc9565b613a9e578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613aa3565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415613b5057846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050613b7e565b82856000016001830381548110613b6357fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080823b905060008111915050919050565b6060613ba78484600085613cec565b90509392505050565b60008083600101600084815260200190815260200160002054905060008114613cbd5760006001820390506000600186600001805490500390506000866000018281548110613bfb57fe5b9060005260206000209060020201905080876000018481548110613c1b57fe5b9060005260206000209060020201600082015481600001556001820154816001015590505060018301876001016000836000015481526020019081526020016000208190555086600001805480613c6e57fe5b6001900381819060005260206000209060020201600080820160009055600182016000905550509055866001016000878152602001908152602001600020600090556001945050505050613cc3565b60009150505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015613d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d28906154f2565b60405180910390fd5b613d3a85613b85565b613d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d7090615712565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051613da2919061521a565b60006040518083038185875af1925050503d8060008114613ddf576040519150601f19603f3d011682016040523d82523d6000602084013e613de4565b606091505b5091509150613df4828286613e00565b92505050949350505050565b60608315613e1057829050613e60565b600083511115613e235782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e579190615370565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282613e9d5760008555613ee4565b82601f10613eb657805160ff1916838001178555613ee4565b82800160010185558215613ee4579182015b82811115613ee3578251825591602001919060010190613ec8565b5b509050613ef19190613f3d565b5090565b50805460018160011615610100020316600290046000825580601f10613f1b5750613f3a565b601f016020900490600052602060002090810190613f399190613f3d565b5b50565b5b80821115613f56576000816000905550600101613f3e565b5090565b6000613f6d613f688461581e565b6157ed565b905082815260208101848484011115613f8557600080fd5b613f90848285615a2a565b509392505050565b6000613fab613fa68461584e565b6157ed565b905082815260208101848484011115613fc357600080fd5b613fce848285615a2a565b509392505050565b600081359050613fe581615a7f565b92915050565b600081359050613ffa81615a96565b92915050565b60008151905061400f81615aad565b92915050565b60008135905061402481615ac4565b92915050565b60008151905061403981615ac4565b92915050565b600082601f83011261405057600080fd5b8135614060848260208601613f5a565b91505092915050565b600082601f83011261407a57600080fd5b813561408a848260208601613f98565b91505092915050565b6000813590506140a281615adb565b92915050565b6000602082840312156140ba57600080fd5b60006140c884828501613fd6565b91505092915050565b600080604083850312156140e457600080fd5b60006140f285828601613fd6565b925050602061410385828601613fd6565b9150509250929050565b60008060006060848603121561412257600080fd5b600061413086828701613fd6565b935050602061414186828701613fd6565b925050604061415286828701614093565b9150509250925092565b6000806000806080858703121561417257600080fd5b600061418087828801613fd6565b945050602061419187828801613fd6565b93505060406141a287828801614093565b925050606085013567ffffffffffffffff8111156141bf57600080fd5b6141cb8782880161403f565b91505092959194509250565b600080604083850312156141ea57600080fd5b60006141f885828601613fd6565b925050602061420985828601613feb565b9150509250929050565b6000806040838503121561422657600080fd5b600061423485828601613fd6565b925050602061424585828601614093565b9150509250929050565b60006020828403121561426157600080fd5b600061426f84828501614000565b91505092915050565b60006020828403121561428a57600080fd5b600061429884828501614015565b91505092915050565b6000602082840312156142b357600080fd5b60006142c18482850161402a565b91505092915050565b6000602082840312156142dc57600080fd5b600082013567ffffffffffffffff8111156142f657600080fd5b61430284828501614069565b91505092915050565b60006020828403121561431d57600080fd5b600061432b84828501614093565b91505092915050565b6000806040838503121561434757600080fd5b600061435585828601614093565b925050602083013567ffffffffffffffff81111561437257600080fd5b61437e85828601614069565b9150509250929050565b600061439483836145bb565b905092915050565b60006143a883836151fc565b60208301905092915050565b6143bd816159f4565b82525050565b6143cc81615976565b82525050565b6143db81615964565b82525050565b60006143ec826158b3565b6143f681856158f9565b9350836020820285016144088561587e565b8060005b8581101561444457848403895281516144258582614388565b9450614430836158df565b925060208a0199505060018101905061440c565b50829750879550505050505092915050565b6000614461826158be565b61446b818561590a565b93506144768361588e565b8060005b838110156144a757815161448e888261439c565b9750614499836158ec565b92505060018101905061447a565b5085935050505092915050565b6144bd81615988565b82525050565b60006144ce826158c9565b6144d8818561591b565b93506144e8818560208601615a39565b6144f181615a6e565b840191505092915050565b6000614507826158c9565b614511818561592c565b9350614521818560208601615a39565b80840191505092915050565b60008154600181166000811461454a576001811461456f576145b3565b607f600283041661455b818761592c565b955060ff19831686528086019350506145b3565b6002820461457d818761592c565b95506145888561589e565b60005b828110156145aa5781548189015260018201915060208101905061458b565b82880195505050505b505092915050565b60006145c6826158d4565b6145d08185615937565b93506145e0818560208601615a39565b6145e981615a6e565b840191505092915050565b60006145ff826158d4565b6146098185615948565b9350614619818560208601615a39565b61462281615a6e565b840191505092915050565b6000614638826158d4565b6146428185615959565b9350614652818560208601615a39565b80840191505092915050565b600061466b602283615948565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146d1601683615948565b91507f4e6f7420656e6f7567682072657365727665206c6566000000000000000000006000830152602082019050919050565b6000614711601d83615948565b91507f53616c65206d7573742062652061637469766520746f207265726f6c6c0000006000830152602082019050919050565b6000614751603283615948565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006147b7602683615948565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061481d601c83615948565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061485d601b83615948565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b600061489d602483615948565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614903601983615948565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614943601f83615948565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000614983601e83615948565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b60006149c3602683615948565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a29602c83615948565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614a8f602183615948565b91507f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614af5603883615948565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614b5b602a83615948565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614bc1602783615948565b91507f4865792c207468697320746f6b656e20686173206d6f7265207468616e20332060008301527f7265726f6c6c21000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c27602283615948565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c8d602083615948565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614ccd602183615948565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d33602c83615948565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614d99602083615948565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614dd9602983615948565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614e3f602f83615948565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614ea5602383615948565b91507f4e6577206e616d652069732073616d65206173207468652063757272656e742060008301527f6f6e6500000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614f0b602183615948565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614f71601283615948565b91507f43616e206f6e6c79206d696e74206f6e636500000000000000000000000000006000830152602082019050919050565b6000614fb1603183615948565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000615017601d83615948565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b6000615057602083615948565b91507f53616c65206d7573742062652061637469766520746f206d696e74206865726f6000830152602082019050919050565b6000615097602983615948565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f66206865726f7300000000000000000000000000000000000000000000006020830152604082019050919050565b60006150fd602383615948565b91507f494420776f756c6420657863656564206d617820737570706c79206f6620686560008301527f726f7300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000615163602783615948565b91507f4865792c20796f75722077616c6c657420646f65736e2774206f776e2074686960008301527f73206865726f21000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006151c9601a83615948565b91507f43686f6f73652061206865726f2077697468696e2072616e67650000000000006000830152602082019050919050565b615205816159ea565b82525050565b615214816159ea565b82525050565b600061522682846144fc565b915081905092915050565b600061523d828461452d565b915081905092915050565b6000615254828561462d565b9150615260828461462d565b91508190509392505050565b600060208201905061528160008301846143d2565b92915050565b600060808201905061529c60008301876143c3565b6152a960208301866143d2565b6152b6604083018561520b565b81810360608301526152c881846144c3565b905095945050505050565b60006060820190506152e860008301866143b4565b6152f5602083018561520b565b818103604083015261530781846145f4565b9050949350505050565b6000602082019050818103600083015261532b81846143e1565b905092915050565b6000602082019050818103600083015261534d8184614456565b905092915050565b600060208201905061536a60008301846144b4565b92915050565b6000602082019050818103600083015261538a81846145f4565b905092915050565b600060208201905081810360008301526153ab8161465e565b9050919050565b600060208201905081810360008301526153cb816146c4565b9050919050565b600060208201905081810360008301526153eb81614704565b9050919050565b6000602082019050818103600083015261540b81614744565b9050919050565b6000602082019050818103600083015261542b816147aa565b9050919050565b6000602082019050818103600083015261544b81614810565b9050919050565b6000602082019050818103600083015261546b81614850565b9050919050565b6000602082019050818103600083015261548b81614890565b9050919050565b600060208201905081810360008301526154ab816148f6565b9050919050565b600060208201905081810360008301526154cb81614936565b9050919050565b600060208201905081810360008301526154eb81614976565b9050919050565b6000602082019050818103600083015261550b816149b6565b9050919050565b6000602082019050818103600083015261552b81614a1c565b9050919050565b6000602082019050818103600083015261554b81614a82565b9050919050565b6000602082019050818103600083015261556b81614ae8565b9050919050565b6000602082019050818103600083015261558b81614b4e565b9050919050565b600060208201905081810360008301526155ab81614bb4565b9050919050565b600060208201905081810360008301526155cb81614c1a565b9050919050565b600060208201905081810360008301526155eb81614c80565b9050919050565b6000602082019050818103600083015261560b81614cc0565b9050919050565b6000602082019050818103600083015261562b81614d26565b9050919050565b6000602082019050818103600083015261564b81614d8c565b9050919050565b6000602082019050818103600083015261566b81614dcc565b9050919050565b6000602082019050818103600083015261568b81614e32565b9050919050565b600060208201905081810360008301526156ab81614e98565b9050919050565b600060208201905081810360008301526156cb81614efe565b9050919050565b600060208201905081810360008301526156eb81614f64565b9050919050565b6000602082019050818103600083015261570b81614fa4565b9050919050565b6000602082019050818103600083015261572b8161500a565b9050919050565b6000602082019050818103600083015261574b8161504a565b9050919050565b6000602082019050818103600083015261576b8161508a565b9050919050565b6000602082019050818103600083015261578b816150f0565b9050919050565b600060208201905081810360008301526157ab81615156565b9050919050565b600060208201905081810360008301526157cb816151bc565b9050919050565b60006020820190506157e7600083018461520b565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561581457615813615a6c565b5b8060405250919050565b600067ffffffffffffffff82111561583957615838615a6c565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561586957615868615a6c565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061596f826159ca565b9050919050565b6000615981826159ca565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006159ff82615a06565b9050919050565b6000615a1182615a18565b9050919050565b6000615a23826159ca565b9050919050565b82818337600083830152505050565b60005b83811015615a57578082015181840152602081019050615a3c565b83811115615a66576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b615a8881615964565b8114615a9357600080fd5b50565b615a9f81615988565b8114615aaa57600080fd5b50565b615ab681615994565b8114615ac157600080fd5b50565b615acd8161599e565b8114615ad857600080fd5b50565b615ae4816159ea565b8114615aef57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220443b51ace40c2d8269d29e4fad10b0572ba077e60a3930314ffbf05ad0f7394064736f6c63430007060033

Deployed Bytecode Sourcemap

66801:6290:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67103:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10191:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51476:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54262:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53792:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70490:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68533:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67536:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53270:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68135:388;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55152:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67146:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53032:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69173:622;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68775:89;;;;;;;;;;;;;:::i;:::-;;68882:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67992:131;;;;;;;;;;;;;:::i;:::-;;55528:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67287:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53558:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67050:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68666:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66900:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51232:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52851:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50949:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66187:148;;;;;;;;;;;;;:::i;:::-;;71649:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71855:540;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66976:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65536:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67341:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51645:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72529:553;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54555:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71234:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67240:40;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55750:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51820:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70706:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54921:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69807:669;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67195:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70908:309;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66490:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67103:34;67136:1;67103:34;:::o;10191:150::-;10276:4;10300:20;:33;10321:11;10300:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10293:40;;10191:150;;;:::o;51476:100::-;51530:13;51563:5;51556:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51476:100;:::o;54262:221::-;54338:7;54366:16;54374:7;54366;:16::i;:::-;54358:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54451:15;:24;54467:7;54451:24;;;;;;;;;;;;;;;;;;;;;54444:31;;54262:221;;;:::o;53792:404::-;53873:13;53889:23;53904:7;53889:14;:23::i;:::-;53873:39;;53937:5;53931:11;;:2;:11;;;;53923:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;54017:5;54001:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;54026:44;54050:5;54057:12;:10;:12::i;:::-;54026:23;:44::i;:::-;54001:69;53993:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;54167:21;54176:2;54180:7;54167:8;:21::i;:::-;53792:404;;;:::o;70490:206::-;70555:13;70597;:11;:13::i;:::-;70585:8;:25;;70577:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;70664:16;:26;70681:8;70664:26;;;;;;;;;;;70657:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70490:206;;;:::o;68533:125::-;65767:12;:10;:12::i;:::-;65756:23;;:7;:5;:7::i;:::-;:23;;;65748:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68636:14:::1;68618:15;:32;;;;;;;;;;;;:::i;:::-;;68533:125:::0;:::o;67536:29::-;;;;:::o;53270:211::-;53331:7;53452:21;:12;:19;:21::i;:::-;53445:28;;53270:211;:::o;68135:388::-;65767:12;:10;:12::i;:::-;65756:23;;:7;:5;:7::i;:::-;:23;;;65748:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68230:11:::1;68244:13;:11;:13::i;:::-;68230:27;;68293:1;68276:14;:18;:51;;;;;68316:11;;68298:14;:29;;68276:51;68268:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;68370:6;68365:95;68386:14;68382:1;:18;68365:95;;;68422:26;68432:3;68446:1;68437:6;:10;68422:9;:26::i;:::-;68402:3;;;;;;;68365:95;;;;68484:31;68500:14;68484:11;;:15;;:31;;;;:::i;:::-;68470:11;:45;;;;65827:1;68135:388:::0;;:::o;55152:305::-;55313:41;55332:12;:10;:12::i;:::-;55346:7;55313:18;:41::i;:::-;55305:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;55421:28;55431:4;55437:2;55441:7;55421:9;:28::i;:::-;55152:305;;;:::o;67146:40::-;67182:4;67146:40;:::o;53032:162::-;53129:7;53156:30;53180:5;53156:13;:20;53170:5;53156:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;53149:37;;53032:162;;;;:::o;69173:622::-;69243:12;;;;;;;;;;;69235:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;69324:1;69307:14;:18;:55;;;;;67089:2;69329:14;:33;;69307:55;69299:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;67182:4;69415:33;69433:14;69415:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:46;;69407:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;69535:29;69549:14;67012:17;69535:13;;:29;;;;:::i;:::-;69522:9;:42;;69514:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;69614:6;69609:181;69630:14;69626:1;:18;69609:181;;;69660:14;69677:13;:11;:13::i;:::-;69660:30;;67182:4;69703:13;:11;:13::i;:::-;:25;69699:84;;;69741:32;69751:10;69763:9;69741;:32::i;:::-;69699:84;69609:181;69646:3;;;;;;;69609:181;;;;69173:622;:::o;68775:89::-;65767:12;:10;:12::i;:::-;65756:23;;:7;:5;:7::i;:::-;:23;;;65748:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68844:12:::1;;;;;;;;;;;68843:13;68828:12;;:28;;;;;;;;;;;;;;;;;;68775:89::o:0;68882:279::-;67795:6;:20;67802:12;:10;:12::i;:::-;67795:20;;;;;;;;;;;;;;;;;;;;;;;;;67794:21;67786:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;67872:4;67849:6;:20;67856:12;:10;:12::i;:::-;67849:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;68957:12:::1;;;;;;;;;;;68949:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;67182:4;69025:20;69043:1;69025:13;:11;:13::i;:::-;:17;;:20;;;;:::i;:::-;:33;;69017:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;69115:36;69125:10;69137:13;:11;:13::i;:::-;69115:9;:36::i;:::-;68882:279:::0;:::o;67992:131::-;65767:12;:10;:12::i;:::-;65756:23;;:7;:5;:7::i;:::-;:23;;;65748:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68040:12:::1;68055:21;68040:36;;68087:10;:19;;:28;68107:7;68087:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;65827:1;67992:131::o:0;55528:151::-;55632:39;55649:4;55655:2;55659:7;55632:39;;;;;;;;;;;;:16;:39::i;:::-;55528:151;;;:::o;67287:47::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53558:172::-;53633:7;53654:15;53675:22;53691:5;53675:12;:15;;:22;;;;:::i;:::-;53653:44;;;53715:7;53708:14;;;53558:172;;;:::o;67050:41::-;67089:2;67050:41;:::o;68666:99::-;65767:12;:10;:12::i;:::-;65756:23;;:7;:5;:7::i;:::-;:23;;;65748:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68737:20:::1;68749:7;68737:11;:20::i;:::-;68666:99:::0;:::o;66900:34::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51232:177::-;51304:7;51331:70;51348:7;51331:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;51324:77;;51232:177;;;:::o;52851:97::-;52899:13;52932:8;52925:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52851:97;:::o;50949:221::-;51021:7;51066:1;51049:19;;:5;:19;;;;51041:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;51133:29;:13;:20;51147:5;51133:20;;;;;;;;;;;;;;;:27;:29::i;:::-;51126:36;;50949:221;;;:::o;66187:148::-;65767:12;:10;:12::i;:::-;65756:23;;:7;:5;:7::i;:::-;:23;;;65748:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66294:1:::1;66257:40;;66278:6;;;;;;;;;;;66257:40;;;;;;;;;;;;66325:1;66308:6;;:19;;;;;;;;;;;;;;;;;;66187:148::o:0;71649:194::-;71707:13;71753;:11;:13::i;:::-;71742:8;:24;71733:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;71816:9;:19;71826:8;71816:19;;;;;;;;;;;71809:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71649:194;;;:::o;71855:540::-;71916:16;71946:18;71967:17;71977:6;71967:9;:17::i;:::-;71946:38;;72013:1;71999:10;:15;71995:393;;;72090:1;72076:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72069:23;;;;;71995:393;72125:23;72165:10;72151:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72125:51;;72191:13;72219:130;72243:10;72235:5;:18;72219:130;;;72299:34;72319:6;72327:5;72299:19;:34::i;:::-;72283:6;72290:5;72283:13;;;;;;;;;;;;;:50;;;;;72255:7;;;;;;;72219:130;;;72370:6;72363:13;;;;;71855:540;;;;:::o;66976:53::-;67012:17;66976:53;:::o;65536:87::-;65582:7;65609:6;;;;;;;;;;;65602:13;;65536:87;:::o;67341:43::-;;;;;;;;;;;;;;;;;:::o;51645:104::-;51701:13;51734:7;51727:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51645:104;:::o;72529:553::-;72593:15;72622:18;72643:17;72653:6;72643:9;:17::i;:::-;72622:38;;72689:1;72675:10;:15;72671:404;;;72765:1;72752:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72745:22;;;;;72671:404;72800:22;72838:10;72825:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72800:49;;72864:13;72892:144;72916:10;72908:5;:18;72892:144;;;72972:9;:47;72983:34;73003:6;73011:5;72983:19;:34::i;:::-;72972:47;;;;;;;;;;;72956:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:6;72963:5;72956:13;;;;;;;;;;;;;:63;;;;72928:7;;;;;;;72892:144;;;73057:6;73050:13;;;;;72529:553;;;;:::o;54555:295::-;54670:12;:10;:12::i;:::-;54658:24;;:8;:24;;;;54650:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;54770:8;54725:18;:32;54744:12;:10;:12::i;:::-;54725:32;;;;;;;;;;;;;;;:42;54758:8;54725:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;54823:8;54794:48;;54809:12;:10;:12::i;:::-;54794:48;;;54833:8;54794:48;;;;;;:::i;:::-;;;;;;;;54555:295;;:::o;71234:403::-;71341:10;71320:31;;:17;71328:8;71320:7;:17::i;:::-;:31;;;71312:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;71438:34;71451:9;:19;71461:8;71451:19;;;;;;;;;;;71438:34;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;71414:20;71427:5;71414:20;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:58;;71406:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;71545:5;71523:9;:19;71533:8;71523:19;;;;;;;;;;;:27;;;;;;;;;;;;:::i;:::-;;71576:43;71591:10;71603:8;71613:5;71576:43;;;;;;;;:::i;:::-;;;;;;;;71234:403;;:::o;67240:40::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55750:285::-;55882:41;55901:12;:10;:12::i;:::-;55915:7;55882:18;:41::i;:::-;55874:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;55988:39;56002:4;56008:2;56012:7;56021:5;55988:13;:39::i;:::-;55750:285;;;;:::o;51820:792::-;51893:13;51927:16;51935:7;51927;:16::i;:::-;51919:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;52008:23;52034:10;:19;52045:7;52034:19;;;;;;;;;;;52008:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52064:18;52085:9;:7;:9::i;:::-;52064:30;;52192:1;52176:4;52170:18;:23;52166:72;;;52217:9;52210:16;;;;;;52166:72;52368:1;52348:9;52342:23;:27;52338:108;;;52417:4;52423:9;52400:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52386:48;;;;;;52338:108;52578:4;52584:18;:7;:16;:18::i;:::-;52561:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52547:57;;;;51820:792;;;;:::o;70706:192::-;70767:7;70804:13;:11;:13::i;:::-;70792:8;:25;;70784:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;70871:11;:21;70883:8;70871:21;;;;;;;;;;;;70864:28;;70706:192;;;:::o;54921:164::-;55018:4;55042:18;:25;55061:5;55042:25;;;;;;;;;;;;;;;:35;55068:8;55042:35;;;;;;;;;;;;;;;;;;;;;;;;;55035:42;;54921:164;;;;:::o;69807:669::-;69901:12;;;;;;;;;;;69893:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;69974:13;:11;:13::i;:::-;69962:8;:25;;69954:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;70069:10;70048:31;;:17;70056:8;70048:7;:17::i;:::-;:31;;;70040:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;67136:1;70138:11;:21;70150:8;70138:21;;;;;;;;;;;;:33;70130:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;70272:1;70248:11;:21;70260:8;70248:21;;;;;;;;;;;;:25;70224:11;:21;70236:8;70224:21;;;;;;;;;;;:49;;;;70309:16;70280;:26;70297:8;70280:26;;;;;;;;;;;:45;;;;;;;;;;;;:::i;:::-;;70337:65;70363:10;70375:8;70385:16;70337:65;;;;;;;;:::i;:::-;;;;;;;;70415:15;70421:8;70415:5;:15::i;:::-;70437:31;70447:10;70459:8;70437:9;:31::i;:::-;69807:669;;:::o;67195:32::-;;;;;;;;;;;;;:::o;70908:309::-;65767:12;:10;:12::i;:::-;65756:23;;:7;:5;:7::i;:::-;:23;;;65748:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71028:13:::1;:11;:13::i;:::-;71016:8;:25;;71008:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;71117:16;71088;:26;71105:8;71088:26;;;;;;;;;;;:45;;;;;;;;;;;;:::i;:::-;;71145:66;71171:10;71184:8;71194:16;71145:66;;;;;;;;:::i;:::-;;;;;;;;70908:309:::0;;:::o;66490:244::-;65767:12;:10;:12::i;:::-;65756:23;;:7;:5;:7::i;:::-;:23;;;65748:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66599:1:::1;66579:22;;:8;:22;;;;66571:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;66689:8;66660:38;;66681:6;;;;;;;;;;;66660:38;;;;;;;;;;;;66718:8;66709:6;;:17;;;;;;;;;;;;;;;;;;66490:244:::0;:::o;57502:127::-;57567:4;57591:30;57613:7;57591:12;:21;;:30;;;;:::i;:::-;57584:37;;57502:127;;;:::o;680:106::-;733:15;768:10;761:17;;680:106;:::o;63520:192::-;63622:2;63595:15;:24;63611:7;63595:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;63678:7;63674:2;63640:46;;63649:23;63664:7;63649:14;:23::i;:::-;63640:46;;;;;;;;;;;;63520:192;;:::o;44234:123::-;44303:7;44330:19;44338:3;:10;;44330:7;:19::i;:::-;44323:26;;44234:123;;;:::o;58494:110::-;58570:26;58580:2;58584:7;58570:26;;;;;;;;;;;;:9;:26::i;:::-;58494:110;;:::o;14215:158::-;14273:7;14306:1;14301;:6;;14293:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;14364:1;14360;:5;14353:12;;14215:158;;;;:::o;57796:355::-;57889:4;57914:16;57922:7;57914;:16::i;:::-;57906:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;57990:13;58006:23;58021:7;58006:14;:23::i;:::-;57990:39;;58059:5;58048:16;;:7;:16;;;:51;;;;58092:7;58068:31;;:20;58080:7;58068:11;:20::i;:::-;:31;;;58048:51;:94;;;;58103:39;58127:5;58134:7;58103:23;:39::i;:::-;58048:94;58040:103;;;57796:355;;;;:::o;60932:599::-;61057:4;61030:31;;:23;61045:7;61030:14;:23::i;:::-;:31;;;61022:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;61158:1;61144:16;;:2;:16;;;;61136:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61214:39;61235:4;61241:2;61245:7;61214:20;:39::i;:::-;61318:29;61335:1;61339:7;61318:8;:29::i;:::-;61360:35;61387:7;61360:13;:19;61374:4;61360:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;61406:30;61428:7;61406:13;:17;61420:2;61406:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;61449:29;61466:7;61475:2;61449:12;:16;;:29;;;;;:::i;:::-;;61515:7;61511:2;61496:27;;61505:4;61496:27;;;;;;;;;;;;60932:599;;;:::o;36025:137::-;36096:7;36131:22;36135:3;:10;;36147:5;36131:3;:22::i;:::-;36123:31;;36116:38;;36025:137;;;;:::o;13753:179::-;13811:7;13831:9;13847:1;13843;:5;13831:17;;13872:1;13867;:6;;13859:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;13923:1;13916:8;;;13753:179;;;;:::o;14632:220::-;14690:7;14719:1;14714;:6;14710:20;;;14729:1;14722:8;;;;14710:20;14741:9;14757:1;14753;:5;14741:17;;14786:1;14781;14777;:5;;;;;;:10;14769:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;14843:1;14836:8;;;14632:220;;;;;:::o;44696:236::-;44776:7;44785;44806:11;44819:13;44836:22;44840:3;:10;;44852:5;44836:3;:22::i;:::-;44805:53;;;;44885:3;44877:12;;44915:5;44907:14;;44869:55;;;;;;44696:236;;;;;:::o;62132:100::-;62216:8;62205;:19;;;;;;;;;;;;:::i;:::-;;62132:100;:::o;45982:213::-;46089:7;46140:44;46145:3;:10;;46165:3;46157:12;;46171;46140:4;:44::i;:::-;46132:53;;46109:78;;45982:213;;;;;:::o;35567:114::-;35627:7;35654:19;35662:3;:10;;35654:7;:19::i;:::-;35647:26;;35567:114;;;:::o;56917:272::-;57031:28;57041:4;57047:2;57051:7;57031:9;:28::i;:::-;57078:48;57101:4;57107:2;57111:7;57120:5;57078:22;:48::i;:::-;57070:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;56917:272;;;;:::o;46446:746::-;46502:13;46732:1;46723:5;:10;46719:53;;;46750:10;;;;;;;;;;;;;;;;;;;;;46719:53;46782:12;46797:5;46782:20;;46813:14;46838:78;46853:1;46845:4;:9;46838:78;;46871:8;;;;;;;46902:2;46894:10;;;;;;;;;46838:78;;;46926:19;46958:6;46948:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46926:39;;46976:13;47001:1;46992:6;:10;46976:26;;47020:5;47013:12;;47036:117;47051:1;47043:4;:9;47036:117;;47112:2;47105:4;:9;;;;;;47100:2;:14;47087:29;;47069:6;47076:7;;;;;;;47069:15;;;;;;;;;;;:47;;;;;;;;;;;47139:2;47131:10;;;;;;;;;47036:117;;;47177:6;47163:21;;;;;;46446:746;;;;:::o;60050:545::-;60110:13;60126:23;60141:7;60126:14;:23::i;:::-;60110:39;;60180:48;60201:5;60216:1;60220:7;60180:20;:48::i;:::-;60269:29;60286:1;60290:7;60269:8;:29::i;:::-;60388:1;60357:10;:19;60368:7;60357:19;;;;;;;;;;;60351:33;;;;;;;;;;;;;;;;:38;60347:97;;60413:10;:19;60424:7;60413:19;;;;;;;;;;;;60406:26;;;;:::i;:::-;60347:97;60456:36;60484:7;60456:13;:20;60470:5;60456:20;;;;;;;;;;;;;;;:27;;:36;;;;:::i;:::-;;60505:28;60525:7;60505:12;:19;;:28;;;;:::i;:::-;;60579:7;60575:1;60551:36;;60560:5;60551:36;;;;;;;;;;;;60050:545;;:::o;43995:151::-;44079:4;44103:35;44113:3;:10;;44133:3;44125:12;;44103:9;:35::i;:::-;44096:42;;43995:151;;;;:::o;40813:110::-;40869:7;40896:3;:12;;:19;;;;40889:26;;40813:110;;;:::o;58831:250::-;58927:18;58933:2;58937:7;58927:5;:18::i;:::-;58964:54;58995:1;58999:2;59003:7;59012:5;58964:22;:54::i;:::-;58956:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;58831:250;;;:::o;64325:93::-;;;;:::o;35112:137::-;35182:4;35206:35;35214:3;:10;;35234:5;35226:14;;35206:7;:35::i;:::-;35199:42;;35112:137;;;;:::o;34805:131::-;34872:4;34896:32;34901:3;:10;;34921:5;34913:14;;34896:4;:32::i;:::-;34889:39;;34805:131;;;;:::o;43418:185::-;43507:4;43531:64;43536:3;:10;;43556:3;43548:12;;43586:5;43570:23;;43562:32;;43531:4;:64::i;:::-;43524:71;;43418:185;;;;;:::o;31063:204::-;31130:7;31179:5;31158:3;:11;;:18;;;;:26;31150:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31241:3;:11;;31253:5;31241:18;;;;;;;;;;;;;;;;31234:25;;31063:204;;;;:::o;41278:279::-;41345:7;41354;41404:5;41382:3;:12;;:19;;;;:27;41374:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;41461:22;41486:3;:12;;41499:5;41486:19;;;;;;;;;;;;;;;;;;41461:44;;41524:5;:10;;;41536:5;:12;;;41516:33;;;;;41278:279;;;;;:::o;42775:319::-;42869:7;42889:16;42908:3;:12;;:17;42921:3;42908:17;;;;;;;;;;;;42889:36;;42956:1;42944:8;:13;;42959:12;42936:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;43026:3;:12;;43050:1;43039:8;:12;43026:26;;;;;;;;;;;;;;;;;;:33;;;43019:40;;;42775:319;;;;;:::o;30610:109::-;30666:7;30693:3;:11;;:18;;;;30686:25;;30610:109;;;:::o;62797:604::-;62918:4;62945:15;:2;:13;;;:15::i;:::-;62940:60;;62984:4;62977:11;;;;62940:60;63010:23;63036:252;63089:45;;;63149:12;:10;:12::i;:::-;63176:4;63195:7;63217:5;63052:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63036:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;63010:278;;63299:13;63326:10;63315:32;;;;;;;;;;;;:::i;:::-;63299:48;;47946:10;63376:16;;63366:26;;;:6;:26;;;;63358:35;;;;62797:604;;;;;;;:::o;43769:142::-;43846:4;43870:33;43878:3;:10;;43898:3;43890:12;;43870:7;:33::i;:::-;43863:40;;43769:142;;;;:::o;40593:125::-;40664:4;40709:1;40688:3;:12;;:17;40701:3;40688:17;;;;;;;;;;;;:22;;40681:29;;40593:125;;;;:::o;59417:404::-;59511:1;59497:16;;:2;:16;;;;59489:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;59570:16;59578:7;59570;:16::i;:::-;59569:17;59561:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;59632:45;59661:1;59665:2;59669:7;59632:20;:45::i;:::-;59690:30;59712:7;59690:13;:17;59704:2;59690:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;59733:29;59750:7;59759:2;59733:12;:16;;:29;;;;;:::i;:::-;;59805:7;59801:2;59780:33;;59797:1;59780:33;;;;;;;;;;;;59417:404;;:::o;28765:1544::-;28831:4;28949:18;28970:3;:12;;:19;28983:5;28970:19;;;;;;;;;;;;28949:40;;29020:1;29006:10;:15;29002:1300;;29368:21;29405:1;29392:10;:14;29368:38;;29421:17;29462:1;29441:3;:11;;:18;;;;:22;29421:42;;29708:17;29728:3;:11;;29740:9;29728:22;;;;;;;;;;;;;;;;29708:42;;29874:9;29845:3;:11;;29857:13;29845:26;;;;;;;;;;;;;;;:38;;;;29993:1;29977:13;:17;29951:3;:12;;:23;29964:9;29951:23;;;;;;;;;;;:43;;;;30103:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;30198:3;:12;;:19;30211:5;30198:19;;;;;;;;;;;30191:26;;;30241:4;30234:11;;;;;;;;29002:1300;30285:5;30278:12;;;28765:1544;;;;;:::o;28175:414::-;28238:4;28260:21;28270:3;28275:5;28260:9;:21::i;:::-;28255:327;;28298:3;:11;;28315:5;28298:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28481:3;:11;;:18;;;;28459:3;:12;;:19;28472:5;28459:19;;;;;;;;;;;:40;;;;28521:4;28514:11;;;;28255:327;28565:5;28558:12;;28175:414;;;;;:::o;38093:692::-;38169:4;38285:16;38304:3;:12;;:17;38317:3;38304:17;;;;;;;;;;;;38285:36;;38350:1;38338:8;:13;38334:444;;;38405:3;:12;;38423:38;;;;;;;;38440:3;38423:38;;;;38453:5;38423:38;;;38405:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38620:3;:12;;:19;;;;38600:3;:12;;:17;38613:3;38600:17;;;;;;;;;;;:39;;;;38661:4;38654:11;;;;;38334:444;38734:5;38698:3;:12;;38722:1;38711:8;:12;38698:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38761:5;38754:12;;;38093:692;;;;;;:::o;19194:422::-;19254:4;19462:12;19573:7;19561:20;19553:28;;19607:1;19600:4;:8;19593:15;;;19194:422;;;:::o;22112:195::-;22215:12;22247:52;22269:6;22277:4;22283:1;22286:12;22247:21;:52::i;:::-;22240:59;;22112:195;;;;;:::o;38960:1549::-;39024:4;39140:16;39159:3;:12;;:17;39172:3;39159:17;;;;;;;;;;;;39140:36;;39205:1;39193:8;:13;39189:1313;;39554:21;39589:1;39578:8;:12;39554:36;;39605:17;39647:1;39625:3;:12;;:19;;;;:23;39605:43;;39893:26;39922:3;:12;;39935:9;39922:23;;;;;;;;;;;;;;;;;;39893:52;;40070:9;40040:3;:12;;40053:13;40040:27;;;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;;40194:1;40178:13;:17;40147:3;:12;;:28;40160:9;:14;;;40147:28;;;;;;;;;;;:48;;;;40304:3;:12;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40400:3;:12;;:17;40413:3;40400:17;;;;;;;;;;;40393:24;;;40441:4;40434:11;;;;;;;;39189:1313;40485:5;40478:12;;;38960:1549;;;;;:::o;30395:129::-;30468:4;30515:1;30492:3;:12;;:19;30505:5;30492:19;;;;;;;;;;;;:24;;30485:31;;30395:129;;;;:::o;23164:530::-;23291:12;23349:5;23324:21;:30;;23316:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;23416:18;23427:6;23416:10;:18::i;:::-;23408:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;23542:12;23556:23;23583:6;:11;;23603:5;23611:4;23583:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23541:75;;;;23634:52;23652:7;23661:10;23673:12;23634:17;:52::i;:::-;23627:59;;;;23164:530;;;;;;:::o;25704:742::-;25819:12;25848:7;25844:595;;;25879:10;25872:17;;;;25844:595;26013:1;25993:10;:17;:21;25989:439;;;26256:10;26250:17;26317:15;26304:10;26300:2;26296:19;26289:44;26204:148;26399:12;26392:20;;;;;;;;;;;:::i;:::-;;;;;;;;25704:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:143::-;;1077:6;1071:13;1062:22;;1093:33;1120:5;1093:33;:::i;:::-;1052:80;;;;:::o;1138:137::-;;1221:6;1208:20;1199:29;;1237:32;1263:5;1237:32;:::i;:::-;1189:86;;;;:::o;1281:141::-;;1368:6;1362:13;1353:22;;1384:32;1410:5;1384:32;:::i;:::-;1343:79;;;;:::o;1441:271::-;;1545:3;1538:4;1530:6;1526:17;1522:27;1512:2;;1563:1;1560;1553:12;1512:2;1603:6;1590:20;1628:78;1702:3;1694:6;1687:4;1679:6;1675:17;1628:78;:::i;:::-;1619:87;;1502:210;;;;;:::o;1732:273::-;;1837:3;1830:4;1822:6;1818:17;1814:27;1804:2;;1855:1;1852;1845:12;1804:2;1895:6;1882:20;1920:79;1995:3;1987:6;1980:4;1972:6;1968:17;1920:79;:::i;:::-;1911:88;;1794:211;;;;;:::o;2011:139::-;;2095:6;2082:20;2073:29;;2111:33;2138:5;2111:33;:::i;:::-;2063:87;;;;:::o;2156:262::-;;2264:2;2252:9;2243:7;2239:23;2235:32;2232:2;;;2280:1;2277;2270:12;2232:2;2323:1;2348:53;2393:7;2384:6;2373:9;2369:22;2348:53;:::i;:::-;2338:63;;2294:117;2222:196;;;;:::o;2424:407::-;;;2549:2;2537:9;2528:7;2524:23;2520:32;2517:2;;;2565:1;2562;2555:12;2517:2;2608:1;2633:53;2678:7;2669:6;2658:9;2654:22;2633:53;:::i;:::-;2623:63;;2579:117;2735:2;2761:53;2806:7;2797:6;2786:9;2782:22;2761:53;:::i;:::-;2751:63;;2706:118;2507:324;;;;;:::o;2837:552::-;;;;2979:2;2967:9;2958:7;2954:23;2950:32;2947:2;;;2995:1;2992;2985:12;2947:2;3038:1;3063:53;3108:7;3099:6;3088:9;3084:22;3063:53;:::i;:::-;3053:63;;3009:117;3165:2;3191:53;3236:7;3227:6;3216:9;3212:22;3191:53;:::i;:::-;3181:63;;3136:118;3293:2;3319:53;3364:7;3355:6;3344:9;3340:22;3319:53;:::i;:::-;3309:63;;3264:118;2937:452;;;;;:::o;3395:809::-;;;;;3563:3;3551:9;3542:7;3538:23;3534:33;3531:2;;;3580:1;3577;3570:12;3531:2;3623:1;3648:53;3693:7;3684:6;3673:9;3669:22;3648:53;:::i;:::-;3638:63;;3594:117;3750:2;3776:53;3821:7;3812:6;3801:9;3797:22;3776:53;:::i;:::-;3766:63;;3721:118;3878:2;3904:53;3949:7;3940:6;3929:9;3925:22;3904:53;:::i;:::-;3894:63;;3849:118;4034:2;4023:9;4019:18;4006:32;4065:18;4057:6;4054:30;4051:2;;;4097:1;4094;4087:12;4051:2;4125:62;4179:7;4170:6;4159:9;4155:22;4125:62;:::i;:::-;4115:72;;3977:220;3521:683;;;;;;;:::o;4210:401::-;;;4332:2;4320:9;4311:7;4307:23;4303:32;4300:2;;;4348:1;4345;4338:12;4300:2;4391:1;4416:53;4461:7;4452:6;4441:9;4437:22;4416:53;:::i;:::-;4406:63;;4362:117;4518:2;4544:50;4586:7;4577:6;4566:9;4562:22;4544:50;:::i;:::-;4534:60;;4489:115;4290:321;;;;;:::o;4617:407::-;;;4742:2;4730:9;4721:7;4717:23;4713:32;4710:2;;;4758:1;4755;4748:12;4710:2;4801:1;4826:53;4871:7;4862:6;4851:9;4847:22;4826:53;:::i;:::-;4816:63;;4772:117;4928:2;4954:53;4999:7;4990:6;4979:9;4975:22;4954:53;:::i;:::-;4944:63;;4899:118;4700:324;;;;;:::o;5030:284::-;;5149:2;5137:9;5128:7;5124:23;5120:32;5117:2;;;5165:1;5162;5155:12;5117:2;5208:1;5233:64;5289:7;5280:6;5269:9;5265:22;5233:64;:::i;:::-;5223:74;;5179:128;5107:207;;;;:::o;5320:260::-;;5427:2;5415:9;5406:7;5402:23;5398:32;5395:2;;;5443:1;5440;5433:12;5395:2;5486:1;5511:52;5555:7;5546:6;5535:9;5531:22;5511:52;:::i;:::-;5501:62;;5457:116;5385:195;;;;:::o;5586:282::-;;5704:2;5692:9;5683:7;5679:23;5675:32;5672:2;;;5720:1;5717;5710:12;5672:2;5763:1;5788:63;5843:7;5834:6;5823:9;5819:22;5788:63;:::i;:::-;5778:73;;5734:127;5662:206;;;;:::o;5874:375::-;;5992:2;5980:9;5971:7;5967:23;5963:32;5960:2;;;6008:1;6005;5998:12;5960:2;6079:1;6068:9;6064:17;6051:31;6109:18;6101:6;6098:30;6095:2;;;6141:1;6138;6131:12;6095:2;6169:63;6224:7;6215:6;6204:9;6200:22;6169:63;:::i;:::-;6159:73;;6022:220;5950:299;;;;:::o;6255:262::-;;6363:2;6351:9;6342:7;6338:23;6334:32;6331:2;;;6379:1;6376;6369:12;6331:2;6422:1;6447:53;6492:7;6483:6;6472:9;6468:22;6447:53;:::i;:::-;6437:63;;6393:117;6321:196;;;;:::o;6523:520::-;;;6658:2;6646:9;6637:7;6633:23;6629:32;6626:2;;;6674:1;6671;6664:12;6626:2;6717:1;6742:53;6787:7;6778:6;6767:9;6763:22;6742:53;:::i;:::-;6732:63;;6688:117;6872:2;6861:9;6857:18;6844:32;6903:18;6895:6;6892:30;6889:2;;;6935:1;6932;6925:12;6889:2;6963:63;7018:7;7009:6;6998:9;6994:22;6963:63;:::i;:::-;6953:73;;6815:221;6616:427;;;;;:::o;7049:196::-;;7173:66;7235:3;7227:6;7173:66;:::i;:::-;7159:80;;7149:96;;;;:::o;7251:179::-;;7341:46;7383:3;7375:6;7341:46;:::i;:::-;7419:4;7414:3;7410:14;7396:28;;7331:99;;;;:::o;7436:147::-;7531:45;7570:5;7531:45;:::i;:::-;7526:3;7519:58;7509:74;;:::o;7589:142::-;7692:32;7718:5;7692:32;:::i;:::-;7687:3;7680:45;7670:61;;:::o;7737:118::-;7824:24;7842:5;7824:24;:::i;:::-;7819:3;7812:37;7802:53;;:::o;7889:991::-;;8057:64;8115:5;8057:64;:::i;:::-;8137:96;8226:6;8221:3;8137:96;:::i;:::-;8130:103;;8259:3;8304:4;8296:6;8292:17;8287:3;8283:27;8334:66;8394:5;8334:66;:::i;:::-;8423:7;8454:1;8439:396;8464:6;8461:1;8458:13;8439:396;;;8535:9;8529:4;8525:20;8520:3;8513:33;8586:6;8580:13;8614:84;8693:4;8678:13;8614:84;:::i;:::-;8606:92;;8721:70;8784:6;8721:70;:::i;:::-;8711:80;;8820:4;8815:3;8811:14;8804:21;;8499:336;8486:1;8483;8479:9;8474:14;;8439:396;;;8443:14;8851:4;8844:11;;8871:3;8864:10;;8033:847;;;;;;;;;:::o;8916:732::-;;9064:54;9112:5;9064:54;:::i;:::-;9134:86;9213:6;9208:3;9134:86;:::i;:::-;9127:93;;9244:56;9294:5;9244:56;:::i;:::-;9323:7;9354:1;9339:284;9364:6;9361:1;9358:13;9339:284;;;9440:6;9434:13;9467:63;9526:3;9511:13;9467:63;:::i;:::-;9460:70;;9553:60;9606:6;9553:60;:::i;:::-;9543:70;;9399:224;9386:1;9383;9379:9;9374:14;;9339:284;;;9343:14;9639:3;9632:10;;9040:608;;;;;;;:::o;9654:109::-;9735:21;9750:5;9735:21;:::i;:::-;9730:3;9723:34;9713:50;;:::o;9769:360::-;;9883:38;9915:5;9883:38;:::i;:::-;9937:70;10000:6;9995:3;9937:70;:::i;:::-;9930:77;;10016:52;10061:6;10056:3;10049:4;10042:5;10038:16;10016:52;:::i;:::-;10093:29;10115:6;10093:29;:::i;:::-;10088:3;10084:39;10077:46;;9859:270;;;;;:::o;10135:373::-;;10267:38;10299:5;10267:38;:::i;:::-;10321:88;10402:6;10397:3;10321:88;:::i;:::-;10314:95;;10418:52;10463:6;10458:3;10451:4;10444:5;10440:16;10418:52;:::i;:::-;10495:6;10490:3;10486:16;10479:23;;10243:265;;;;;:::o;10536:1001::-;;10678:5;10672:12;10715:1;10704:9;10700:17;10731:1;10726:300;;;;11040:1;11035:496;;;;10693:838;;10726:300;10816:4;10812:1;10801:9;10797:17;10793:28;10841:88;10922:6;10917:3;10841:88;:::i;:::-;10834:95;;10973:4;10969:9;10958;10954:25;10949:3;10942:38;11009:6;11004:3;11000:16;10993:23;;10733:293;10726:300;;11035:496;11116:1;11105:9;11101:17;11138:88;11219:6;11214:3;11138:88;:::i;:::-;11131:95;;11254:41;11289:5;11254:41;:::i;:::-;11317:1;11331:154;11345:6;11342:1;11339:13;11331:154;;;11419:7;11413:14;11409:1;11404:3;11400:11;11393:35;11469:1;11460:7;11456:15;11445:26;;11367:4;11364:1;11360:12;11355:17;;11331:154;;;11514:6;11509:3;11505:16;11498:23;;11042:489;;;10693:838;;10645:892;;;;;:::o;11543:344::-;;11649:39;11682:5;11649:39;:::i;:::-;11704:61;11758:6;11753:3;11704:61;:::i;:::-;11697:68;;11774:52;11819:6;11814:3;11807:4;11800:5;11796:16;11774:52;:::i;:::-;11851:29;11873:6;11851:29;:::i;:::-;11846:3;11842:39;11835:46;;11625:262;;;;;:::o;11893:364::-;;12009:39;12042:5;12009:39;:::i;:::-;12064:71;12128:6;12123:3;12064:71;:::i;:::-;12057:78;;12144:52;12189:6;12184:3;12177:4;12170:5;12166:16;12144:52;:::i;:::-;12221:29;12243:6;12221:29;:::i;:::-;12216:3;12212:39;12205:46;;11985:272;;;;;:::o;12263:377::-;;12397:39;12430:5;12397:39;:::i;:::-;12452:89;12534:6;12529:3;12452:89;:::i;:::-;12445:96;;12550:52;12595:6;12590:3;12583:4;12576:5;12572:16;12550:52;:::i;:::-;12627:6;12622:3;12618:16;12611:23;;12373:267;;;;;:::o;12646:366::-;;12809:67;12873:2;12868:3;12809:67;:::i;:::-;12802:74;;12906:34;12902:1;12897:3;12893:11;12886:55;12972:4;12967:2;12962:3;12958:12;12951:26;13003:2;12998:3;12994:12;12987:19;;12792:220;;;:::o;13018:320::-;;13181:67;13245:2;13240:3;13181:67;:::i;:::-;13174:74;;13278:24;13274:1;13269:3;13265:11;13258:45;13329:2;13324:3;13320:12;13313:19;;13164:174;;;:::o;13344:327::-;;13507:67;13571:2;13566:3;13507:67;:::i;:::-;13500:74;;13604:31;13600:1;13595:3;13591:11;13584:52;13662:2;13657:3;13653:12;13646:19;;13490:181;;;:::o;13677:382::-;;13840:67;13904:2;13899:3;13840:67;:::i;:::-;13833:74;;13937:34;13933:1;13928:3;13924:11;13917:55;14003:20;13998:2;13993:3;13989:12;13982:42;14050:2;14045:3;14041:12;14034:19;;13823:236;;;:::o;14065:370::-;;14228:67;14292:2;14287:3;14228:67;:::i;:::-;14221:74;;14325:34;14321:1;14316:3;14312:11;14305:55;14391:8;14386:2;14381:3;14377:12;14370:30;14426:2;14421:3;14417:12;14410:19;;14211:224;;;:::o;14441:326::-;;14604:67;14668:2;14663:3;14604:67;:::i;:::-;14597:74;;14701:30;14697:1;14692:3;14688:11;14681:51;14758:2;14753:3;14749:12;14742:19;;14587:180;;;:::o;14773:325::-;;14936:67;15000:2;14995:3;14936:67;:::i;:::-;14929:74;;15033:29;15029:1;15024:3;15020:11;15013:50;15089:2;15084:3;15080:12;15073:19;;14919:179;;;:::o;15104:368::-;;15267:67;15331:2;15326:3;15267:67;:::i;:::-;15260:74;;15364:34;15360:1;15355:3;15351:11;15344:55;15430:6;15425:2;15420:3;15416:12;15409:28;15463:2;15458:3;15454:12;15447:19;;15250:222;;;:::o;15478:323::-;;15641:67;15705:2;15700:3;15641:67;:::i;:::-;15634:74;;15738:27;15734:1;15729:3;15725:11;15718:48;15792:2;15787:3;15783:12;15776:19;;15624:177;;;:::o;15807:329::-;;15970:67;16034:2;16029:3;15970:67;:::i;:::-;15963:74;;16067:33;16063:1;16058:3;16054:11;16047:54;16127:2;16122:3;16118:12;16111:19;;15953:183;;;:::o;16142:328::-;;16305:67;16369:2;16364:3;16305:67;:::i;:::-;16298:74;;16402:32;16398:1;16393:3;16389:11;16382:53;16461:2;16456:3;16452:12;16445:19;;16288:182;;;:::o;16476:370::-;;16639:67;16703:2;16698:3;16639:67;:::i;:::-;16632:74;;16736:34;16732:1;16727:3;16723:11;16716:55;16802:8;16797:2;16792:3;16788:12;16781:30;16837:2;16832:3;16828:12;16821:19;;16622:224;;;:::o;16852:376::-;;17015:67;17079:2;17074:3;17015:67;:::i;:::-;17008:74;;17112:34;17108:1;17103:3;17099:11;17092:55;17178:14;17173:2;17168:3;17164:12;17157:36;17219:2;17214:3;17210:12;17203:19;;16998:230;;;:::o;17234:365::-;;17397:67;17461:2;17456:3;17397:67;:::i;:::-;17390:74;;17494:34;17490:1;17485:3;17481:11;17474:55;17560:3;17555:2;17550:3;17546:12;17539:25;17590:2;17585:3;17581:12;17574:19;;17380:219;;;:::o;17605:388::-;;17768:67;17832:2;17827:3;17768:67;:::i;:::-;17761:74;;17865:34;17861:1;17856:3;17852:11;17845:55;17931:26;17926:2;17921:3;17917:12;17910:48;17984:2;17979:3;17975:12;17968:19;;17751:242;;;:::o;17999:374::-;;18162:67;18226:2;18221:3;18162:67;:::i;:::-;18155:74;;18259:34;18255:1;18250:3;18246:11;18239:55;18325:12;18320:2;18315:3;18311:12;18304:34;18364:2;18359:3;18355:12;18348:19;;18145:228;;;:::o;18379:371::-;;18542:67;18606:2;18601:3;18542:67;:::i;:::-;18535:74;;18639:34;18635:1;18630:3;18626:11;18619:55;18705:9;18700:2;18695:3;18691:12;18684:31;18741:2;18736:3;18732:12;18725:19;;18525:225;;;:::o;18756:366::-;;18919:67;18983:2;18978:3;18919:67;:::i;:::-;18912:74;;19016:34;19012:1;19007:3;19003:11;18996:55;19082:4;19077:2;19072:3;19068:12;19061:26;19113:2;19108:3;19104:12;19097:19;;18902:220;;;:::o;19128:330::-;;19291:67;19355:2;19350:3;19291:67;:::i;:::-;19284:74;;19388:34;19384:1;19379:3;19375:11;19368:55;19449:2;19444:3;19440:12;19433:19;;19274:184;;;:::o;19464:365::-;;19627:67;19691:2;19686:3;19627:67;:::i;:::-;19620:74;;19724:34;19720:1;19715:3;19711:11;19704:55;19790:3;19785:2;19780:3;19776:12;19769:25;19820:2;19815:3;19811:12;19804:19;;19610:219;;;:::o;19835:376::-;;19998:67;20062:2;20057:3;19998:67;:::i;:::-;19991:74;;20095:34;20091:1;20086:3;20082:11;20075:55;20161:14;20156:2;20151:3;20147:12;20140:36;20202:2;20197:3;20193:12;20186:19;;19981:230;;;:::o;20217:330::-;;20380:67;20444:2;20439:3;20380:67;:::i;:::-;20373:74;;20477:34;20473:1;20468:3;20464:11;20457:55;20538:2;20533:3;20529:12;20522:19;;20363:184;;;:::o;20553:373::-;;20716:67;20780:2;20775:3;20716:67;:::i;:::-;20709:74;;20813:34;20809:1;20804:3;20800:11;20793:55;20879:11;20874:2;20869:3;20865:12;20858:33;20917:2;20912:3;20908:12;20901:19;;20699:227;;;:::o;20932:379::-;;21095:67;21159:2;21154:3;21095:67;:::i;:::-;21088:74;;21192:34;21188:1;21183:3;21179:11;21172:55;21258:17;21253:2;21248:3;21244:12;21237:39;21302:2;21297:3;21293:12;21286:19;;21078:233;;;:::o;21317:367::-;;21480:67;21544:2;21539:3;21480:67;:::i;:::-;21473:74;;21577:34;21573:1;21568:3;21564:11;21557:55;21643:5;21638:2;21633:3;21629:12;21622:27;21675:2;21670:3;21666:12;21659:19;;21463:221;;;:::o;21690:365::-;;21853:67;21917:2;21912:3;21853:67;:::i;:::-;21846:74;;21950:34;21946:1;21941:3;21937:11;21930:55;22016:3;22011:2;22006:3;22002:12;21995:25;22046:2;22041:3;22037:12;22030:19;;21836:219;;;:::o;22061:316::-;;22224:67;22288:2;22283:3;22224:67;:::i;:::-;22217:74;;22321:20;22317:1;22312:3;22308:11;22301:41;22368:2;22363:3;22359:12;22352:19;;22207:170;;;:::o;22383:381::-;;22546:67;22610:2;22605:3;22546:67;:::i;:::-;22539:74;;22643:34;22639:1;22634:3;22630:11;22623:55;22709:19;22704:2;22699:3;22695:12;22688:41;22755:2;22750:3;22746:12;22739:19;;22529:235;;;:::o;22770:327::-;;22933:67;22997:2;22992:3;22933:67;:::i;:::-;22926:74;;23030:31;23026:1;23021:3;23017:11;23010:52;23088:2;23083:3;23079:12;23072:19;;22916:181;;;:::o;23103:330::-;;23266:67;23330:2;23325:3;23266:67;:::i;:::-;23259:74;;23363:34;23359:1;23354:3;23350:11;23343:55;23424:2;23419:3;23415:12;23408:19;;23249:184;;;:::o;23439:373::-;;23602:67;23666:2;23661:3;23602:67;:::i;:::-;23595:74;;23699:34;23695:1;23690:3;23686:11;23679:55;23765:11;23760:2;23755:3;23751:12;23744:33;23803:2;23798:3;23794:12;23787:19;;23585:227;;;:::o;23818:367::-;;23981:67;24045:2;24040:3;23981:67;:::i;:::-;23974:74;;24078:34;24074:1;24069:3;24065:11;24058:55;24144:5;24139:2;24134:3;24130:12;24123:27;24176:2;24171:3;24167:12;24160:19;;23964:221;;;:::o;24191:371::-;;24354:67;24418:2;24413:3;24354:67;:::i;:::-;24347:74;;24451:34;24447:1;24442:3;24438:11;24431:55;24517:9;24512:2;24507:3;24503:12;24496:31;24553:2;24548:3;24544:12;24537:19;;24337:225;;;:::o;24568:324::-;;24731:67;24795:2;24790:3;24731:67;:::i;:::-;24724:74;;24828:28;24824:1;24819:3;24815:11;24808:49;24883:2;24878:3;24874:12;24867:19;;24714:178;;;:::o;24898:108::-;24975:24;24993:5;24975:24;:::i;:::-;24970:3;24963:37;24953:53;;:::o;25012:118::-;25099:24;25117:5;25099:24;:::i;:::-;25094:3;25087:37;25077:53;;:::o;25136:271::-;;25288:93;25377:3;25368:6;25288:93;:::i;:::-;25281:100;;25398:3;25391:10;;25270:137;;;;:::o;25413:273::-;;25566:94;25656:3;25647:6;25566:94;:::i;:::-;25559:101;;25677:3;25670:10;;25548:138;;;;:::o;25692:435::-;;25894:95;25985:3;25976:6;25894:95;:::i;:::-;25887:102;;26006:95;26097:3;26088:6;26006:95;:::i;:::-;25999:102;;26118:3;26111:10;;25876:251;;;;;:::o;26133:222::-;;26264:2;26253:9;26249:18;26241:26;;26277:71;26345:1;26334:9;26330:17;26321:6;26277:71;:::i;:::-;26231:124;;;;:::o;26361:672::-;;26610:3;26599:9;26595:19;26587:27;;26624:87;26708:1;26697:9;26693:17;26684:6;26624:87;:::i;:::-;26721:72;26789:2;26778:9;26774:18;26765:6;26721:72;:::i;:::-;26803;26871:2;26860:9;26856:18;26847:6;26803:72;:::i;:::-;26922:9;26916:4;26912:20;26907:2;26896:9;26892:18;26885:48;26950:76;27021:4;27012:6;26950:76;:::i;:::-;26942:84;;26577:456;;;;;;;:::o;27039:549::-;;27254:2;27243:9;27239:18;27231:26;;27267:79;27343:1;27332:9;27328:17;27319:6;27267:79;:::i;:::-;27356:72;27424:2;27413:9;27409:18;27400:6;27356:72;:::i;:::-;27475:9;27469:4;27465:20;27460:2;27449:9;27445:18;27438:48;27503:78;27576:4;27567:6;27503:78;:::i;:::-;27495:86;;27221:367;;;;;;:::o;27594:413::-;;27795:2;27784:9;27780:18;27772:26;;27844:9;27838:4;27834:20;27830:1;27819:9;27815:17;27808:47;27872:128;27995:4;27986:6;27872:128;:::i;:::-;27864:136;;27762:245;;;;:::o;28013:373::-;;28194:2;28183:9;28179:18;28171:26;;28243:9;28237:4;28233:20;28229:1;28218:9;28214:17;28207:47;28271:108;28374:4;28365:6;28271:108;:::i;:::-;28263:116;;28161:225;;;;:::o;28392:210::-;;28517:2;28506:9;28502:18;28494:26;;28530:65;28592:1;28581:9;28577:17;28568:6;28530:65;:::i;:::-;28484:118;;;;:::o;28608:313::-;;28759:2;28748:9;28744:18;28736:26;;28808:9;28802:4;28798:20;28794:1;28783:9;28779:17;28772:47;28836:78;28909:4;28900:6;28836:78;:::i;:::-;28828:86;;28726:195;;;;:::o;28927:419::-;;29131:2;29120:9;29116:18;29108:26;;29180:9;29174:4;29170:20;29166:1;29155:9;29151:17;29144:47;29208:131;29334:4;29208:131;:::i;:::-;29200:139;;29098:248;;;:::o;29352:419::-;;29556:2;29545:9;29541:18;29533:26;;29605:9;29599:4;29595:20;29591:1;29580:9;29576:17;29569:47;29633:131;29759:4;29633:131;:::i;:::-;29625:139;;29523:248;;;:::o;29777:419::-;;29981:2;29970:9;29966:18;29958:26;;30030:9;30024:4;30020:20;30016:1;30005:9;30001:17;29994:47;30058:131;30184:4;30058:131;:::i;:::-;30050:139;;29948:248;;;:::o;30202:419::-;;30406:2;30395:9;30391:18;30383:26;;30455:9;30449:4;30445:20;30441:1;30430:9;30426:17;30419:47;30483:131;30609:4;30483:131;:::i;:::-;30475:139;;30373:248;;;:::o;30627:419::-;;30831:2;30820:9;30816:18;30808:26;;30880:9;30874:4;30870:20;30866:1;30855:9;30851:17;30844:47;30908:131;31034:4;30908:131;:::i;:::-;30900:139;;30798:248;;;:::o;31052:419::-;;31256:2;31245:9;31241:18;31233:26;;31305:9;31299:4;31295:20;31291:1;31280:9;31276:17;31269:47;31333:131;31459:4;31333:131;:::i;:::-;31325:139;;31223:248;;;:::o;31477:419::-;;31681:2;31670:9;31666:18;31658:26;;31730:9;31724:4;31720:20;31716:1;31705:9;31701:17;31694:47;31758:131;31884:4;31758:131;:::i;:::-;31750:139;;31648:248;;;:::o;31902:419::-;;32106:2;32095:9;32091:18;32083:26;;32155:9;32149:4;32145:20;32141:1;32130:9;32126:17;32119:47;32183:131;32309:4;32183:131;:::i;:::-;32175:139;;32073:248;;;:::o;32327:419::-;;32531:2;32520:9;32516:18;32508:26;;32580:9;32574:4;32570:20;32566:1;32555:9;32551:17;32544:47;32608:131;32734:4;32608:131;:::i;:::-;32600:139;;32498:248;;;:::o;32752:419::-;;32956:2;32945:9;32941:18;32933:26;;33005:9;32999:4;32995:20;32991:1;32980:9;32976:17;32969:47;33033:131;33159:4;33033:131;:::i;:::-;33025:139;;32923:248;;;:::o;33177:419::-;;33381:2;33370:9;33366:18;33358:26;;33430:9;33424:4;33420:20;33416:1;33405:9;33401:17;33394:47;33458:131;33584:4;33458:131;:::i;:::-;33450:139;;33348:248;;;:::o;33602:419::-;;33806:2;33795:9;33791:18;33783:26;;33855:9;33849:4;33845:20;33841:1;33830:9;33826:17;33819:47;33883:131;34009:4;33883:131;:::i;:::-;33875:139;;33773:248;;;:::o;34027:419::-;;34231:2;34220:9;34216:18;34208:26;;34280:9;34274:4;34270:20;34266:1;34255:9;34251:17;34244:47;34308:131;34434:4;34308:131;:::i;:::-;34300:139;;34198:248;;;:::o;34452:419::-;;34656:2;34645:9;34641:18;34633:26;;34705:9;34699:4;34695:20;34691:1;34680:9;34676:17;34669:47;34733:131;34859:4;34733:131;:::i;:::-;34725:139;;34623:248;;;:::o;34877:419::-;;35081:2;35070:9;35066:18;35058:26;;35130:9;35124:4;35120:20;35116:1;35105:9;35101:17;35094:47;35158:131;35284:4;35158:131;:::i;:::-;35150:139;;35048:248;;;:::o;35302:419::-;;35506:2;35495:9;35491:18;35483:26;;35555:9;35549:4;35545:20;35541:1;35530:9;35526:17;35519:47;35583:131;35709:4;35583:131;:::i;:::-;35575:139;;35473:248;;;:::o;35727:419::-;;35931:2;35920:9;35916:18;35908:26;;35980:9;35974:4;35970:20;35966:1;35955:9;35951:17;35944:47;36008:131;36134:4;36008:131;:::i;:::-;36000:139;;35898:248;;;:::o;36152:419::-;;36356:2;36345:9;36341:18;36333:26;;36405:9;36399:4;36395:20;36391:1;36380:9;36376:17;36369:47;36433:131;36559:4;36433:131;:::i;:::-;36425:139;;36323:248;;;:::o;36577:419::-;;36781:2;36770:9;36766:18;36758:26;;36830:9;36824:4;36820:20;36816:1;36805:9;36801:17;36794:47;36858:131;36984:4;36858:131;:::i;:::-;36850:139;;36748:248;;;:::o;37002:419::-;;37206:2;37195:9;37191:18;37183:26;;37255:9;37249:4;37245:20;37241:1;37230:9;37226:17;37219:47;37283:131;37409:4;37283:131;:::i;:::-;37275:139;;37173:248;;;:::o;37427:419::-;;37631:2;37620:9;37616:18;37608:26;;37680:9;37674:4;37670:20;37666:1;37655:9;37651:17;37644:47;37708:131;37834:4;37708:131;:::i;:::-;37700:139;;37598:248;;;:::o;37852:419::-;;38056:2;38045:9;38041:18;38033:26;;38105:9;38099:4;38095:20;38091:1;38080:9;38076:17;38069:47;38133:131;38259:4;38133:131;:::i;:::-;38125:139;;38023:248;;;:::o;38277:419::-;;38481:2;38470:9;38466:18;38458:26;;38530:9;38524:4;38520:20;38516:1;38505:9;38501:17;38494:47;38558:131;38684:4;38558:131;:::i;:::-;38550:139;;38448:248;;;:::o;38702:419::-;;38906:2;38895:9;38891:18;38883:26;;38955:9;38949:4;38945:20;38941:1;38930:9;38926:17;38919:47;38983:131;39109:4;38983:131;:::i;:::-;38975:139;;38873:248;;;:::o;39127:419::-;;39331:2;39320:9;39316:18;39308:26;;39380:9;39374:4;39370:20;39366:1;39355:9;39351:17;39344:47;39408:131;39534:4;39408:131;:::i;:::-;39400:139;;39298:248;;;:::o;39552:419::-;;39756:2;39745:9;39741:18;39733:26;;39805:9;39799:4;39795:20;39791:1;39780:9;39776:17;39769:47;39833:131;39959:4;39833:131;:::i;:::-;39825:139;;39723:248;;;:::o;39977:419::-;;40181:2;40170:9;40166:18;40158:26;;40230:9;40224:4;40220:20;40216:1;40205:9;40201:17;40194:47;40258:131;40384:4;40258:131;:::i;:::-;40250:139;;40148:248;;;:::o;40402:419::-;;40606:2;40595:9;40591:18;40583:26;;40655:9;40649:4;40645:20;40641:1;40630:9;40626:17;40619:47;40683:131;40809:4;40683:131;:::i;:::-;40675:139;;40573:248;;;:::o;40827:419::-;;41031:2;41020:9;41016:18;41008:26;;41080:9;41074:4;41070:20;41066:1;41055:9;41051:17;41044:47;41108:131;41234:4;41108:131;:::i;:::-;41100:139;;40998:248;;;:::o;41252:419::-;;41456:2;41445:9;41441:18;41433:26;;41505:9;41499:4;41495:20;41491:1;41480:9;41476:17;41469:47;41533:131;41659:4;41533:131;:::i;:::-;41525:139;;41423:248;;;:::o;41677:419::-;;41881:2;41870:9;41866:18;41858:26;;41930:9;41924:4;41920:20;41916:1;41905:9;41901:17;41894:47;41958:131;42084:4;41958:131;:::i;:::-;41950:139;;41848:248;;;:::o;42102:419::-;;42306:2;42295:9;42291:18;42283:26;;42355:9;42349:4;42345:20;42341:1;42330:9;42326:17;42319:47;42383:131;42509:4;42383:131;:::i;:::-;42375:139;;42273:248;;;:::o;42527:419::-;;42731:2;42720:9;42716:18;42708:26;;42780:9;42774:4;42770:20;42766:1;42755:9;42751:17;42744:47;42808:131;42934:4;42808:131;:::i;:::-;42800:139;;42698:248;;;:::o;42952:419::-;;43156:2;43145:9;43141:18;43133:26;;43205:9;43199:4;43195:20;43191:1;43180:9;43176:17;43169:47;43233:131;43359:4;43233:131;:::i;:::-;43225:139;;43123:248;;;:::o;43377:222::-;;43508:2;43497:9;43493:18;43485:26;;43521:71;43589:1;43578:9;43574:17;43565:6;43521:71;:::i;:::-;43475:124;;;;:::o;43605:278::-;;43671:2;43665:9;43655:19;;43713:4;43705:6;43701:17;43820:6;43808:10;43805:22;43784:18;43772:10;43769:34;43766:62;43763:2;;;43831:13;;:::i;:::-;43763:2;43866:10;43862:2;43855:22;43645:238;;;;:::o;43889:326::-;;44040:18;44032:6;44029:30;44026:2;;;44062:13;;:::i;:::-;44026:2;44142:4;44138:9;44131:4;44123:6;44119:17;44115:33;44107:41;;44203:4;44197;44193:15;44185:23;;43955:260;;;:::o;44221:327::-;;44373:18;44365:6;44362:30;44359:2;;;44395:13;;:::i;:::-;44359:2;44475:4;44471:9;44464:4;44456:6;44452:17;44448:33;44440:41;;44536:4;44530;44526:15;44518:23;;44288:260;;;:::o;44554:142::-;;44654:3;44646:11;;44684:4;44679:3;44675:14;44667:22;;44636:60;;;:::o;44702:132::-;;44792:3;44784:11;;44822:4;44817:3;44813:14;44805:22;;44774:60;;;:::o;44840:144::-;;44915:3;44907:11;;44938:3;44935:1;44928:14;44972:4;44969:1;44959:18;44951:26;;44897:87;;;:::o;44990:124::-;;45101:5;45095:12;45085:22;;45074:40;;;:::o;45120:114::-;;45221:5;45215:12;45205:22;;45194:40;;;:::o;45240:98::-;;45325:5;45319:12;45309:22;;45298:40;;;:::o;45344:99::-;;45430:5;45424:12;45414:22;;45403:40;;;:::o;45449:123::-;;45561:4;45556:3;45552:14;45544:22;;45534:38;;;:::o;45578:113::-;;45680:4;45675:3;45671:14;45663:22;;45653:38;;;:::o;45697:194::-;;45840:6;45835:3;45828:19;45880:4;45875:3;45871:14;45856:29;;45818:73;;;;:::o;45897:184::-;;46030:6;46025:3;46018:19;46070:4;46065:3;46061:14;46046:29;;46008:73;;;;:::o;46087:168::-;;46204:6;46199:3;46192:19;46244:4;46239:3;46235:14;46220:29;;46182:73;;;;:::o;46261:147::-;;46399:3;46384:18;;46374:34;;;;:::o;46414:159::-;;46522:6;46517:3;46510:19;46562:4;46557:3;46553:14;46538:29;;46500:73;;;;:::o;46579:169::-;;46697:6;46692:3;46685:19;46737:4;46732:3;46728:14;46713:29;;46675:73;;;;:::o;46754:148::-;;46893:3;46878:18;;46868:34;;;;:::o;46908:96::-;;46974:24;46992:5;46974:24;:::i;:::-;46963:35;;46953:51;;;:::o;47010:104::-;;47084:24;47102:5;47084:24;:::i;:::-;47073:35;;47063:51;;;:::o;47120:90::-;;47197:5;47190:13;47183:21;47172:32;;47162:48;;;:::o;47216:77::-;;47282:5;47271:16;;47261:32;;;:::o;47299:149::-;;47375:66;47368:5;47364:78;47353:89;;47343:105;;;:::o;47454:126::-;;47531:42;47524:5;47520:54;47509:65;;47499:81;;;:::o;47586:77::-;;47652:5;47641:16;;47631:32;;;:::o;47669:134::-;;47760:37;47791:5;47760:37;:::i;:::-;47747:50;;47737:66;;;:::o;47809:126::-;;47892:37;47923:5;47892:37;:::i;:::-;47879:50;;47869:66;;;:::o;47941:113::-;;48024:24;48042:5;48024:24;:::i;:::-;48011:37;;48001:53;;;:::o;48060:154::-;48144:6;48139:3;48134;48121:30;48206:1;48197:6;48192:3;48188:16;48181:27;48111:103;;;:::o;48220:307::-;48288:1;48298:113;48312:6;48309:1;48306:13;48298:113;;;48397:1;48392:3;48388:11;48382:18;48378:1;48373:3;48369:11;48362:39;48334:2;48331:1;48327:10;48322:15;;48298:113;;;48429:6;48426:1;48423:13;48420:2;;;48509:1;48500:6;48495:3;48491:16;48484:27;48420:2;48269:258;;;;:::o;48533:48::-;48566:9;48587:102;;48679:2;48675:7;48670:2;48663:5;48659:14;48655:28;48645:38;;48635:54;;;:::o;48695:122::-;48768:24;48786:5;48768:24;:::i;:::-;48761:5;48758:35;48748:2;;48807:1;48804;48797:12;48748:2;48738:79;:::o;48823:116::-;48893:21;48908:5;48893:21;:::i;:::-;48886:5;48883:32;48873:2;;48929:1;48926;48919:12;48873:2;48863:76;:::o;48945:122::-;49018:24;49036:5;49018:24;:::i;:::-;49011:5;49008:35;48998:2;;49057:1;49054;49047:12;48998:2;48988:79;:::o;49073:120::-;49145:23;49162:5;49145:23;:::i;:::-;49138:5;49135:34;49125:2;;49183:1;49180;49173:12;49125:2;49115:78;:::o;49199:122::-;49272:24;49290:5;49272:24;:::i;:::-;49265:5;49262:35;49252:2;;49311:1;49308;49301:12;49252:2;49242:79;:::o

Swarm Source

ipfs://443b51ace40c2d8269d29e4fad10b0572ba077e60a3930314ffbf05ad0f73940
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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