ETH Price: $3,502.86 (+3.91%)
Gas: 3 Gwei

Token

Djeenies (DJN)
 

Overview

Max Total Supply

873 DJN

Holders

231

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
themafiaboss.eth
Balance
5 DJN
0xbf24d26b534a19e4f09c0b698b2cbfff820a452e
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:
Djeenies

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-11-02
*/

// SPDX-License-Identifier: MIT
 
// File: @openzeppelin/contracts/utils/Context.sol

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

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



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

pragma solidity ^0.7.0;
pragma abicoder v2;

contract Djeenies is ERC721, Ownable {

    uint256 public constant MAX_TOKENS = 7777;
    uint256 public price = 60 * 10**15; // .06 presale .07 normal
    uint public reserve = 200;
    bool public isSaleActive = false;
    bool public burningEnabled = false;
    bool public isClaimActive = false;
    mapping(address => bool) private _claimList;
    mapping(address => uint256) private _claimListClaimed;
    mapping(address => uint256) private _claimable;

    address public constant w1 = 0xc2E3941a6c2B8dbee57CDd9AFC4D5f359F1677a5;
    address public constant w2 = 0x80D6364C875b68b5A1e83e5d6dde7Ad9b12b62B6;

    constructor() ERC721("Djeenies", "DJN") payable {}
    
    function reserveTokens(address _to, uint256 _reserveAmount) public onlyOwner {        
        uint supply = totalSupply();
        for (uint i = 0; i < _reserveAmount; i++) {
            _safeMint(_to, supply + i);
        }
        reserve = reserve - _reserveAmount;
    }
    
    function mintDjeenies(uint256 _count) public payable {
        uint256 totalSupply = totalSupply();

        require(isSaleActive, "Sale is not active" );
        require(totalSupply + _count < MAX_TOKENS + 1, "Exceeds available djeenies");
        require(msg.value >= price * _count, "Ether value sent is not correct");
        
        for(uint256 i = 0; i < _count; i++){
                _safeMint(msg.sender, totalSupply + i);
        }
    }

    function claim(uint256 _count) public {
        require(isClaimActive, "Presale is not open");
        require(_claimList[msg.sender], "You are not in claimList");
        require(_count <= _claimable[msg.sender], "Incorrect amount to claim");
        require(_claimListClaimed[msg.sender] + _count <= _claimable[msg.sender], "Purchase exceeds max allowed");
        uint256 total = totalSupply();
        require(total + _count <= MAX_TOKENS, "Not enough left to mint");

        for (uint256 i = 0; i < _count; i++) {
            _claimListClaimed[msg.sender] += 1;
            _safeMint(msg.sender, total + i);
        }
    }

    function burn(uint256 tokenId) public virtual {
        require(burningEnabled, "burning is not yet enabled");
        require(_isApprovedOrOwner(_msgSender(), tokenId), "caller is not owner nor approved");
        super._burn(tokenId);
    }

    function addToClaimList(address[] calldata addresses, uint[] calldata _numberToClaim ) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Null address found");

            _claimList[addresses[i]] = true;
            _claimable[addresses[i]] = _numberToClaim[i];
            _claimListClaimed[addresses[i]] > 0 ? _claimListClaimed[addresses[i]] : 0;
        }
    }

    function addressInClaimlist(address addr) external view returns (bool) {
        return _claimList[addr];
    }

    function removeFromClaimList(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            _claimList[addresses[i]] = false;
        }
    }

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

    function setBaseURI(string memory _baseURI) external onlyOwner {
        _setBaseURI(_baseURI);
    }

    function flipClaimStatus() external onlyOwner {
        isClaimActive = !isClaimActive;
    }

    function flipSaleStatus() external onlyOwner {
        isSaleActive = !isSaleActive;
    }

    function toggleBurningEnabled() external onlyOwner {
        burningEnabled = !burningEnabled;
    }

    function withdrawAll() external onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0);
        uint256 withdrawal = (balance * 95) / 100;
        _withdraw(w1, withdrawal);
        _withdraw(w2, address(this).balance);
    }

    function _withdraw(address _address, uint256 _amount) internal {
        payable(_address).transfer(_amount);
    }

    
    function tokensByOwner(address _owner) external view returns(uint256[] memory ) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            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;
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"_numberToClaim","type":"uint256[]"}],"name":"addToClaimList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"addressInClaimlist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burningEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipClaimStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleStatus","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":"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":"isClaimActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintDjeenies","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromClaimList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","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":[],"name":"toggleBurningEnabled","outputs":[],"stateMutability":"nonpayable","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":"tokensByOwner","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":[],"name":"w1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"w2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266d529ae9e860000600b5560c8600c556000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506000600d60026101000a81548160ff0219169083151502179055506040518060400160405280600881526020017f446a65656e6965730000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f444a4e0000000000000000000000000000000000000000000000000000000000815250620000e96301ffc9a760e01b6200021c60201b60201c565b816006908051906020019062000101929190620002fc565b5080600790805190602001906200011a929190620002fc565b50620001336380ac58cd60e01b6200021c60201b60201c565b6200014b635b5e139f60e01b6200021c60201b60201c565b6200016363780e9d6360e01b6200021c60201b60201c565b5050600062000177620002f460201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35062000427565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916141562000288576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027f90620003f4565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928262000334576000855562000380565b82601f106200034f57805160ff191683800117855562000380565b8280016001018555821562000380579182015b828111156200037f57825182559160200191906001019062000362565b5b5090506200038f919062000393565b5090565b5b80821115620003ae57600081600090555060010162000394565b5090565b6000620003c1601c8362000416565b91507f4552433136353a20696e76616c696420696e74657266616365206964000000006000830152602082019050919050565b600060208201905081810360008301526200040f81620003b2565b9050919050565b600082825260208201905092915050565b6150ec80620004376000396000f3fe6080604052600436106102515760003560e01c806370a0823111610139578063a035b1fe116100b6578063cd3293de1161007a578063cd3293de1461087b578063ce03ec93146108a6578063e985e9c5146108bd578063f2fde38b146108fa578063f47c84c514610923578063f6d09c131461094e57610251565b8063a035b1fe14610798578063a22cb465146107c3578063b0f4cdcf146107ec578063b88d4fde14610815578063c87b56dd1461083e57610251565b8063853828b6116100fd578063853828b6146106e65780638da5cb5b146106fd57806391063aa71461072857806391b7f5ed1461074457806395d89b411461076d57610251565b806370a0823114610613578063715018a61461065057806378cf19e9146106675780637e44755b146106905780637fc27803146106bb57610251565b8063356150e9116101d25780634d754715116101965780634d754715146104ef5780634f6ccce71461051a57806355f804b314610557578063564566a8146105805780636352211e146105ab5780636c0360eb146105e857610251565b8063356150e914610434578063379607f51461045d5780633ee501b41461048657806342842e0e1461049d57806342966c68146104c657610251565b80630d381a28116102195780630d381a281461034f57806318160ddd1461038c57806323b872dd146103b75780632db0c07c146103e05780632f745c59146103f757610251565b806301ffc9a71461025657806303cf8a201461029357806306fdde03146102be578063081812fc146102e9578063095ea7b314610326575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613d4b565b61098b565b60405161028a91906149f4565b60405180910390f35b34801561029f57600080fd5b506102a86109f2565b6040516102b5919061496b565b60405180910390f35b3480156102ca57600080fd5b506102d3610a0a565b6040516102e09190614a0f565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b9190613dde565b610aac565b60405161031d919061496b565b60405180910390f35b34801561033257600080fd5b5061034d60048036038101906103489190613c55565b610b31565b005b34801561035b57600080fd5b5061037660048036038101906103719190613aea565b610c49565b60405161038391906149d2565b60405180910390f35b34801561039857600080fd5b506103a1610d42565b6040516103ae9190614df1565b60405180910390f35b3480156103c357600080fd5b506103de60048036038101906103d99190613b4f565b610d53565b005b3480156103ec57600080fd5b506103f5610db3565b005b34801561040357600080fd5b5061041e60048036038101906104199190613c55565b610e5b565b60405161042b9190614df1565b60405180910390f35b34801561044057600080fd5b5061045b60048036038101906104569190613cd6565b610eb6565b005b34801561046957600080fd5b50610484600480360381019061047f9190613dde565b6111a2565b005b34801561049257600080fd5b5061049b61148c565b005b3480156104a957600080fd5b506104c460048036038101906104bf9190613b4f565b611534565b005b3480156104d257600080fd5b506104ed60048036038101906104e89190613dde565b611554565b005b3480156104fb57600080fd5b506105046115ff565b60405161051191906149f4565b60405180910390f35b34801561052657600080fd5b50610541600480360381019061053c9190613dde565b611612565b60405161054e9190614df1565b60405180910390f35b34801561056357600080fd5b5061057e60048036038101906105799190613d9d565b611635565b005b34801561058c57600080fd5b506105956116bd565b6040516105a291906149f4565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd9190613dde565b6116d0565b6040516105df919061496b565b60405180910390f35b3480156105f457600080fd5b506105fd611707565b60405161060a9190614a0f565b60405180910390f35b34801561061f57600080fd5b5061063a60048036038101906106359190613aea565b6117a9565b6040516106479190614df1565b60405180910390f35b34801561065c57600080fd5b50610665611868565b005b34801561067357600080fd5b5061068e60048036038101906106899190613c55565b6119a5565b005b34801561069c57600080fd5b506106a5611a62565b6040516106b2919061496b565b60405180910390f35b3480156106c757600080fd5b506106d0611a7a565b6040516106dd91906149f4565b60405180910390f35b3480156106f257600080fd5b506106fb611a8d565b005b34801561070957600080fd5b50610712611b6d565b60405161071f919061496b565b60405180910390f35b610742600480360381019061073d9190613dde565b611b97565b005b34801561075057600080fd5b5061076b60048036038101906107669190613dde565b611cab565b005b34801561077957600080fd5b50610782611d31565b60405161078f9190614a0f565b60405180910390f35b3480156107a457600080fd5b506107ad611dd3565b6040516107ba9190614df1565b60405180910390f35b3480156107cf57600080fd5b506107ea60048036038101906107e59190613c19565b611dd9565b005b3480156107f857600080fd5b50610813600480360381019061080e9190613c91565b611f5a565b005b34801561082157600080fd5b5061083c60048036038101906108379190613b9e565b61206e565b005b34801561084a57600080fd5b5061086560048036038101906108609190613dde565b6120d0565b6040516108729190614a0f565b60405180910390f35b34801561088757600080fd5b50610890612253565b60405161089d9190614df1565b60405180910390f35b3480156108b257600080fd5b506108bb612259565b005b3480156108c957600080fd5b506108e460048036038101906108df9190613b13565b612301565b6040516108f191906149f4565b60405180910390f35b34801561090657600080fd5b50610921600480360381019061091c9190613aea565b612395565b005b34801561092f57600080fd5b50610938612541565b6040516109459190614df1565b60405180910390f35b34801561095a57600080fd5b5061097560048036038101906109709190613aea565b612547565b60405161098291906149f4565b60405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b7380d6364c875b68b5a1e83e5d6dde7ad9b12b62b681565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610aa25780601f10610a7757610100808354040283529160200191610aa2565b820191906000526020600020905b815481529060010190602001808311610a8557829003601f168201915b5050505050905090565b6000610ab78261259d565b610af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aed90614c71565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b3c826116d0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba490614d31565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bcc6125ba565b73ffffffffffffffffffffffffffffffffffffffff161480610bfb5750610bfa81610bf56125ba565b612301565b5b610c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3190614bd1565b60405180910390fd5b610c4483836125c2565b505050565b60606000610c56836117a9565b90506000811415610cb157600067ffffffffffffffff81118015610c7957600080fd5b50604051908082528060200260200182016040528015610ca85781602001602082028036833780820191505090505b50915050610d3d565b60008167ffffffffffffffff81118015610cca57600080fd5b50604051908082528060200260200182016040528015610cf95781602001602082028036833780820191505090505b50905060005b82811015610d3657610d118582610e5b565b828281518110610d1d57fe5b6020026020010181815250508080600101915050610cff565b8193505050505b919050565b6000610d4e600261267b565b905090565b610d64610d5e6125ba565b82612690565b610da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9a90614d51565b60405180910390fd5b610dae83838361276e565b505050565b610dbb6125ba565b73ffffffffffffffffffffffffffffffffffffffff16610dd9611b6d565b73ffffffffffffffffffffffffffffffffffffffff1614610e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2690614c91565b60405180910390fd5b600d60029054906101000a900460ff1615600d60026101000a81548160ff021916908315150217905550565b6000610eae82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061298590919063ffffffff16565b905092915050565b610ebe6125ba565b73ffffffffffffffffffffffffffffffffffffffff16610edc611b6d565b73ffffffffffffffffffffffffffffffffffffffff1614610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990614c91565b60405180910390fd5b60005b8484905081101561119b57600073ffffffffffffffffffffffffffffffffffffffff16858583818110610f6457fe5b9050602002016020810190610f799190613aea565b73ffffffffffffffffffffffffffffffffffffffff161415610fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc790614ad1565b60405180910390fd5b6001600e6000878785818110610fe257fe5b9050602002016020810190610ff79190613aea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555082828281811061105457fe5b905060200201356010600087878581811061106b57fe5b90506020020160208101906110809190613aea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600f60008787858181106110d057fe5b90506020020160208101906110e59190613aea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161112c57600061118d565b600f600086868481811061113c57fe5b90506020020160208101906111519190613aea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b508080600101915050610f35565b5050505050565b600d60029054906101000a900460ff166111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890614d11565b60405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127490614d91565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548111156112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f690614a91565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540111156113c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b990614db1565b60405180910390fd5b60006113cc610d42565b9050611e618282011115611415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140c90614c51565b60405180910390fd5b60005b82811015611487576001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061147a3382840161299f565b8080600101915050611418565b505050565b6114946125ba565b73ffffffffffffffffffffffffffffffffffffffff166114b2611b6d565b73ffffffffffffffffffffffffffffffffffffffff1614611508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ff90614c91565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b61154f8383836040518060200160405280600081525061206e565b505050565b600d60019054906101000a900460ff166115a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159a90614a51565b60405180910390fd5b6115b46115ae6125ba565b82612690565b6115f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ea90614cf1565b60405180910390fd5b6115fc816129bd565b50565b600d60019054906101000a900460ff1681565b600080611629836002612af790919063ffffffff16565b50905080915050919050565b61163d6125ba565b73ffffffffffffffffffffffffffffffffffffffff1661165b611b6d565b73ffffffffffffffffffffffffffffffffffffffff16146116b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a890614c91565b60405180910390fd5b6116ba81612b23565b50565b600d60009054906101000a900460ff1681565b60006117008260405180606001604052806029815260200161508e602991396002612b3d9092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561179f5780601f106117745761010080835404028352916020019161179f565b820191906000526020600020905b81548152906001019060200180831161178257829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561181a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181190614bf1565b60405180910390fd5b611861600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612b5c565b9050919050565b6118706125ba565b73ffffffffffffffffffffffffffffffffffffffff1661188e611b6d565b73ffffffffffffffffffffffffffffffffffffffff16146118e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118db90614c91565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6119ad6125ba565b73ffffffffffffffffffffffffffffffffffffffff166119cb611b6d565b73ffffffffffffffffffffffffffffffffffffffff1614611a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1890614c91565b60405180910390fd5b6000611a2b610d42565b905060005b82811015611a5157611a448482840161299f565b8080600101915050611a30565b5081600c5403600c81905550505050565b73c2e3941a6c2b8dbee57cdd9afc4d5f359f1677a581565b600d60029054906101000a900460ff1681565b611a956125ba565b73ffffffffffffffffffffffffffffffffffffffff16611ab3611b6d565b73ffffffffffffffffffffffffffffffffffffffff1614611b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0090614c91565b60405180910390fd5b600047905060008111611b1b57600080fd5b60006064605f830281611b2a57fe5b049050611b4b73c2e3941a6c2b8dbee57cdd9afc4d5f359f1677a582612b71565b611b697380d6364c875b68b5a1e83e5d6dde7ad9b12b62b647612b71565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000611ba1610d42565b9050600d60009054906101000a900460ff16611bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be990614b51565b60405180910390fd5b6001611e610182820110611c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3290614dd1565b60405180910390fd5b81600b5402341015611c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7990614b71565b60405180910390fd5b60005b82811015611ca657611c993382840161299f565b8080600101915050611c85565b505050565b611cb36125ba565b73ffffffffffffffffffffffffffffffffffffffff16611cd1611b6d565b73ffffffffffffffffffffffffffffffffffffffff1614611d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1e90614c91565b60405180910390fd5b80600b8190555050565b606060078054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611dc95780601f10611d9e57610100808354040283529160200191611dc9565b820191906000526020600020905b815481529060010190602001808311611dac57829003601f168201915b5050505050905090565b600b5481565b611de16125ba565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4690614b31565b60405180910390fd5b8060056000611e5c6125ba565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f096125ba565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f4e91906149f4565b60405180910390a35050565b611f626125ba565b73ffffffffffffffffffffffffffffffffffffffff16611f80611b6d565b73ffffffffffffffffffffffffffffffffffffffff1614611fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcd90614c91565b60405180910390fd5b60005b82829050811015612069576000600e6000858585818110611ff657fe5b905060200201602081019061200b9190613aea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080600101915050611fd9565b505050565b61207f6120796125ba565b83612690565b6120be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b590614d51565b60405180910390fd5b6120ca84848484612bbc565b50505050565b60606120db8261259d565b61211a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211190614cd1565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121c35780601f10612198576101008083540402835291602001916121c3565b820191906000526020600020905b8154815290600101906020018083116121a657829003601f168201915b5050505050905060006121d4611707565b90506000815114156121ea57819250505061224e565b60008251111561221f578082604051602001612207929190614947565b6040516020818303038152906040529250505061224e565b8061222985612c18565b60405160200161223a929190614947565b604051602081830303815290604052925050505b919050565b600c5481565b6122616125ba565b73ffffffffffffffffffffffffffffffffffffffff1661227f611b6d565b73ffffffffffffffffffffffffffffffffffffffff16146122d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cc90614c91565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61239d6125ba565b73ffffffffffffffffffffffffffffffffffffffff166123bb611b6d565b73ffffffffffffffffffffffffffffffffffffffff1614612411576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240890614c91565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247890614ab1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611e6181565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60006125b3826002612d5f90919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612635836116d0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061268982600001612d79565b9050919050565b600061269b8261259d565b6126da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d190614bb1565b60405180910390fd5b60006126e5836116d0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061275457508373ffffffffffffffffffffffffffffffffffffffff1661273c84610aac565b73ffffffffffffffffffffffffffffffffffffffff16145b8061276557506127648185612301565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661278e826116d0565b73ffffffffffffffffffffffffffffffffffffffff16146127e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127db90614cb1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284b90614b11565b60405180910390fd5b61285f838383612d8a565b61286a6000826125c2565b6128bb81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612d8f90919063ffffffff16565b5061290d81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612da990919063ffffffff16565b5061292481836002612dc39092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006129948360000183612df8565b60001c905092915050565b6129b9828260405180602001604052806000815250612e65565b5050565b60006129c8826116d0565b90506129d681600084612d8a565b6129e16000836125c2565b60006008600084815260200190815260200160002080546001816001161561010002031660029004905014612a3057600860008381526020019081526020016000206000612a2f919061382a565b5b612a8182600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612d8f90919063ffffffff16565b50612a96826002612ec090919063ffffffff16565b5081600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080600080612b0a8660000186612eda565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190612b39929190613872565b5050565b6000612b50846000018460001b84612f5d565b60001c90509392505050565b6000612b6a82600001612fee565b9050919050565b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612bb7573d6000803e3d6000fd5b505050565b612bc784848461276e565b612bd384848484612fff565b612c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0990614a71565b60405180910390fd5b50505050565b60606000821415612c60576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d5a565b600082905060005b60008214612c8a578080600101915050600a8281612c8257fe5b049150612c68565b60008167ffffffffffffffff81118015612ca357600080fd5b506040519080825280601f01601f191660200182016040528015612cd65781602001600182028036833780820191505090505b50905060006001830390508593505b60008414612d5257600a8481612cf757fe5b0660300160f81b82828060019003935081518110612d1157fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481612d4a57fe5b049350612ce5565b819450505050505b919050565b6000612d71836000018360001b613163565b905092915050565b600081600001805490509050919050565b505050565b6000612da1836000018360001b613186565b905092915050565b6000612dbb836000018360001b61326e565b905092915050565b6000612def846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b6132de565b90509392505050565b600081836000018054905011612e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3a90614a31565b60405180910390fd5b826000018281548110612e5257fe5b9060005260206000200154905092915050565b612e6f83836133ba565b612e7c6000848484612fff565b612ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb290614a71565b60405180910390fd5b505050565b6000612ed2836000018360001b613548565b905092915050565b60008082846000018054905011612f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1d90614c11565b60405180910390fd5b6000846000018481548110612f3757fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb69190614a0f565b60405180910390fd5b50846000016001820381548110612fd257fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006130208473ffffffffffffffffffffffffffffffffffffffff16613661565b61302d576001905061315b565b60006130f463150b7a0260e01b6130426125ba565b8887876040516024016130589493929190614986565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405180606001604052806032815260200161505c603291398773ffffffffffffffffffffffffffffffffffffffff166136749092919063ffffffff16565b905060008180602001905181019061310c9190613d74565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b6000808360010160008481526020019081526020016000205490506000811461326257600060018203905060006001866000018054905003905060008660000182815481106131d157fe5b90600052602060002001549050808760000184815481106131ee57fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061322657fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050613268565b60009150505b92915050565b600061327a838361368c565b6132d35782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506132d8565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415613385578460000160405180604001604052808681526020018581525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505084600001805490508560010160008681526020019081526020016000208190555060019150506133b3565b8285600001600183038154811061339857fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561342a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342190614c31565b60405180910390fd5b6134338161259d565b15613473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346a90614af1565b60405180910390fd5b61347f60008383612d8a565b6134d081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612da990919063ffffffff16565b506134e781836002612dc39092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008083600101600084815260200190815260200160002054905060008114613655576000600182039050600060018660000180549050039050600086600001828154811061359357fe5b90600052602060002090600202019050808760000184815481106135b357fe5b906000526020600020906002020160008201548160000155600182015481600101559050506001830187600101600083600001548152602001908152602001600020819055508660000180548061360657fe5b600190038181906000526020600020906002020160008082016000905560018201600090555050905586600101600087815260200190815260200160002060009055600194505050505061365b565b60009150505b92915050565b600080823b905060008111915050919050565b606061368384846000856136af565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b6060824710156136f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136eb90614b91565b60405180910390fd5b6136fd85613661565b61373c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161373390614d71565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516137659190614930565b60006040518083038185875af1925050503d80600081146137a2576040519150601f19603f3d011682016040523d82523d6000602084013e6137a7565b606091505b50915091506137b78282866137c3565b92505050949350505050565b606083156137d357829050613823565b6000835111156137e65782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161381a9190614a0f565b60405180910390fd5b9392505050565b50805460018160011615610100020316600290046000825580601f10613850575061386f565b601f01602090049060005260206000209081019061386e9190613900565b5b50565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826138a857600085556138ef565b82601f106138c157805160ff19168380011785556138ef565b828001600101855582156138ef579182015b828111156138ee5782518255916020019190600101906138d3565b5b5090506138fc9190613900565b5090565b5b80821115613919576000816000905550600101613901565b5090565b600061393061392b84614e3d565b614e0c565b90508281526020810184848401111561394857600080fd5b613953848285614faa565b509392505050565b600061396e61396984614e6d565b614e0c565b90508281526020810184848401111561398657600080fd5b613991848285614faa565b509392505050565b6000813590506139a881614fff565b92915050565b60008083601f8401126139c057600080fd5b8235905067ffffffffffffffff8111156139d957600080fd5b6020830191508360208202830111156139f157600080fd5b9250929050565b60008083601f840112613a0a57600080fd5b8235905067ffffffffffffffff811115613a2357600080fd5b602083019150836020820283011115613a3b57600080fd5b9250929050565b600081359050613a5181615016565b92915050565b600081359050613a668161502d565b92915050565b600081519050613a7b8161502d565b92915050565b600082601f830112613a9257600080fd5b8135613aa284826020860161391d565b91505092915050565b600082601f830112613abc57600080fd5b8135613acc84826020860161395b565b91505092915050565b600081359050613ae481615044565b92915050565b600060208284031215613afc57600080fd5b6000613b0a84828501613999565b91505092915050565b60008060408385031215613b2657600080fd5b6000613b3485828601613999565b9250506020613b4585828601613999565b9150509250929050565b600080600060608486031215613b6457600080fd5b6000613b7286828701613999565b9350506020613b8386828701613999565b9250506040613b9486828701613ad5565b9150509250925092565b60008060008060808587031215613bb457600080fd5b6000613bc287828801613999565b9450506020613bd387828801613999565b9350506040613be487828801613ad5565b925050606085013567ffffffffffffffff811115613c0157600080fd5b613c0d87828801613a81565b91505092959194509250565b60008060408385031215613c2c57600080fd5b6000613c3a85828601613999565b9250506020613c4b85828601613a42565b9150509250929050565b60008060408385031215613c6857600080fd5b6000613c7685828601613999565b9250506020613c8785828601613ad5565b9150509250929050565b60008060208385031215613ca457600080fd5b600083013567ffffffffffffffff811115613cbe57600080fd5b613cca858286016139ae565b92509250509250929050565b60008060008060408587031215613cec57600080fd5b600085013567ffffffffffffffff811115613d0657600080fd5b613d12878288016139ae565b9450945050602085013567ffffffffffffffff811115613d3157600080fd5b613d3d878288016139f8565b925092505092959194509250565b600060208284031215613d5d57600080fd5b6000613d6b84828501613a57565b91505092915050565b600060208284031215613d8657600080fd5b6000613d9484828501613a6c565b91505092915050565b600060208284031215613daf57600080fd5b600082013567ffffffffffffffff811115613dc957600080fd5b613dd584828501613aab565b91505092915050565b600060208284031215613df057600080fd5b6000613dfe84828501613ad5565b91505092915050565b6000613e138383614912565b60208301905092915050565b613e2881614f36565b82525050565b613e3781614f24565b82525050565b6000613e4882614ead565b613e528185614edb565b9350613e5d83614e9d565b8060005b83811015613e8e578151613e758882613e07565b9750613e8083614ece565b925050600181019050613e61565b5085935050505092915050565b613ea481614f48565b82525050565b6000613eb582614eb8565b613ebf8185614eec565b9350613ecf818560208601614fb9565b613ed881614fee565b840191505092915050565b6000613eee82614eb8565b613ef88185614efd565b9350613f08818560208601614fb9565b80840191505092915050565b6000613f1f82614ec3565b613f298185614f08565b9350613f39818560208601614fb9565b613f4281614fee565b840191505092915050565b6000613f5882614ec3565b613f628185614f19565b9350613f72818560208601614fb9565b80840191505092915050565b6000613f8b602283614f08565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ff1601a83614f08565b91507f6275726e696e67206973206e6f742079657420656e61626c65640000000000006000830152602082019050919050565b6000614031603283614f08565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614097601983614f08565b91507f496e636f727265637420616d6f756e7420746f20636c61696d000000000000006000830152602082019050919050565b60006140d7602683614f08565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061413d601283614f08565b91507f4e756c6c206164647265737320666f756e6400000000000000000000000000006000830152602082019050919050565b600061417d601c83614f08565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006141bd602483614f08565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614223601983614f08565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614263601283614f08565b91507f53616c65206973206e6f742061637469766500000000000000000000000000006000830152602082019050919050565b60006142a3601f83614f08565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b60006142e3602683614f08565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614349602c83614f08565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006143af603883614f08565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614415602a83614f08565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061447b602283614f08565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006144e1602083614f08565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614521601783614f08565b91507f4e6f7420656e6f756768206c65667420746f206d696e740000000000000000006000830152602082019050919050565b6000614561602c83614f08565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006145c7602083614f08565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614607602983614f08565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061466d602f83614f08565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006146d3602083614f08565b91507f63616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665646000830152602082019050919050565b6000614713601383614f08565b91507f50726573616c65206973206e6f74206f70656e000000000000000000000000006000830152602082019050919050565b6000614753602183614f08565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006147b9603183614f08565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061481f601d83614f08565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b600061485f601883614f08565b91507f596f7520617265206e6f7420696e20636c61696d4c69737400000000000000006000830152602082019050919050565b600061489f601c83614f08565b91507f50757263686173652065786365656473206d617820616c6c6f776564000000006000830152602082019050919050565b60006148df601a83614f08565b91507f4578636565647320617661696c61626c6520646a65656e6965730000000000006000830152602082019050919050565b61491b81614fa0565b82525050565b61492a81614fa0565b82525050565b600061493c8284613ee3565b915081905092915050565b60006149538285613f4d565b915061495f8284613f4d565b91508190509392505050565b60006020820190506149806000830184613e2e565b92915050565b600060808201905061499b6000830187613e1f565b6149a86020830186613e2e565b6149b56040830185614921565b81810360608301526149c78184613eaa565b905095945050505050565b600060208201905081810360008301526149ec8184613e3d565b905092915050565b6000602082019050614a096000830184613e9b565b92915050565b60006020820190508181036000830152614a298184613f14565b905092915050565b60006020820190508181036000830152614a4a81613f7e565b9050919050565b60006020820190508181036000830152614a6a81613fe4565b9050919050565b60006020820190508181036000830152614a8a81614024565b9050919050565b60006020820190508181036000830152614aaa8161408a565b9050919050565b60006020820190508181036000830152614aca816140ca565b9050919050565b60006020820190508181036000830152614aea81614130565b9050919050565b60006020820190508181036000830152614b0a81614170565b9050919050565b60006020820190508181036000830152614b2a816141b0565b9050919050565b60006020820190508181036000830152614b4a81614216565b9050919050565b60006020820190508181036000830152614b6a81614256565b9050919050565b60006020820190508181036000830152614b8a81614296565b9050919050565b60006020820190508181036000830152614baa816142d6565b9050919050565b60006020820190508181036000830152614bca8161433c565b9050919050565b60006020820190508181036000830152614bea816143a2565b9050919050565b60006020820190508181036000830152614c0a81614408565b9050919050565b60006020820190508181036000830152614c2a8161446e565b9050919050565b60006020820190508181036000830152614c4a816144d4565b9050919050565b60006020820190508181036000830152614c6a81614514565b9050919050565b60006020820190508181036000830152614c8a81614554565b9050919050565b60006020820190508181036000830152614caa816145ba565b9050919050565b60006020820190508181036000830152614cca816145fa565b9050919050565b60006020820190508181036000830152614cea81614660565b9050919050565b60006020820190508181036000830152614d0a816146c6565b9050919050565b60006020820190508181036000830152614d2a81614706565b9050919050565b60006020820190508181036000830152614d4a81614746565b9050919050565b60006020820190508181036000830152614d6a816147ac565b9050919050565b60006020820190508181036000830152614d8a81614812565b9050919050565b60006020820190508181036000830152614daa81614852565b9050919050565b60006020820190508181036000830152614dca81614892565b9050919050565b60006020820190508181036000830152614dea816148d2565b9050919050565b6000602082019050614e066000830184614921565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614e3357614e32614fec565b5b8060405250919050565b600067ffffffffffffffff821115614e5857614e57614fec565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614e8857614e87614fec565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614f2f82614f80565b9050919050565b6000614f4182614f80565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614fd7578082015181840152602081019050614fbc565b83811115614fe6576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b61500881614f24565b811461501357600080fd5b50565b61501f81614f48565b811461502a57600080fd5b50565b61503681614f54565b811461504157600080fd5b50565b61504d81614fa0565b811461505857600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220d69f45783375f683d422a5257f187ff075a01c49c5454fc5dc34f76e493e581364736f6c63430007060033

