ETH Price: $2,356.17 (+0.64%)

Token

HornyHogsNFT (HornyHogsNFT)
 

Overview

Max Total Supply

65 HornyHogsNFT

Holders

35

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 HornyHogsNFT
0x296ae0aeb1d1ab5366ac80a0228f1bb538abebd2
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:
HornyHogsNFT

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
 *Submitted for verification at Etherscan.io on 2021-08-06
*/

// 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/math/SafeMath.sol



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.2 <0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

            bytes32 lastvalue = set._values[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

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

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

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

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

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

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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


    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

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

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

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

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

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

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

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

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

            MapEntry storage lastEntry = map._entries[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

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

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

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

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

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

    // Base URI
    string private _baseURI;

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

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor (string memory name_, string memory symbol_)  {
        _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 HornyHogsNFT is ERC721, Ownable {
    
    using SafeMath for uint256;

    string public HornyHogs_PROVENANCE = ""; 
    
    string public LICENSE_TEXT = ""; 
    
    bool licenseLocked = false; 

    uint256 public constant hogPrice = 45000000000000000; // 0.045 ETH

    uint public constant maxHogPurchase = 20;

    uint256 public constant MAX_Hogs = 10000;

    bool public saleIsActive = false;
    
    bool public uriIsFrozen = false;
    
   
    uint public hogReserve = 150;
    
    event licenseisLocked(string _licenseText);

    constructor() ERC721("HornyHogsNFT", "HornyHogsNFT") { }
    
    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        msg.sender.transfer(balance);
    }
    
    function reserveHog(address _to, uint256 _reserveAmount) public onlyOwner {        
        uint supply = totalSupply();
        require(_reserveAmount > 0 && _reserveAmount <= hogReserve, "Not enough reserve left for team");
        for (uint i = 0; i < _reserveAmount; i++) {
            _safeMint(_to, supply + i);
        }
        hogReserve = hogReserve.sub(_reserveAmount);
    }


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

    function setBaseURI(string memory baseURI) public onlyOwner {
        require(uriIsFrozen == false, "The BaseURI has been frozen and can not be changed.");
        _setBaseURI(baseURI);
    }
    
    function freezeBaseURI() public onlyOwner {
        require(uriIsFrozen == false, "The BaseURI has already been frozen.");
        uriIsFrozen = true;
    }


    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }
    
    
    function tokensOfOwner(address _owner) external view returns(uint256[] memory ) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }
    
    // Returns the license for tokens
    function tokenLicense(uint _id) public view returns(string memory) {
        require(_id < totalSupply(), "CHOOSE A HOG WITHIN RANGE");
        return LICENSE_TEXT;
    }
    
    // Locks the license to prevent further changes 
    function lockLicense() public onlyOwner {
        licenseLocked =  true;
        emit licenseisLocked(LICENSE_TEXT);
    }
    
    // Change the license
    function changeLicense(string memory _license) public onlyOwner {
        require(licenseLocked == false, "License already locked");
        LICENSE_TEXT = _license;
    }
    
    
    function mintHornyHog(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint a Hog");
        require(numberOfTokens > 0 && numberOfTokens <= maxHogPurchase, "Can only mint 20 tokens at a time");
        require(totalSupply().add(numberOfTokens) <= MAX_Hogs, "Purchase would exceed max supply of Horny Hogs");
        require(msg.value >= hogPrice.mul(numberOfTokens), "Ether value sent is not correct");
        
        for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply();
            if (totalSupply() < MAX_Hogs) {
                _safeMint(msg.sender, mintIndex);
            }
        }

    }
     
    
    

    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_licenseText","type":"string"}],"name":"licenseisLocked","type":"event"},{"inputs":[],"name":"HornyHogs_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LICENSE_TEXT","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_Hogs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_license","type":"string"}],"name":"changeLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freezeBaseURI","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":[],"name":"hogPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hogReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxHogPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintHornyHog","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reserveHog","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"tokenLicense","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriIsFrozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600b90805190602001906200002b9291906200034f565b5060405180602001604052806000815250600c9080519060200190620000539291906200034f565b506000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506000600d60026101000a81548160ff0219169083151502179055506096600e55348015620000b757600080fd5b506040518060400160405280600c81526020017f486f726e79486f67734e465400000000000000000000000000000000000000008152506040518060400160405280600c81526020017f486f726e79486f67734e465400000000000000000000000000000000000000008152506200013c6301ffc9a760e01b6200026f60201b60201c565b8160069080519060200190620001549291906200034f565b5080600790805190602001906200016d9291906200034f565b50620001866380ac58cd60e01b6200026f60201b60201c565b6200019e635b5e139f60e01b6200026f60201b60201c565b620001b663780e9d6360e01b6200026f60201b60201c565b50506000620001ca6200034760201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200047a565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620002db576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d29062000447565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620003875760008555620003d3565b82601f10620003a257805160ff1916838001178555620003d3565b82800160010185558215620003d3579182015b82811115620003d2578251825591602001919060010190620003b5565b5b509050620003e29190620003e6565b5090565b5b8082111562000401576000816000905550600101620003e7565b5090565b600062000414601c8362000469565b91507f4552433136353a20696e76616c696420696e74657266616365206964000000006000830152602082019050919050565b60006020820190508181036000830152620004628162000405565b9050919050565b600082825260208201905092915050565b614bbe806200048a6000396000f3fe6080604052600436106102305760003560e01c8063715018a61161012e578063c70b9dc2116100ab578063e832ed4d1161006f578063e832ed4d14610808578063e90840cc14610833578063e985e9c51461085e578063eb8d24441461089b578063f2fde38b146108c657610230565b8063c70b9dc214610730578063c87b56dd1461075b578063d4e8f04d14610798578063d9b137b2146107b4578063e7bc8208146107f157610230565b80639c3e72bd116100f25780639c3e72bd14610673578063a22cb4651461069e578063b09904b5146106c7578063b88d4fde146106f0578063bf4702fc1461071957610230565b8063715018a6146105a05780638462151c146105b75780638ac8f1d1146105f45780638da5cb5b1461061d57806395d89b411461064857610230565b80632f745c59116101bc5780634f6ccce7116101805780634f6ccce71461049557806355f804b3146104d25780636352211e146104fb5780636c0360eb1461053857806370a082311461056357610230565b80632f745c59146103d657806334918dfd146104135780633ccfd60b1461042a5780633dc464d61461044157806342842e0e1461046c57610230565b8063095ea7b311610203578063095ea7b3146103055780630bb8d9be1461032e578063109695231461035957806318160ddd1461038257806323b872dd146103ad57610230565b806301ffc9a7146102355780630464c5161461027257806306fdde031461029d578063081812fc146102c8575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613613565b6108ef565b604051610269919061446f565b60405180910390f35b34801561027e57600080fd5b50610287610956565b60405161029491906148ae565b60405180910390f35b3480156102a957600080fd5b506102b261095c565b6040516102bf919061448a565b60405180910390f35b3480156102d457600080fd5b506102ef60048036038101906102ea91906136a6565b6109fe565b6040516102fc91906143e6565b60405180910390f35b34801561031157600080fd5b5061032c600480360381019061032791906135d7565b610a83565b005b34801561033a57600080fd5b50610343610b9b565b604051610350919061448a565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b9190613665565b610c39565b005b34801561038e57600080fd5b50610397610ccf565b6040516103a491906148ae565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf91906134d1565b610ce0565b005b3480156103e257600080fd5b506103fd60048036038101906103f891906135d7565b610d40565b60405161040a91906148ae565b60405180910390f35b34801561041f57600080fd5b50610428610d9b565b005b34801561043657600080fd5b5061043f610e43565b005b34801561044d57600080fd5b50610456610f0e565b604051610463919061446f565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e91906134d1565b610f21565b005b3480156104a157600080fd5b506104bc60048036038101906104b791906136a6565b610f41565b6040516104c991906148ae565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f49190613665565b610f64565b005b34801561050757600080fd5b50610522600480360381019061051d91906136a6565b611042565b60405161052f91906143e6565b60405180910390f35b34801561054457600080fd5b5061054d611079565b60405161055a919061448a565b60405180910390f35b34801561056f57600080fd5b5061058a6004803603810190610585919061346c565b61111b565b60405161059791906148ae565b60405180910390f35b3480156105ac57600080fd5b506105b56111da565b005b3480156105c357600080fd5b506105de60048036038101906105d9919061346c565b611317565b6040516105eb919061444d565b60405180910390f35b34801561060057600080fd5b5061061b600480360381019061061691906135d7565b611410565b005b34801561062957600080fd5b5061063261152e565b60405161063f91906143e6565b60405180910390f35b34801561065457600080fd5b5061065d611558565b60405161066a919061448a565b60405180910390f35b34801561067f57600080fd5b506106886115fa565b604051610695919061448a565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c0919061359b565b611698565b005b3480156106d357600080fd5b506106ee60048036038101906106e99190613665565b611819565b005b3480156106fc57600080fd5b5061071760048036038101906107129190613520565b611905565b005b34801561072557600080fd5b5061072e611967565b005b34801561073c57600080fd5b50610745611a38565b60405161075291906148ae565b60405180910390f35b34801561076757600080fd5b50610782600480360381019061077d91906136a6565b611a43565b60405161078f919061448a565b60405180910390f35b6107b260048036038101906107ad91906136a6565b611bc6565b005b3480156107c057600080fd5b506107db60048036038101906107d691906136a6565b611d64565b6040516107e8919061448a565b60405180910390f35b3480156107fd57600080fd5b50610806611e51565b005b34801561081457600080fd5b5061081d611f40565b60405161082a91906148ae565b60405180910390f35b34801561083f57600080fd5b50610848611f45565b60405161085591906148ae565b60405180910390f35b34801561086a57600080fd5b5061088560048036038101906108809190613495565b611f4b565b604051610892919061446f565b60405180910390f35b3480156108a757600080fd5b506108b0611fdf565b6040516108bd919061446f565b60405180910390f35b3480156108d257600080fd5b506108ed60048036038101906108e8919061346c565b611ff2565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b61271081565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109f45780601f106109c9576101008083540402835291602001916109f4565b820191906000526020600020905b8154815290600101906020018083116109d757829003601f168201915b5050505050905090565b6000610a098261219e565b610a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3f906147ae565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8e82611042565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af69061482e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b1e6121bb565b73ffffffffffffffffffffffffffffffffffffffff161480610b4d5750610b4c81610b476121bb565b611f4b565b5b610b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b83906146ce565b60405180910390fd5b610b9683836121c3565b505050565b600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c315780601f10610c0657610100808354040283529160200191610c31565b820191906000526020600020905b815481529060010190602001808311610c1457829003601f168201915b505050505081565b610c416121bb565b73ffffffffffffffffffffffffffffffffffffffff16610c5f61152e565b73ffffffffffffffffffffffffffffffffffffffff1614610cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cac906147ce565b60405180910390fd5b80600b9080519060200190610ccb929190613288565b5050565b6000610cdb600261227c565b905090565b610cf1610ceb6121bb565b82612291565b610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d279061486e565b60405180910390fd5b610d3b83838361236f565b505050565b6000610d9382600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061258690919063ffffffff16565b905092915050565b610da36121bb565b73ffffffffffffffffffffffffffffffffffffffff16610dc161152e565b73ffffffffffffffffffffffffffffffffffffffff1614610e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0e906147ce565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b610e4b6121bb565b73ffffffffffffffffffffffffffffffffffffffff16610e6961152e565b73ffffffffffffffffffffffffffffffffffffffff1614610ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb6906147ce565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f0a573d6000803e3d6000fd5b5050565b600d60029054906101000a900460ff1681565b610f3c83838360405180602001604052806000815250611905565b505050565b600080610f588360026125a090919063ffffffff16565b50905080915050919050565b610f6c6121bb565b73ffffffffffffffffffffffffffffffffffffffff16610f8a61152e565b73ffffffffffffffffffffffffffffffffffffffff1614610fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd7906147ce565b60405180910390fd5b60001515600d60029054906101000a900460ff16151514611036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102d9061470e565b60405180910390fd5b61103f816125cc565b50565b600061107282604051806060016040528060298152602001614b606029913960026125e69092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111115780601f106110e657610100808354040283529160200191611111565b820191906000526020600020905b8154815290600101906020018083116110f457829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561118c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611183906146ee565b60405180910390fd5b6111d3600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612605565b9050919050565b6111e26121bb565b73ffffffffffffffffffffffffffffffffffffffff1661120061152e565b73ffffffffffffffffffffffffffffffffffffffff1614611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d906147ce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b606060006113248361111b565b9050600081141561137f57600067ffffffffffffffff8111801561134757600080fd5b506040519080825280602002602001820160405280156113765781602001602082028036833780820191505090505b5091505061140b565b60008167ffffffffffffffff8111801561139857600080fd5b506040519080825280602002602001820160405280156113c75781602001602082028036833780820191505090505b50905060005b82811015611404576113df8582610d40565b8282815181106113eb57fe5b60200260200101818152505080806001019150506113cd565b8193505050505b919050565b6114186121bb565b73ffffffffffffffffffffffffffffffffffffffff1661143661152e565b73ffffffffffffffffffffffffffffffffffffffff161461148c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611483906147ce565b60405180910390fd5b6000611496610ccf565b90506000821180156114aa5750600e548211155b6114e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e0906145ae565b60405180910390fd5b60005b8281101561150d576115008482840161261a565b80806001019150506114ec565b5061152382600e5461263890919063ffffffff16565b600e81905550505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156115f05780601f106115c5576101008083540402835291602001916115f0565b820191906000526020600020905b8154815290600101906020018083116115d357829003601f168201915b5050505050905090565b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116905780601f1061166557610100808354040283529160200191611690565b820191906000526020600020905b81548152906001019060200180831161167357829003601f168201915b505050505081565b6116a06121bb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561170e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611705906145ee565b60405180910390fd5b806005600061171b6121bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117c86121bb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161180d919061446f565b60405180910390a35050565b6118216121bb565b73ffffffffffffffffffffffffffffffffffffffff1661183f61152e565b73ffffffffffffffffffffffffffffffffffffffff1614611895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188c906147ce565b60405180910390fd5b60001515600d60009054906101000a900460ff161515146118eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e29061484e565b60405180910390fd5b80600c9080519060200190611901929190613288565b5050565b6119166119106121bb565b83612291565b611955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194c9061486e565b60405180910390fd5b61196184848484612688565b50505050565b61196f6121bb565b73ffffffffffffffffffffffffffffffffffffffff1661198d61152e565b73ffffffffffffffffffffffffffffffffffffffff16146119e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119da906147ce565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0600c604051611a2e91906144ac565b60405180910390a1565b669fdf42f6e4800081565b6060611a4e8261219e565b611a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a849061480e565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b365780601f10611b0b57610100808354040283529160200191611b36565b820191906000526020600020905b815481529060010190602001808311611b1957829003601f168201915b505050505090506000611b47611079565b9050600081511415611b5d578192505050611bc1565b600082511115611b92578082604051602001611b7a9291906143c2565b60405160208183030381529060405292505050611bc1565b80611b9c856126e4565b604051602001611bad9291906143c2565b604051602081830303815290604052925050505b919050565b600d60019054906101000a900460ff16611c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0c9061464e565b60405180910390fd5b600081118015611c26575060148111155b611c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5c906146ae565b60405180910390fd5b612710611c8282611c74610ccf565b61282b90919063ffffffff16565b1115611cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cba906144ee565b60405180910390fd5b611cdd81669fdf42f6e4800061288090919063ffffffff16565b341015611d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d169061460e565b60405180910390fd5b60005b81811015611d60576000611d34610ccf565b9050612710611d41610ccf565b1015611d5257611d51338261261a565b5b508080600101915050611d22565b5050565b6060611d6e610ccf565b8210611daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da69061450e565b60405180910390fd5b600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611e455780601f10611e1a57610100808354040283529160200191611e45565b820191906000526020600020905b815481529060010190602001808311611e2857829003601f168201915b50505050509050919050565b611e596121bb565b73ffffffffffffffffffffffffffffffffffffffff16611e7761152e565b73ffffffffffffffffffffffffffffffffffffffff1614611ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec4906147ce565b60405180910390fd5b60001515600d60029054906101000a900460ff16151514611f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1a9061472e565b60405180910390fd5b6001600d60026101000a81548160ff021916908315150217905550565b601481565b600e5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60019054906101000a900460ff1681565b611ffa6121bb565b73ffffffffffffffffffffffffffffffffffffffff1661201861152e565b73ffffffffffffffffffffffffffffffffffffffff161461206e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612065906147ce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d59061454e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006121b48260026128f090919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661223683611042565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061228a8260000161290a565b9050919050565b600061229c8261219e565b6122db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d29061468e565b60405180910390fd5b60006122e683611042565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061235557508373ffffffffffffffffffffffffffffffffffffffff1661233d846109fe565b73ffffffffffffffffffffffffffffffffffffffff16145b8061236657506123658185611f4b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661238f82611042565b73ffffffffffffffffffffffffffffffffffffffff16146123e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123dc906147ee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244c906145ce565b60405180910390fd5b61246083838361291b565b61246b6000826121c3565b6124bc81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061292090919063ffffffff16565b5061250e81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061293a90919063ffffffff16565b50612525818360026129549092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006125958360000183612989565b60001c905092915050565b6000806000806125b386600001866129f6565b915091508160001c8160001c9350935050509250929050565b80600990805190602001906125e2929190613288565b5050565b60006125f9846000018460001b84612a79565b60001c90509392505050565b600061261382600001612b0a565b9050919050565b612634828260405180602001604052806000815250612b1b565b5050565b60008282111561267d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126749061462e565b60405180910390fd5b818303905092915050565b61269384848461236f565b61269f84848484612b76565b6126de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d59061452e565b60405180910390fd5b50505050565b6060600082141561272c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612826565b600082905060005b60008214612756578080600101915050600a828161274e57fe5b049150612734565b60008167ffffffffffffffff8111801561276f57600080fd5b506040519080825280601f01601f1916602001820160405280156127a25781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461281e57600a84816127c357fe5b0660300160f81b828280600190039350815181106127dd57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161281657fe5b0493506127b1565b819450505050505b919050565b600080828401905083811015612876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286d9061458e565b60405180910390fd5b8091505092915050565b60008083141561289357600090506128ea565b60008284029050828482816128a457fe5b04146128e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128dc9061478e565b60405180910390fd5b809150505b92915050565b6000612902836000018360001b612cda565b905092915050565b600081600001805490509050919050565b505050565b6000612932836000018360001b612cfd565b905092915050565b600061294c836000018360001b612de5565b905092915050565b6000612980846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612e55565b90509392505050565b6000818360000180549050116129d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cb906144ce565b60405180910390fd5b8260000182815481106129e357fe5b9060005260206000200154905092915050565b60008082846000018054905011612a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a399061474e565b60405180910390fd5b6000846000018481548110612a5357fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad2919061448a565b60405180910390fd5b50846000016001820381548110612aee57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b612b258383612f31565b612b326000848484612b76565b612b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b689061452e565b60405180910390fd5b505050565b6000612b978473ffffffffffffffffffffffffffffffffffffffff166130bf565b612ba45760019050612cd2565b6000612c6b63150b7a0260e01b612bb96121bb565b888787604051602401612bcf9493929190614401565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614b2e603291398773ffffffffffffffffffffffffffffffffffffffff166130d29092919063ffffffff16565b9050600081806020019051810190612c83919061363c565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114612dd95760006001820390506000600186600001805490500390506000866000018281548110612d4857fe5b9060005260206000200154905080876000018481548110612d6557fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612d9d57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612ddf565b60009150505b92915050565b6000612df183836130ea565b612e4a578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612e4f565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415612efc57846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050612f2a565b82856000016001830381548110612f0f57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f989061476e565b60405180910390fd5b612faa8161219e565b15612fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe19061456e565b60405180910390fd5b612ff66000838361291b565b61304781600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061293a90919063ffffffff16565b5061305e818360026129549092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606130e1848460008561310d565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015613152576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131499061466e565b60405180910390fd5b61315b856130bf565b61319a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131919061488e565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516131c391906143ab565b60006040518083038185875af1925050503d8060008114613200576040519150601f19603f3d011682016040523d82523d6000602084013e613205565b606091505b5091509150613215828286613221565b92505050949350505050565b6060831561323157829050613281565b6000835111156132445782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613278919061448a565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826132be5760008555613305565b82601f106132d757805160ff1916838001178555613305565b82800160010185558215613305579182015b828111156133045782518255916020019190600101906132e9565b5b5090506133129190613316565b5090565b5b8082111561332f576000816000905550600101613317565b5090565b6000613346613341846148fa565b6148c9565b90508281526020810184848401111561335e57600080fd5b613369848285614a7c565b509392505050565b600061338461337f8461492a565b6148c9565b90508281526020810184848401111561339c57600080fd5b6133a7848285614a7c565b509392505050565b6000813590506133be81614ad1565b92915050565b6000813590506133d381614ae8565b92915050565b6000813590506133e881614aff565b92915050565b6000815190506133fd81614aff565b92915050565b600082601f83011261341457600080fd5b8135613424848260208601613333565b91505092915050565b600082601f83011261343e57600080fd5b813561344e848260208601613371565b91505092915050565b60008135905061346681614b16565b92915050565b60006020828403121561347e57600080fd5b600061348c848285016133af565b91505092915050565b600080604083850312156134a857600080fd5b60006134b6858286016133af565b92505060206134c7858286016133af565b9150509250929050565b6000806000606084860312156134e657600080fd5b60006134f4868287016133af565b9350506020613505868287016133af565b925050604061351686828701613457565b9150509250925092565b6000806000806080858703121561353657600080fd5b6000613544878288016133af565b9450506020613555878288016133af565b935050604061356687828801613457565b925050606085013567ffffffffffffffff81111561358357600080fd5b61358f87828801613403565b91505092959194509250565b600080604083850312156135ae57600080fd5b60006135bc858286016133af565b92505060206135cd858286016133c4565b9150509250929050565b600080604083850312156135ea57600080fd5b60006135f8858286016133af565b925050602061360985828601613457565b9150509250929050565b60006020828403121561362557600080fd5b6000613633848285016133d9565b91505092915050565b60006020828403121561364e57600080fd5b600061365c848285016133ee565b91505092915050565b60006020828403121561367757600080fd5b600082013567ffffffffffffffff81111561369157600080fd5b61369d8482850161342d565b91505092915050565b6000602082840312156136b857600080fd5b60006136c684828501613457565b91505092915050565b60006136db838361438d565b60208301905092915050565b6136f081614a08565b82525050565b6136ff816149f6565b82525050565b60006137108261497f565b61371a81856149ad565b93506137258361495a565b8060005b8381101561375657815161373d88826136cf565b9750613748836149a0565b925050600181019050613729565b5085935050505092915050565b61376c81614a1a565b82525050565b600061377d8261498a565b61378781856149be565b9350613797818560208601614a8b565b6137a081614ac0565b840191505092915050565b60006137b68261498a565b6137c081856149cf565b93506137d0818560208601614a8b565b80840191505092915050565b60006137e782614995565b6137f181856149da565b9350613801818560208601614a8b565b61380a81614ac0565b840191505092915050565b600061382082614995565b61382a81856149eb565b935061383a818560208601614a8b565b80840191505092915050565b6000815460018116600081146138635760018114613889576138cd565b607f600283041661387481876149da565b955060ff1983168652602086019350506138cd565b6002820461389781876149da565b95506138a28561496a565b60005b828110156138c4578154818901526001820191506020810190506138a5565b80880195505050505b505092915050565b60006138e26022836149da565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613948602e836149da565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620486f726e7920486f67730000000000000000000000000000000000006020830152604082019050919050565b60006139ae6019836149da565b91507f43484f4f5345204120484f472057495448494e2052414e4745000000000000006000830152602082019050919050565b60006139ee6032836149da565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613a546026836149da565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613aba601c836149da565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613afa601b836149da565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000613b3a6020836149da565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b6000613b7a6024836149da565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613be06019836149da565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613c20601f836149da565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000613c60601e836149da565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000613ca06021836149da565b91507f53616c65206d7573742062652061637469766520746f206d696e74206120486f60008301527f67000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d066026836149da565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d6c602c836149da565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613dd26021836149da565b91507f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e386038836149da565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613e9e602a836149da565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f046033836149da565b91507f546865204261736555524920686173206265656e2066726f7a656e20616e642060008301527f63616e206e6f74206265206368616e6765642e000000000000000000000000006020830152604082019050919050565b6000613f6a6024836149da565b91507f54686520426173655552492068617320616c7265616479206265656e2066726f60008301527f7a656e2e000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fd06022836149da565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140366020836149da565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006140766021836149da565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140dc602c836149da565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006141426020836149da565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006141826029836149da565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006141e8602f836149da565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061424e6021836149da565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006142b46016836149da565b91507f4c6963656e736520616c7265616479206c6f636b6564000000000000000000006000830152602082019050919050565b60006142f46031836149da565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061435a601d836149da565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b61439681614a72565b82525050565b6143a581614a72565b82525050565b60006143b782846137ab565b915081905092915050565b60006143ce8285613815565b91506143da8284613815565b91508190509392505050565b60006020820190506143fb60008301846136f6565b92915050565b600060808201905061441660008301876136e7565b61442360208301866136f6565b614430604083018561439c565b81810360608301526144428184613772565b905095945050505050565b600060208201905081810360008301526144678184613705565b905092915050565b60006020820190506144846000830184613763565b92915050565b600060208201905081810360008301526144a481846137dc565b905092915050565b600060208201905081810360008301526144c68184613846565b905092915050565b600060208201905081810360008301526144e7816138d5565b9050919050565b600060208201905081810360008301526145078161393b565b9050919050565b60006020820190508181036000830152614527816139a1565b9050919050565b60006020820190508181036000830152614547816139e1565b9050919050565b6000602082019050818103600083015261456781613a47565b9050919050565b6000602082019050818103600083015261458781613aad565b9050919050565b600060208201905081810360008301526145a781613aed565b9050919050565b600060208201905081810360008301526145c781613b2d565b9050919050565b600060208201905081810360008301526145e781613b6d565b9050919050565b6000602082019050818103600083015261460781613bd3565b9050919050565b6000602082019050818103600083015261462781613c13565b9050919050565b6000602082019050818103600083015261464781613c53565b9050919050565b6000602082019050818103600083015261466781613c93565b9050919050565b6000602082019050818103600083015261468781613cf9565b9050919050565b600060208201905081810360008301526146a781613d5f565b9050919050565b600060208201905081810360008301526146c781613dc5565b9050919050565b600060208201905081810360008301526146e781613e2b565b9050919050565b6000602082019050818103600083015261470781613e91565b9050919050565b6000602082019050818103600083015261472781613ef7565b9050919050565b6000602082019050818103600083015261474781613f5d565b9050919050565b6000602082019050818103600083015261476781613fc3565b9050919050565b6000602082019050818103600083015261478781614029565b9050919050565b600060208201905081810360008301526147a781614069565b9050919050565b600060208201905081810360008301526147c7816140cf565b9050919050565b600060208201905081810360008301526147e781614135565b9050919050565b6000602082019050818103600083015261480781614175565b9050919050565b60006020820190508181036000830152614827816141db565b9050919050565b6000602082019050818103600083015261484781614241565b9050919050565b60006020820190508181036000830152614867816142a7565b9050919050565b60006020820190508181036000830152614887816142e7565b9050919050565b600060208201905081810360008301526148a78161434d565b9050919050565b60006020820190506148c3600083018461439c565b92915050565b6000604051905081810181811067ffffffffffffffff821117156148f0576148ef614abe565b5b8060405250919050565b600067ffffffffffffffff82111561491557614914614abe565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561494557614944614abe565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614a0182614a52565b9050919050565b6000614a1382614a52565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614aa9578082015181840152602081019050614a8e565b83811115614ab8576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b614ada816149f6565b8114614ae557600080fd5b50565b614af181614a1a565b8114614afc57600080fd5b50565b614b0881614a26565b8114614b1357600080fd5b50565b614b1f81614a72565b8114614b2a57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea264697066735822122015f2ed11c2887d4c4471a34ddba76d2eda6daa9112a63b57ad3a9ac10a66fd7464736f6c63430007060033