Deployed Bytecode

0x6080604052600436106102515760003560e01c806370a0823111610139578063a035b1fe116100b6578063cd3293de1161007a578063cd3293de1461087b578063ce03ec93146108a6578063e985e9c5146108bd578063f2fde38b146108fa578063f47c84c514610923578063f6d09c131461094e57610251565b8063a035b1fe14610798578063a22cb465146107c3578063b0f4cdcf146107ec578063b88d4fde14610815578063c87b56dd1461083e57610251565b8063853828b6116100fd578063853828b6146106e65780638da5cb5b146106fd57806391063aa71461072857806391b7f5ed1461074457806395d89b411461076d57610251565b806370a0823114610613578063715018a61461065057806378cf19e9146106675780637e44755b146106905780637fc27803146106bb57610251565b8063356150e9116101d25780634d754715116101965780634d754715146104ef5780634f6ccce71461051a57806355f804b314610557578063564566a8146105805780636352211e146105ab5780636c0360eb146105e857610251565b8063356150e914610434578063379607f51461045d5780633ee501b41461048657806342842e0e1461049d57806342966c68146104c657610251565b80630d381a28116102195780630d381a281461034f57806318160ddd1461038c57806323b872dd146103b75780632db0c07c146103e05780632f745c59146103f757610251565b806301ffc9a71461025657806303cf8a201461029357806306fdde03146102be578063081812fc146102e9578063095ea7b314610326575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613d4b565b61098b565b60405161028a91906149f4565b60405180910390f35b34801561029f57600080fd5b506102a86109f2565b6040516102b5919061496b565b60405180910390f35b3480156102ca57600080fd5b506102d3610a0a565b6040516102e09190614a0f565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b9190613dde565b610aac565b60405161031d919061496b565b60405180910390f35b34801561033257600080fd5b5061034d60048036038101906103489190613c55565b610b31565b005b34801561035b57600080fd5b5061037660048036038101906103719190613aea565b610c49565b60405161038391906149d2565b60405180910390f35b34801561039857600080fd5b506103a1610d42565b6040516103ae9190614df1565b60405180910390f35b3480156103c357600080fd5b506103de60048036038101906103d99190613b4f565b610d53565b005b3480156103ec57600080fd5b506103f5610db3565b005b34801561040357600080fd5b5061041e60048036038101906104199190613c55565b610e5b565b60405161042b9190614df1565b60405180910390f35b34801561044057600080fd5b5061045b60048036038101906104569190613cd6565b610eb6565b005b34801561046957600080fd5b50610484600480360381019061047f9190613dde565b6111a2565b005b34801561049257600080fd5b5061049b61148c565b005b3480156104a957600080fd5b506104c460048036038101906104bf9190613b4f565b611534565b005b3480156104d257600080fd5b506104ed60048036038101906104e89190613dde565b611554565b005b3480156104fb57600080fd5b506105046115ff565b60405161051191906149f4565b60405180910390f35b34801561052657600080fd5b50610541600480360381019061053c9190613dde565b611612565b60405161054e9190614df1565b60405180910390f35b34801561056357600080fd5b5061057e60048036038101906105799190613d9d565b611635565b005b34801561058c57600080fd5b506105956116bd565b6040516105a291906149f4565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd9190613dde565b6116d0565b6040516105df919061496b565b60405180910390f35b3480156105f457600080fd5b506105fd611707565b60405161060a9190614a0f565b60405180910390f35b34801561061f57600080fd5b5061063a60048036038101906106359190613aea565b6117a9565b6040516106479190614df1565b60405180910390f35b34801561065c57600080fd5b50610665611868565b005b34801561067357600080fd5b5061068e60048036038101906106899190613c55565b6119a5565b005b34801561069c57600080fd5b506106a5611a62565b6040516106b2919061496b565b60405180910390f35b3480156106c757600080fd5b506106d0611a7a565b6040516106dd91906149f4565b60405180910390f35b3480156106f257600080fd5b506106fb611a8d565b005b34801561070957600080fd5b50610712611b6d565b60405161071f919061496b565b60405180910390f35b610742600480360381019061073d9190613dde565b611b97565b005b34801561075057600080fd5b5061076b60048036038101906107669190613dde565b611cab565b005b34801561077957600080fd5b50610782611d31565b60405161078f9190614a0f565b60405180910390f35b3480156107a457600080fd5b506107ad611dd3565b6040516107ba9190614df1565b60405180910390f35b3480156107cf57600080fd5b506107ea60048036038101906107e59190613c19565b611dd9565b005b3480156107f857600080fd5b50610813600480360381019061080e9190613c91565b611f5a565b005b34801561082157600080fd5b5061083c60048036038101906108379190613b9e565b61206e565b005b34801561084a57600080fd5b5061086560048036038101906108609190613dde565b6120d0565b6040516108729190614a0f565b60405180910390f35b34801561088757600080fd5b50610890612253565b60405161089d9190614df1565b60405180910390f35b3480156108b257600080fd5b506108bb612259565b005b3480156108c957600080fd5b506108e460048036038101906108df9190613b13565b612301565b6040516108f191906149f4565b60405180910390f35b34801561090657600080fd5b50610921600480360381019061091c9190613aea565b612395565b005b34801561092f57600080fd5b50610938612541565b6040516109459190614df1565b60405180910390f35b34801561095a57600080fd5b5061097560048036038101906109709190613aea565b612547565b60405161098291906149f4565b60405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b7380d6364c875b68b5a1e83e5d6dde7ad9b12b62b681565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610aa25780601f10610a7757610100808354040283529160200191610aa2565b820191906000526020600020905b815481529060010190602001808311610a8557829003601f168201915b5050505050905090565b6000610ab78261259d565b610af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aed90614c71565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b3c826116d0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba490614d31565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bcc6125ba565b73ffffffffffffffffffffffffffffffffffffffff161480610bfb5750610bfa81610bf56125ba565b612301565b5b610c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3190614bd1565b60405180910390fd5b610c4483836125c2565b505050565b60606000610c56836117a9565b90506000811415610cb157600067ffffffffffffffff81118015610c7957600080fd5b50604051908082528060200260200182016040528015610ca85781602001602082028036833780820191505090505b50915050610d3d565b60008167ffffffffffffffff81118015610cca57600080fd5b50604051908082528060200260200182016040528015610cf95781602001602082028036833780820191505090505b50905060005b82811015610d3657610d118582610e5b565b828281518110610d1d57fe5b6020026020010181815250508080600101915050610cff565b8193505050505b919050565b6000610d4e600261267b565b905090565b610d64610d5e6125ba565b82612690565b610da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9a90614d51565b60405180910390fd5b610dae83838361276e565b505050565b610dbb6125ba565b73ffffffffffffffffffffffffffffffffffffffff16610dd9611b6d565b73ffffffffffffffffffffffffffffffffffffffff1614610e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2690614c91565b60405180910390fd5b600d60029054906101000a900460ff1615600d60026101000a81548160ff021916908315150217905550565b6000610eae82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061298590919063ffffffff16565b905092915050565b610ebe6125ba565b73ffffffffffffffffffffffffffffffffffffffff16610edc611b6d565b73ffffffffffffffffffffffffffffffffffffffff1614610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990614c91565b60405180910390fd5b60005b8484905081101561119b57600073ffffffffffffffffffffffffffffffffffffffff16858583818110610f6457fe5b9050602002016020810190610f799190613aea565b73ffffffffffffffffffffffffffffffffffffffff161415610fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc790614ad1565b60405180910390fd5b6001600e6000878785818110610fe257fe5b9050602002016020810190610ff79190613aea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555082828281811061105457fe5b905060200201356010600087878581811061106b57fe5b90506020020160208101906110809190613aea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600f60008787858181106110d057fe5b90506020020160208101906110e59190613aea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161112c57600061118d565b600f600086868481811061113c57fe5b90506020020160208101906111519190613aea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b508080600101915050610f35565b5050505050565b600d60029054906101000a900460ff166111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890614d11565b60405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127490614d91565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548111156112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f690614a91565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540111156113c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b990614db1565b60405180910390fd5b60006113cc610d42565b9050611e618282011115611415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140c90614c51565b60405180910390fd5b60005b82811015611487576001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061147a3382840161299f565b8080600101915050611418565b505050565b6114946125ba565b73ffffffffffffffffffffffffffffffffffffffff166114b2611b6d565b73ffffffffffffffffffffffffffffffffffffffff1614611508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ff90614c91565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b61154f8383836040518060200160405280600081525061206e565b505050565b600d60019054906101000a900460ff166115a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159a90614a51565b60405180910390fd5b6115b46115ae6125ba565b82612690565b6115f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ea90614cf1565b60405180910390fd5b6115fc816129bd565b50565b600d60019054906101000a900460ff1681565b600080611629836002612af790919063ffffffff16565b50905080915050919050565b61163d6125ba565b73ffffffffffffffffffffffffffffffffffffffff1661165b611b6d565b73ffffffffffffffffffffffffffffffffffffffff16146116b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a890614c91565b60405180910390fd5b6116ba81612b23565b50565b600d60009054906101000a900460ff1681565b60006117008260405180606001604052806029815260200161508e602991396002612b3d9092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561179f5780601f106117745761010080835404028352916020019161179f565b820191906000526020600020905b81548152906001019060200180831161178257829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561181a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181190614bf1565b60405180910390fd5b611861600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612b5c565b9050919050565b6118706125ba565b73ffffffffffffffffffffffffffffffffffffffff1661188e611b6d565b73ffffffffffffffffffffffffffffffffffffffff16146118e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118db90614c91565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6119ad6125ba565b73ffffffffffffffffffffffffffffffffffffffff166119cb611b6d565b73ffffffffffffffffffffffffffffffffffffffff1614611a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1890614c91565b60405180910390fd5b6000611a2b610d42565b905060005b82811015611a5157611a448482840161299f565b8080600101915050611a30565b5081600c5403600c81905550505050565b73c2e3941a6c2b8dbee57cdd9afc4d5f359f1677a581565b600d60029054906101000a900460ff1681565b611a956125ba565b73ffffffffffffffffffffffffffffffffffffffff16611ab3611b6d565b73ffffffffffffffffffffffffffffffffffffffff1614611b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0090614c91565b60405180910390fd5b600047905060008111611b1b57600080fd5b60006064605f830281611b2a57fe5b049050611b4b73c2e3941a6c2b8dbee57cdd9afc4d5f359f1677a582612b71565b611b697380d6364c875b68b5a1e83e5d6dde7ad9b12b62b647612b71565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000611ba1610d42565b9050600d60009054906101000a900460ff16611bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be990614b51565b60405180910390fd5b6001611e610182820110611c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3290614dd1565b60405180910390fd5b81600b5402341015611c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7990614b71565b60405180910390fd5b60005b82811015611ca657611c993382840161299f565b8080600101915050611c85565b505050565b611cb36125ba565b73ffffffffffffffffffffffffffffffffffffffff16611cd1611b6d565b73ffffffffffffffffffffffffffffffffffffffff1614611d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1e90614c91565b60405180910390fd5b80600b8190555050565b606060078054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611dc95780601f10611d9e57610100808354040283529160200191611dc9565b820191906000526020600020905b815481529060010190602001808311611dac57829003601f168201915b5050505050905090565b600b5481565b611de16125ba565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4690614b31565b60405180910390fd5b8060056000611e5c6125ba565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f096125ba565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f4e91906149f4565b60405180910390a35050565b611f626125ba565b73ffffffffffffffffffffffffffffffffffffffff16611f80611b6d565b73ffffffffffffffffffffffffffffffffffffffff1614611fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcd90614c91565b60405180910390fd5b60005b82829050811015612069576000600e6000858585818110611ff657fe5b905060200201602081019061200b9190613aea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080600101915050611fd9565b505050565b61207f6120796125ba565b83612690565b6120be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b590614d51565b60405180910390fd5b6120ca84848484612bbc565b50505050565b60606120db8261259d565b61211a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211190614cd1565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121c35780601f10612198576101008083540402835291602001916121c3565b820191906000526020600020905b8154815290600101906020018083116121a657829003601f168201915b5050505050905060006121d4611707565b90506000815114156121ea57819250505061224e565b60008251111561221f578082604051602001612207929190614947565b6040516020818303038152906040529250505061224e565b8061222985612c18565b60405160200161223a929190614947565b604051602081830303815290604052925050505b919050565b600c5481565b6122616125ba565b73ffffffffffffffffffffffffffffffffffffffff1661227f611b6d565b73ffffffffffffffffffffffffffffffffffffffff16146122d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cc90614c91565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61239d6125ba565b73ffffffffffffffffffffffffffffffffffffffff166123bb611b6d565b73ffffffffffffffffffffffffffffffffffffffff1614612411576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240890614c91565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247890614ab1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611e6181565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60006125b3826002612d5f90919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612635836116d0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061268982600001612d79565b9050919050565b600061269b8261259d565b6126da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d190614bb1565b60405180910390fd5b60006126e5836116d0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061275457508373ffffffffffffffffffffffffffffffffffffffff1661273c84610aac565b73ffffffffffffffffffffffffffffffffffffffff16145b8061276557506127648185612301565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661278e826116d0565b73ffffffffffffffffffffffffffffffffffffffff16146127e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127db90614cb1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284b90614b11565b60405180910390fd5b61285f838383612d8a565b61286a6000826125c2565b6128bb81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612d8f90919063ffffffff16565b5061290d81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612da990919063ffffffff16565b5061292481836002612dc39092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006129948360000183612df8565b60001c905092915050565b6129b9828260405180602001604052806000815250612e65565b5050565b60006129c8826116d0565b90506129d681600084612d8a565b6129e16000836125c2565b60006008600084815260200190815260200160002080546001816001161561010002031660029004905014612a3057600860008381526020019081526020016000206000612a2f919061382a565b5b612a8182600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612d8f90919063ffffffff16565b50612a96826002612ec090919063ffffffff16565b5081600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080600080612b0a8660000186612eda565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190612b39929190613872565b5050565b6000612b50846000018460001b84612f5d565b60001c90509392505050565b6000612b6a82600001612fee565b9050919050565b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612bb7573d6000803e3d6000fd5b505050565b612bc784848461276e565b612bd384848484612fff565b612c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0990614a71565b60405180910390fd5b50505050565b60606000821415612c60576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d5a565b600082905060005b60008214612c8a578080600101915050600a8281612c8257fe5b049150612c68565b60008167ffffffffffffffff81118015612ca357600080fd5b506040519080825280601f01601f191660200182016040528015612cd65781602001600182028036833780820191505090505b50905060006001830390508593505b60008414612d5257600a8481612cf757fe5b0660300160f81b82828060019003935081518110612d1157fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481612d4a57fe5b049350612ce5565b819450505050505b919050565b6000612d71836000018360001b613163565b905092915050565b600081600001805490509050919050565b505050565b6000612da1836000018360001b613186565b905092915050565b6000612dbb836000018360001b61326e565b905092915050565b6000612def846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b6132de565b90509392505050565b600081836000018054905011612e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3a90614a31565b60405180910390fd5b826000018281548110612e5257fe5b9060005260206000200154905092915050565b612e6f83836133ba565b612e7c6000848484612fff565b612ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb290614a71565b60405180910390fd5b505050565b6000612ed2836000018360001b613548565b905092915050565b60008082846000018054905011612f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1d90614c11565b60405180910390fd5b6000846000018481548110612f3757fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb69190614a0f565b60405180910390fd5b50846000016001820381548110612fd257fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006130208473ffffffffffffffffffffffffffffffffffffffff16613661565b61302d576001905061315b565b60006130f463150b7a0260e01b6130426125ba565b8887876040516024016130589493929190614986565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405180606001604052806032815260200161505c603291398773ffffffffffffffffffffffffffffffffffffffff166136749092919063ffffffff16565b905060008180602001905181019061310c9190613d74565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b6000808360010160008481526020019081526020016000205490506000811461326257600060018203905060006001866000018054905003905060008660000182815481106131d157fe5b90600052602060002001549050808760000184815481106131ee57fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061322657fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050613268565b60009150505b92915050565b600061327a838361368c565b6132d35782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506132d8565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415613385578460000160405180604001604052808681526020018581525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505084600001805490508560010160008681526020019081526020016000208190555060019150506133b3565b8285600001600183038154811061339857fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561342a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342190614c31565b60405180910390fd5b6134338161259d565b15613473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346a90614af1565b60405180910390fd5b61347f60008383612d8a565b6134d081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612da990919063ffffffff16565b506134e781836002612dc39092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008083600101600084815260200190815260200160002054905060008114613655576000600182039050600060018660000180549050039050600086600001828154811061359357fe5b90600052602060002090600202019050808760000184815481106135b357fe5b906000526020600020906002020160008201548160000155600182015481600101559050506001830187600101600083600001548152602001908152602001600020819055508660000180548061360657fe5b600190038181906000526020600020906002020160008082016000905560018201600090555050905586600101600087815260200190815260200160002060009055600194505050505061365b565b60009150505b92915050565b600080823b905060008111915050919050565b606061368384846000856136af565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b6060824710156136f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136eb90614b91565b60405180910390fd5b6136fd85613661565b61373c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161373390614d71565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516137659190614930565b60006040518083038185875af1925050503d80600081146137a2576040519150601f19603f3d011682016040523d82523d6000602084013e6137a7565b606091505b50915091506137b78282866137c3565b92505050949350505050565b606083156137d357829050613823565b6000835111156137e65782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161381a9190614a0f565b60405180910390fd5b9392505050565b50805460018160011615610100020316600290046000825580601f10613850575061386f565b601f01602090049060005260206000209081019061386e9190613900565b5b50565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826138a857600085556138ef565b82601f106138c157805160ff19168380011785556138ef565b828001600101855582156138ef579182015b828111156138ee5782518255916020019190600101906138d3565b5b5090506138fc9190613900565b5090565b5b80821115613919576000816000905550600101613901565b5090565b600061393061392b84614e3d565b614e0c565b90508281526020810184848401111561394857600080fd5b613953848285614faa565b509392505050565b600061396e61396984614e6d565b614e0c565b90508281526020810184848401111561398657600080fd5b613991848285614faa565b509392505050565b6000813590506139a881614fff565b92915050565b60008083601f8401126139c057600080fd5b8235905067ffffffffffffffff8111156139d957600080fd5b6020830191508360208202830111156139f157600080fd5b9250929050565b60008083601f840112613a0a57600080fd5b8235905067ffffffffffffffff811115613a2357600080fd5b602083019150836020820283011115613a3b57600080fd5b9250929050565b600081359050613a5181615016565b92915050565b600081359050613a668161502d565b92915050565b600081519050613a7b8161502d565b92915050565b600082601f830112613a9257600080fd5b8135613aa284826020860161391d565b91505092915050565b600082601f830112613abc57600080fd5b8135613acc84826020860161395b565b91505092915050565b600081359050613ae481615044565b92915050565b600060208284031215613afc57600080fd5b6000613b0a84828501613999565b91505092915050565b60008060408385031215613b2657600080fd5b6000613b3485828601613999565b9250506020613b4585828601613999565b9150509250929050565b600080600060608486031215613b6457600080fd5b6000613b7286828701613999565b9350506020613b8386828701613999565b9250506040613b9486828701613ad5565b9150509250925092565b60008060008060808587031215613bb457600080fd5b6000613bc287828801613999565b9450506020613bd387828801613999565b9350506040613be487828801613ad5565b925050606085013567ffffffffffffffff811115613c0157600080fd5b613c0d87828801613a81565b91505092959194509250565b60008060408385031215613c2c57600080fd5b6000613c3a85828601613999565b9250506020613c4b85828601613a42565b9150509250929050565b60008060408385031215613c6857600080fd5b6000613c7685828601613999565b9250506020613c8785828601613ad5565b9150509250929050565b60008060208385031215613ca457600080fd5b600083013567ffffffffffffffff811115613cbe57600080fd5b613cca858286016139ae565b92509250509250929050565b60008060008060408587031215613cec57600080fd5b600085013567ffffffffffffffff811115613d0657600080fd5b613d12878288016139ae565b9450945050602085013567ffffffffffffffff811115613d3157600080fd5b613d3d878288016139f8565b925092505092959194509250565b600060208284031215613d5d57600080fd5b6000613d6b84828501613a57565b91505092915050565b600060208284031215613d8657600080fd5b6000613d9484828501613a6c565b91505092915050565b600060208284031215613daf57600080fd5b600082013567ffffffffffffffff811115613dc957600080fd5b613dd584828501613aab565b91505092915050565b600060208284031215613df057600080fd5b6000613dfe84828501613ad5565b91505092915050565b6000613e138383614912565b60208301905092915050565b613e2881614f36565b82525050565b613e3781614f24565b82525050565b6000613e4882614ead565b613e528185614edb565b9350613e5d83614e9d565b8060005b83811015613e8e578151613e758882613e07565b9750613e8083614ece565b925050600181019050613e61565b5085935050505092915050565b613ea481614f48565b82525050565b6000613eb582614eb8565b613ebf8185614eec565b9350613ecf818560208601614fb9565b613ed881614fee565b840191505092915050565b6000613eee82614eb8565b613ef88185614efd565b9350613f08818560208601614fb9565b80840191505092915050565b6000613f1f82614ec3565b613f298185614f08565b9350613f39818560208601614fb9565b613f4281614fee565b840191505092915050565b6000613f5882614ec3565b613f628185614f19565b9350613f72818560208601614fb9565b80840191505092915050565b6000613f8b602283614f08565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ff1601a83614f08565b91507f6275726e696e67206973206e6f742079657420656e61626c65640000000000006000830152602082019050919050565b6000614031603283614f08565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614097601983614f08565b91507f496e636f727265637420616d6f756e7420746f20636c61696d000000000000006000830152602082019050919050565b60006140d7602683614f08565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061413d601283614f08565b91507f4e756c6c206164647265737320666f756e6400000000000000000000000000006000830152602082019050919050565b600061417d601c83614f08565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006141bd602483614f08565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614223601983614f08565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614263601283614f08565b91507f53616c65206973206e6f742061637469766500000000000000000000000000006000830152602082019050919050565b60006142a3601f83614f08565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b60006142e3602683614f08565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614349602c83614f08565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006143af603883614f08565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614415602a83614f08565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061447b602283614f08565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006144e1602083614f08565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614521601783614f08565b91507f4e6f7420656e6f756768206c65667420746f206d696e740000000000000000006000830152602082019050919050565b6000614561602c83614f08565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006145c7602083614f08565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614607602983614f08565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061466d602f83614f08565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006146d3602083614f08565b91507f63616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665646000830152602082019050919050565b6000614713601383614f08565b91507f50726573616c65206973206e6f74206f70656e000000000000000000000000006000830152602082019050919050565b6000614753602183614f08565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006147b9603183614f08565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061481f601d83614f08565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b600061485f601883614f08565b91507f596f7520617265206e6f7420696e20636c61696d4c69737400000000000000006000830152602082019050919050565b600061489f601c83614f08565b91507f50757263686173652065786365656473206d617820616c6c6f776564000000006000830152602082019050919050565b60006148df601a83614f08565b91507f4578636565647320617661696c61626c6520646a65656e6965730000000000006000830152602082019050919050565b61491b81614fa0565b82525050565b61492a81614fa0565b82525050565b600061493c8284613ee3565b915081905092915050565b60006149538285613f4d565b915061495f8284613f4d565b91508190509392505050565b60006020820190506149806000830184613e2e565b92915050565b600060808201905061499b6000830187613e1f565b6149a86020830186613e2e565b6149b56040830185614921565b81810360608301526149c78184613eaa565b905095945050505050565b600060208201905081810360008301526149ec8184613e3d565b905092915050565b6000602082019050614a096000830184613e9b565b92915050565b60006020820190508181036000830152614a298184613f14565b905092915050565b60006020820190508181036000830152614a4a81613f7e565b9050919050565b60006020820190508181036000830152614a6a81613fe4565b9050919050565b60006020820190508181036000830152614a8a81614024565b9050919050565b60006020820190508181036000830152614aaa8161408a565b9050919050565b60006020820190508181036000830152614aca816140ca565b9050919050565b60006020820190508181036000830152614aea81614130565b9050919050565b60006020820190508181036000830152614b0a81614170565b9050919050565b60006020820190508181036000830152614b2a816141b0565b9050919050565b60006020820190508181036000830152614b4a81614216565b9050919050565b60006020820190508181036000830152614b6a81614256565b9050919050565b60006020820190508181036000830152614b8a81614296565b9050919050565b60006020820190508181036000830152614baa816142d6565b9050919050565b60006020820190508181036000830152614bca8161433c565b9050919050565b60006020820190508181036000830152614bea816143a2565b9050919050565b60006020820190508181036000830152614c0a81614408565b9050919050565b60006020820190508181036000830152614c2a8161446e565b9050919050565b60006020820190508181036000830152614c4a816144d4565b9050919050565b60006020820190508181036000830152614c6a81614514565b9050919050565b60006020820190508181036000830152614c8a81614554565b9050919050565b60006020820190508181036000830152614caa816145ba565b9050919050565b60006020820190508181036000830152614cca816145fa565b9050919050565b60006020820190508181036000830152614cea81614660565b9050919050565b60006020820190508181036000830152614d0a816146c6565b9050919050565b60006020820190508181036000830152614d2a81614706565b9050919050565b60006020820190508181036000830152614d4a81614746565b9050919050565b60006020820190508181036000830152614d6a816147ac565b9050919050565b60006020820190508181036000830152614d8a81614812565b9050919050565b60006020820190508181036000830152614daa81614852565b9050919050565b60006020820190508181036000830152614dca81614892565b9050919050565b60006020820190508181036000830152614dea816148d2565b9050919050565b6000602082019050614e066000830184614921565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614e3357614e32614fec565b5b8060405250919050565b600067ffffffffffffffff821115614e5857614e57614fec565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614e8857614e87614fec565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614f2f82614f80565b9050919050565b6000614f4182614f80565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614fd7578082015181840152602081019050614fbc565b83811115614fe6576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b61500881614f24565b811461501357600080fd5b50565b61501f81614f48565b811461502a57600080fd5b50565b61503681614f54565b811461504157600080fd5b50565b61504d81614fa0565b811461505857600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220d69f45783375f683d422a5257f187ff075a01c49c5454fc5dc34f76e493e581364736f6c63430007060033