Deployed Bytecode

0x6080604052600436106102305760003560e01c8063715018a61161012e578063c70b9dc2116100ab578063e832ed4d1161006f578063e832ed4d14610808578063e90840cc14610833578063e985e9c51461085e578063eb8d24441461089b578063f2fde38b146108c657610230565b8063c70b9dc214610730578063c87b56dd1461075b578063d4e8f04d14610798578063d9b137b2146107b4578063e7bc8208146107f157610230565b80639c3e72bd116100f25780639c3e72bd14610673578063a22cb4651461069e578063b09904b5146106c7578063b88d4fde146106f0578063bf4702fc1461071957610230565b8063715018a6146105a05780638462151c146105b75780638ac8f1d1146105f45780638da5cb5b1461061d57806395d89b411461064857610230565b80632f745c59116101bc5780634f6ccce7116101805780634f6ccce71461049557806355f804b3146104d25780636352211e146104fb5780636c0360eb1461053857806370a082311461056357610230565b80632f745c59146103d657806334918dfd146104135780633ccfd60b1461042a5780633dc464d61461044157806342842e0e1461046c57610230565b8063095ea7b311610203578063095ea7b3146103055780630bb8d9be1461032e578063109695231461035957806318160ddd1461038257806323b872dd146103ad57610230565b806301ffc9a7146102355780630464c5161461027257806306fdde031461029d578063081812fc146102c8575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613613565b6108ef565b604051610269919061446f565b60405180910390f35b34801561027e57600080fd5b50610287610956565b60405161029491906148ae565b60405180910390f35b3480156102a957600080fd5b506102b261095c565b6040516102bf919061448a565b60405180910390f35b3480156102d457600080fd5b506102ef60048036038101906102ea91906136a6565b6109fe565b6040516102fc91906143e6565b60405180910390f35b34801561031157600080fd5b5061032c600480360381019061032791906135d7565b610a83565b005b34801561033a57600080fd5b50610343610b9b565b604051610350919061448a565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b9190613665565b610c39565b005b34801561038e57600080fd5b50610397610ccf565b6040516103a491906148ae565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf91906134d1565b610ce0565b005b3480156103e257600080fd5b506103fd60048036038101906103f891906135d7565b610d40565b60405161040a91906148ae565b60405180910390f35b34801561041f57600080fd5b50610428610d9b565b005b34801561043657600080fd5b5061043f610e43565b005b34801561044d57600080fd5b50610456610f0e565b604051610463919061446f565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e91906134d1565b610f21565b005b3480156104a157600080fd5b506104bc60048036038101906104b791906136a6565b610f41565b6040516104c991906148ae565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f49190613665565b610f64565b005b34801561050757600080fd5b50610522600480360381019061051d91906136a6565b611042565b60405161052f91906143e6565b60405180910390f35b34801561054457600080fd5b5061054d611079565b60405161055a919061448a565b60405180910390f35b34801561056f57600080fd5b5061058a6004803603810190610585919061346c565b61111b565b60405161059791906148ae565b60405180910390f35b3480156105ac57600080fd5b506105b56111da565b005b3480156105c357600080fd5b506105de60048036038101906105d9919061346c565b611317565b6040516105eb919061444d565b60405180910390f35b34801561060057600080fd5b5061061b600480360381019061061691906135d7565b611410565b005b34801561062957600080fd5b5061063261152e565b60405161063f91906143e6565b60405180910390f35b34801561065457600080fd5b5061065d611558565b60405161066a919061448a565b60405180910390f35b34801561067f57600080fd5b506106886115fa565b604051610695919061448a565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c0919061359b565b611698565b005b3480156106d357600080fd5b506106ee60048036038101906106e99190613665565b611819565b005b3480156106fc57600080fd5b5061071760048036038101906107129190613520565b611905565b005b34801561072557600080fd5b5061072e611967565b005b34801561073c57600080fd5b50610745611a38565b60405161075291906148ae565b60405180910390f35b34801561076757600080fd5b50610782600480360381019061077d91906136a6565b611a43565b60405161078f919061448a565b60405180910390f35b6107b260048036038101906107ad91906136a6565b611bc6565b005b3480156107c057600080fd5b506107db60048036038101906107d691906136a6565b611d64565b6040516107e8919061448a565b60405180910390f35b3480156107fd57600080fd5b50610806611e51565b005b34801561081457600080fd5b5061081d611f40565b60405161082a91906148ae565b60405180910390f35b34801561083f57600080fd5b50610848611f45565b60405161085591906148ae565b60405180910390f35b34801561086a57600080fd5b5061088560048036038101906108809190613495565b611f4b565b604051610892919061446f565b60405180910390f35b3480156108a757600080fd5b506108b0611fdf565b6040516108bd919061446f565b60405180910390f35b3480156108d257600080fd5b506108ed60048036038101906108e8919061346c565b611ff2565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b61271081565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109f45780601f106109c9576101008083540402835291602001916109f4565b820191906000526020600020905b8154815290600101906020018083116109d757829003601f168201915b5050505050905090565b6000610a098261219e565b610a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3f906147ae565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8e82611042565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af69061482e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b1e6121bb565b73ffffffffffffffffffffffffffffffffffffffff161480610b4d5750610b4c81610b476121bb565b611f4b565b5b610b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b83906146ce565b60405180910390fd5b610b9683836121c3565b505050565b600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c315780601f10610c0657610100808354040283529160200191610c31565b820191906000526020600020905b815481529060010190602001808311610c1457829003601f168201915b505050505081565b610c416121bb565b73ffffffffffffffffffffffffffffffffffffffff16610c5f61152e565b73ffffffffffffffffffffffffffffffffffffffff1614610cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cac906147ce565b60405180910390fd5b80600b9080519060200190610ccb929190613288565b5050565b6000610cdb600261227c565b905090565b610cf1610ceb6121bb565b82612291565b610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d279061486e565b60405180910390fd5b610d3b83838361236f565b505050565b6000610d9382600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061258690919063ffffffff16565b905092915050565b610da36121bb565b73ffffffffffffffffffffffffffffffffffffffff16610dc161152e565b73ffffffffffffffffffffffffffffffffffffffff1614610e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0e906147ce565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b610e4b6121bb565b73ffffffffffffffffffffffffffffffffffffffff16610e6961152e565b73ffffffffffffffffffffffffffffffffffffffff1614610ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb6906147ce565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f0a573d6000803e3d6000fd5b5050565b600d60029054906101000a900460ff1681565b610f3c83838360405180602001604052806000815250611905565b505050565b600080610f588360026125a090919063ffffffff16565b50905080915050919050565b610f6c6121bb565b73ffffffffffffffffffffffffffffffffffffffff16610f8a61152e565b73ffffffffffffffffffffffffffffffffffffffff1614610fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd7906147ce565b60405180910390fd5b60001515600d60029054906101000a900460ff16151514611036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102d9061470e565b60405180910390fd5b61103f816125cc565b50565b600061107282604051806060016040528060298152602001614b606029913960026125e69092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111115780601f106110e657610100808354040283529160200191611111565b820191906000526020600020905b8154815290600101906020018083116110f457829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561118c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611183906146ee565b60405180910390fd5b6111d3600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612605565b9050919050565b6111e26121bb565b73ffffffffffffffffffffffffffffffffffffffff1661120061152e565b73ffffffffffffffffffffffffffffffffffffffff1614611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d906147ce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b606060006113248361111b565b9050600081141561137f57600067ffffffffffffffff8111801561134757600080fd5b506040519080825280602002602001820160405280156113765781602001602082028036833780820191505090505b5091505061140b565b60008167ffffffffffffffff8111801561139857600080fd5b506040519080825280602002602001820160405280156113c75781602001602082028036833780820191505090505b50905060005b82811015611404576113df8582610d40565b8282815181106113eb57fe5b60200260200101818152505080806001019150506113cd565b8193505050505b919050565b6114186121bb565b73ffffffffffffffffffffffffffffffffffffffff1661143661152e565b73ffffffffffffffffffffffffffffffffffffffff161461148c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611483906147ce565b60405180910390fd5b6000611496610ccf565b90506000821180156114aa5750600e548211155b6114e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e0906145ae565b60405180910390fd5b60005b8281101561150d576115008482840161261a565b80806001019150506114ec565b5061152382600e5461263890919063ffffffff16565b600e81905550505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156115f05780601f106115c5576101008083540402835291602001916115f0565b820191906000526020600020905b8154815290600101906020018083116115d357829003601f168201915b5050505050905090565b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116905780601f1061166557610100808354040283529160200191611690565b820191906000526020600020905b81548152906001019060200180831161167357829003601f168201915b505050505081565b6116a06121bb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561170e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611705906145ee565b60405180910390fd5b806005600061171b6121bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117c86121bb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161180d919061446f565b60405180910390a35050565b6118216121bb565b73ffffffffffffffffffffffffffffffffffffffff1661183f61152e565b73ffffffffffffffffffffffffffffffffffffffff1614611895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188c906147ce565b60405180910390fd5b60001515600d60009054906101000a900460ff161515146118eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e29061484e565b60405180910390fd5b80600c9080519060200190611901929190613288565b5050565b6119166119106121bb565b83612291565b611955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194c9061486e565b60405180910390fd5b61196184848484612688565b50505050565b61196f6121bb565b73ffffffffffffffffffffffffffffffffffffffff1661198d61152e565b73ffffffffffffffffffffffffffffffffffffffff16146119e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119da906147ce565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0600c604051611a2e91906144ac565b60405180910390a1565b669fdf42f6e4800081565b6060611a4e8261219e565b611a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a849061480e565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b365780601f10611b0b57610100808354040283529160200191611b36565b820191906000526020600020905b815481529060010190602001808311611b1957829003601f168201915b505050505090506000611b47611079565b9050600081511415611b5d578192505050611bc1565b600082511115611b92578082604051602001611b7a9291906143c2565b60405160208183030381529060405292505050611bc1565b80611b9c856126e4565b604051602001611bad9291906143c2565b604051602081830303815290604052925050505b919050565b600d60019054906101000a900460ff16611c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0c9061464e565b60405180910390fd5b600081118015611c26575060148111155b611c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5c906146ae565b60405180910390fd5b612710611c8282611c74610ccf565b61282b90919063ffffffff16565b1115611cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cba906144ee565b60405180910390fd5b611cdd81669fdf42f6e4800061288090919063ffffffff16565b341015611d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d169061460e565b60405180910390fd5b60005b81811015611d60576000611d34610ccf565b9050612710611d41610ccf565b1015611d5257611d51338261261a565b5b508080600101915050611d22565b5050565b6060611d6e610ccf565b8210611daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da69061450e565b60405180910390fd5b600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611e455780601f10611e1a57610100808354040283529160200191611e45565b820191906000526020600020905b815481529060010190602001808311611e2857829003601f168201915b50505050509050919050565b611e596121bb565b73ffffffffffffffffffffffffffffffffffffffff16611e7761152e565b73ffffffffffffffffffffffffffffffffffffffff1614611ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec4906147ce565b60405180910390fd5b60001515600d60029054906101000a900460ff16151514611f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1a9061472e565b60405180910390fd5b6001600d60026101000a81548160ff021916908315150217905550565b601481565b600e5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60019054906101000a900460ff1681565b611ffa6121bb565b73ffffffffffffffffffffffffffffffffffffffff1661201861152e565b73ffffffffffffffffffffffffffffffffffffffff161461206e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612065906147ce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d59061454e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006121b48260026128f090919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661223683611042565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061228a8260000161290a565b9050919050565b600061229c8261219e565b6122db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d29061468e565b60405180910390fd5b60006122e683611042565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061235557508373ffffffffffffffffffffffffffffffffffffffff1661233d846109fe565b73ffffffffffffffffffffffffffffffffffffffff16145b8061236657506123658185611f4b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661238f82611042565b73ffffffffffffffffffffffffffffffffffffffff16146123e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123dc906147ee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244c906145ce565b60405180910390fd5b61246083838361291b565b61246b6000826121c3565b6124bc81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061292090919063ffffffff16565b5061250e81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061293a90919063ffffffff16565b50612525818360026129549092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006125958360000183612989565b60001c905092915050565b6000806000806125b386600001866129f6565b915091508160001c8160001c9350935050509250929050565b80600990805190602001906125e2929190613288565b5050565b60006125f9846000018460001b84612a79565b60001c90509392505050565b600061261382600001612b0a565b9050919050565b612634828260405180602001604052806000815250612b1b565b5050565b60008282111561267d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126749061462e565b60405180910390fd5b818303905092915050565b61269384848461236f565b61269f84848484612b76565b6126de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d59061452e565b60405180910390fd5b50505050565b6060600082141561272c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612826565b600082905060005b60008214612756578080600101915050600a828161274e57fe5b049150612734565b60008167ffffffffffffffff8111801561276f57600080fd5b506040519080825280601f01601f1916602001820160405280156127a25781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461281e57600a84816127c357fe5b0660300160f81b828280600190039350815181106127dd57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161281657fe5b0493506127b1565b819450505050505b919050565b600080828401905083811015612876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286d9061458e565b60405180910390fd5b8091505092915050565b60008083141561289357600090506128ea565b60008284029050828482816128a457fe5b04146128e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128dc9061478e565b60405180910390fd5b809150505b92915050565b6000612902836000018360001b612cda565b905092915050565b600081600001805490509050919050565b505050565b6000612932836000018360001b612cfd565b905092915050565b600061294c836000018360001b612de5565b905092915050565b6000612980846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612e55565b90509392505050565b6000818360000180549050116129d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cb906144ce565b60405180910390fd5b8260000182815481106129e357fe5b9060005260206000200154905092915050565b60008082846000018054905011612a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a399061474e565b60405180910390fd5b6000846000018481548110612a5357fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad2919061448a565b60405180910390fd5b50846000016001820381548110612aee57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b612b258383612f31565b612b326000848484612b76565b612b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b689061452e565b60405180910390fd5b505050565b6000612b978473ffffffffffffffffffffffffffffffffffffffff166130bf565b612ba45760019050612cd2565b6000612c6b63150b7a0260e01b612bb96121bb565b888787604051602401612bcf9493929190614401565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614b2e603291398773ffffffffffffffffffffffffffffffffffffffff166130d29092919063ffffffff16565b9050600081806020019051810190612c83919061363c565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114612dd95760006001820390506000600186600001805490500390506000866000018281548110612d4857fe5b9060005260206000200154905080876000018481548110612d6557fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612d9d57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612ddf565b60009150505b92915050565b6000612df183836130ea565b612e4a578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612e4f565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415612efc57846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050612f2a565b82856000016001830381548110612f0f57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f989061476e565b60405180910390fd5b612faa8161219e565b15612fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe19061456e565b60405180910390fd5b612ff66000838361291b565b61304781600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061293a90919063ffffffff16565b5061305e818360026129549092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606130e1848460008561310d565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015613152576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131499061466e565b60405180910390fd5b61315b856130bf565b61319a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131919061488e565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516131c391906143ab565b60006040518083038185875af1925050503d8060008114613200576040519150601f19603f3d011682016040523d82523d6000602084013e613205565b606091505b5091509150613215828286613221565b92505050949350505050565b6060831561323157829050613281565b6000835111156132445782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613278919061448a565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826132be5760008555613305565b82601f106132d757805160ff1916838001178555613305565b82800160010185558215613305579182015b828111156133045782518255916020019190600101906132e9565b5b5090506133129190613316565b5090565b5b8082111561332f576000816000905550600101613317565b5090565b6000613346613341846148fa565b6148c9565b90508281526020810184848401111561335e57600080fd5b613369848285614a7c565b509392505050565b600061338461337f8461492a565b6148c9565b90508281526020810184848401111561339c57600080fd5b6133a7848285614a7c565b509392505050565b6000813590506133be81614ad1565b92915050565b6000813590506133d381614ae8565b92915050565b6000813590506133e881614aff565b92915050565b6000815190506133fd81614aff565b92915050565b600082601f83011261341457600080fd5b8135613424848260208601613333565b91505092915050565b600082601f83011261343e57600080fd5b813561344e848260208601613371565b91505092915050565b60008135905061346681614b16565b92915050565b60006020828403121561347e57600080fd5b600061348c848285016133af565b91505092915050565b600080604083850312156134a857600080fd5b60006134b6858286016133af565b92505060206134c7858286016133af565b9150509250929050565b6000806000606084860312156134e657600080fd5b60006134f4868287016133af565b9350506020613505868287016133af565b925050604061351686828701613457565b9150509250925092565b6000806000806080858703121561353657600080fd5b6000613544878288016133af565b9450506020613555878288016133af565b935050604061356687828801613457565b925050606085013567ffffffffffffffff81111561358357600080fd5b61358f87828801613403565b91505092959194509250565b600080604083850312156135ae57600080fd5b60006135bc858286016133af565b92505060206135cd858286016133c4565b9150509250929050565b600080604083850312156135ea57600080fd5b60006135f8858286016133af565b925050602061360985828601613457565b9150509250929050565b60006020828403121561362557600080fd5b6000613633848285016133d9565b91505092915050565b60006020828403121561364e57600080fd5b600061365c848285016133ee565b91505092915050565b60006020828403121561367757600080fd5b600082013567ffffffffffffffff81111561369157600080fd5b61369d8482850161342d565b91505092915050565b6000602082840312156136b857600080fd5b60006136c684828501613457565b91505092915050565b60006136db838361438d565b60208301905092915050565b6136f081614a08565b82525050565b6136ff816149f6565b82525050565b60006137108261497f565b61371a81856149ad565b93506137258361495a565b8060005b8381101561375657815161373d88826136cf565b9750613748836149a0565b925050600181019050613729565b5085935050505092915050565b61376c81614a1a565b82525050565b600061377d8261498a565b61378781856149be565b9350613797818560208601614a8b565b6137a081614ac0565b840191505092915050565b60006137b68261498a565b6137c081856149cf565b93506137d0818560208601614a8b565b80840191505092915050565b60006137e782614995565b6137f181856149da565b9350613801818560208601614a8b565b61380a81614ac0565b840191505092915050565b600061382082614995565b61382a81856149eb565b935061383a818560208601614a8b565b80840191505092915050565b6000815460018116600081146138635760018114613889576138cd565b607f600283041661387481876149da565b955060ff1983168652602086019350506138cd565b6002820461389781876149da565b95506138a28561496a565b60005b828110156138c4578154818901526001820191506020810190506138a5565b80880195505050505b505092915050565b60006138e26022836149da565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613948602e836149da565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620486f726e7920486f67730000000000000000000000000000000000006020830152604082019050919050565b60006139ae6019836149da565b91507f43484f4f5345204120484f472057495448494e2052414e4745000000000000006000830152602082019050919050565b60006139ee6032836149da565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613a546026836149da565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613aba601c836149da565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613afa601b836149da565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000613b3a6020836149da565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b6000613b7a6024836149da565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613be06019836149da565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613c20601f836149da565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000613c60601e836149da565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000613ca06021836149da565b91507f53616c65206d7573742062652061637469766520746f206d696e74206120486f60008301527f67000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d066026836149da565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d6c602c836149da565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613dd26021836149da565b91507f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e386038836149da565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613e9e602a836149da565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f046033836149da565b91507f546865204261736555524920686173206265656e2066726f7a656e20616e642060008301527f63616e206e6f74206265206368616e6765642e000000000000000000000000006020830152604082019050919050565b6000613f6a6024836149da565b91507f54686520426173655552492068617320616c7265616479206265656e2066726f60008301527f7a656e2e000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fd06022836149da565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140366020836149da565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006140766021836149da565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140dc602c836149da565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006141426020836149da565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006141826029836149da565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006141e8602f836149da565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061424e6021836149da565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006142b46016836149da565b91507f4c6963656e736520616c7265616479206c6f636b6564000000000000000000006000830152602082019050919050565b60006142f46031836149da565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061435a601d836149da565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b61439681614a72565b82525050565b6143a581614a72565b82525050565b60006143b782846137ab565b915081905092915050565b60006143ce8285613815565b91506143da8284613815565b91508190509392505050565b60006020820190506143fb60008301846136f6565b92915050565b600060808201905061441660008301876136e7565b61442360208301866136f6565b614430604083018561439c565b81810360608301526144428184613772565b905095945050505050565b600060208201905081810360008301526144678184613705565b905092915050565b60006020820190506144846000830184613763565b92915050565b600060208201905081810360008301526144a481846137dc565b905092915050565b600060208201905081810360008301526144c68184613846565b905092915050565b600060208201905081810360008301526144e7816138d5565b9050919050565b600060208201905081810360008301526145078161393b565b9050919050565b60006020820190508181036000830152614527816139a1565b9050919050565b60006020820190508181036000830152614547816139e1565b9050919050565b6000602082019050818103600083015261456781613a47565b9050919050565b6000602082019050818103600083015261458781613aad565b9050919050565b600060208201905081810360008301526145a781613aed565b9050919050565b600060208201905081810360008301526145c781613b2d565b9050919050565b600060208201905081810360008301526145e781613b6d565b9050919050565b6000602082019050818103600083015261460781613bd3565b9050919050565b6000602082019050818103600083015261462781613c13565b9050919050565b6000602082019050818103600083015261464781613c53565b9050919050565b6000602082019050818103600083015261466781613c93565b9050919050565b6000602082019050818103600083015261468781613cf9565b9050919050565b600060208201905081810360008301526146a781613d5f565b9050919050565b600060208201905081810360008301526146c781613dc5565b9050919050565b600060208201905081810360008301526146e781613e2b565b9050919050565b6000602082019050818103600083015261470781613e91565b9050919050565b6000602082019050818103600083015261472781613ef7565b9050919050565b6000602082019050818103600083015261474781613f5d565b9050919050565b6000602082019050818103600083015261476781613fc3565b9050919050565b6000602082019050818103600083015261478781614029565b9050919050565b600060208201905081810360008301526147a781614069565b9050919050565b600060208201905081810360008301526147c7816140cf565b9050919050565b600060208201905081810360008301526147e781614135565b9050919050565b6000602082019050818103600083015261480781614175565b9050919050565b60006020820190508181036000830152614827816141db565b9050919050565b6000602082019050818103600083015261484781614241565b9050919050565b60006020820190508181036000830152614867816142a7565b9050919050565b60006020820190508181036000830152614887816142e7565b9050919050565b600060208201905081810360008301526148a78161434d565b9050919050565b60006020820190506148c3600083018461439c565b92915050565b6000604051905081810181811067ffffffffffffffff821117156148f0576148ef614abe565b5b8060405250919050565b600067ffffffffffffffff82111561491557614914614abe565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561494557614944614abe565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614a0182614a52565b9050919050565b6000614a1382614a52565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614aa9578082015181840152602081019050614a8e565b83811115614ab8576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b614ada816149f6565b8114614ae557600080fd5b50565b614af181614a1a565b8114614afc57600080fd5b50565b614b0881614a26565b8114614b1357600080fd5b50565b614b1f81614a72565b8114614b2a57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea264697066735822122015f2ed11c2887d4c4471a34ddba76d2eda6daa9112a63b57ad3a9ac10a66fd7464736f6c63430007060033