Deployed Bytecode Sourcemap

59316:4575:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10228:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59872:71;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44011:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46797:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46327:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63386:502;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45805:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47687:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62668:95;;;;;;;;;;;;;:::i;:::-;;45567:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61675:450;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60772:641;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62871:102;;;;;;;;;;;;;:::i;:::-;;48063:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61421:246;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59548:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46093:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62557:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59509:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43767:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45386:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43484:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58714:148;;;;;;;;;;;;;:::i;:::-;;60014:281;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59794:71;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59589:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62981:266;;;;;;;;;;;;;:::i;:::-;;58063:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60307:457;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62464:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44180:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59410:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47090:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62254:202;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48285:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44355:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59477:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62771:92;;;;;;;;;;;;;:::i;:::-;;47456:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59017:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59362:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62133:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10228:150;10313:4;10337:20;:33;10358:11;10337:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10330:40;;10228:150;;;:::o;59872:71::-;59901:42;59872:71;:::o;44011:100::-;44065:13;44098:5;44091:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44011:100;:::o;46797:221::-;46873:7;46901:16;46909:7;46901;:16::i;:::-;46893:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;46986:15;:24;47002:7;46986:24;;;;;;;;;;;;;;;;;;;;;46979:31;;46797:221;;;:::o;46327:404::-;46408:13;46424:23;46439:7;46424:14;:23::i;:::-;46408:39;;46472:5;46466:11;;:2;:11;;;;46458:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;46552:5;46536:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;46561:44;46585:5;46592:12;:10;:12::i;:::-;46561:23;:44::i;:::-;46536:69;46528:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;46702:21;46711:2;46715:7;46702:8;:21::i;:::-;46327:404;;;:::o;63386:502::-;63447:16;63477:18;63498:17;63508:6;63498:9;:17::i;:::-;63477:38;;63544:1;63530:10;:15;63526:355;;;63583:1;63569:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63562:23;;;;;63526:355;63618:23;63658:10;63644:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63618:51;;63684:13;63712:130;63736:10;63728:5;:18;63712:130;;;63792:34;63812:6;63820:5;63792:19;:34::i;:::-;63776:6;63783:5;63776:13;;;;;;;;;;;;;:50;;;;;63748:7;;;;;;;63712:130;;;63863:6;63856:13;;;;;63386:502;;;;:::o;45805:211::-;45866:7;45987:21;:12;:19;:21::i;:::-;45980:28;;45805:211;:::o;47687:305::-;47848:41;47867:12;:10;:12::i;:::-;47881:7;47848:18;:41::i;:::-;47840:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;47956:28;47966:4;47972:2;47976:7;47956:9;:28::i;:::-;47687:305;;;:::o;62668:95::-;58294:12;:10;:12::i;:::-;58283:23;;:7;:5;:7::i;:::-;:23;;;58275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62742:13:::1;;;;;;;;;;;62741:14;62725:13;;:30;;;;;;;;;;;;;;;;;;62668:95::o:0;45567:162::-;45664:7;45691:30;45715:5;45691:13;:20;45705:5;45691:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;45684:37;;45567:162;;;;:::o;61675:450::-;58294:12;:10;:12::i;:::-;58283:23;;:7;:5;:7::i;:::-;:23;;;58275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61797:9:::1;61792:326;61816:9;;:16;;61812:1;:20;61792:326;;;61886:1;61862:26;;:9;;61872:1;61862:12;;;;;;;;;;;;;;;;;;;;:::i;:::-;:26;;;;61854:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;61955:4;61928:10;:24;61939:9;;61949:1;61939:12;;;;;;;;;;;;;;;;;;;;:::i;:::-;61928:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;62001:14;;62016:1;62001:17;;;;;;;;;;;;;61974:10;:24;61985:9;;61995:1;61985:12;;;;;;;;;;;;;;;;;;;;:::i;:::-;61974:24;;;;;;;;;;;;;;;:44;;;;62067:1;62033:17;:31;62051:9;;62061:1;62051:12;;;;;;;;;;;;;;;;;;;;:::i;:::-;62033:31;;;;;;;;;;;;;;;;:35;:73;;62105:1;62033:73;;;62071:17;:31;62089:9;;62099:1;62089:12;;;;;;;;;;;;;;;;;;;;:::i;:::-;62071:31;;;;;;;;;;;;;;;;62033:73;;61834:3;;;;;;;61792:326;;;;61675:450:::0;;;;:::o;60772:641::-;60829:13;;;;;;;;;;;60821:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;60885:10;:22;60896:10;60885:22;;;;;;;;;;;;;;;;;;;;;;;;;60877:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;60965:10;:22;60976:10;60965:22;;;;;;;;;;;;;;;;60955:6;:32;;60947:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;61078:10;:22;61089:10;61078:22;;;;;;;;;;;;;;;;61068:6;61036:17;:29;61054:10;61036:29;;;;;;;;;;;;;;;;:38;:64;;61028:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;61144:13;61160;:11;:13::i;:::-;61144:29;;59399:4;61200:6;61192:5;:14;:28;;61184:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;61266:9;61261:145;61285:6;61281:1;:10;61261:145;;;61346:1;61313:17;:29;61331:10;61313:29;;;;;;;;;;;;;;;;:34;;;;;;;;;;;61362:32;61372:10;61392:1;61384:5;:9;61362;:32::i;:::-;61293:3;;;;;;;61261:145;;;;60772:641;;:::o;62871:102::-;58294:12;:10;:12::i;:::-;58283:23;;:7;:5;:7::i;:::-;:23;;;58275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62951:14:::1;;;;;;;;;;;62950:15;62933:14;;:32;;;;;;;;;;;;;;;;;;62871:102::o:0;48063:151::-;48167:39;48184:4;48190:2;48194:7;48167:39;;;;;;;;;;;;:16;:39::i;:::-;48063:151;;;:::o;61421:246::-;61486:14;;;;;;;;;;;61478:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;61550:41;61569:12;:10;:12::i;:::-;61583:7;61550:18;:41::i;:::-;61542:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;61639:20;61651:7;61639:11;:20::i;:::-;61421:246;:::o;59548:34::-;;;;;;;;;;;;;:::o;46093:172::-;46168:7;46189:15;46210:22;46226:5;46210:12;:15;;:22;;;;:::i;:::-;46188:44;;;46250:7;46243:14;;;46093:172;;;:::o;62557:103::-;58294:12;:10;:12::i;:::-;58283:23;;:7;:5;:7::i;:::-;:23;;;58275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62631:21:::1;62643:8;62631:11;:21::i;:::-;62557:103:::0;:::o;59509:32::-;;;;;;;;;;;;;:::o;43767:177::-;43839:7;43866:70;43883:7;43866:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;43859:77;;43767:177;;;:::o;45386:97::-;45434:13;45467:8;45460:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45386:97;:::o;43484:221::-;43556:7;43601:1;43584:19;;:5;:19;;;;43576:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;43668:29;:13;:20;43682:5;43668:20;;;;;;;;;;;;;;;:27;:29::i;:::-;43661:36;;43484:221;;;:::o;58714:148::-;58294:12;:10;:12::i;:::-;58283:23;;:7;:5;:7::i;:::-;:23;;;58275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58821:1:::1;58784:40;;58805:6;;;;;;;;;;;58784:40;;;;;;;;;;;;58852:1;58835:6;;:19;;;;;;;;;;;;;;;;;;58714:148::o:0;60014:281::-;58294:12;:10;:12::i;:::-;58283:23;;:7;:5;:7::i;:::-;:23;;;58275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60110:11:::1;60124:13;:11;:13::i;:::-;60110:27;;60153:6;60148:95;60169:14;60165:1;:18;60148:95;;;60205:26;60215:3;60229:1;60220:6;:10;60205:9;:26::i;:::-;60185:3;;;;;;;60148:95;;;;60273:14;60263:7;;:24;60253:7;:34;;;;58354:1;60014:281:::0;;:::o;59794:71::-;59823:42;59794:71;:::o;59589:33::-;;;;;;;;;;;;;:::o;62981:266::-;58294:12;:10;:12::i;:::-;58283:23;;:7;:5;:7::i;:::-;:23;;;58275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63034:15:::1;63052:21;63034:39;;63102:1;63092:7;:11;63084:20;;;::::0;::::1;;63115:18;63153:3;63147:2;63137:7;:12;63136:20;;;;;;63115:41;;63167:25;59823:42;63181:10;63167:9;:25::i;:::-;63203:36;59901:42;63217:21;63203:9;:36::i;:::-;58354:1;;62981:266::o:0;58063:87::-;58109:7;58136:6;;;;;;;;;;;58129:13;;58063:87;:::o;60307:457::-;60371:19;60393:13;:11;:13::i;:::-;60371:35;;60427:12;;;;;;;;;;;60419:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;60518:1;59399:4;60505:14;60496:6;60482:11;:20;:37;60474:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;60590:6;60582:5;;:14;60569:9;:27;;60561:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;60657:9;60653:104;60676:6;60672:1;:10;60653:104;;;60707:38;60717:10;60743:1;60729:11;:15;60707:9;:38::i;:::-;60684:3;;;;;;;60653:104;;;;60307:457;;:::o;62464:85::-;58294:12;:10;:12::i;:::-;58283:23;;:7;:5;:7::i;:::-;:23;;;58275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62535:6:::1;62527:5;:14;;;;62464:85:::0;:::o;44180:104::-;44236:13;44269:7;44262:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44180:104;:::o;59410:34::-;;;;:::o;47090:295::-;47205:12;:10;:12::i;:::-;47193:24;;:8;:24;;;;47185:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;47305:8;47260:18;:32;47279:12;:10;:12::i;:::-;47260:32;;;;;;;;;;;;;;;:42;47293:8;47260:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;47358:8;47329:48;;47344:12;:10;:12::i;:::-;47329:48;;;47368:8;47329:48;;;;;;:::i;:::-;;;;;;;;47090:295;;:::o;62254:202::-;58294:12;:10;:12::i;:::-;58283:23;;:7;:5;:7::i;:::-;:23;;;58275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62348:9:::1;62343:106;62367:9;;:16;;62363:1;:20;62343:106;;;62432:5;62405:10;:24;62416:9;;62426:1;62416:12;;;;;;;;;;;;;;;;;;;;:::i;:::-;62405:24;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;62385:3;;;;;;;62343:106;;;;62254:202:::0;;:::o;48285:285::-;48417:41;48436:12;:10;:12::i;:::-;48450:7;48417:18;:41::i;:::-;48409:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;48523:39;48537:4;48543:2;48547:7;48556:5;48523:13;:39::i;:::-;48285:285;;;;:::o;44355:792::-;44428:13;44462:16;44470:7;44462;:16::i;:::-;44454:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;44543:23;44569:10;:19;44580:7;44569:19;;;;;;;;;;;44543:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44599:18;44620:9;:7;:9::i;:::-;44599:30;;44727:1;44711:4;44705:18;:23;44701:72;;;44752:9;44745:16;;;;;;44701:72;44903:1;44883:9;44877:23;:27;44873:108;;;44952:4;44958:9;44935:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44921:48;;;;;;44873:108;45113:4;45119:18;:7;:16;:18::i;:::-;45096:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45082:57;;;;44355:792;;;;:::o;59477:25::-;;;;:::o;62771:92::-;58294:12;:10;:12::i;:::-;58283:23;;:7;:5;:7::i;:::-;:23;;;58275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62843:12:::1;;;;;;;;;;;62842:13;62827:12;;:28;;;;;;;;;;;;;;;;;;62771:92::o:0;47456:164::-;47553:4;47577:18;:25;47596:5;47577:25;;;;;;;;;;;;;;;:35;47603:8;47577:35;;;;;;;;;;;;;;;;;;;;;;;;;47570:42;;47456:164;;;;:::o;59017:244::-;58294:12;:10;:12::i;:::-;58283:23;;:7;:5;:7::i;:::-;:23;;;58275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59126:1:::1;59106:22;;:8;:22;;;;59098:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;59216:8;59187:38;;59208:6;;;;;;;;;;;59187:38;;;;;;;;;;;;59245:8;59236:6;;:17;;;;;;;;;;;;;;;;;;59017:244:::0;:::o;59362:41::-;59399:4;59362:41;:::o;62133:113::-;62198:4;62222:10;:16;62233:4;62222:16;;;;;;;;;;;;;;;;;;;;;;;;;62215:23;;62133:113;;;:::o;50037:127::-;50102:4;50126:30;50148:7;50126:12;:21;;:30;;;;:::i;:::-;50119:37;;50037:127;;;:::o;668:106::-;721:15;756:10;749:17;;668:106;:::o;56055:192::-;56157:2;56130:15;:24;56146:7;56130:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;56213:7;56209:2;56175:46;;56184:23;56199:7;56184:14;:23::i;:::-;56175:46;;;;;;;;;;;;56055:192;;:::o;36809:123::-;36878:7;36905:19;36913:3;:10;;36905:7;:19::i;:::-;36898:26;;36809:123;;;:::o;50331:355::-;50424:4;50449:16;50457:7;50449;:16::i;:::-;50441:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;50525:13;50541:23;50556:7;50541:14;:23::i;:::-;50525:39;;50594:5;50583:16;;:7;:16;;;:51;;;;50627:7;50603:31;;:20;50615:7;50603:11;:20::i;:::-;:31;;;50583:51;:94;;;;50638:39;50662:5;50669:7;50638:23;:39::i;:::-;50583:94;50575:103;;;50331:355;;;;:::o;53467:599::-;53592:4;53565:31;;:23;53580:7;53565:14;:23::i;:::-;:31;;;53557:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;53693:1;53679:16;;:2;:16;;;;53671:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;53749:39;53770:4;53776:2;53780:7;53749:20;:39::i;:::-;53853:29;53870:1;53874:7;53853:8;:29::i;:::-;53895:35;53922:7;53895:13;:19;53909:4;53895:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;53941:30;53963:7;53941:13;:17;53955:2;53941:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;53984:29;54001:7;54010:2;53984:12;:16;;:29;;;;;:::i;:::-;;54050:7;54046:2;54031:27;;54040:4;54031:27;;;;;;;;;;;;53467:599;;;:::o;28600:137::-;28671:7;28706:22;28710:3;:10;;28722:5;28706:3;:22::i;:::-;28698:31;;28691:38;;28600:137;;;;:::o;51029:110::-;51105:26;51115:2;51119:7;51105:26;;;;;;;;;;;;:9;:26::i;:::-;51029:110;;:::o;52585:545::-;52645:13;52661:23;52676:7;52661:14;:23::i;:::-;52645:39;;52715:48;52736:5;52751:1;52755:7;52715:20;:48::i;:::-;52804:29;52821:1;52825:7;52804:8;:29::i;:::-;52923:1;52892:10;:19;52903:7;52892:19;;;;;;;;;;;52886:33;;;;;;;;;;;;;;;;:38;52882:97;;52948:10;:19;52959:7;52948:19;;;;;;;;;;;;52941:26;;;;:::i;:::-;52882:97;52991:36;53019:7;52991:13;:20;53005:5;52991:20;;;;;;;;;;;;;;;:27;;:36;;;;:::i;:::-;;53040:28;53060:7;53040:12;:19;;:28;;;;:::i;:::-;;53114:7;53110:1;53086:36;;53095:5;53086:36;;;;;;;;;;;;52585:545;;:::o;37271:236::-;37351:7;37360;37381:11;37394:13;37411:22;37415:3;:10;;37427:5;37411:3;:22::i;:::-;37380:53;;;;37460:3;37452:12;;37490:5;37482:14;;37444:55;;;;;;37271:236;;;;;:::o;54667:100::-;54751:8;54740;:19;;;;;;;;;;;;:::i;:::-;;54667:100;:::o;38557:213::-;38664:7;38715:44;38720:3;:10;;38740:3;38732:12;;38746;38715:4;:44::i;:::-;38707:53;;38684:78;;38557:213;;;;;:::o;28142:114::-;28202:7;28229:19;28237:3;:10;;28229:7;:19::i;:::-;28222:26;;28142:114;;;:::o;63255:117::-;63337:8;63329:26;;:35;63356:7;63329:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63255:117;;:::o;49452:272::-;49566:28;49576:4;49582:2;49586:7;49566:9;:28::i;:::-;49613:48;49636:4;49642:2;49646:7;49655:5;49613:22;:48::i;:::-;49605:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;49452:272;;;;:::o;39021:746::-;39077:13;39307:1;39298:5;:10;39294:53;;;39325:10;;;;;;;;;;;;;;;;;;;;;39294:53;39357:12;39372:5;39357:20;;39388:14;39413:78;39428:1;39420:4;:9;39413:78;;39446:8;;;;;;;39477:2;39469:10;;;;;;;;;39413:78;;;39501:19;39533:6;39523:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39501:39;;39551:13;39576:1;39567:6;:10;39551:26;;39595:5;39588:12;;39611:117;39626:1;39618:4;:9;39611:117;;39687:2;39680:4;:9;;;;;;39675:2;:14;39662:29;;39644:6;39651:7;;;;;;;39644:15;;;;;;;;;;;:47;;;;;;;;;;;39714:2;39706:10;;;;;;;;;39611:117;;;39752:6;39738:21;;;;;;39021:746;;;;:::o;36570:151::-;36654:4;36678:35;36688:3;:10;;36708:3;36700:12;;36678:9;:35::i;:::-;36671:42;;36570:151;;;;:::o;33388:110::-;33444:7;33471:3;:12;;:19;;;;33464:26;;33388:110;;;:::o;56860:93::-;;;;:::o;27687:137::-;27757:4;27781:35;27789:3;:10;;27809:5;27801:14;;27781:7;:35::i;:::-;27774:42;;27687:137;;;;:::o;27380:131::-;27447:4;27471:32;27476:3;:10;;27496:5;27488:14;;27471:4;:32::i;:::-;27464:39;;27380:131;;;;:::o;35993:185::-;36082:4;36106:64;36111:3;:10;;36131:3;36123:12;;36161:5;36145:23;;36137:32;;36106:4;:64::i;:::-;36099:71;;35993:185;;;;;:::o;23638:204::-;23705:7;23754:5;23733:3;:11;;:18;;;;:26;23725:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23816:3;:11;;23828:5;23816:18;;;;;;;;;;;;;;;;23809:25;;23638:204;;;;:::o;51366:250::-;51462:18;51468:2;51472:7;51462:5;:18::i;:::-;51499:54;51530:1;51534:2;51538:7;51547:5;51499:22;:54::i;:::-;51491:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;51366:250;;;:::o;36344:142::-;36421:4;36445:33;36453:3;:10;;36473:3;36465:12;;36445:7;:33::i;:::-;36438:40;;36344:142;;;;:::o;33853:279::-;33920:7;33929;33979:5;33957:3;:12;;:19;;;;:27;33949:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;34036:22;34061:3;:12;;34074:5;34061:19;;;;;;;;;;;;;;;;;;34036:44;;34099:5;:10;;;34111:5;:12;;;34091:33;;;;;33853:279;;;;;:::o;35350:319::-;35444:7;35464:16;35483:3;:12;;:17;35496:3;35483:17;;;;;;;;;;;;35464:36;;35531:1;35519:8;:13;;35534:12;35511:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;35601:3;:12;;35625:1;35614:8;:12;35601:26;;;;;;;;;;;;;;;;;;:33;;;35594:40;;;35350:319;;;;;:::o;23185:109::-;23241:7;23268:3;:11;;:18;;;;23261:25;;23185:109;;;:::o;55332:604::-;55453:4;55480:15;:2;:13;;;:15::i;:::-;55475:60;;55519:4;55512:11;;;;55475:60;55545:23;55571:252;55624:45;;;55684:12;:10;:12::i;:::-;55711:4;55730:7;55752:5;55587:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55571:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;55545:278;;55834:13;55861:10;55850:32;;;;;;;;;;;;:::i;:::-;55834:48;;40488:10;55911:16;;55901:26;;;:6;:26;;;;55893:35;;;;55332:604;;;;;;;:::o;33168:125::-;33239:4;33284:1;33263:3;:12;;:17;33276:3;33263:17;;;;;;;;;;;;:22;;33256:29;;33168:125;;;;:::o;21340:1544::-;21406:4;21524:18;21545:3;:12;;:19;21558:5;21545:19;;;;;;;;;;;;21524:40;;21595:1;21581:10;:15;21577:1300;;21943:21;21980:1;21967:10;:14;21943:38;;21996:17;22037:1;22016:3;:11;;:18;;;;:22;21996:42;;22283:17;22303:3;:11;;22315:9;22303:22;;;;;;;;;;;;;;;;22283:42;;22449:9;22420:3;:11;;22432:13;22420:26;;;;;;;;;;;;;;;:38;;;;22568:1;22552:13;:17;22526:3;:12;;:23;22539:9;22526:23;;;;;;;;;;;:43;;;;22678:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;22773:3;:12;;:19;22786:5;22773:19;;;;;;;;;;;22766:26;;;22816:4;22809:11;;;;;;;;21577:1300;22860:5;22853:12;;;21340:1544;;;;;:::o;20750:414::-;20813:4;20835:21;20845:3;20850:5;20835:9;:21::i;:::-;20830:327;;20873:3;:11;;20890:5;20873:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21056:3;:11;;:18;;;;21034:3;:12;;:19;21047:5;21034:19;;;;;;;;;;;:40;;;;21096:4;21089:11;;;;20830:327;21140:5;21133:12;;20750:414;;;;;:::o;30668:692::-;30744:4;30860:16;30879:3;:12;;:17;30892:3;30879:17;;;;;;;;;;;;30860:36;;30925:1;30913:8;:13;30909:444;;;30980:3;:12;;30998:38;;;;;;;;31015:3;30998:38;;;;31028:5;30998:38;;;30980:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31195:3;:12;;:19;;;;31175:3;:12;;:17;31188:3;31175:17;;;;;;;;;;;:39;;;;31236:4;31229:11;;;;;30909:444;31309:5;31273:3;:12;;31297:1;31286:8;:12;31273:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;31336:5;31329:12;;;30668:692;;;;;;:::o;51952:404::-;52046:1;52032:16;;:2;:16;;;;52024:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;52105:16;52113:7;52105;:16::i;:::-;52104:17;52096:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;52167:45;52196:1;52200:2;52204:7;52167:20;:45::i;:::-;52225:30;52247:7;52225:13;:17;52239:2;52225:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;52268:29;52285:7;52294:2;52268:12;:16;;:29;;;;;:::i;:::-;;52340:7;52336:2;52315:33;;52332:1;52315:33;;;;;;;;;;;;51952:404;;:::o;31535:1549::-;31599:4;31715:16;31734:3;:12;;:17;31747:3;31734:17;;;;;;;;;;;;31715:36;;31780:1;31768:8;:13;31764:1313;;32129:21;32164:1;32153:8;:12;32129:36;;32180:17;32222:1;32200:3;:12;;:19;;;;:23;32180:43;;32468:26;32497:3;:12;;32510:9;32497:23;;;;;;;;;;;;;;;;;;32468:52;;32645:9;32615:3;:12;;32628:13;32615:27;;;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;;32769:1;32753:13;:17;32722:3;:12;;:28;32735:9;:14;;;32722:28;;;;;;;;;;;:48;;;;32879:3;:12;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32975:3;:12;;:17;32988:3;32975:17;;;;;;;;;;;32968:24;;;33016:4;33009:11;;;;;;;;31764:1313;33060:5;33053:12;;;31535:1549;;;;;:::o;11769:422::-;11829:4;12037:12;12148:7;12136:20;12128:28;;12182:1;12175:4;:8;12168:15;;;11769:422;;;:::o;14687:195::-;14790:12;14822:52;14844:6;14852:4;14858:1;14861:12;14822:21;:52::i;:::-;14815:59;;14687:195;;;;;:::o;22970:129::-;23043:4;23090:1;23067:3;:12;;:19;23080:5;23067:19;;;;;;;;;;;;:24;;23060:31;;22970:129;;;;:::o;15739:530::-;15866:12;15924:5;15899:21;:30;;15891:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;15991:18;16002:6;15991:10;:18::i;:::-;15983:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;16117:12;16131:23;16158:6;:11;;16178:5;16186:4;16158:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16116:75;;;;16209:52;16227:7;16236:10;16248:12;16209:17;:52::i;:::-;16202:59;;;;15739:530;;;;;;:::o;18279:742::-;18394:12;18423:7;18419:595;;;18454:10;18447:17;;;;18419:595;18588:1;18568:10;:17;:21;18564:439;;;18831:10;18825:17;18892:15;18879:10;18875:2;18871:19;18864:44;18779:148;18974:12;18967:20;;;;;;;;;;;:::i;:::-;;;;;;;;18279: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;867:367::-;;;1000:3;993:4;985:6;981:17;977:27;967:2;;1018:1;1015;1008:12;967:2;1054:6;1041:20;1031:30;;1084:18;1076:6;1073:30;1070:2;;;1116:1;1113;1106:12;1070:2;1153:4;1145:6;1141:17;1129:29;;1207:3;1199:4;1191:6;1187:17;1177:8;1173:32;1170:41;1167:2;;;1224:1;1221;1214:12;1167:2;957:277;;;;;:::o;1257:367::-;;;1390:3;1383:4;1375:6;1371:17;1367:27;1357:2;;1408:1;1405;1398:12;1357:2;1444:6;1431:20;1421:30;;1474:18;1466:6;1463:30;1460:2;;;1506:1;1503;1496:12;1460:2;1543:4;1535:6;1531:17;1519:29;;1597:3;1589:4;1581:6;1577:17;1567:8;1563:32;1560:41;1557:2;;;1614:1;1611;1604:12;1557:2;1347:277;;;;;:::o;1630:133::-;;1711:6;1698:20;1689:29;;1727:30;1751:5;1727:30;:::i;:::-;1679:84;;;;:::o;1769:137::-;;1852:6;1839:20;1830:29;;1868:32;1894:5;1868:32;:::i;:::-;1820:86;;;;:::o;1912:141::-;;1999:6;1993:13;1984:22;;2015:32;2041:5;2015:32;:::i;:::-;1974:79;;;;:::o;2072:271::-;;2176:3;2169:4;2161:6;2157:17;2153:27;2143:2;;2194:1;2191;2184:12;2143:2;2234:6;2221:20;2259:78;2333:3;2325:6;2318:4;2310:6;2306:17;2259:78;:::i;:::-;2250:87;;2133:210;;;;;:::o;2363:273::-;;2468:3;2461:4;2453:6;2449:17;2445:27;2435:2;;2486:1;2483;2476:12;2435:2;2526:6;2513:20;2551:79;2626:3;2618:6;2611:4;2603:6;2599:17;2551:79;:::i;:::-;2542:88;;2425:211;;;;;:::o;2642:139::-;;2726:6;2713:20;2704:29;;2742:33;2769:5;2742:33;:::i;:::-;2694:87;;;;:::o;2787:262::-;;2895:2;2883:9;2874:7;2870:23;2866:32;2863:2;;;2911:1;2908;2901:12;2863:2;2954:1;2979:53;3024:7;3015:6;3004:9;3000:22;2979:53;:::i;:::-;2969:63;;2925:117;2853:196;;;;:::o;3055:407::-;;;3180:2;3168:9;3159:7;3155:23;3151:32;3148:2;;;3196:1;3193;3186:12;3148:2;3239:1;3264:53;3309:7;3300:6;3289:9;3285:22;3264:53;:::i;:::-;3254:63;;3210:117;3366:2;3392:53;3437:7;3428:6;3417:9;3413:22;3392:53;:::i;:::-;3382:63;;3337:118;3138:324;;;;;:::o;3468:552::-;;;;3610:2;3598:9;3589:7;3585:23;3581:32;3578:2;;;3626:1;3623;3616:12;3578:2;3669:1;3694:53;3739:7;3730:6;3719:9;3715:22;3694:53;:::i;:::-;3684:63;;3640:117;3796:2;3822:53;3867:7;3858:6;3847:9;3843:22;3822:53;:::i;:::-;3812:63;;3767:118;3924:2;3950:53;3995:7;3986:6;3975:9;3971:22;3950:53;:::i;:::-;3940:63;;3895:118;3568:452;;;;;:::o;4026:809::-;;;;;4194:3;4182:9;4173:7;4169:23;4165:33;4162:2;;;4211:1;4208;4201:12;4162:2;4254:1;4279:53;4324:7;4315:6;4304:9;4300:22;4279:53;:::i;:::-;4269:63;;4225:117;4381:2;4407:53;4452:7;4443:6;4432:9;4428:22;4407:53;:::i;:::-;4397:63;;4352:118;4509:2;4535:53;4580:7;4571:6;4560:9;4556:22;4535:53;:::i;:::-;4525:63;;4480:118;4665:2;4654:9;4650:18;4637:32;4696:18;4688:6;4685:30;4682:2;;;4728:1;4725;4718:12;4682:2;4756:62;4810:7;4801:6;4790:9;4786:22;4756:62;:::i;:::-;4746:72;;4608:220;4152:683;;;;;;;:::o;4841:401::-;;;4963:2;4951:9;4942:7;4938:23;4934:32;4931:2;;;4979:1;4976;4969:12;4931:2;5022:1;5047:53;5092:7;5083:6;5072:9;5068:22;5047:53;:::i;:::-;5037:63;;4993:117;5149:2;5175:50;5217:7;5208:6;5197:9;5193:22;5175:50;:::i;:::-;5165:60;;5120:115;4921:321;;;;;:::o;5248:407::-;;;5373:2;5361:9;5352:7;5348:23;5344:32;5341:2;;;5389:1;5386;5379:12;5341:2;5432:1;5457:53;5502:7;5493:6;5482:9;5478:22;5457:53;:::i;:::-;5447:63;;5403:117;5559:2;5585:53;5630:7;5621:6;5610:9;5606:22;5585:53;:::i;:::-;5575:63;;5530:118;5331:324;;;;;:::o;5661:425::-;;;5804:2;5792:9;5783:7;5779:23;5775:32;5772:2;;;5820:1;5817;5810:12;5772:2;5891:1;5880:9;5876:17;5863:31;5921:18;5913:6;5910:30;5907:2;;;5953:1;5950;5943:12;5907:2;5989:80;6061:7;6052:6;6041:9;6037:22;5989:80;:::i;:::-;5971:98;;;;5834:245;5762:324;;;;;:::o;6092:733::-;;;;;6287:2;6275:9;6266:7;6262:23;6258:32;6255:2;;;6303:1;6300;6293:12;6255:2;6374:1;6363:9;6359:17;6346:31;6404:18;6396:6;6393:30;6390:2;;;6436:1;6433;6426:12;6390:2;6472:80;6544:7;6535:6;6524:9;6520:22;6472:80;:::i;:::-;6454:98;;;;6317:245;6629:2;6618:9;6614:18;6601:32;6660:18;6652:6;6649:30;6646:2;;;6692:1;6689;6682:12;6646:2;6728:80;6800:7;6791:6;6780:9;6776:22;6728:80;:::i;:::-;6710:98;;;;6572:246;6245:580;;;;;;;:::o;6831:260::-;;6938:2;6926:9;6917:7;6913:23;6909:32;6906:2;;;6954:1;6951;6944:12;6906:2;6997:1;7022:52;7066:7;7057:6;7046:9;7042:22;7022:52;:::i;:::-;7012:62;;6968:116;6896:195;;;;:::o;7097:282::-;;7215:2;7203:9;7194:7;7190:23;7186:32;7183:2;;;7231:1;7228;7221:12;7183:2;7274:1;7299:63;7354:7;7345:6;7334:9;7330:22;7299:63;:::i;:::-;7289:73;;7245:127;7173:206;;;;:::o;7385:375::-;;7503:2;7491:9;7482:7;7478:23;7474:32;7471:2;;;7519:1;7516;7509:12;7471:2;7590:1;7579:9;7575:17;7562:31;7620:18;7612:6;7609:30;7606:2;;;7652:1;7649;7642:12;7606:2;7680:63;7735:7;7726:6;7715:9;7711:22;7680:63;:::i;:::-;7670:73;;7533:220;7461:299;;;;:::o;7766:262::-;;7874:2;7862:9;7853:7;7849:23;7845:32;7842:2;;;7890:1;7887;7880:12;7842:2;7933:1;7958:53;8003:7;7994:6;7983:9;7979:22;7958:53;:::i;:::-;7948:63;;7904:117;7832:196;;;;:::o;8034:179::-;;8124:46;8166:3;8158:6;8124:46;:::i;:::-;8202:4;8197:3;8193:14;8179:28;;8114:99;;;;:::o;8219:142::-;8322:32;8348:5;8322:32;:::i;:::-;8317:3;8310:45;8300:61;;:::o;8367:118::-;8454:24;8472:5;8454:24;:::i;:::-;8449:3;8442:37;8432:53;;:::o;8521:732::-;;8669:54;8717:5;8669:54;:::i;:::-;8739:86;8818:6;8813:3;8739:86;:::i;:::-;8732:93;;8849:56;8899:5;8849:56;:::i;:::-;8928:7;8959:1;8944:284;8969:6;8966:1;8963:13;8944:284;;;9045:6;9039:13;9072:63;9131:3;9116:13;9072:63;:::i;:::-;9065:70;;9158:60;9211:6;9158:60;:::i;:::-;9148:70;;9004:224;8991:1;8988;8984:9;8979:14;;8944:284;;;8948:14;9244:3;9237:10;;8645:608;;;;;;;:::o;9259:109::-;9340:21;9355:5;9340:21;:::i;:::-;9335:3;9328:34;9318:50;;:::o;9374:360::-;;9488:38;9520:5;9488:38;:::i;:::-;9542:70;9605:6;9600:3;9542:70;:::i;:::-;9535:77;;9621:52;9666:6;9661:3;9654:4;9647:5;9643:16;9621:52;:::i;:::-;9698:29;9720:6;9698:29;:::i;:::-;9693:3;9689:39;9682:46;;9464:270;;;;;:::o;9740:373::-;;9872:38;9904:5;9872:38;:::i;:::-;9926:88;10007:6;10002:3;9926:88;:::i;:::-;9919:95;;10023:52;10068:6;10063:3;10056:4;10049:5;10045:16;10023:52;:::i;:::-;10100:6;10095:3;10091:16;10084:23;;9848:265;;;;;:::o;10119:364::-;;10235:39;10268:5;10235:39;:::i;:::-;10290:71;10354:6;10349:3;10290:71;:::i;:::-;10283:78;;10370:52;10415:6;10410:3;10403:4;10396:5;10392:16;10370:52;:::i;:::-;10447:29;10469:6;10447:29;:::i;:::-;10442:3;10438:39;10431:46;;10211:272;;;;;:::o;10489:377::-;;10623:39;10656:5;10623:39;:::i;:::-;10678:89;10760:6;10755:3;10678:89;:::i;:::-;10671:96;;10776:52;10821:6;10816:3;10809:4;10802:5;10798:16;10776:52;:::i;:::-;10853:6;10848:3;10844:16;10837:23;;10599:267;;;;;:::o;10872:366::-;;11035:67;11099:2;11094:3;11035:67;:::i;:::-;11028:74;;11132:34;11128:1;11123:3;11119:11;11112:55;11198:4;11193:2;11188:3;11184:12;11177:26;11229:2;11224:3;11220:12;11213:19;;11018:220;;;:::o;11244:324::-;;11407:67;11471:2;11466:3;11407:67;:::i;:::-;11400:74;;11504:28;11500:1;11495:3;11491:11;11484:49;11559:2;11554:3;11550:12;11543:19;;11390:178;;;:::o;11574:382::-;;11737:67;11801:2;11796:3;11737:67;:::i;:::-;11730:74;;11834:34;11830:1;11825:3;11821:11;11814:55;11900:20;11895:2;11890:3;11886:12;11879:42;11947:2;11942:3;11938:12;11931:19;;11720:236;;;:::o;11962:323::-;;12125:67;12189:2;12184:3;12125:67;:::i;:::-;12118:74;;12222:27;12218:1;12213:3;12209:11;12202:48;12276:2;12271:3;12267:12;12260:19;;12108:177;;;:::o;12291:370::-;;12454:67;12518:2;12513:3;12454:67;:::i;:::-;12447:74;;12551:34;12547:1;12542:3;12538:11;12531:55;12617:8;12612:2;12607:3;12603:12;12596:30;12652:2;12647:3;12643:12;12636:19;;12437:224;;;:::o;12667:316::-;;12830:67;12894:2;12889:3;12830:67;:::i;:::-;12823:74;;12927:20;12923:1;12918:3;12914:11;12907:41;12974:2;12969:3;12965:12;12958:19;;12813:170;;;:::o;12989:326::-;;13152:67;13216:2;13211:3;13152:67;:::i;:::-;13145:74;;13249:30;13245:1;13240:3;13236:11;13229:51;13306:2;13301:3;13297:12;13290:19;;13135:180;;;:::o;13321:368::-;;13484:67;13548:2;13543:3;13484:67;:::i;:::-;13477:74;;13581:34;13577:1;13572:3;13568:11;13561:55;13647:6;13642:2;13637:3;13633:12;13626:28;13680:2;13675:3;13671:12;13664:19;;13467:222;;;:::o;13695:323::-;;13858:67;13922:2;13917:3;13858:67;:::i;:::-;13851:74;;13955:27;13951:1;13946:3;13942:11;13935:48;14009:2;14004:3;14000:12;13993:19;;13841:177;;;:::o;14024:316::-;;14187:67;14251:2;14246:3;14187:67;:::i;:::-;14180:74;;14284:20;14280:1;14275:3;14271:11;14264:41;14331:2;14326:3;14322:12;14315:19;;14170:170;;;:::o;14346:329::-;;14509:67;14573:2;14568:3;14509:67;:::i;:::-;14502:74;;14606:33;14602:1;14597:3;14593:11;14586:54;14666:2;14661:3;14657:12;14650:19;;14492:183;;;:::o;14681:370::-;;14844:67;14908:2;14903:3;14844:67;:::i;:::-;14837:74;;14941:34;14937:1;14932:3;14928:11;14921:55;15007:8;15002:2;14997:3;14993:12;14986:30;15042:2;15037:3;15033:12;15026:19;;14827:224;;;:::o;15057:376::-;;15220:67;15284:2;15279:3;15220:67;:::i;:::-;15213:74;;15317:34;15313:1;15308:3;15304:11;15297:55;15383:14;15378:2;15373:3;15369:12;15362:36;15424:2;15419:3;15415:12;15408:19;;15203:230;;;:::o;15439:388::-;;15602:67;15666:2;15661:3;15602:67;:::i;:::-;15595:74;;15699:34;15695:1;15690:3;15686:11;15679:55;15765:26;15760:2;15755:3;15751:12;15744:48;15818:2;15813:3;15809:12;15802:19;;15585:242;;;:::o;15833:374::-;;15996:67;16060:2;16055:3;15996:67;:::i;:::-;15989:74;;16093:34;16089:1;16084:3;16080:11;16073:55;16159:12;16154:2;16149:3;16145:12;16138:34;16198:2;16193:3;16189:12;16182:19;;15979:228;;;:::o;16213:366::-;;16376:67;16440:2;16435:3;16376:67;:::i;:::-;16369:74;;16473:34;16469:1;16464:3;16460:11;16453:55;16539:4;16534:2;16529:3;16525:12;16518:26;16570:2;16565:3;16561:12;16554:19;;16359:220;;;:::o;16585:330::-;;16748:67;16812:2;16807:3;16748:67;:::i;:::-;16741:74;;16845:34;16841:1;16836:3;16832:11;16825:55;16906:2;16901:3;16897:12;16890:19;;16731:184;;;:::o;16921:321::-;;17084:67;17148:2;17143:3;17084:67;:::i;:::-;17077:74;;17181:25;17177:1;17172:3;17168:11;17161:46;17233:2;17228:3;17224:12;17217:19;;17067:175;;;:::o;17248:376::-;;17411:67;17475:2;17470:3;17411:67;:::i;:::-;17404:74;;17508:34;17504:1;17499:3;17495:11;17488:55;17574:14;17569:2;17564:3;17560:12;17553:36;17615:2;17610:3;17606:12;17599:19;;17394:230;;;:::o;17630:330::-;;17793:67;17857:2;17852:3;17793:67;:::i;:::-;17786:74;;17890:34;17886:1;17881:3;17877:11;17870:55;17951:2;17946:3;17942:12;17935:19;;17776:184;;;:::o;17966:373::-;;18129:67;18193:2;18188:3;18129:67;:::i;:::-;18122:74;;18226:34;18222:1;18217:3;18213:11;18206:55;18292:11;18287:2;18282:3;18278:12;18271:33;18330:2;18325:3;18321:12;18314:19;;18112:227;;;:::o;18345:379::-;;18508:67;18572:2;18567:3;18508:67;:::i;:::-;18501:74;;18605:34;18601:1;18596:3;18592:11;18585:55;18671:17;18666:2;18661:3;18657:12;18650:39;18715:2;18710:3;18706:12;18699:19;;18491:233;;;:::o;18730:330::-;;18893:67;18957:2;18952:3;18893:67;:::i;:::-;18886:74;;18990:34;18986:1;18981:3;18977:11;18970:55;19051:2;19046:3;19042:12;19035:19;;18876:184;;;:::o;19066:317::-;;19229:67;19293:2;19288:3;19229:67;:::i;:::-;19222:74;;19326:21;19322:1;19317:3;19313:11;19306:42;19374:2;19369:3;19365:12;19358:19;;19212:171;;;:::o;19389:365::-;;19552:67;19616:2;19611:3;19552:67;:::i;:::-;19545:74;;19649:34;19645:1;19640:3;19636:11;19629:55;19715:3;19710:2;19705:3;19701:12;19694:25;19745:2;19740:3;19736:12;19729:19;;19535:219;;;:::o;19760:381::-;;19923:67;19987:2;19982:3;19923:67;:::i;:::-;19916:74;;20020:34;20016:1;20011:3;20007:11;20000:55;20086:19;20081:2;20076:3;20072:12;20065:41;20132:2;20127:3;20123:12;20116:19;;19906:235;;;:::o;20147:327::-;;20310:67;20374:2;20369:3;20310:67;:::i;:::-;20303:74;;20407:31;20403:1;20398:3;20394:11;20387:52;20465:2;20460:3;20456:12;20449:19;;20293:181;;;:::o;20480:322::-;;20643:67;20707:2;20702:3;20643:67;:::i;:::-;20636:74;;20740:26;20736:1;20731:3;20727:11;20720:47;20793:2;20788:3;20784:12;20777:19;;20626:176;;;:::o;20808:326::-;;20971:67;21035:2;21030:3;20971:67;:::i;:::-;20964:74;;21068:30;21064:1;21059:3;21055:11;21048:51;21125:2;21120:3;21116:12;21109:19;;20954:180;;;:::o;21140:324::-;;21303:67;21367:2;21362:3;21303:67;:::i;:::-;21296:74;;21400:28;21396:1;21391:3;21387:11;21380:49;21455:2;21450:3;21446:12;21439:19;;21286:178;;;:::o;21470:108::-;21547:24;21565:5;21547:24;:::i;:::-;21542:3;21535:37;21525:53;;:::o;21584:118::-;21671:24;21689:5;21671:24;:::i;:::-;21666:3;21659:37;21649:53;;:::o;21708:271::-;;21860:93;21949:3;21940:6;21860:93;:::i;:::-;21853:100;;21970:3;21963:10;;21842:137;;;;:::o;21985:435::-;;22187:95;22278:3;22269:6;22187:95;:::i;:::-;22180:102;;22299:95;22390:3;22381:6;22299:95;:::i;:::-;22292:102;;22411:3;22404:10;;22169:251;;;;;:::o;22426:222::-;;22557:2;22546:9;22542:18;22534:26;;22570:71;22638:1;22627:9;22623:17;22614:6;22570:71;:::i;:::-;22524:124;;;;:::o;22654:672::-;;22903:3;22892:9;22888:19;22880:27;;22917:87;23001:1;22990:9;22986:17;22977:6;22917:87;:::i;:::-;23014:72;23082:2;23071:9;23067:18;23058:6;23014:72;:::i;:::-;23096;23164:2;23153:9;23149:18;23140:6;23096:72;:::i;:::-;23215:9;23209:4;23205:20;23200:2;23189:9;23185:18;23178:48;23243:76;23314:4;23305:6;23243:76;:::i;:::-;23235:84;;22870:456;;;;;;;:::o;23332:373::-;;23513:2;23502:9;23498:18;23490:26;;23562:9;23556:4;23552:20;23548:1;23537:9;23533:17;23526:47;23590:108;23693:4;23684:6;23590:108;:::i;:::-;23582:116;;23480:225;;;;:::o;23711:210::-;;23836:2;23825:9;23821:18;23813:26;;23849:65;23911:1;23900:9;23896:17;23887:6;23849:65;:::i;:::-;23803:118;;;;:::o;23927:313::-;;24078:2;24067:9;24063:18;24055:26;;24127:9;24121:4;24117:20;24113:1;24102:9;24098:17;24091:47;24155:78;24228:4;24219:6;24155:78;:::i;:::-;24147:86;;24045:195;;;;:::o;24246:419::-;;24450:2;24439:9;24435:18;24427:26;;24499:9;24493:4;24489:20;24485:1;24474:9;24470:17;24463:47;24527:131;24653:4;24527:131;:::i;:::-;24519:139;;24417:248;;;:::o;24671:419::-;;24875:2;24864:9;24860:18;24852:26;;24924:9;24918:4;24914:20;24910:1;24899:9;24895:17;24888:47;24952:131;25078:4;24952:131;:::i;:::-;24944:139;;24842:248;;;:::o;25096:419::-;;25300:2;25289:9;25285:18;25277:26;;25349:9;25343:4;25339:20;25335:1;25324:9;25320:17;25313:47;25377:131;25503:4;25377:131;:::i;:::-;25369:139;;25267:248;;;:::o;25521:419::-;;25725:2;25714:9;25710:18;25702:26;;25774:9;25768:4;25764:20;25760:1;25749:9;25745:17;25738:47;25802:131;25928:4;25802:131;:::i;:::-;25794:139;;25692:248;;;:::o;25946:419::-;;26150:2;26139:9;26135:18;26127:26;;26199:9;26193:4;26189:20;26185:1;26174:9;26170:17;26163:47;26227:131;26353:4;26227:131;:::i;:::-;26219:139;;26117:248;;;:::o;26371:419::-;;26575:2;26564:9;26560:18;26552:26;;26624:9;26618:4;26614:20;26610:1;26599:9;26595:17;26588:47;26652:131;26778:4;26652:131;:::i;:::-;26644:139;;26542:248;;;:::o;26796:419::-;;27000:2;26989:9;26985:18;26977:26;;27049:9;27043:4;27039:20;27035:1;27024:9;27020:17;27013:47;27077:131;27203:4;27077:131;:::i;:::-;27069:139;;26967:248;;;:::o;27221:419::-;;27425:2;27414:9;27410:18;27402:26;;27474:9;27468:4;27464:20;27460:1;27449:9;27445:17;27438:47;27502:131;27628:4;27502:131;:::i;:::-;27494:139;;27392:248;;;:::o;27646:419::-;;27850:2;27839:9;27835:18;27827:26;;27899:9;27893:4;27889:20;27885:1;27874:9;27870:17;27863:47;27927:131;28053:4;27927:131;:::i;:::-;27919:139;;27817:248;;;:::o;28071:419::-;;28275:2;28264:9;28260:18;28252:26;;28324:9;28318:4;28314:20;28310:1;28299:9;28295:17;28288:47;28352:131;28478:4;28352:131;:::i;:::-;28344:139;;28242:248;;;:::o;28496:419::-;;28700:2;28689:9;28685:18;28677:26;;28749:9;28743:4;28739:20;28735:1;28724:9;28720:17;28713:47;28777:131;28903:4;28777:131;:::i;:::-;28769:139;;28667:248;;;:::o;28921:419::-;;29125:2;29114:9;29110:18;29102:26;;29174:9;29168:4;29164:20;29160:1;29149:9;29145:17;29138:47;29202:131;29328:4;29202:131;:::i;:::-;29194:139;;29092:248;;;:::o;29346:419::-;;29550:2;29539:9;29535:18;29527:26;;29599:9;29593:4;29589:20;29585:1;29574:9;29570:17;29563:47;29627:131;29753:4;29627:131;:::i;:::-;29619:139;;29517:248;;;:::o;29771:419::-;;29975:2;29964:9;29960:18;29952:26;;30024:9;30018:4;30014:20;30010:1;29999:9;29995:17;29988:47;30052:131;30178:4;30052:131;:::i;:::-;30044:139;;29942:248;;;:::o;30196:419::-;;30400:2;30389:9;30385:18;30377:26;;30449:9;30443:4;30439:20;30435:1;30424:9;30420:17;30413:47;30477:131;30603:4;30477:131;:::i;:::-;30469:139;;30367:248;;;:::o;30621:419::-;;30825:2;30814:9;30810:18;30802:26;;30874:9;30868:4;30864:20;30860:1;30849:9;30845:17;30838:47;30902:131;31028:4;30902:131;:::i;:::-;30894:139;;30792:248;;;:::o;31046:419::-;;31250:2;31239:9;31235:18;31227:26;;31299:9;31293:4;31289:20;31285:1;31274:9;31270:17;31263:47;31327:131;31453:4;31327:131;:::i;:::-;31319:139;;31217:248;;;:::o;31471:419::-;;31675:2;31664:9;31660:18;31652:26;;31724:9;31718:4;31714:20;31710:1;31699:9;31695:17;31688:47;31752:131;31878:4;31752:131;:::i;:::-;31744:139;;31642:248;;;:::o;31896:419::-;;32100:2;32089:9;32085:18;32077:26;;32149:9;32143:4;32139:20;32135:1;32124:9;32120:17;32113:47;32177:131;32303:4;32177:131;:::i;:::-;32169:139;;32067:248;;;:::o;32321:419::-;;32525:2;32514:9;32510:18;32502:26;;32574:9;32568:4;32564:20;32560:1;32549:9;32545:17;32538:47;32602:131;32728:4;32602:131;:::i;:::-;32594:139;;32492:248;;;:::o;32746:419::-;;32950:2;32939:9;32935:18;32927:26;;32999:9;32993:4;32989:20;32985:1;32974:9;32970:17;32963:47;33027:131;33153:4;33027:131;:::i;:::-;33019:139;;32917:248;;;:::o;33171:419::-;;33375:2;33364:9;33360:18;33352:26;;33424:9;33418:4;33414:20;33410:1;33399:9;33395:17;33388:47;33452:131;33578:4;33452:131;:::i;:::-;33444:139;;33342:248;;;:::o;33596:419::-;;33800:2;33789:9;33785:18;33777:26;;33849:9;33843:4;33839:20;33835:1;33824:9;33820:17;33813:47;33877:131;34003:4;33877:131;:::i;:::-;33869:139;;33767:248;;;:::o;34021:419::-;;34225:2;34214:9;34210:18;34202:26;;34274:9;34268:4;34264:20;34260:1;34249:9;34245:17;34238:47;34302:131;34428:4;34302:131;:::i;:::-;34294:139;;34192:248;;;:::o;34446:419::-;;34650:2;34639:9;34635:18;34627:26;;34699:9;34693:4;34689:20;34685:1;34674:9;34670:17;34663:47;34727:131;34853:4;34727:131;:::i;:::-;34719:139;;34617:248;;;:::o;34871:419::-;;35075:2;35064:9;35060:18;35052:26;;35124:9;35118:4;35114:20;35110:1;35099:9;35095:17;35088:47;35152:131;35278:4;35152:131;:::i;:::-;35144:139;;35042:248;;;:::o;35296:419::-;;35500:2;35489:9;35485:18;35477:26;;35549:9;35543:4;35539:20;35535:1;35524:9;35520:17;35513:47;35577:131;35703:4;35577:131;:::i;:::-;35569:139;;35467:248;;;:::o;35721:419::-;;35925:2;35914:9;35910:18;35902:26;;35974:9;35968:4;35964:20;35960:1;35949:9;35945:17;35938:47;36002:131;36128:4;36002:131;:::i;:::-;35994:139;;35892:248;;;:::o;36146:419::-;;36350:2;36339:9;36335:18;36327:26;;36399:9;36393:4;36389:20;36385:1;36374:9;36370:17;36363:47;36427:131;36553:4;36427:131;:::i;:::-;36419:139;;36317:248;;;:::o;36571:419::-;;36775:2;36764:9;36760:18;36752:26;;36824:9;36818:4;36814:20;36810:1;36799:9;36795:17;36788:47;36852:131;36978:4;36852:131;:::i;:::-;36844:139;;36742:248;;;:::o;36996:222::-;;37127:2;37116:9;37112:18;37104:26;;37140:71;37208:1;37197:9;37193:17;37184:6;37140:71;:::i;:::-;37094:124;;;;:::o;37224:278::-;;37290:2;37284:9;37274:19;;37332:4;37324:6;37320:17;37439:6;37427:10;37424:22;37403:18;37391:10;37388:34;37385:62;37382:2;;;37450:13;;:::i;:::-;37382:2;37485:10;37481:2;37474:22;37264:238;;;;:::o;37508:326::-;;37659:18;37651:6;37648:30;37645:2;;;37681:13;;:::i;:::-;37645:2;37761:4;37757:9;37750:4;37742:6;37738:17;37734:33;37726:41;;37822:4;37816;37812:15;37804:23;;37574:260;;;:::o;37840:327::-;;37992:18;37984:6;37981:30;37978:2;;;38014:13;;:::i;:::-;37978:2;38094:4;38090:9;38083:4;38075:6;38071:17;38067:33;38059:41;;38155:4;38149;38145:15;38137:23;;37907:260;;;:::o;38173:132::-;;38263:3;38255:11;;38293:4;38288:3;38284:14;38276:22;;38245:60;;;:::o;38311:114::-;;38412:5;38406:12;38396:22;;38385:40;;;:::o;38431:98::-;;38516:5;38510:12;38500:22;;38489:40;;;:::o;38535:99::-;;38621:5;38615:12;38605:22;;38594:40;;;:::o;38640:113::-;;38742:4;38737:3;38733:14;38725:22;;38715:38;;;:::o;38759:184::-;;38892:6;38887:3;38880:19;38932:4;38927:3;38923:14;38908:29;;38870:73;;;;:::o;38949:168::-;;39066:6;39061:3;39054:19;39106:4;39101:3;39097:14;39082:29;;39044:73;;;;:::o;39123:147::-;;39261:3;39246:18;;39236:34;;;;:::o;39276:169::-;;39394:6;39389:3;39382:19;39434:4;39429:3;39425:14;39410:29;;39372:73;;;;:::o;39451:148::-;;39590:3;39575:18;;39565:34;;;;:::o;39605:96::-;;39671:24;39689:5;39671:24;:::i;:::-;39660:35;;39650:51;;;:::o;39707:104::-;;39781:24;39799:5;39781:24;:::i;:::-;39770:35;;39760:51;;;:::o;39817:90::-;;39894:5;39887:13;39880:21;39869:32;;39859:48;;;:::o;39913:149::-;;39989:66;39982:5;39978:78;39967:89;;39957:105;;;:::o;40068:126::-;;40145:42;40138:5;40134:54;40123:65;;40113:81;;;:::o;40200:77::-;;40266:5;40255:16;;40245:32;;;:::o;40283:154::-;40367:6;40362:3;40357;40344:30;40429:1;40420:6;40415:3;40411:16;40404:27;40334:103;;;:::o;40443:307::-;40511:1;40521:113;40535:6;40532:1;40529:13;40521:113;;;40620:1;40615:3;40611:11;40605:18;40601:1;40596:3;40592:11;40585:39;40557:2;40554:1;40550:10;40545:15;;40521:113;;;40652:6;40649:1;40646:13;40643:2;;;40732:1;40723:6;40718:3;40714:16;40707:27;40643:2;40492:258;;;;:::o;40756:48::-;40789:9;40810:102;;40902:2;40898:7;40893:2;40886:5;40882:14;40878:28;40868:38;;40858:54;;;:::o;40918:122::-;40991:24;41009:5;40991:24;:::i;:::-;40984:5;40981:35;40971:2;;41030:1;41027;41020:12;40971:2;40961:79;:::o;41046:116::-;41116:21;41131:5;41116:21;:::i;:::-;41109:5;41106:32;41096:2;;41152:1;41149;41142:12;41096:2;41086:76;:::o;41168:120::-;41240:23;41257:5;41240:23;:::i;:::-;41233:5;41230:34;41220:2;;41278:1;41275;41268:12;41220:2;41210:78;:::o;41294:122::-;41367:24;41385:5;41367:24;:::i;:::-;41360:5;41357:35;41347:2;;41406:1;41403;41396:12;41347:2;41337:79;:::o

Swarm Source

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