Deployed Bytecode Sourcemap

66895:3719:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10303:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67241:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51582:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54368:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53898:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66984:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68090:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53376:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55258:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53138:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68603:89;;;;;;;;;;;;;:::i;:::-;;67544:131;;;;;;;;;;;;;:::i;:::-;;67335:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55634:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53664:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68228:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51338:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52957:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51055:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66285:148;;;;;;;;;;;;;:::i;:::-;;68710:540;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67687:393;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65634:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51751:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67037:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54661:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69704:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55856:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69540:125;;;;;;;;;;;;;:::i;:::-;;67118:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51926:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69896:688;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69301:173;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68434:159;;;;;;;;;;;;;:::i;:::-;;67192:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67384:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55027:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67290:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66588:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10303:150;10388:4;10412:20;:33;10433:11;10412:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10405:40;;10303:150;;;:::o;67241:40::-;67276:5;67241:40;:::o;51582:100::-;51636:13;51669:5;51662:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51582:100;:::o;54368:221::-;54444:7;54472:16;54480:7;54472;:16::i;:::-;54464:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54557:15;:24;54573:7;54557:24;;;;;;;;;;;;;;;;;;;;;54550:31;;54368:221;;;:::o;53898:404::-;53979:13;53995:23;54010:7;53995:14;:23::i;:::-;53979:39;;54043:5;54037:11;;:2;:11;;;;54029:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;54123:5;54107:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;54132:44;54156:5;54163:12;:10;:12::i;:::-;54132:23;:44::i;:::-;54107:69;54099:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;54273:21;54282:2;54286:7;54273:8;:21::i;:::-;53898:404;;;:::o;66984:39::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;68090:130::-;65865:12;:10;:12::i;:::-;65854:23;;:7;:5;:7::i;:::-;:23;;;65846:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68198:14:::1;68175:20;:37;;;;;;;;;;;;:::i;:::-;;68090:130:::0;:::o;53376:211::-;53437:7;53558:21;:12;:19;:21::i;:::-;53551:28;;53376:211;:::o;55258:305::-;55419:41;55438:12;:10;:12::i;:::-;55452:7;55419:18;:41::i;:::-;55411:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;55527:28;55537:4;55543:2;55547:7;55527:9;:28::i;:::-;55258:305;;;:::o;53138:162::-;53235:7;53262:30;53286:5;53262:13;:20;53276:5;53262:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;53255:37;;53138:162;;;;:::o;68603:89::-;65865:12;:10;:12::i;:::-;65854:23;;:7;:5;:7::i;:::-;:23;;;65846:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68672:12:::1;;;;;;;;;;;68671:13;68656:12;;:28;;;;;;;;;;;;;;;;;;68603:89::o:0;67544:131::-;65865:12;:10;:12::i;:::-;65854:23;;:7;:5;:7::i;:::-;:23;;;65846:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67592:12:::1;67607:21;67592:36;;67639:10;:19;;:28;67659:7;67639:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;65925:1;67544:131::o:0;67335:31::-;;;;;;;;;;;;;:::o;55634:151::-;55738:39;55755:4;55761:2;55765:7;55738:39;;;;;;;;;;;;:16;:39::i;:::-;55634:151;;;:::o;53664:172::-;53739:7;53760:15;53781:22;53797:5;53781:12;:15;;:22;;;;:::i;:::-;53759:44;;;53821:7;53814:14;;;53664:172;;;:::o;68228:194::-;65865:12;:10;:12::i;:::-;65854:23;;:7;:5;:7::i;:::-;:23;;;65846:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68322:5:::1;68307:20;;:11;;;;;;;;;;;:20;;;68299:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;68394:20;68406:7;68394:11;:20::i;:::-;68228:194:::0;:::o;51338:177::-;51410:7;51437:70;51454:7;51437:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;51430:77;;51338:177;;;:::o;52957:97::-;53005:13;53038:8;53031:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52957:97;:::o;51055:221::-;51127:7;51172:1;51155:19;;:5;:19;;;;51147:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;51239:29;:13;:20;51253:5;51239:20;;;;;;;;;;;;;;;:27;:29::i;:::-;51232:36;;51055:221;;;:::o;66285:148::-;65865:12;:10;:12::i;:::-;65854:23;;:7;:5;:7::i;:::-;:23;;;65846:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66392:1:::1;66355:40;;66376:6;;;;;;;;;;;66355:40;;;;;;;;;;;;66423:1;66406:6;;:19;;;;;;;;;;;;;;;;;;66285:148::o:0;68710:540::-;68771:16;68801:18;68822:17;68832:6;68822:9;:17::i;:::-;68801:38;;68868:1;68854:10;:15;68850:393;;;68945:1;68931:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68924:23;;;;;68850:393;68980:23;69020:10;69006:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68980:51;;69046:13;69074:130;69098:10;69090:5;:18;69074:130;;;69154:34;69174:6;69182:5;69154:19;:34::i;:::-;69138:6;69145:5;69138:13;;;;;;;;;;;;;:50;;;;;69110:7;;;;;;;69074:130;;;69225:6;69218:13;;;;;68710:540;;;;:::o;67687:393::-;65865:12;:10;:12::i;:::-;65854:23;;:7;:5;:7::i;:::-;:23;;;65846:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67780:11:::1;67794:13;:11;:13::i;:::-;67780:27;;67843:1;67826:14;:18;:50;;;;;67866:10;;67848:14;:28;;67826:50;67818:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;67929:6;67924:95;67945:14;67941:1;:18;67924:95;;;67981:26;67991:3;68005:1;67996:6;:10;67981:9;:26::i;:::-;67961:3;;;;;;;67924:95;;;;68042:30;68057:14;68042:10;;:14;;:30;;;;:::i;:::-;68029:10;:43;;;;65925:1;67687:393:::0;;:::o;65634:87::-;65680:7;65707:6;;;;;;;;;;;65700:13;;65634:87;:::o;51751:104::-;51807:13;51840:7;51833:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51751:104;:::o;67037:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54661:295::-;54776:12;:10;:12::i;:::-;54764:24;;:8;:24;;;;54756:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;54876:8;54831:18;:32;54850:12;:10;:12::i;:::-;54831:32;;;;;;;;;;;;;;;:42;54864:8;54831:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;54929:8;54900:48;;54915:12;:10;:12::i;:::-;54900:48;;;54939:8;54900:48;;;;;;:::i;:::-;;;;;;;;54661:295;;:::o;69704:174::-;65865:12;:10;:12::i;:::-;65854:23;;:7;:5;:7::i;:::-;:23;;;65846:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69804:5:::1;69787:22;;:13;;;;;;;;;;;:22;;;69779:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;69862:8;69847:12;:23;;;;;;;;;;;;:::i;:::-;;69704:174:::0;:::o;55856:285::-;55988:41;56007:12;:10;:12::i;:::-;56021:7;55988:18;:41::i;:::-;55980:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;56094:39;56108:4;56114:2;56118:7;56127:5;56094:13;:39::i;:::-;55856:285;;;;:::o;69540:125::-;65865:12;:10;:12::i;:::-;65854:23;;:7;:5;:7::i;:::-;:23;;;65846:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69608:4:::1;69591:13;;:21;;;;;;;;;;;;;;;;;;69628:29;69644:12;69628:29;;;;;;:::i;:::-;;;;;;;;69540:125::o:0;67118:52::-;67153:17;67118:52;:::o;51926:792::-;51999:13;52033:16;52041:7;52033;:16::i;:::-;52025:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;52114:23;52140:10;:19;52151:7;52140:19;;;;;;;;;;;52114:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52170:18;52191:9;:7;:9::i;:::-;52170:30;;52298:1;52282:4;52276:18;:23;52272:72;;;52323:9;52316:16;;;;;;52272:72;52474:1;52454:9;52448:23;:27;52444:108;;;52523:4;52529:9;52506:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52492:48;;;;;;52444:108;52684:4;52690:18;:7;:16;:18::i;:::-;52667:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52653:57;;;;51926:792;;;;:::o;69896:688::-;69973:12;;;;;;;;;;;69965:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;70059:1;70042:14;:18;:54;;;;;67230:2;70064:14;:32;;70042:54;70034:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;67276:5;70153:33;70171:14;70153:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:45;;70145:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;70281:28;70294:14;67153:17;70281:12;;:28;;;;:::i;:::-;70268:9;:41;;70260:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;70370:6;70366:209;70386:14;70382:1;:18;70366:209;;;70422:14;70439:13;:11;:13::i;:::-;70422:30;;67276:5;70471:13;:11;:13::i;:::-;:24;70467:97;;;70516:32;70526:10;70538:9;70516;:32::i;:::-;70467:97;70366:209;70402:3;;;;;;;70366:209;;;;69896:688;:::o;69301:173::-;69353:13;69393;:11;:13::i;:::-;69387:3;:19;69379:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;69454:12;69447:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69301:173;;;:::o;68434:159::-;65865:12;:10;:12::i;:::-;65854:23;;:7;:5;:7::i;:::-;:23;;;65846:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68510:5:::1;68495:20;;:11;;;;;;;;;;;:20;;;68487:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;68581:4;68567:11;;:18;;;;;;;;;;;;;;;;;;68434:159::o:0;67192:40::-;67230:2;67192:40;:::o;67384:28::-;;;;:::o;55027:164::-;55124:4;55148:18;:25;55167:5;55148:25;;;;;;;;;;;;;;;:35;55174:8;55148:35;;;;;;;;;;;;;;;;;;;;;;;;;55141:42;;55027:164;;;;:::o;67290:32::-;;;;;;;;;;;;;:::o;66588:244::-;65865:12;:10;:12::i;:::-;65854:23;;:7;:5;:7::i;:::-;:23;;;65846:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66697:1:::1;66677:22;;:8;:22;;;;66669:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;66787:8;66758:38;;66779:6;;;;;;;;;;;66758:38;;;;;;;;;;;;66816:8;66807:6;;:17;;;;;;;;;;;;;;;;;;66588:244:::0;:::o;57608:127::-;57673:4;57697:30;57719:7;57697:12;:21;;:30;;;;:::i;:::-;57690:37;;57608:127;;;:::o;743:106::-;796:15;831:10;824:17;;743:106;:::o;63626:192::-;63728:2;63701:15;:24;63717:7;63701:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;63784:7;63780:2;63746:46;;63755:23;63770:7;63755:14;:23::i;:::-;63746:46;;;;;;;;;;;;63626:192;;:::o;44346:123::-;44415:7;44442:19;44450:3;:10;;44442:7;:19::i;:::-;44435:26;;44346:123;;;:::o;57902:355::-;57995:4;58020:16;58028:7;58020;:16::i;:::-;58012:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58096:13;58112:23;58127:7;58112:14;:23::i;:::-;58096:39;;58165:5;58154:16;;:7;:16;;;:51;;;;58198:7;58174:31;;:20;58186:7;58174:11;:20::i;:::-;:31;;;58154:51;:94;;;;58209:39;58233:5;58240:7;58209:23;:39::i;:::-;58154:94;58146:103;;;57902:355;;;;:::o;61038:599::-;61163:4;61136:31;;:23;61151:7;61136:14;:23::i;:::-;:31;;;61128:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;61264:1;61250:16;;:2;:16;;;;61242:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61320:39;61341:4;61347:2;61351:7;61320:20;:39::i;:::-;61424:29;61441:1;61445:7;61424:8;:29::i;:::-;61466:35;61493:7;61466:13;:19;61480:4;61466:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;61512:30;61534:7;61512:13;:17;61526:2;61512:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;61555:29;61572:7;61581:2;61555:12;:16;;:29;;;;;:::i;:::-;;61621:7;61617:2;61602:27;;61611:4;61602:27;;;;;;;;;;;;61038:599;;;:::o;36137:137::-;36208:7;36243:22;36247:3;:10;;36259:5;36243:3;:22::i;:::-;36235:31;;36228:38;;36137:137;;;;:::o;44808:236::-;44888:7;44897;44918:11;44931:13;44948:22;44952:3;:10;;44964:5;44948:3;:22::i;:::-;44917:53;;;;44997:3;44989:12;;45027:5;45019:14;;44981:55;;;;;;44808:236;;;;;:::o;62238:100::-;62322:8;62311;:19;;;;;;;;;;;;:::i;:::-;;62238:100;:::o;46094:213::-;46201:7;46252:44;46257:3;:10;;46277:3;46269:12;;46283;46252:4;:44::i;:::-;46244:53;;46221:78;;46094:213;;;;;:::o;35679:114::-;35739:7;35766:19;35774:3;:10;;35766:7;:19::i;:::-;35759:26;;35679:114;;;:::o;58600:110::-;58676:26;58686:2;58690:7;58676:26;;;;;;;;;;;;:9;:26::i;:::-;58600:110;;:::o;14327:158::-;14385:7;14418:1;14413;:6;;14405:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;14476:1;14472;:5;14465:12;;14327:158;;;;:::o;57023:272::-;57137:28;57147:4;57153:2;57157:7;57137:9;:28::i;:::-;57184:48;57207:4;57213:2;57217:7;57226:5;57184:22;:48::i;:::-;57176:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;57023:272;;;;:::o;46558:746::-;46614:13;46844:1;46835:5;:10;46831:53;;;46862:10;;;;;;;;;;;;;;;;;;;;;46831:53;46894:12;46909:5;46894:20;;46925:14;46950:78;46965:1;46957:4;:9;46950:78;;46983:8;;;;;;;47014:2;47006:10;;;;;;;;;46950:78;;;47038:19;47070:6;47060:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47038:39;;47088:13;47113:1;47104:6;:10;47088:26;;47132:5;47125:12;;47148:117;47163:1;47155:4;:9;47148:117;;47224:2;47217:4;:9;;;;;;47212:2;:14;47199:29;;47181:6;47188:7;;;;;;;47181:15;;;;;;;;;;;:47;;;;;;;;;;;47251:2;47243:10;;;;;;;;;47148:117;;;47289:6;47275:21;;;;;;46558:746;;;;:::o;13865:179::-;13923:7;13943:9;13959:1;13955;:5;13943:17;;13984:1;13979;:6;;13971:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;14035:1;14028:8;;;13865:179;;;;:::o;14744:220::-;14802:7;14831:1;14826;:6;14822:20;;;14841:1;14834:8;;;;14822:20;14853:9;14869:1;14865;:5;14853:17;;14898:1;14893;14889;:5;;;;;;:10;14881:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;14955:1;14948:8;;;14744:220;;;;;:::o;44107:151::-;44191:4;44215:35;44225:3;:10;;44245:3;44237:12;;44215:9;:35::i;:::-;44208:42;;44107:151;;;;:::o;40925:110::-;40981:7;41008:3;:12;;:19;;;;41001:26;;40925:110;;;:::o;64431:93::-;;;;:::o;35224:137::-;35294:4;35318:35;35326:3;:10;;35346:5;35338:14;;35318:7;:35::i;:::-;35311:42;;35224:137;;;;:::o;34917:131::-;34984:4;35008:32;35013:3;:10;;35033:5;35025:14;;35008:4;:32::i;:::-;35001:39;;34917:131;;;;:::o;43530:185::-;43619:4;43643:64;43648:3;:10;;43668:3;43660:12;;43698:5;43682:23;;43674:32;;43643:4;:64::i;:::-;43636:71;;43530:185;;;;;:::o;31175:204::-;31242:7;31291:5;31270:3;:11;;:18;;;;:26;31262:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31353:3;:11;;31365:5;31353:18;;;;;;;;;;;;;;;;31346:25;;31175:204;;;;:::o;41390:279::-;41457:7;41466;41516:5;41494:3;:12;;:19;;;;:27;41486:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;41573:22;41598:3;:12;;41611:5;41598:19;;;;;;;;;;;;;;;;;;41573:44;;41636:5;:10;;;41648:5;:12;;;41628:33;;;;;41390:279;;;;;:::o;42887:319::-;42981:7;43001:16;43020:3;:12;;:17;43033:3;43020:17;;;;;;;;;;;;43001:36;;43068:1;43056:8;:13;;43071:12;43048:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;43138:3;:12;;43162:1;43151:8;:12;43138:26;;;;;;;;;;;;;;;;;;:33;;;43131:40;;;42887:319;;;;;:::o;30722:109::-;30778:7;30805:3;:11;;:18;;;;30798:25;;30722:109;;;:::o;58937:250::-;59033:18;59039:2;59043:7;59033:5;:18::i;:::-;59070:54;59101:1;59105:2;59109:7;59118:5;59070:22;:54::i;:::-;59062:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;58937:250;;;:::o;62903:604::-;63024:4;63051:15;:2;:13;;;:15::i;:::-;63046:60;;63090:4;63083:11;;;;63046:60;63116:23;63142:252;63195:45;;;63255:12;:10;:12::i;:::-;63282:4;63301:7;63323:5;63158:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63142:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;63116:278;;63405:13;63432:10;63421:32;;;;;;;;;;;;:::i;:::-;63405:48;;48058:10;63482:16;;63472:26;;;:6;:26;;;;63464:35;;;;62903:604;;;;;;;:::o;40705:125::-;40776:4;40821:1;40800:3;:12;;:17;40813:3;40800:17;;;;;;;;;;;;:22;;40793:29;;40705:125;;;;:::o;28877:1544::-;28943:4;29061:18;29082:3;:12;;:19;29095:5;29082:19;;;;;;;;;;;;29061:40;;29132:1;29118:10;:15;29114:1300;;29480:21;29517:1;29504:10;:14;29480:38;;29533:17;29574:1;29553:3;:11;;:18;;;;:22;29533:42;;29820:17;29840:3;:11;;29852:9;29840:22;;;;;;;;;;;;;;;;29820:42;;29986:9;29957:3;:11;;29969:13;29957:26;;;;;;;;;;;;;;;:38;;;;30105:1;30089:13;:17;30063:3;:12;;:23;30076:9;30063:23;;;;;;;;;;;:43;;;;30215:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;30310:3;:12;;:19;30323:5;30310:19;;;;;;;;;;;30303:26;;;30353:4;30346:11;;;;;;;;29114:1300;30397:5;30390:12;;;28877:1544;;;;;:::o;28287:414::-;28350:4;28372:21;28382:3;28387:5;28372:9;:21::i;:::-;28367:327;;28410:3;:11;;28427:5;28410:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28593:3;:11;;:18;;;;28571:3;:12;;:19;28584:5;28571:19;;;;;;;;;;;:40;;;;28633:4;28626:11;;;;28367:327;28677:5;28670:12;;28287:414;;;;;:::o;38205:692::-;38281:4;38397:16;38416:3;:12;;:17;38429:3;38416:17;;;;;;;;;;;;38397:36;;38462:1;38450:8;:13;38446:444;;;38517:3;:12;;38535:38;;;;;;;;38552:3;38535:38;;;;38565:5;38535:38;;;38517:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38732:3;:12;;:19;;;;38712:3;:12;;:17;38725:3;38712:17;;;;;;;;;;;:39;;;;38773:4;38766:11;;;;;38446:444;38846:5;38810:3;:12;;38834:1;38823:8;:12;38810:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38873:5;38866:12;;;38205:692;;;;;;:::o;59523:404::-;59617:1;59603:16;;:2;:16;;;;59595:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;59676:16;59684:7;59676;:16::i;:::-;59675:17;59667:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;59738:45;59767:1;59771:2;59775:7;59738:20;:45::i;:::-;59796:30;59818:7;59796:13;:17;59810:2;59796:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;59839:29;59856:7;59865:2;59839:12;:16;;:29;;;;;:::i;:::-;;59911:7;59907:2;59886:33;;59903:1;59886:33;;;;;;;;;;;;59523:404;;:::o;19306:422::-;19366:4;19574:12;19685:7;19673:20;19665:28;;19719:1;19712:4;:8;19705:15;;;19306:422;;;:::o;22224:195::-;22327:12;22359:52;22381:6;22389:4;22395:1;22398:12;22359:21;:52::i;:::-;22352:59;;22224:195;;;;;:::o;30507:129::-;30580:4;30627:1;30604:3;:12;;:19;30617:5;30604:19;;;;;;;;;;;;:24;;30597:31;;30507:129;;;;:::o;23276:530::-;23403:12;23461:5;23436:21;:30;;23428:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;23528:18;23539:6;23528:10;:18::i;:::-;23520:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;23654:12;23668:23;23695:6;:11;;23715:5;23723:4;23695:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23653:75;;;;23746:52;23764:7;23773:10;23785:12;23746:17;:52::i;:::-;23739:59;;;;23276:530;;;;;;:::o;25816:742::-;25931:12;25960:7;25956:595;;;25991:10;25984:17;;;;25956:595;26125:1;26105:10;:17;:21;26101:439;;;26368:10;26362:17;26429:15;26416:10;26412:2;26408:19;26401:44;26316:148;26511:12;26504:20;;;;;;;;;;;:::i;:::-;;;;;;;;25816:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:260::-;;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:52;5116:7;5107:6;5096:9;5092:22;5072:52;:::i;:::-;5062:62;;5018:116;4946:195;;;;:::o;5147:282::-;;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5281:1;5278;5271:12;5233:2;5324:1;5349:63;5404:7;5395:6;5384:9;5380:22;5349:63;:::i;:::-;5339:73;;5295:127;5223:206;;;;:::o;5435:375::-;;5553:2;5541:9;5532:7;5528:23;5524:32;5521:2;;;5569:1;5566;5559:12;5521:2;5640:1;5629:9;5625:17;5612:31;5670:18;5662:6;5659:30;5656:2;;;5702:1;5699;5692:12;5656:2;5730:63;5785:7;5776:6;5765:9;5761:22;5730:63;:::i;:::-;5720:73;;5583:220;5511:299;;;;:::o;5816:262::-;;5924:2;5912:9;5903:7;5899:23;5895:32;5892:2;;;5940:1;5937;5930:12;5892:2;5983:1;6008:53;6053:7;6044:6;6033:9;6029:22;6008:53;:::i;:::-;5998:63;;5954:117;5882:196;;;;:::o;6084:179::-;;6174:46;6216:3;6208:6;6174:46;:::i;:::-;6252:4;6247:3;6243:14;6229:28;;6164:99;;;;:::o;6269:142::-;6372:32;6398:5;6372:32;:::i;:::-;6367:3;6360:45;6350:61;;:::o;6417:118::-;6504:24;6522:5;6504:24;:::i;:::-;6499:3;6492:37;6482:53;;:::o;6571:732::-;;6719:54;6767:5;6719:54;:::i;:::-;6789:86;6868:6;6863:3;6789:86;:::i;:::-;6782:93;;6899:56;6949:5;6899:56;:::i;:::-;6978:7;7009:1;6994:284;7019:6;7016:1;7013:13;6994:284;;;7095:6;7089:13;7122:63;7181:3;7166:13;7122:63;:::i;:::-;7115:70;;7208:60;7261:6;7208:60;:::i;:::-;7198:70;;7054:224;7041:1;7038;7034:9;7029:14;;6994:284;;;6998:14;7294:3;7287:10;;6695:608;;;;;;;:::o;7309:109::-;7390:21;7405:5;7390:21;:::i;:::-;7385:3;7378:34;7368:50;;:::o;7424:360::-;;7538:38;7570:5;7538:38;:::i;:::-;7592:70;7655:6;7650:3;7592:70;:::i;:::-;7585:77;;7671:52;7716:6;7711:3;7704:4;7697:5;7693:16;7671:52;:::i;:::-;7748:29;7770:6;7748:29;:::i;:::-;7743:3;7739:39;7732:46;;7514:270;;;;;:::o;7790:373::-;;7922:38;7954:5;7922:38;:::i;:::-;7976:88;8057:6;8052:3;7976:88;:::i;:::-;7969:95;;8073:52;8118:6;8113:3;8106:4;8099:5;8095:16;8073:52;:::i;:::-;8150:6;8145:3;8141:16;8134:23;;7898:265;;;;;:::o;8169:364::-;;8285:39;8318:5;8285:39;:::i;:::-;8340:71;8404:6;8399:3;8340:71;:::i;:::-;8333:78;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:29;8519:6;8497:29;:::i;:::-;8492:3;8488:39;8481:46;;8261:272;;;;;:::o;8539:377::-;;8673:39;8706:5;8673:39;:::i;:::-;8728:89;8810:6;8805:3;8728:89;:::i;:::-;8721:96;;8826:52;8871:6;8866:3;8859:4;8852:5;8848:16;8826:52;:::i;:::-;8903:6;8898:3;8894:16;8887:23;;8649:267;;;;;:::o;8946:937::-;;9068:5;9062:12;9105:1;9094:9;9090:17;9121:1;9116:281;;;;9411:1;9406:471;;;;9083:794;;9116:281;9206:4;9202:1;9191:9;9187:17;9183:28;9231:71;9295:6;9290:3;9231:71;:::i;:::-;9224:78;;9346:4;9342:9;9331;9327:25;9322:3;9315:38;9382:4;9377:3;9373:14;9366:21;;9123:274;9116:281;;9406:471;9487:1;9476:9;9472:17;9509:71;9573:6;9568:3;9509:71;:::i;:::-;9502:78;;9608:38;9640:5;9608:38;:::i;:::-;9668:1;9682:154;9696:6;9693:1;9690:13;9682:154;;;9770:7;9764:14;9760:1;9755:3;9751:11;9744:35;9820:1;9811:7;9807:15;9796:26;;9718:4;9715:1;9711:12;9706:17;;9682:154;;;9865:1;9860:3;9856:11;9849:18;;9413:464;;;9083:794;;9035:848;;;;;:::o;9889:366::-;;10052:67;10116:2;10111:3;10052:67;:::i;:::-;10045:74;;10149:34;10145:1;10140:3;10136:11;10129:55;10215:4;10210:2;10205:3;10201:12;10194:26;10246:2;10241:3;10237:12;10230:19;;10035:220;;;:::o;10261:378::-;;10424:67;10488:2;10483:3;10424:67;:::i;:::-;10417:74;;10521:34;10517:1;10512:3;10508:11;10501:55;10587:16;10582:2;10577:3;10573:12;10566:38;10630:2;10625:3;10621:12;10614:19;;10407:232;;;:::o;10645:323::-;;10808:67;10872:2;10867:3;10808:67;:::i;:::-;10801:74;;10905:27;10901:1;10896:3;10892:11;10885:48;10959:2;10954:3;10950:12;10943:19;;10791:177;;;:::o;10974:382::-;;11137:67;11201:2;11196:3;11137:67;:::i;:::-;11130:74;;11234:34;11230:1;11225:3;11221:11;11214:55;11300:20;11295:2;11290:3;11286:12;11279:42;11347:2;11342:3;11338:12;11331:19;;11120:236;;;:::o;11362:370::-;;11525:67;11589:2;11584:3;11525:67;:::i;:::-;11518:74;;11622:34;11618:1;11613:3;11609:11;11602:55;11688:8;11683:2;11678:3;11674:12;11667:30;11723:2;11718:3;11714:12;11707:19;;11508:224;;;:::o;11738:326::-;;11901:67;11965:2;11960:3;11901:67;:::i;:::-;11894:74;;11998:30;11994:1;11989:3;11985:11;11978:51;12055:2;12050:3;12046:12;12039:19;;11884:180;;;:::o;12070:325::-;;12233:67;12297:2;12292:3;12233:67;:::i;:::-;12226:74;;12330:29;12326:1;12321:3;12317:11;12310:50;12386:2;12381:3;12377:12;12370:19;;12216:179;;;:::o;12401:330::-;;12564:67;12628:2;12623:3;12564:67;:::i;:::-;12557:74;;12661:34;12657:1;12652:3;12648:11;12641:55;12722:2;12717:3;12713:12;12706:19;;12547:184;;;:::o;12737:368::-;;12900:67;12964:2;12959:3;12900:67;:::i;:::-;12893:74;;12997:34;12993:1;12988:3;12984:11;12977:55;13063:6;13058:2;13053:3;13049:12;13042:28;13096:2;13091:3;13087:12;13080:19;;12883:222;;;:::o;13111:323::-;;13274:67;13338:2;13333:3;13274:67;:::i;:::-;13267:74;;13371:27;13367:1;13362:3;13358:11;13351:48;13425:2;13420:3;13416:12;13409:19;;13257:177;;;:::o;13440:329::-;;13603:67;13667:2;13662:3;13603:67;:::i;:::-;13596:74;;13700:33;13696:1;13691:3;13687:11;13680:54;13760:2;13755:3;13751:12;13744:19;;13586:183;;;:::o;13775:328::-;;13938:67;14002:2;13997:3;13938:67;:::i;:::-;13931:74;;14035:32;14031:1;14026:3;14022:11;14015:53;14094:2;14089:3;14085:12;14078:19;;13921:182;;;:::o;14109:365::-;;14272:67;14336:2;14331:3;14272:67;:::i;:::-;14265:74;;14369:34;14365:1;14360:3;14356:11;14349:55;14435:3;14430:2;14425:3;14421:12;14414:25;14465:2;14460:3;14456:12;14449:19;;14255:219;;;:::o;14480:370::-;;14643:67;14707:2;14702:3;14643:67;:::i;:::-;14636:74;;14740:34;14736:1;14731:3;14727:11;14720:55;14806:8;14801:2;14796:3;14792:12;14785:30;14841:2;14836:3;14832:12;14825:19;;14626:224;;;:::o;14856:376::-;;15019:67;15083:2;15078:3;15019:67;:::i;:::-;15012:74;;15116:34;15112:1;15107:3;15103:11;15096:55;15182:14;15177:2;15172:3;15168:12;15161:36;15223:2;15218:3;15214:12;15207:19;;15002:230;;;:::o;15238:365::-;;15401:67;15465:2;15460:3;15401:67;:::i;:::-;15394:74;;15498:34;15494:1;15489:3;15485:11;15478:55;15564:3;15559:2;15554:3;15550:12;15543:25;15594:2;15589:3;15585:12;15578:19;;15384:219;;;:::o;15609:388::-;;15772:67;15836:2;15831:3;15772:67;:::i;:::-;15765:74;;15869:34;15865:1;15860:3;15856:11;15849:55;15935:26;15930:2;15925:3;15921:12;15914:48;15988:2;15983:3;15979:12;15972:19;;15755:242;;;:::o;16003:374::-;;16166:67;16230:2;16225:3;16166:67;:::i;:::-;16159:74;;16263:34;16259:1;16254:3;16250:11;16243:55;16329:12;16324:2;16319:3;16315:12;16308:34;16368:2;16363:3;16359:12;16352:19;;16149:228;;;:::o;16383:383::-;;16546:67;16610:2;16605:3;16546:67;:::i;:::-;16539:74;;16643:34;16639:1;16634:3;16630:11;16623:55;16709:21;16704:2;16699:3;16695:12;16688:43;16757:2;16752:3;16748:12;16741:19;;16529:237;;;:::o;16772:368::-;;16935:67;16999:2;16994:3;16935:67;:::i;:::-;16928:74;;17032:34;17028:1;17023:3;17019:11;17012:55;17098:6;17093:2;17088:3;17084:12;17077:28;17131:2;17126:3;17122:12;17115:19;;16918:222;;;:::o;17146:366::-;;17309:67;17373:2;17368:3;17309:67;:::i;:::-;17302:74;;17406:34;17402:1;17397:3;17393:11;17386:55;17472:4;17467:2;17462:3;17458:12;17451:26;17503:2;17498:3;17494:12;17487:19;;17292:220;;;:::o;17518:330::-;;17681:67;17745:2;17740:3;17681:67;:::i;:::-;17674:74;;17778:34;17774:1;17769:3;17765:11;17758:55;17839:2;17834:3;17830:12;17823:19;;17664:184;;;:::o;17854:365::-;;18017:67;18081:2;18076:3;18017:67;:::i;:::-;18010:74;;18114:34;18110:1;18105:3;18101:11;18094:55;18180:3;18175:2;18170:3;18166:12;18159:25;18210:2;18205:3;18201:12;18194:19;;18000:219;;;:::o;18225:376::-;;18388:67;18452:2;18447:3;18388:67;:::i;:::-;18381:74;;18485:34;18481:1;18476:3;18472:11;18465:55;18551:14;18546:2;18541:3;18537:12;18530:36;18592:2;18587:3;18583:12;18576:19;;18371:230;;;:::o;18607:330::-;;18770:67;18834:2;18829:3;18770:67;:::i;:::-;18763:74;;18867:34;18863:1;18858:3;18854:11;18847:55;18928:2;18923:3;18919:12;18912:19;;18753:184;;;:::o;18943:373::-;;19106:67;19170:2;19165:3;19106:67;:::i;:::-;19099:74;;19203:34;19199:1;19194:3;19190:11;19183:55;19269:11;19264:2;19259:3;19255:12;19248:33;19307:2;19302:3;19298:12;19291:19;;19089:227;;;:::o;19322:379::-;;19485:67;19549:2;19544:3;19485:67;:::i;:::-;19478:74;;19582:34;19578:1;19573:3;19569:11;19562:55;19648:17;19643:2;19638:3;19634:12;19627:39;19692:2;19687:3;19683:12;19676:19;;19468:233;;;:::o;19707:365::-;;19870:67;19934:2;19929:3;19870:67;:::i;:::-;19863:74;;19967:34;19963:1;19958:3;19954:11;19947:55;20033:3;20028:2;20023:3;20019:12;20012:25;20063:2;20058:3;20054:12;20047:19;;19853:219;;;:::o;20078:320::-;;20241:67;20305:2;20300:3;20241:67;:::i;:::-;20234:74;;20338:24;20334:1;20329:3;20325:11;20318:45;20389:2;20384:3;20380:12;20373:19;;20224:174;;;:::o;20404:381::-;;20567:67;20631:2;20626:3;20567:67;:::i;:::-;20560:74;;20664:34;20660:1;20655:3;20651:11;20644:55;20730:19;20725:2;20720:3;20716:12;20709:41;20776:2;20771:3;20767:12;20760:19;;20550:235;;;:::o;20791:327::-;;20954:67;21018:2;21013:3;20954:67;:::i;:::-;20947:74;;21051:31;21047:1;21042:3;21038:11;21031:52;21109:2;21104:3;21100:12;21093:19;;20937:181;;;:::o;21124:108::-;21201:24;21219:5;21201:24;:::i;:::-;21196:3;21189:37;21179:53;;:::o;21238:118::-;21325:24;21343:5;21325:24;:::i;:::-;21320:3;21313:37;21303:53;;:::o;21362:271::-;;21514:93;21603:3;21594:6;21514:93;:::i;:::-;21507:100;;21624:3;21617:10;;21496:137;;;;:::o;21639:435::-;;21841:95;21932:3;21923:6;21841:95;:::i;:::-;21834:102;;21953:95;22044:3;22035:6;21953:95;:::i;:::-;21946:102;;22065:3;22058:10;;21823:251;;;;;:::o;22080:222::-;;22211:2;22200:9;22196:18;22188:26;;22224:71;22292:1;22281:9;22277:17;22268:6;22224:71;:::i;:::-;22178:124;;;;:::o;22308:672::-;;22557:3;22546:9;22542:19;22534:27;;22571:87;22655:1;22644:9;22640:17;22631:6;22571:87;:::i;:::-;22668:72;22736:2;22725:9;22721:18;22712:6;22668:72;:::i;:::-;22750;22818:2;22807:9;22803:18;22794:6;22750:72;:::i;:::-;22869:9;22863:4;22859:20;22854:2;22843:9;22839:18;22832:48;22897:76;22968:4;22959:6;22897:76;:::i;:::-;22889:84;;22524:456;;;;;;;:::o;22986:373::-;;23167:2;23156:9;23152:18;23144:26;;23216:9;23210:4;23206:20;23202:1;23191:9;23187:17;23180:47;23244:108;23347:4;23338:6;23244:108;:::i;:::-;23236:116;;23134:225;;;;:::o;23365:210::-;;23490:2;23479:9;23475:18;23467:26;;23503:65;23565:1;23554:9;23550:17;23541:6;23503:65;:::i;:::-;23457:118;;;;:::o;23581:313::-;;23732:2;23721:9;23717:18;23709:26;;23781:9;23775:4;23771:20;23767:1;23756:9;23752:17;23745:47;23809:78;23882:4;23873:6;23809:78;:::i;:::-;23801:86;;23699:195;;;;:::o;23900:307::-;;24048:2;24037:9;24033:18;24025:26;;24097:9;24091:4;24087:20;24083:1;24072:9;24068:17;24061:47;24125:75;24195:4;24186:6;24125:75;:::i;:::-;24117:83;;24015:192;;;;:::o;24213:419::-;;24417:2;24406:9;24402:18;24394:26;;24466:9;24460:4;24456:20;24452:1;24441:9;24437:17;24430:47;24494:131;24620:4;24494:131;:::i;:::-;24486:139;;24384:248;;;:::o;24638:419::-;;24842:2;24831:9;24827:18;24819:26;;24891:9;24885:4;24881:20;24877:1;24866:9;24862:17;24855:47;24919:131;25045:4;24919:131;:::i;:::-;24911:139;;24809:248;;;:::o;25063:419::-;;25267:2;25256:9;25252:18;25244:26;;25316:9;25310:4;25306:20;25302:1;25291:9;25287:17;25280:47;25344:131;25470:4;25344:131;:::i;:::-;25336:139;;25234:248;;;:::o;25488:419::-;;25692:2;25681:9;25677:18;25669:26;;25741:9;25735:4;25731:20;25727:1;25716:9;25712:17;25705:47;25769:131;25895:4;25769:131;:::i;:::-;25761:139;;25659:248;;;:::o;25913:419::-;;26117:2;26106:9;26102:18;26094:26;;26166:9;26160:4;26156:20;26152:1;26141:9;26137:17;26130:47;26194:131;26320:4;26194:131;:::i;:::-;26186:139;;26084:248;;;:::o;26338:419::-;;26542:2;26531:9;26527:18;26519:26;;26591:9;26585:4;26581:20;26577:1;26566:9;26562:17;26555:47;26619:131;26745:4;26619:131;:::i;:::-;26611:139;;26509:248;;;:::o;26763:419::-;;26967:2;26956:9;26952:18;26944:26;;27016:9;27010:4;27006:20;27002:1;26991:9;26987:17;26980:47;27044:131;27170:4;27044:131;:::i;:::-;27036:139;;26934:248;;;:::o;27188:419::-;;27392:2;27381:9;27377:18;27369:26;;27441:9;27435:4;27431:20;27427:1;27416:9;27412:17;27405:47;27469:131;27595:4;27469:131;:::i;:::-;27461:139;;27359:248;;;:::o;27613:419::-;;27817:2;27806:9;27802:18;27794:26;;27866:9;27860:4;27856:20;27852:1;27841:9;27837:17;27830:47;27894:131;28020:4;27894:131;:::i;:::-;27886:139;;27784:248;;;:::o;28038:419::-;;28242:2;28231:9;28227:18;28219:26;;28291:9;28285:4;28281:20;28277:1;28266:9;28262:17;28255:47;28319:131;28445:4;28319:131;:::i;:::-;28311:139;;28209:248;;;:::o;28463:419::-;;28667:2;28656:9;28652:18;28644:26;;28716:9;28710:4;28706:20;28702:1;28691:9;28687:17;28680:47;28744:131;28870:4;28744:131;:::i;:::-;28736:139;;28634:248;;;:::o;28888:419::-;;29092:2;29081:9;29077:18;29069:26;;29141:9;29135:4;29131:20;29127:1;29116:9;29112:17;29105:47;29169:131;29295:4;29169:131;:::i;:::-;29161:139;;29059:248;;;:::o;29313:419::-;;29517:2;29506:9;29502:18;29494:26;;29566:9;29560:4;29556:20;29552:1;29541:9;29537:17;29530:47;29594:131;29720:4;29594:131;:::i;:::-;29586:139;;29484:248;;;:::o;29738:419::-;;29942:2;29931:9;29927:18;29919:26;;29991:9;29985:4;29981:20;29977:1;29966:9;29962:17;29955:47;30019:131;30145:4;30019:131;:::i;:::-;30011:139;;29909:248;;;:::o;30163:419::-;;30367:2;30356:9;30352:18;30344:26;;30416:9;30410:4;30406:20;30402:1;30391:9;30387:17;30380:47;30444:131;30570:4;30444:131;:::i;:::-;30436:139;;30334:248;;;:::o;30588:419::-;;30792:2;30781:9;30777:18;30769:26;;30841:9;30835:4;30831:20;30827:1;30816:9;30812:17;30805:47;30869:131;30995:4;30869:131;:::i;:::-;30861:139;;30759:248;;;:::o;31013:419::-;;31217:2;31206:9;31202:18;31194:26;;31266:9;31260:4;31256:20;31252:1;31241:9;31237:17;31230:47;31294:131;31420:4;31294:131;:::i;:::-;31286:139;;31184:248;;;:::o;31438:419::-;;31642:2;31631:9;31627:18;31619:26;;31691:9;31685:4;31681:20;31677:1;31666:9;31662:17;31655:47;31719:131;31845:4;31719:131;:::i;:::-;31711:139;;31609:248;;;:::o;31863:419::-;;32067:2;32056:9;32052:18;32044:26;;32116:9;32110:4;32106:20;32102:1;32091:9;32087:17;32080:47;32144:131;32270:4;32144:131;:::i;:::-;32136:139;;32034:248;;;:::o;32288:419::-;;32492:2;32481:9;32477:18;32469:26;;32541:9;32535:4;32531:20;32527:1;32516:9;32512:17;32505:47;32569:131;32695:4;32569:131;:::i;:::-;32561:139;;32459:248;;;:::o;32713:419::-;;32917:2;32906:9;32902:18;32894:26;;32966:9;32960:4;32956:20;32952:1;32941:9;32937:17;32930:47;32994:131;33120:4;32994:131;:::i;:::-;32986:139;;32884:248;;;:::o;33138:419::-;;33342:2;33331:9;33327:18;33319:26;;33391:9;33385:4;33381:20;33377:1;33366:9;33362:17;33355:47;33419:131;33545:4;33419:131;:::i;:::-;33411:139;;33309:248;;;:::o;33563:419::-;;33767:2;33756:9;33752:18;33744:26;;33816:9;33810:4;33806:20;33802:1;33791:9;33787:17;33780:47;33844:131;33970:4;33844:131;:::i;:::-;33836:139;;33734:248;;;:::o;33988:419::-;;34192:2;34181:9;34177:18;34169:26;;34241:9;34235:4;34231:20;34227:1;34216:9;34212:17;34205:47;34269:131;34395:4;34269:131;:::i;:::-;34261:139;;34159:248;;;:::o;34413:419::-;;34617:2;34606:9;34602:18;34594:26;;34666:9;34660:4;34656:20;34652:1;34641:9;34637:17;34630:47;34694:131;34820:4;34694:131;:::i;:::-;34686:139;;34584:248;;;:::o;34838:419::-;;35042:2;35031:9;35027:18;35019:26;;35091:9;35085:4;35081:20;35077:1;35066:9;35062:17;35055:47;35119:131;35245:4;35119:131;:::i;:::-;35111:139;;35009:248;;;:::o;35263:419::-;;35467:2;35456:9;35452:18;35444:26;;35516:9;35510:4;35506:20;35502:1;35491:9;35487:17;35480:47;35544:131;35670:4;35544:131;:::i;:::-;35536:139;;35434:248;;;:::o;35688:419::-;;35892:2;35881:9;35877:18;35869:26;;35941:9;35935:4;35931:20;35927:1;35916:9;35912:17;35905:47;35969:131;36095:4;35969:131;:::i;:::-;35961:139;;35859:248;;;:::o;36113:419::-;;36317:2;36306:9;36302:18;36294:26;;36366:9;36360:4;36356:20;36352:1;36341:9;36337:17;36330:47;36394:131;36520:4;36394:131;:::i;:::-;36386:139;;36284:248;;;:::o;36538:419::-;;36742:2;36731:9;36727:18;36719:26;;36791:9;36785:4;36781:20;36777:1;36766:9;36762:17;36755:47;36819:131;36945:4;36819:131;:::i;:::-;36811:139;;36709:248;;;:::o;36963:419::-;;37167:2;37156:9;37152:18;37144:26;;37216:9;37210:4;37206:20;37202:1;37191:9;37187:17;37180:47;37244:131;37370:4;37244:131;:::i;:::-;37236:139;;37134:248;;;:::o;37388:222::-;;37519:2;37508:9;37504:18;37496:26;;37532:71;37600:1;37589:9;37585:17;37576:6;37532:71;:::i;:::-;37486:124;;;;:::o;37616:278::-;;37682:2;37676:9;37666:19;;37724:4;37716:6;37712:17;37831:6;37819:10;37816:22;37795:18;37783:10;37780:34;37777:62;37774:2;;;37842:13;;:::i;:::-;37774:2;37877:10;37873:2;37866:22;37656:238;;;;:::o;37900:326::-;;38051:18;38043:6;38040:30;38037:2;;;38073:13;;:::i;:::-;38037:2;38153:4;38149:9;38142:4;38134:6;38130:17;38126:33;38118:41;;38214:4;38208;38204:15;38196:23;;37966:260;;;:::o;38232:327::-;;38384:18;38376:6;38373:30;38370:2;;;38406:13;;:::i;:::-;38370:2;38486:4;38482:9;38475:4;38467:6;38463:17;38459:33;38451:41;;38547:4;38541;38537:15;38529:23;;38299:260;;;:::o;38565:132::-;;38655:3;38647:11;;38685:4;38680:3;38676:14;38668:22;;38637:60;;;:::o;38703:141::-;;38775:3;38767:11;;38798:3;38795:1;38788:14;38832:4;38829:1;38819:18;38811:26;;38757:87;;;:::o;38850:114::-;;38951:5;38945:12;38935:22;;38924:40;;;:::o;38970:98::-;;39055:5;39049:12;39039:22;;39028:40;;;:::o;39074:99::-;;39160:5;39154:12;39144:22;;39133:40;;;:::o;39179:113::-;;39281:4;39276:3;39272:14;39264:22;;39254:38;;;:::o;39298:184::-;;39431:6;39426:3;39419:19;39471:4;39466:3;39462:14;39447:29;;39409:73;;;;:::o;39488:168::-;;39605:6;39600:3;39593:19;39645:4;39640:3;39636:14;39621:29;;39583:73;;;;:::o;39662:147::-;;39800:3;39785:18;;39775:34;;;;:::o;39815:169::-;;39933:6;39928:3;39921:19;39973:4;39968:3;39964:14;39949:29;;39911:73;;;;:::o;39990:148::-;;40129:3;40114:18;;40104:34;;;;:::o;40144:96::-;;40210:24;40228:5;40210:24;:::i;:::-;40199:35;;40189:51;;;:::o;40246:104::-;;40320:24;40338:5;40320:24;:::i;:::-;40309:35;;40299:51;;;:::o;40356:90::-;;40433:5;40426:13;40419:21;40408:32;;40398:48;;;:::o;40452:149::-;;40528:66;40521:5;40517:78;40506:89;;40496:105;;;:::o;40607:126::-;;40684:42;40677:5;40673:54;40662:65;;40652:81;;;:::o;40739:77::-;;40805:5;40794:16;;40784:32;;;:::o;40822:154::-;40906:6;40901:3;40896;40883:30;40968:1;40959:6;40954:3;40950:16;40943:27;40873:103;;;:::o;40982:307::-;41050:1;41060:113;41074:6;41071:1;41068:13;41060:113;;;41159:1;41154:3;41150:11;41144:18;41140:1;41135:3;41131:11;41124:39;41096:2;41093:1;41089:10;41084:15;;41060:113;;;41191:6;41188:1;41185:13;41182:2;;;41271:1;41262:6;41257:3;41253:16;41246:27;41182:2;41031:258;;;;:::o;41295:48::-;41328:9;41349:102;;41441:2;41437:7;41432:2;41425:5;41421:14;41417:28;41407:38;;41397:54;;;:::o;41457:122::-;41530:24;41548:5;41530:24;:::i;:::-;41523:5;41520:35;41510:2;;41569:1;41566;41559:12;41510:2;41500:79;:::o;41585:116::-;41655:21;41670:5;41655:21;:::i;:::-;41648:5;41645:32;41635:2;;41691:1;41688;41681:12;41635:2;41625:76;:::o;41707:120::-;41779:23;41796:5;41779:23;:::i;:::-;41772:5;41769:34;41759:2;;41817:1;41814;41807:12;41759:2;41749:78;:::o;41833:122::-;41906:24;41924:5;41906:24;:::i;:::-;41899:5;41896:35;41886:2;;41945:1;41942;41935:12;41886:2;41876:79;:::o

Swarm Source

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