ETH Price: $3,066.60 (+1.35%)
Gas: 6 Gwei

Token

FUNKYFROGS (FUNKY)
 

Overview

Max Total Supply

606 FUNKY

Holders

199

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 FUNKY
0x5905e999425cd9f9e1cd2d9339b25789e46cf936
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:
FunkyFrogs

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-05
*/

// 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 () internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.2 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

            bytes32 lastvalue = set._values[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

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

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

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

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

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

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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


    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

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

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

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

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

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

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

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

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

            MapEntry storage lastEntry = map._entries[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

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

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

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

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

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

    // Base URI
    string private _baseURI;

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

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

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

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

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

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

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

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

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

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = baseURI();

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

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

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

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

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

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

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(tokenId);

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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


pragma solidity ^0.7.0;
pragma abicoder v2;

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

    string public FROG_PROVENANCE = "";
    
    string public LICENSE_TEXT = "";
    
    bool licenseLocked = false; // TEAM CAN'T EDIT THE LICENSE AFTER THIS GETS TRUE

    uint256 public constant frogPrice = 30000000000000000; // 0.03 ETH

    uint public constant maxFrogPurchase = 15;

    uint256 public constant MAX_FROGS = 7371;

    bool public saleIsActive = false;
    

    uint public frogReserve = 100;
    

    
    event licenseisLocked(string _licenseText);

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


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

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


    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 FROG 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 mintFrog(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint Frog");
        require(numberOfTokens > 0 && numberOfTokens <= maxFrogPurchase, "Can only mint 1 tokens at a time");
        require(totalSupply().add(numberOfTokens) <= MAX_FROGS, "Purchase would exceed max supply of Frogs");
        require(msg.value >= frogPrice.mul(numberOfTokens), "Ether value sent is not correct");
        
        for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply();
            if (totalSupply() < MAX_FROGS) {
                _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":"FROG_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_FROGS","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":"frogPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"frogReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxFrogPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintFrog","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":"reserveFrogs","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600b90805190602001906200002b92919062000334565b5060405180602001604052806000815250600c90805190602001906200005392919062000334565b506000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506064600e553480156200009c57600080fd5b506040518060400160405280600a81526020017f46554e4b5946524f4753000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f46554e4b59000000000000000000000000000000000000000000000000000000815250620001216301ffc9a760e01b6200025460201b60201c565b81600690805190602001906200013992919062000334565b5080600790805190602001906200015292919062000334565b506200016b6380ac58cd60e01b6200025460201b60201c565b62000183635b5e139f60e01b6200025460201b60201c565b6200019b63780e9d6360e01b6200025460201b60201c565b50506000620001af6200032c60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200045f565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620002c0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b7906200042c565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200036c5760008555620003b8565b82601f106200038757805160ff1916838001178555620003b8565b82800160010185558215620003b8579182015b82811115620003b75782518255916020019190600101906200039a565b5b509050620003c79190620003cb565b5090565b5b80821115620003e6576000816000905550600101620003cc565b5090565b6000620003f9601c836200044e565b91507f4552433136353a20696e76616c696420696e74657266616365206964000000006000830152602082019050919050565b600060208201905081810360008301526200044781620003ea565b9050919050565b600082825260208201905092915050565b6148b6806200046f6000396000f3fe60806040526004361061021a5760003560e01c80636c9dfc5411610123578063b88d4fde116100ab578063da6ac1bf1161006f578063da6ac1bf146107b0578063e985e9c5146107db578063eb8d244414610818578063f2fde38b14610843578063fa54374c1461086c5761021a565b8063b88d4fde146106cb578063bf4702fc146106f4578063c1eb81661461070b578063c87b56dd14610736578063d9b137b2146107735761021a565b80638da5cb5b116100f25780638da5cb5b146105f857806395d89b41146106235780639c3e72bd1461064e578063a22cb46514610679578063b09904b5146106a25761021a565b80636c9dfc541461053c57806370a0823114610567578063715018a6146105a45780638462151c146105bb5761021a565b80632f745c59116101a65780634f6ccce7116101755780634f6ccce71461045257806355f804b31461048f5780635aabb855146104b85780636352211e146104d45780636c0360eb146105115761021a565b80632f745c59146103be57806334918dfd146103fb5780633ccfd60b1461041257806342842e0e146104295761021a565b806310969523116101ed57806310969523146102ed57806318160ddd146103165780631debda611461034157806323b872dd1461036c5780632af2d1fe146103955761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613463565b610897565b60405161025391906141a7565b60405180910390f35b34801561026857600080fd5b506102716108fe565b60405161027e91906141c2565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a991906134f6565b6109a0565b6040516102bb919061411e565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190613427565b610a25565b005b3480156102f957600080fd5b50610314600480360381019061030f91906134b5565b610b3d565b005b34801561032257600080fd5b5061032b610bd3565b60405161033891906145a6565b60405180910390f35b34801561034d57600080fd5b50610356610be4565b60405161036391906145a6565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e9190613321565b610bef565b005b3480156103a157600080fd5b506103bc60048036038101906103b79190613427565b610c4f565b005b3480156103ca57600080fd5b506103e560048036038101906103e09190613427565b610d6d565b6040516103f291906145a6565b60405180910390f35b34801561040757600080fd5b50610410610dc8565b005b34801561041e57600080fd5b50610427610e70565b005b34801561043557600080fd5b50610450600480360381019061044b9190613321565b610f3b565b005b34801561045e57600080fd5b50610479600480360381019061047491906134f6565b610f5b565b60405161048691906145a6565b60405180910390f35b34801561049b57600080fd5b506104b660048036038101906104b191906134b5565b610f7e565b005b6104d260048036038101906104cd91906134f6565b611006565b005b3480156104e057600080fd5b506104fb60048036038101906104f691906134f6565b6111a4565b604051610508919061411e565b60405180910390f35b34801561051d57600080fd5b506105266111db565b60405161053391906141c2565b60405180910390f35b34801561054857600080fd5b5061055161127d565b60405161055e91906145a6565b60405180910390f35b34801561057357600080fd5b5061058e600480360381019061058991906132bc565b611283565b60405161059b91906145a6565b60405180910390f35b3480156105b057600080fd5b506105b9611342565b005b3480156105c757600080fd5b506105e260048036038101906105dd91906132bc565b61147f565b6040516105ef9190614185565b60405180910390f35b34801561060457600080fd5b5061060d611578565b60405161061a919061411e565b60405180910390f35b34801561062f57600080fd5b506106386115a2565b60405161064591906141c2565b60405180910390f35b34801561065a57600080fd5b50610663611644565b60405161067091906141c2565b60405180910390f35b34801561068557600080fd5b506106a0600480360381019061069b91906133eb565b6116e2565b005b3480156106ae57600080fd5b506106c960048036038101906106c491906134b5565b611863565b005b3480156106d757600080fd5b506106f260048036038101906106ed9190613370565b61194f565b005b34801561070057600080fd5b506107096119b1565b005b34801561071757600080fd5b50610720611a82565b60405161072d91906141c2565b60405180910390f35b34801561074257600080fd5b5061075d600480360381019061075891906134f6565b611b20565b60405161076a91906141c2565b60405180910390f35b34801561077f57600080fd5b5061079a600480360381019061079591906134f6565b611ca3565b6040516107a791906141c2565b60405180910390f35b3480156107bc57600080fd5b506107c5611d90565b6040516107d291906145a6565b60405180910390f35b3480156107e757600080fd5b5061080260048036038101906107fd91906132e5565b611d95565b60405161080f91906141a7565b60405180910390f35b34801561082457600080fd5b5061082d611e29565b60405161083a91906141a7565b60405180910390f35b34801561084f57600080fd5b5061086a600480360381019061086591906132bc565b611e3c565b005b34801561087857600080fd5b50610881611fe8565b60405161088e91906145a6565b60405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109965780601f1061096b57610100808354040283529160200191610996565b820191906000526020600020905b81548152906001019060200180831161097957829003601f168201915b5050505050905090565b60006109ab82611fee565b6109ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e190614486565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a30826111a4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9890614526565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ac061200b565b73ffffffffffffffffffffffffffffffffffffffff161480610aef5750610aee81610ae961200b565b611d95565b5b610b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b25906143e6565b60405180910390fd5b610b388383612013565b505050565b610b4561200b565b73ffffffffffffffffffffffffffffffffffffffff16610b63611578565b73ffffffffffffffffffffffffffffffffffffffff1614610bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb0906144c6565b60405180910390fd5b80600b9080519060200190610bcf9291906130d8565b5050565b6000610bdf60026120cc565b905090565b666a94d74f43000081565b610c00610bfa61200b565b826120e1565b610c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3690614566565b60405180910390fd5b610c4a8383836121bf565b505050565b610c5761200b565b73ffffffffffffffffffffffffffffffffffffffff16610c75611578565b73ffffffffffffffffffffffffffffffffffffffff1614610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc2906144c6565b60405180910390fd5b6000610cd5610bd3565b9050600082118015610ce95750600e548211155b610d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1f906142e6565b60405180910390fd5b60005b82811015610d4c57610d3f848284016123d6565b8080600101915050610d2b565b50610d6282600e546123f490919063ffffffff16565b600e81905550505050565b6000610dc082600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061244490919063ffffffff16565b905092915050565b610dd061200b565b73ffffffffffffffffffffffffffffffffffffffff16610dee611578565b73ffffffffffffffffffffffffffffffffffffffff1614610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b906144c6565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b610e7861200b565b73ffffffffffffffffffffffffffffffffffffffff16610e96611578565b73ffffffffffffffffffffffffffffffffffffffff1614610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee3906144c6565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f37573d6000803e3d6000fd5b5050565b610f568383836040518060200160405280600081525061194f565b505050565b600080610f7283600261245e90919063ffffffff16565b50905080915050919050565b610f8661200b565b73ffffffffffffffffffffffffffffffffffffffff16610fa4611578565b73ffffffffffffffffffffffffffffffffffffffff1614610ffa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff1906144c6565b60405180910390fd5b6110038161248a565b50565b600d60019054906101000a900460ff16611055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104c906142c6565b60405180910390fd5b6000811180156110665750600f8111155b6110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c906143c6565b60405180910390fd5b611ccb6110c2826110b4610bd3565b6124a490919063ffffffff16565b1115611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa90614206565b60405180910390fd5b61111d81666a94d74f4300006124f990919063ffffffff16565b34101561115f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115690614346565b60405180910390fd5b60005b818110156111a0576000611174610bd3565b9050611ccb611181610bd3565b10156111925761119133826123d6565b5b508080600101915050611162565b5050565b60006111d4826040518060600160405280602981526020016148586029913960026125699092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112735780601f1061124857610100808354040283529160200191611273565b820191906000526020600020905b81548152906001019060200180831161125657829003601f168201915b5050505050905090565b600e5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb90614406565b60405180910390fd5b61133b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612588565b9050919050565b61134a61200b565b73ffffffffffffffffffffffffffffffffffffffff16611368611578565b73ffffffffffffffffffffffffffffffffffffffff16146113be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b5906144c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6060600061148c83611283565b905060008114156114e757600067ffffffffffffffff811180156114af57600080fd5b506040519080825280602002602001820160405280156114de5781602001602082028036833780820191505090505b50915050611573565b60008167ffffffffffffffff8111801561150057600080fd5b5060405190808252806020026020018201604052801561152f5781602001602082028036833780820191505090505b50905060005b8281101561156c576115478582610d6d565b82828151811061155357fe5b6020026020010181815250508080600101915050611535565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561163a5780601f1061160f5761010080835404028352916020019161163a565b820191906000526020600020905b81548152906001019060200180831161161d57829003601f168201915b5050505050905090565b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116da5780601f106116af576101008083540402835291602001916116da565b820191906000526020600020905b8154815290600101906020018083116116bd57829003601f168201915b505050505081565b6116ea61200b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174f90614326565b60405180910390fd5b806005600061176561200b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661181261200b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161185791906141a7565b60405180910390a35050565b61186b61200b565b73ffffffffffffffffffffffffffffffffffffffff16611889611578565b73ffffffffffffffffffffffffffffffffffffffff16146118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d6906144c6565b60405180910390fd5b60001515600d60009054906101000a900460ff16151514611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c90614546565b60405180910390fd5b80600c908051906020019061194b9291906130d8565b5050565b61196061195a61200b565b836120e1565b61199f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199690614566565b60405180910390fd5b6119ab8484848461259d565b50505050565b6119b961200b565b73ffffffffffffffffffffffffffffffffffffffff166119d7611578565b73ffffffffffffffffffffffffffffffffffffffff1614611a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a24906144c6565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0600c604051611a7891906141e4565b60405180910390a1565b600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b185780601f10611aed57610100808354040283529160200191611b18565b820191906000526020600020905b815481529060010190602001808311611afb57829003601f168201915b505050505081565b6060611b2b82611fee565b611b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6190614506565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611c135780601f10611be857610100808354040283529160200191611c13565b820191906000526020600020905b815481529060010190602001808311611bf657829003601f168201915b505050505090506000611c246111db565b9050600081511415611c3a578192505050611c9e565b600082511115611c6f578082604051602001611c579291906140fa565b60405160208183030381529060405292505050611c9e565b80611c79856125f9565b604051602001611c8a9291906140fa565b604051602081830303815290604052925050505b919050565b6060611cad610bd3565b8210611cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce5906144a6565b60405180910390fd5b600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d845780601f10611d5957610100808354040283529160200191611d84565b820191906000526020600020905b815481529060010190602001808311611d6757829003601f168201915b50505050509050919050565b600f81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60019054906101000a900460ff1681565b611e4461200b565b73ffffffffffffffffffffffffffffffffffffffff16611e62611578565b73ffffffffffffffffffffffffffffffffffffffff1614611eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eaf906144c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1f90614266565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611ccb81565b600061200482600261274090919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612086836111a4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006120da8260000161275a565b9050919050565b60006120ec82611fee565b61212b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612122906143a6565b60405180910390fd5b6000612136836111a4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121a557508373ffffffffffffffffffffffffffffffffffffffff1661218d846109a0565b73ffffffffffffffffffffffffffffffffffffffff16145b806121b657506121b58185611d95565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121df826111a4565b73ffffffffffffffffffffffffffffffffffffffff1614612235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222c906144e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229c90614306565b60405180910390fd5b6122b083838361276b565b6122bb600082612013565b61230c81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061277090919063ffffffff16565b5061235e81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061278a90919063ffffffff16565b50612375818360026127a49092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6123f08282604051806020016040528060008152506127d9565b5050565b600082821115612439576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243090614366565b60405180910390fd5b818303905092915050565b60006124538360000183612834565b60001c905092915050565b60008060008061247186600001866128a1565b915091508160001c8160001c9350935050509250929050565b80600990805190602001906124a09291906130d8565b5050565b6000808284019050838110156124ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e6906142a6565b60405180910390fd5b8091505092915050565b60008083141561250c5760009050612563565b600082840290508284828161251d57fe5b041461255e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255590614466565b60405180910390fd5b809150505b92915050565b600061257c846000018460001b84612924565b60001c90509392505050565b6000612596826000016129b5565b9050919050565b6125a88484846121bf565b6125b4848484846129c6565b6125f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ea90614246565b60405180910390fd5b50505050565b60606000821415612641576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061273b565b600082905060005b6000821461266b578080600101915050600a828161266357fe5b049150612649565b60008167ffffffffffffffff8111801561268457600080fd5b506040519080825280601f01601f1916602001820160405280156126b75781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461273357600a84816126d857fe5b0660300160f81b828280600190039350815181106126f257fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161272b57fe5b0493506126c6565b819450505050505b919050565b6000612752836000018360001b612b2a565b905092915050565b600081600001805490509050919050565b505050565b6000612782836000018360001b612b4d565b905092915050565b600061279c836000018360001b612c35565b905092915050565b60006127d0846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612ca5565b90509392505050565b6127e38383612d81565b6127f060008484846129c6565b61282f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282690614246565b60405180910390fd5b505050565b60008183600001805490501161287f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287690614226565b60405180910390fd5b82600001828154811061288e57fe5b9060005260206000200154905092915050565b600080828460000180549050116128ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e490614426565b60405180910390fd5b60008460000184815481106128fe57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297d91906141c2565b60405180910390fd5b5084600001600182038154811061299957fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006129e78473ffffffffffffffffffffffffffffffffffffffff16612f0f565b6129f45760019050612b22565b6000612abb63150b7a0260e01b612a0961200b565b888787604051602401612a1f9493929190614139565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614826603291398773ffffffffffffffffffffffffffffffffffffffff16612f229092919063ffffffff16565b9050600081806020019051810190612ad3919061348c565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114612c295760006001820390506000600186600001805490500390506000866000018281548110612b9857fe5b9060005260206000200154905080876000018481548110612bb557fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612bed57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612c2f565b60009150505b92915050565b6000612c418383612f3a565b612c9a578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612c9f565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415612d4c57846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050612d7a565b82856000016001830381548110612d5f57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de890614446565b60405180910390fd5b612dfa81611fee565b15612e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3190614286565b60405180910390fd5b612e466000838361276b565b612e9781600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061278a90919063ffffffff16565b50612eae818360026127a49092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060612f318484600085612f5d565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015612fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9990614386565b60405180910390fd5b612fab85612f0f565b612fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe190614586565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161301391906140e3565b60006040518083038185875af1925050503d8060008114613050576040519150601f19603f3d011682016040523d82523d6000602084013e613055565b606091505b5091509150613065828286613071565b92505050949350505050565b60608315613081578290506130d1565b6000835111156130945782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c891906141c2565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261310e5760008555613155565b82601f1061312757805160ff1916838001178555613155565b82800160010185558215613155579182015b82811115613154578251825591602001919060010190613139565b5b5090506131629190613166565b5090565b5b8082111561317f576000816000905550600101613167565b5090565b6000613196613191846145f2565b6145c1565b9050828152602081018484840111156131ae57600080fd5b6131b9848285614774565b509392505050565b60006131d46131cf84614622565b6145c1565b9050828152602081018484840111156131ec57600080fd5b6131f7848285614774565b509392505050565b60008135905061320e816147c9565b92915050565b600081359050613223816147e0565b92915050565b600081359050613238816147f7565b92915050565b60008151905061324d816147f7565b92915050565b600082601f83011261326457600080fd5b8135613274848260208601613183565b91505092915050565b600082601f83011261328e57600080fd5b813561329e8482602086016131c1565b91505092915050565b6000813590506132b68161480e565b92915050565b6000602082840312156132ce57600080fd5b60006132dc848285016131ff565b91505092915050565b600080604083850312156132f857600080fd5b6000613306858286016131ff565b9250506020613317858286016131ff565b9150509250929050565b60008060006060848603121561333657600080fd5b6000613344868287016131ff565b9350506020613355868287016131ff565b9250506040613366868287016132a7565b9150509250925092565b6000806000806080858703121561338657600080fd5b6000613394878288016131ff565b94505060206133a5878288016131ff565b93505060406133b6878288016132a7565b925050606085013567ffffffffffffffff8111156133d357600080fd5b6133df87828801613253565b91505092959194509250565b600080604083850312156133fe57600080fd5b600061340c858286016131ff565b925050602061341d85828601613214565b9150509250929050565b6000806040838503121561343a57600080fd5b6000613448858286016131ff565b9250506020613459858286016132a7565b9150509250929050565b60006020828403121561347557600080fd5b600061348384828501613229565b91505092915050565b60006020828403121561349e57600080fd5b60006134ac8482850161323e565b91505092915050565b6000602082840312156134c757600080fd5b600082013567ffffffffffffffff8111156134e157600080fd5b6134ed8482850161327d565b91505092915050565b60006020828403121561350857600080fd5b6000613516848285016132a7565b91505092915050565b600061352b83836140c5565b60208301905092915050565b61354081614700565b82525050565b61354f816146ee565b82525050565b600061356082614677565b61356a81856146a5565b935061357583614652565b8060005b838110156135a657815161358d888261351f565b975061359883614698565b925050600181019050613579565b5085935050505092915050565b6135bc81614712565b82525050565b60006135cd82614682565b6135d781856146b6565b93506135e7818560208601614783565b6135f0816147b8565b840191505092915050565b600061360682614682565b61361081856146c7565b9350613620818560208601614783565b80840191505092915050565b60006136378261468d565b61364181856146d2565b9350613651818560208601614783565b61365a816147b8565b840191505092915050565b60006136708261468d565b61367a81856146e3565b935061368a818560208601614783565b80840191505092915050565b6000815460018116600081146136b357600181146136d95761371d565b607f60028304166136c481876146d2565b955060ff19831686526020860193505061371d565b600282046136e781876146d2565b95506136f285614662565b60005b82811015613714578154818901526001820191506020810190506136f5565b80880195505050505b505092915050565b60006137326029836146d2565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f662046726f677300000000000000000000000000000000000000000000006020830152604082019050919050565b60006137986022836146d2565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137fe6032836146d2565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006138646026836146d2565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138ca601c836146d2565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061390a601b836146d2565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b600061394a6020836146d2565b91507f53616c65206d7573742062652061637469766520746f206d696e742046726f676000830152602082019050919050565b600061398a6020836146d2565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b60006139ca6024836146d2565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a306019836146d2565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613a70601f836146d2565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000613ab0601e836146d2565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000613af06026836146d2565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b56602c836146d2565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613bbc6020836146d2565b91507f43616e206f6e6c79206d696e74203120746f6b656e7320617420612074696d656000830152602082019050919050565b6000613bfc6038836146d2565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613c62602a836146d2565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cc86022836146d2565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d2e6020836146d2565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613d6e6021836146d2565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613dd4602c836146d2565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613e3a601a836146d2565b91507f43484f4f534520412046524f472057495448494e2052414e47450000000000006000830152602082019050919050565b6000613e7a6020836146d2565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613eba6029836146d2565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f20602f836146d2565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613f866021836146d2565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fec6016836146d2565b91507f4c6963656e736520616c7265616479206c6f636b6564000000000000000000006000830152602082019050919050565b600061402c6031836146d2565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614092601d836146d2565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b6140ce8161476a565b82525050565b6140dd8161476a565b82525050565b60006140ef82846135fb565b915081905092915050565b60006141068285613665565b91506141128284613665565b91508190509392505050565b60006020820190506141336000830184613546565b92915050565b600060808201905061414e6000830187613537565b61415b6020830186613546565b61416860408301856140d4565b818103606083015261417a81846135c2565b905095945050505050565b6000602082019050818103600083015261419f8184613555565b905092915050565b60006020820190506141bc60008301846135b3565b92915050565b600060208201905081810360008301526141dc818461362c565b905092915050565b600060208201905081810360008301526141fe8184613696565b905092915050565b6000602082019050818103600083015261421f81613725565b9050919050565b6000602082019050818103600083015261423f8161378b565b9050919050565b6000602082019050818103600083015261425f816137f1565b9050919050565b6000602082019050818103600083015261427f81613857565b9050919050565b6000602082019050818103600083015261429f816138bd565b9050919050565b600060208201905081810360008301526142bf816138fd565b9050919050565b600060208201905081810360008301526142df8161393d565b9050919050565b600060208201905081810360008301526142ff8161397d565b9050919050565b6000602082019050818103600083015261431f816139bd565b9050919050565b6000602082019050818103600083015261433f81613a23565b9050919050565b6000602082019050818103600083015261435f81613a63565b9050919050565b6000602082019050818103600083015261437f81613aa3565b9050919050565b6000602082019050818103600083015261439f81613ae3565b9050919050565b600060208201905081810360008301526143bf81613b49565b9050919050565b600060208201905081810360008301526143df81613baf565b9050919050565b600060208201905081810360008301526143ff81613bef565b9050919050565b6000602082019050818103600083015261441f81613c55565b9050919050565b6000602082019050818103600083015261443f81613cbb565b9050919050565b6000602082019050818103600083015261445f81613d21565b9050919050565b6000602082019050818103600083015261447f81613d61565b9050919050565b6000602082019050818103600083015261449f81613dc7565b9050919050565b600060208201905081810360008301526144bf81613e2d565b9050919050565b600060208201905081810360008301526144df81613e6d565b9050919050565b600060208201905081810360008301526144ff81613ead565b9050919050565b6000602082019050818103600083015261451f81613f13565b9050919050565b6000602082019050818103600083015261453f81613f79565b9050919050565b6000602082019050818103600083015261455f81613fdf565b9050919050565b6000602082019050818103600083015261457f8161401f565b9050919050565b6000602082019050818103600083015261459f81614085565b9050919050565b60006020820190506145bb60008301846140d4565b92915050565b6000604051905081810181811067ffffffffffffffff821117156145e8576145e76147b6565b5b8060405250919050565b600067ffffffffffffffff82111561460d5761460c6147b6565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561463d5761463c6147b6565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006146f98261474a565b9050919050565b600061470b8261474a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156147a1578082015181840152602081019050614786565b838111156147b0576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b6147d2816146ee565b81146147dd57600080fd5b50565b6147e981614712565b81146147f457600080fd5b50565b6148008161471e565b811461480b57600080fd5b50565b6148178161476a565b811461482257600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220ff209e1ef08d1036270a444a4fcc46451e8056287fb3a1c0b74e68ceae300b9664736f6c63430007060033

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80636c9dfc5411610123578063b88d4fde116100ab578063da6ac1bf1161006f578063da6ac1bf146107b0578063e985e9c5146107db578063eb8d244414610818578063f2fde38b14610843578063fa54374c1461086c5761021a565b8063b88d4fde146106cb578063bf4702fc146106f4578063c1eb81661461070b578063c87b56dd14610736578063d9b137b2146107735761021a565b80638da5cb5b116100f25780638da5cb5b146105f857806395d89b41146106235780639c3e72bd1461064e578063a22cb46514610679578063b09904b5146106a25761021a565b80636c9dfc541461053c57806370a0823114610567578063715018a6146105a45780638462151c146105bb5761021a565b80632f745c59116101a65780634f6ccce7116101755780634f6ccce71461045257806355f804b31461048f5780635aabb855146104b85780636352211e146104d45780636c0360eb146105115761021a565b80632f745c59146103be57806334918dfd146103fb5780633ccfd60b1461041257806342842e0e146104295761021a565b806310969523116101ed57806310969523146102ed57806318160ddd146103165780631debda611461034157806323b872dd1461036c5780632af2d1fe146103955761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613463565b610897565b60405161025391906141a7565b60405180910390f35b34801561026857600080fd5b506102716108fe565b60405161027e91906141c2565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a991906134f6565b6109a0565b6040516102bb919061411e565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190613427565b610a25565b005b3480156102f957600080fd5b50610314600480360381019061030f91906134b5565b610b3d565b005b34801561032257600080fd5b5061032b610bd3565b60405161033891906145a6565b60405180910390f35b34801561034d57600080fd5b50610356610be4565b60405161036391906145a6565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e9190613321565b610bef565b005b3480156103a157600080fd5b506103bc60048036038101906103b79190613427565b610c4f565b005b3480156103ca57600080fd5b506103e560048036038101906103e09190613427565b610d6d565b6040516103f291906145a6565b60405180910390f35b34801561040757600080fd5b50610410610dc8565b005b34801561041e57600080fd5b50610427610e70565b005b34801561043557600080fd5b50610450600480360381019061044b9190613321565b610f3b565b005b34801561045e57600080fd5b50610479600480360381019061047491906134f6565b610f5b565b60405161048691906145a6565b60405180910390f35b34801561049b57600080fd5b506104b660048036038101906104b191906134b5565b610f7e565b005b6104d260048036038101906104cd91906134f6565b611006565b005b3480156104e057600080fd5b506104fb60048036038101906104f691906134f6565b6111a4565b604051610508919061411e565b60405180910390f35b34801561051d57600080fd5b506105266111db565b60405161053391906141c2565b60405180910390f35b34801561054857600080fd5b5061055161127d565b60405161055e91906145a6565b60405180910390f35b34801561057357600080fd5b5061058e600480360381019061058991906132bc565b611283565b60405161059b91906145a6565b60405180910390f35b3480156105b057600080fd5b506105b9611342565b005b3480156105c757600080fd5b506105e260048036038101906105dd91906132bc565b61147f565b6040516105ef9190614185565b60405180910390f35b34801561060457600080fd5b5061060d611578565b60405161061a919061411e565b60405180910390f35b34801561062f57600080fd5b506106386115a2565b60405161064591906141c2565b60405180910390f35b34801561065a57600080fd5b50610663611644565b60405161067091906141c2565b60405180910390f35b34801561068557600080fd5b506106a0600480360381019061069b91906133eb565b6116e2565b005b3480156106ae57600080fd5b506106c960048036038101906106c491906134b5565b611863565b005b3480156106d757600080fd5b506106f260048036038101906106ed9190613370565b61194f565b005b34801561070057600080fd5b506107096119b1565b005b34801561071757600080fd5b50610720611a82565b60405161072d91906141c2565b60405180910390f35b34801561074257600080fd5b5061075d600480360381019061075891906134f6565b611b20565b60405161076a91906141c2565b60405180910390f35b34801561077f57600080fd5b5061079a600480360381019061079591906134f6565b611ca3565b6040516107a791906141c2565b60405180910390f35b3480156107bc57600080fd5b506107c5611d90565b6040516107d291906145a6565b60405180910390f35b3480156107e757600080fd5b5061080260048036038101906107fd91906132e5565b611d95565b60405161080f91906141a7565b60405180910390f35b34801561082457600080fd5b5061082d611e29565b60405161083a91906141a7565b60405180910390f35b34801561084f57600080fd5b5061086a600480360381019061086591906132bc565b611e3c565b005b34801561087857600080fd5b50610881611fe8565b60405161088e91906145a6565b60405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109965780601f1061096b57610100808354040283529160200191610996565b820191906000526020600020905b81548152906001019060200180831161097957829003601f168201915b5050505050905090565b60006109ab82611fee565b6109ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e190614486565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a30826111a4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9890614526565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ac061200b565b73ffffffffffffffffffffffffffffffffffffffff161480610aef5750610aee81610ae961200b565b611d95565b5b610b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b25906143e6565b60405180910390fd5b610b388383612013565b505050565b610b4561200b565b73ffffffffffffffffffffffffffffffffffffffff16610b63611578565b73ffffffffffffffffffffffffffffffffffffffff1614610bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb0906144c6565b60405180910390fd5b80600b9080519060200190610bcf9291906130d8565b5050565b6000610bdf60026120cc565b905090565b666a94d74f43000081565b610c00610bfa61200b565b826120e1565b610c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3690614566565b60405180910390fd5b610c4a8383836121bf565b505050565b610c5761200b565b73ffffffffffffffffffffffffffffffffffffffff16610c75611578565b73ffffffffffffffffffffffffffffffffffffffff1614610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc2906144c6565b60405180910390fd5b6000610cd5610bd3565b9050600082118015610ce95750600e548211155b610d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1f906142e6565b60405180910390fd5b60005b82811015610d4c57610d3f848284016123d6565b8080600101915050610d2b565b50610d6282600e546123f490919063ffffffff16565b600e81905550505050565b6000610dc082600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061244490919063ffffffff16565b905092915050565b610dd061200b565b73ffffffffffffffffffffffffffffffffffffffff16610dee611578565b73ffffffffffffffffffffffffffffffffffffffff1614610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b906144c6565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b610e7861200b565b73ffffffffffffffffffffffffffffffffffffffff16610e96611578565b73ffffffffffffffffffffffffffffffffffffffff1614610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee3906144c6565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f37573d6000803e3d6000fd5b5050565b610f568383836040518060200160405280600081525061194f565b505050565b600080610f7283600261245e90919063ffffffff16565b50905080915050919050565b610f8661200b565b73ffffffffffffffffffffffffffffffffffffffff16610fa4611578565b73ffffffffffffffffffffffffffffffffffffffff1614610ffa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff1906144c6565b60405180910390fd5b6110038161248a565b50565b600d60019054906101000a900460ff16611055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104c906142c6565b60405180910390fd5b6000811180156110665750600f8111155b6110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c906143c6565b60405180910390fd5b611ccb6110c2826110b4610bd3565b6124a490919063ffffffff16565b1115611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa90614206565b60405180910390fd5b61111d81666a94d74f4300006124f990919063ffffffff16565b34101561115f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115690614346565b60405180910390fd5b60005b818110156111a0576000611174610bd3565b9050611ccb611181610bd3565b10156111925761119133826123d6565b5b508080600101915050611162565b5050565b60006111d4826040518060600160405280602981526020016148586029913960026125699092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112735780601f1061124857610100808354040283529160200191611273565b820191906000526020600020905b81548152906001019060200180831161125657829003601f168201915b5050505050905090565b600e5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb90614406565b60405180910390fd5b61133b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612588565b9050919050565b61134a61200b565b73ffffffffffffffffffffffffffffffffffffffff16611368611578565b73ffffffffffffffffffffffffffffffffffffffff16146113be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b5906144c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6060600061148c83611283565b905060008114156114e757600067ffffffffffffffff811180156114af57600080fd5b506040519080825280602002602001820160405280156114de5781602001602082028036833780820191505090505b50915050611573565b60008167ffffffffffffffff8111801561150057600080fd5b5060405190808252806020026020018201604052801561152f5781602001602082028036833780820191505090505b50905060005b8281101561156c576115478582610d6d565b82828151811061155357fe5b6020026020010181815250508080600101915050611535565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561163a5780601f1061160f5761010080835404028352916020019161163a565b820191906000526020600020905b81548152906001019060200180831161161d57829003601f168201915b5050505050905090565b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116da5780601f106116af576101008083540402835291602001916116da565b820191906000526020600020905b8154815290600101906020018083116116bd57829003601f168201915b505050505081565b6116ea61200b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174f90614326565b60405180910390fd5b806005600061176561200b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661181261200b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161185791906141a7565b60405180910390a35050565b61186b61200b565b73ffffffffffffffffffffffffffffffffffffffff16611889611578565b73ffffffffffffffffffffffffffffffffffffffff16146118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d6906144c6565b60405180910390fd5b60001515600d60009054906101000a900460ff16151514611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c90614546565b60405180910390fd5b80600c908051906020019061194b9291906130d8565b5050565b61196061195a61200b565b836120e1565b61199f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199690614566565b60405180910390fd5b6119ab8484848461259d565b50505050565b6119b961200b565b73ffffffffffffffffffffffffffffffffffffffff166119d7611578565b73ffffffffffffffffffffffffffffffffffffffff1614611a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a24906144c6565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0600c604051611a7891906141e4565b60405180910390a1565b600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b185780601f10611aed57610100808354040283529160200191611b18565b820191906000526020600020905b815481529060010190602001808311611afb57829003601f168201915b505050505081565b6060611b2b82611fee565b611b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6190614506565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611c135780601f10611be857610100808354040283529160200191611c13565b820191906000526020600020905b815481529060010190602001808311611bf657829003601f168201915b505050505090506000611c246111db565b9050600081511415611c3a578192505050611c9e565b600082511115611c6f578082604051602001611c579291906140fa565b60405160208183030381529060405292505050611c9e565b80611c79856125f9565b604051602001611c8a9291906140fa565b604051602081830303815290604052925050505b919050565b6060611cad610bd3565b8210611cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce5906144a6565b60405180910390fd5b600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d845780601f10611d5957610100808354040283529160200191611d84565b820191906000526020600020905b815481529060010190602001808311611d6757829003601f168201915b50505050509050919050565b600f81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60019054906101000a900460ff1681565b611e4461200b565b73ffffffffffffffffffffffffffffffffffffffff16611e62611578565b73ffffffffffffffffffffffffffffffffffffffff1614611eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eaf906144c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1f90614266565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611ccb81565b600061200482600261274090919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612086836111a4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006120da8260000161275a565b9050919050565b60006120ec82611fee565b61212b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612122906143a6565b60405180910390fd5b6000612136836111a4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121a557508373ffffffffffffffffffffffffffffffffffffffff1661218d846109a0565b73ffffffffffffffffffffffffffffffffffffffff16145b806121b657506121b58185611d95565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121df826111a4565b73ffffffffffffffffffffffffffffffffffffffff1614612235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222c906144e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229c90614306565b60405180910390fd5b6122b083838361276b565b6122bb600082612013565b61230c81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061277090919063ffffffff16565b5061235e81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061278a90919063ffffffff16565b50612375818360026127a49092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6123f08282604051806020016040528060008152506127d9565b5050565b600082821115612439576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243090614366565b60405180910390fd5b818303905092915050565b60006124538360000183612834565b60001c905092915050565b60008060008061247186600001866128a1565b915091508160001c8160001c9350935050509250929050565b80600990805190602001906124a09291906130d8565b5050565b6000808284019050838110156124ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e6906142a6565b60405180910390fd5b8091505092915050565b60008083141561250c5760009050612563565b600082840290508284828161251d57fe5b041461255e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255590614466565b60405180910390fd5b809150505b92915050565b600061257c846000018460001b84612924565b60001c90509392505050565b6000612596826000016129b5565b9050919050565b6125a88484846121bf565b6125b4848484846129c6565b6125f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ea90614246565b60405180910390fd5b50505050565b60606000821415612641576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061273b565b600082905060005b6000821461266b578080600101915050600a828161266357fe5b049150612649565b60008167ffffffffffffffff8111801561268457600080fd5b506040519080825280601f01601f1916602001820160405280156126b75781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461273357600a84816126d857fe5b0660300160f81b828280600190039350815181106126f257fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161272b57fe5b0493506126c6565b819450505050505b919050565b6000612752836000018360001b612b2a565b905092915050565b600081600001805490509050919050565b505050565b6000612782836000018360001b612b4d565b905092915050565b600061279c836000018360001b612c35565b905092915050565b60006127d0846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612ca5565b90509392505050565b6127e38383612d81565b6127f060008484846129c6565b61282f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282690614246565b60405180910390fd5b505050565b60008183600001805490501161287f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287690614226565b60405180910390fd5b82600001828154811061288e57fe5b9060005260206000200154905092915050565b600080828460000180549050116128ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e490614426565b60405180910390fd5b60008460000184815481106128fe57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297d91906141c2565b60405180910390fd5b5084600001600182038154811061299957fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006129e78473ffffffffffffffffffffffffffffffffffffffff16612f0f565b6129f45760019050612b22565b6000612abb63150b7a0260e01b612a0961200b565b888787604051602401612a1f9493929190614139565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614826603291398773ffffffffffffffffffffffffffffffffffffffff16612f229092919063ffffffff16565b9050600081806020019051810190612ad3919061348c565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114612c295760006001820390506000600186600001805490500390506000866000018281548110612b9857fe5b9060005260206000200154905080876000018481548110612bb557fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612bed57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612c2f565b60009150505b92915050565b6000612c418383612f3a565b612c9a578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612c9f565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415612d4c57846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050612d7a565b82856000016001830381548110612d5f57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de890614446565b60405180910390fd5b612dfa81611fee565b15612e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3190614286565b60405180910390fd5b612e466000838361276b565b612e9781600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061278a90919063ffffffff16565b50612eae818360026127a49092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060612f318484600085612f5d565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015612fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9990614386565b60405180910390fd5b612fab85612f0f565b612fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe190614586565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161301391906140e3565b60006040518083038185875af1925050503d8060008114613050576040519150601f19603f3d011682016040523d82523d6000602084013e613055565b606091505b5091509150613065828286613071565b92505050949350505050565b60608315613081578290506130d1565b6000835111156130945782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c891906141c2565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261310e5760008555613155565b82601f1061312757805160ff1916838001178555613155565b82800160010185558215613155579182015b82811115613154578251825591602001919060010190613139565b5b5090506131629190613166565b5090565b5b8082111561317f576000816000905550600101613167565b5090565b6000613196613191846145f2565b6145c1565b9050828152602081018484840111156131ae57600080fd5b6131b9848285614774565b509392505050565b60006131d46131cf84614622565b6145c1565b9050828152602081018484840111156131ec57600080fd5b6131f7848285614774565b509392505050565b60008135905061320e816147c9565b92915050565b600081359050613223816147e0565b92915050565b600081359050613238816147f7565b92915050565b60008151905061324d816147f7565b92915050565b600082601f83011261326457600080fd5b8135613274848260208601613183565b91505092915050565b600082601f83011261328e57600080fd5b813561329e8482602086016131c1565b91505092915050565b6000813590506132b68161480e565b92915050565b6000602082840312156132ce57600080fd5b60006132dc848285016131ff565b91505092915050565b600080604083850312156132f857600080fd5b6000613306858286016131ff565b9250506020613317858286016131ff565b9150509250929050565b60008060006060848603121561333657600080fd5b6000613344868287016131ff565b9350506020613355868287016131ff565b9250506040613366868287016132a7565b9150509250925092565b6000806000806080858703121561338657600080fd5b6000613394878288016131ff565b94505060206133a5878288016131ff565b93505060406133b6878288016132a7565b925050606085013567ffffffffffffffff8111156133d357600080fd5b6133df87828801613253565b91505092959194509250565b600080604083850312156133fe57600080fd5b600061340c858286016131ff565b925050602061341d85828601613214565b9150509250929050565b6000806040838503121561343a57600080fd5b6000613448858286016131ff565b9250506020613459858286016132a7565b9150509250929050565b60006020828403121561347557600080fd5b600061348384828501613229565b91505092915050565b60006020828403121561349e57600080fd5b60006134ac8482850161323e565b91505092915050565b6000602082840312156134c757600080fd5b600082013567ffffffffffffffff8111156134e157600080fd5b6134ed8482850161327d565b91505092915050565b60006020828403121561350857600080fd5b6000613516848285016132a7565b91505092915050565b600061352b83836140c5565b60208301905092915050565b61354081614700565b82525050565b61354f816146ee565b82525050565b600061356082614677565b61356a81856146a5565b935061357583614652565b8060005b838110156135a657815161358d888261351f565b975061359883614698565b925050600181019050613579565b5085935050505092915050565b6135bc81614712565b82525050565b60006135cd82614682565b6135d781856146b6565b93506135e7818560208601614783565b6135f0816147b8565b840191505092915050565b600061360682614682565b61361081856146c7565b9350613620818560208601614783565b80840191505092915050565b60006136378261468d565b61364181856146d2565b9350613651818560208601614783565b61365a816147b8565b840191505092915050565b60006136708261468d565b61367a81856146e3565b935061368a818560208601614783565b80840191505092915050565b6000815460018116600081146136b357600181146136d95761371d565b607f60028304166136c481876146d2565b955060ff19831686526020860193505061371d565b600282046136e781876146d2565b95506136f285614662565b60005b82811015613714578154818901526001820191506020810190506136f5565b80880195505050505b505092915050565b60006137326029836146d2565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f662046726f677300000000000000000000000000000000000000000000006020830152604082019050919050565b60006137986022836146d2565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137fe6032836146d2565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006138646026836146d2565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138ca601c836146d2565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061390a601b836146d2565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b600061394a6020836146d2565b91507f53616c65206d7573742062652061637469766520746f206d696e742046726f676000830152602082019050919050565b600061398a6020836146d2565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b60006139ca6024836146d2565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a306019836146d2565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613a70601f836146d2565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000613ab0601e836146d2565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000613af06026836146d2565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b56602c836146d2565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613bbc6020836146d2565b91507f43616e206f6e6c79206d696e74203120746f6b656e7320617420612074696d656000830152602082019050919050565b6000613bfc6038836146d2565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613c62602a836146d2565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cc86022836146d2565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d2e6020836146d2565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613d6e6021836146d2565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613dd4602c836146d2565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613e3a601a836146d2565b91507f43484f4f534520412046524f472057495448494e2052414e47450000000000006000830152602082019050919050565b6000613e7a6020836146d2565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613eba6029836146d2565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f20602f836146d2565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613f866021836146d2565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fec6016836146d2565b91507f4c6963656e736520616c7265616479206c6f636b6564000000000000000000006000830152602082019050919050565b600061402c6031836146d2565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614092601d836146d2565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b6140ce8161476a565b82525050565b6140dd8161476a565b82525050565b60006140ef82846135fb565b915081905092915050565b60006141068285613665565b91506141128284613665565b91508190509392505050565b60006020820190506141336000830184613546565b92915050565b600060808201905061414e6000830187613537565b61415b6020830186613546565b61416860408301856140d4565b818103606083015261417a81846135c2565b905095945050505050565b6000602082019050818103600083015261419f8184613555565b905092915050565b60006020820190506141bc60008301846135b3565b92915050565b600060208201905081810360008301526141dc818461362c565b905092915050565b600060208201905081810360008301526141fe8184613696565b905092915050565b6000602082019050818103600083015261421f81613725565b9050919050565b6000602082019050818103600083015261423f8161378b565b9050919050565b6000602082019050818103600083015261425f816137f1565b9050919050565b6000602082019050818103600083015261427f81613857565b9050919050565b6000602082019050818103600083015261429f816138bd565b9050919050565b600060208201905081810360008301526142bf816138fd565b9050919050565b600060208201905081810360008301526142df8161393d565b9050919050565b600060208201905081810360008301526142ff8161397d565b9050919050565b6000602082019050818103600083015261431f816139bd565b9050919050565b6000602082019050818103600083015261433f81613a23565b9050919050565b6000602082019050818103600083015261435f81613a63565b9050919050565b6000602082019050818103600083015261437f81613aa3565b9050919050565b6000602082019050818103600083015261439f81613ae3565b9050919050565b600060208201905081810360008301526143bf81613b49565b9050919050565b600060208201905081810360008301526143df81613baf565b9050919050565b600060208201905081810360008301526143ff81613bef565b9050919050565b6000602082019050818103600083015261441f81613c55565b9050919050565b6000602082019050818103600083015261443f81613cbb565b9050919050565b6000602082019050818103600083015261445f81613d21565b9050919050565b6000602082019050818103600083015261447f81613d61565b9050919050565b6000602082019050818103600083015261449f81613dc7565b9050919050565b600060208201905081810360008301526144bf81613e2d565b9050919050565b600060208201905081810360008301526144df81613e6d565b9050919050565b600060208201905081810360008301526144ff81613ead565b9050919050565b6000602082019050818103600083015261451f81613f13565b9050919050565b6000602082019050818103600083015261453f81613f79565b9050919050565b6000602082019050818103600083015261455f81613fdf565b9050919050565b6000602082019050818103600083015261457f8161401f565b9050919050565b6000602082019050818103600083015261459f81614085565b9050919050565b60006020820190506145bb60008301846140d4565b92915050565b6000604051905081810181811067ffffffffffffffff821117156145e8576145e76147b6565b5b8060405250919050565b600067ffffffffffffffff82111561460d5761460c6147b6565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561463d5761463c6147b6565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006146f98261474a565b9050919050565b600061470b8261474a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156147a1578082015181840152602081019050614786565b838111156147b0576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b6147d2816146ee565b81146147dd57600080fd5b50565b6147e981614712565b81146147f457600080fd5b50565b6148008161471e565b811461480b57600080fd5b50565b6148178161476a565b811461482257600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220ff209e1ef08d1036270a444a4fcc46451e8056287fb3a1c0b74e68ceae300b9664736f6c63430007060033

Deployed Bytecode Sourcemap

66836:3431:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10236:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51521:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54307:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53837:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68032:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53315:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67101:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55197:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67624:398;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53077:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68274:89;;;;;;;;;;;;;:::i;:::-;;67481:131;;;;;;;;;;;;;:::i;:::-;;55573:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53603:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68165:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69568:681;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51277:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52896:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67321:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50994:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66232:148;;;;;;;;;;;;;:::i;:::-;;68381:540;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65581:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51690:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66970:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54600:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69376:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55795:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69212:125;;;;;;;;;;;;;:::i;:::-;;66923:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51865:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68972:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67175:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54966:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67274:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66535:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67225:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10236:150;10321:4;10345:20;:33;10366:11;10345:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10338:40;;10236:150;;;:::o;51521:100::-;51575:13;51608:5;51601:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51521:100;:::o;54307:221::-;54383:7;54411:16;54419:7;54411;:16::i;:::-;54403:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54496:15;:24;54512:7;54496:24;;;;;;;;;;;;;;;;;;;;;54489:31;;54307:221;;;:::o;53837:404::-;53918:13;53934:23;53949:7;53934:14;:23::i;:::-;53918:39;;53982:5;53976:11;;:2;:11;;;;53968:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;54062:5;54046:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;54071:44;54095:5;54102:12;:10;:12::i;:::-;54071:23;:44::i;:::-;54046:69;54038:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;54212:21;54221:2;54225:7;54212:8;:21::i;:::-;53837:404;;;:::o;68032:125::-;65812:12;:10;:12::i;:::-;65801:23;;:7;:5;:7::i;:::-;:23;;;65793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68135:14:::1;68117:15;:32;;;;;;;;;;;;:::i;:::-;;68032:125:::0;:::o;53315:211::-;53376:7;53497:21;:12;:19;:21::i;:::-;53490:28;;53315:211;:::o;67101:53::-;67137:17;67101:53;:::o;55197:305::-;55358:41;55377:12;:10;:12::i;:::-;55391:7;55358:18;:41::i;:::-;55350:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;55466:28;55476:4;55482:2;55486:7;55466:9;:28::i;:::-;55197:305;;;:::o;67624:398::-;65812:12;:10;:12::i;:::-;65801:23;;:7;:5;:7::i;:::-;:23;;;65793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67719:11:::1;67733:13;:11;:13::i;:::-;67719:27;;67782:1;67765:14;:18;:51;;;;;67805:11;;67787:14;:29;;67765:51;67757:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;67869:6;67864:95;67885:14;67881:1;:18;67864:95;;;67921:26;67931:3;67945:1;67936:6;:10;67921:9;:26::i;:::-;67901:3;;;;;;;67864:95;;;;67983:31;67999:14;67983:11;;:15;;:31;;;;:::i;:::-;67969:11;:45;;;;65872:1;67624:398:::0;;:::o;53077:162::-;53174:7;53201:30;53225:5;53201:13;:20;53215:5;53201:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;53194:37;;53077:162;;;;:::o;68274:89::-;65812:12;:10;:12::i;:::-;65801:23;;:7;:5;:7::i;:::-;:23;;;65793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68343:12:::1;;;;;;;;;;;68342:13;68327:12;;:28;;;;;;;;;;;;;;;;;;68274:89::o:0;67481:131::-;65812:12;:10;:12::i;:::-;65801:23;;:7;:5;:7::i;:::-;:23;;;65793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67529:12:::1;67544:21;67529:36;;67576:10;:19;;:28;67596:7;67576:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;65872:1;67481:131::o:0;55573:151::-;55677:39;55694:4;55700:2;55704:7;55677:39;;;;;;;;;;;;:16;:39::i;:::-;55573:151;;;:::o;53603:172::-;53678:7;53699:15;53720:22;53736:5;53720:12;:15;;:22;;;;:::i;:::-;53698:44;;;53760:7;53753:14;;;53603:172;;;:::o;68165:99::-;65812:12;:10;:12::i;:::-;65801:23;;:7;:5;:7::i;:::-;:23;;;65793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68236:20:::1;68248:7;68236:11;:20::i;:::-;68165:99:::0;:::o;69568:681::-;69641:12;;;;;;;;;;;69633:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;69726:1;69709:14;:18;:55;;;;;67214:2;69731:14;:33;;69709:55;69701:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;67261:4;69820:33;69838:14;69820:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:46;;69812:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;69944:29;69958:14;67137:17;69944:13;;:29;;;;:::i;:::-;69931:9;:42;;69923:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;70034:6;70030:210;70050:14;70046:1;:18;70030:210;;;70086:14;70103:13;:11;:13::i;:::-;70086:30;;67261:4;70135:13;:11;:13::i;:::-;:25;70131:98;;;70181:32;70191:10;70203:9;70181;:32::i;:::-;70131:98;70030:210;70066:3;;;;;;;70030:210;;;;69568:681;:::o;51277:177::-;51349:7;51376:70;51393:7;51376:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;51369:77;;51277:177;;;:::o;52896:97::-;52944:13;52977:8;52970:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52896:97;:::o;67321:29::-;;;;:::o;50994:221::-;51066:7;51111:1;51094:19;;:5;:19;;;;51086:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;51178:29;:13;:20;51192:5;51178:20;;;;;;;;;;;;;;;:27;:29::i;:::-;51171:36;;50994:221;;;:::o;66232:148::-;65812:12;:10;:12::i;:::-;65801:23;;:7;:5;:7::i;:::-;:23;;;65793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66339:1:::1;66302:40;;66323:6;;;;;;;;;;;66302:40;;;;;;;;;;;;66370:1;66353:6;;:19;;;;;;;;;;;;;;;;;;66232:148::o:0;68381:540::-;68442:16;68472:18;68493:17;68503:6;68493:9;:17::i;:::-;68472:38;;68539:1;68525:10;:15;68521:393;;;68616:1;68602:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68595:23;;;;;68521:393;68651:23;68691:10;68677:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68651:51;;68717:13;68745:130;68769:10;68761:5;:18;68745:130;;;68825:34;68845:6;68853:5;68825:19;:34::i;:::-;68809:6;68816:5;68809:13;;;;;;;;;;;;;:50;;;;;68781:7;;;;;;;68745:130;;;68896:6;68889:13;;;;;68381:540;;;;:::o;65581:87::-;65627:7;65654:6;;;;;;;;;;;65647:13;;65581:87;:::o;51690:104::-;51746:13;51779:7;51772:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51690:104;:::o;66970:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54600:295::-;54715:12;:10;:12::i;:::-;54703:24;;:8;:24;;;;54695:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;54815:8;54770:18;:32;54789:12;:10;:12::i;:::-;54770:32;;;;;;;;;;;;;;;:42;54803:8;54770:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;54868:8;54839:48;;54854:12;:10;:12::i;:::-;54839:48;;;54878:8;54839:48;;;;;;:::i;:::-;;;;;;;;54600:295;;:::o;69376:174::-;65812:12;:10;:12::i;:::-;65801:23;;:7;:5;:7::i;:::-;:23;;;65793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69476:5:::1;69459:22;;:13;;;;;;;;;;;:22;;;69451:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;69534:8;69519:12;:23;;;;;;;;;;;;:::i;:::-;;69376:174:::0;:::o;55795:285::-;55927:41;55946:12;:10;:12::i;:::-;55960:7;55927:18;:41::i;:::-;55919:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;56033:39;56047:4;56053:2;56057:7;56066:5;56033:13;:39::i;:::-;55795:285;;;;:::o;69212:125::-;65812:12;:10;:12::i;:::-;65801:23;;:7;:5;:7::i;:::-;:23;;;65793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69280:4:::1;69263:13;;:21;;;;;;;;;;;;;;;;;;69300:29;69316:12;69300:29;;;;;;:::i;:::-;;;;;;;;69212:125::o:0;66923:34::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51865:792::-;51938:13;51972:16;51980:7;51972;:16::i;:::-;51964:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;52053:23;52079:10;:19;52090:7;52079:19;;;;;;;;;;;52053:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52109:18;52130:9;:7;:9::i;:::-;52109:30;;52237:1;52221:4;52215:18;:23;52211:72;;;52262:9;52255:16;;;;;;52211:72;52413:1;52393:9;52387:23;:27;52383:108;;;52462:4;52468:9;52445:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52431:48;;;;;;52383:108;52623:4;52629:18;:7;:16;:18::i;:::-;52606:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52592:57;;;;51865:792;;;;:::o;68972:174::-;69024:13;69064;:11;:13::i;:::-;69058:3;:19;69050:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;69126:12;69119:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68972:174;;;:::o;67175:41::-;67214:2;67175:41;:::o;54966:164::-;55063:4;55087:18;:25;55106:5;55087:25;;;;;;;;;;;;;;;:35;55113:8;55087:35;;;;;;;;;;;;;;;;;;;;;;;;;55080:42;;54966:164;;;;:::o;67274:32::-;;;;;;;;;;;;;:::o;66535:244::-;65812:12;:10;:12::i;:::-;65801:23;;:7;:5;:7::i;:::-;:23;;;65793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66644:1:::1;66624:22;;:8;:22;;;;66616:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;66734:8;66705:38;;66726:6;;;;;;;;;;;66705:38;;;;;;;;;;;;66763:8;66754:6;;:17;;;;;;;;;;;;;;;;;;66535:244:::0;:::o;67225:40::-;67261:4;67225:40;:::o;57547:127::-;57612:4;57636:30;57658:7;57636:12;:21;;:30;;;;:::i;:::-;57629:37;;57547:127;;;:::o;668:106::-;721:15;756:10;749:17;;668:106;:::o;63565:192::-;63667:2;63640:15;:24;63656:7;63640:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;63723:7;63719:2;63685:46;;63694:23;63709:7;63694:14;:23::i;:::-;63685:46;;;;;;;;;;;;63565:192;;:::o;44279:123::-;44348:7;44375:19;44383:3;:10;;44375:7;:19::i;:::-;44368:26;;44279:123;;;:::o;57841:355::-;57934:4;57959:16;57967:7;57959;:16::i;:::-;57951:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58035:13;58051:23;58066:7;58051:14;:23::i;:::-;58035:39;;58104:5;58093:16;;:7;:16;;;:51;;;;58137:7;58113:31;;:20;58125:7;58113:11;:20::i;:::-;:31;;;58093:51;:94;;;;58148:39;58172:5;58179:7;58148:23;:39::i;:::-;58093:94;58085:103;;;57841:355;;;;:::o;60977:599::-;61102:4;61075:31;;:23;61090:7;61075:14;:23::i;:::-;:31;;;61067:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;61203:1;61189:16;;:2;:16;;;;61181:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61259:39;61280:4;61286:2;61290:7;61259:20;:39::i;:::-;61363:29;61380:1;61384:7;61363:8;:29::i;:::-;61405:35;61432:7;61405:13;:19;61419:4;61405:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;61451:30;61473:7;61451:13;:17;61465:2;61451:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;61494:29;61511:7;61520:2;61494:12;:16;;:29;;;;;:::i;:::-;;61560:7;61556:2;61541:27;;61550:4;61541:27;;;;;;;;;;;;60977:599;;;:::o;58539:110::-;58615:26;58625:2;58629:7;58615:26;;;;;;;;;;;;:9;:26::i;:::-;58539:110;;:::o;14260:158::-;14318:7;14351:1;14346;:6;;14338:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;14409:1;14405;:5;14398:12;;14260:158;;;;:::o;36070:137::-;36141:7;36176:22;36180:3;:10;;36192:5;36176:3;:22::i;:::-;36168:31;;36161:38;;36070:137;;;;:::o;44741:236::-;44821:7;44830;44851:11;44864:13;44881:22;44885:3;:10;;44897:5;44881:3;:22::i;:::-;44850:53;;;;44930:3;44922:12;;44960:5;44952:14;;44914:55;;;;;;44741:236;;;;;:::o;62177:100::-;62261:8;62250;:19;;;;;;;;;;;;:::i;:::-;;62177:100;:::o;13798:179::-;13856:7;13876:9;13892:1;13888;:5;13876:17;;13917:1;13912;:6;;13904:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;13968:1;13961:8;;;13798:179;;;;:::o;14677:220::-;14735:7;14764:1;14759;:6;14755:20;;;14774:1;14767:8;;;;14755:20;14786:9;14802:1;14798;:5;14786:17;;14831:1;14826;14822;:5;;;;;;:10;14814:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;14888:1;14881:8;;;14677:220;;;;;:::o;46027:213::-;46134:7;46185:44;46190:3;:10;;46210:3;46202:12;;46216;46185:4;:44::i;:::-;46177:53;;46154:78;;46027:213;;;;;:::o;35612:114::-;35672:7;35699:19;35707:3;:10;;35699:7;:19::i;:::-;35692:26;;35612:114;;;:::o;56962:272::-;57076:28;57086:4;57092:2;57096:7;57076:9;:28::i;:::-;57123:48;57146:4;57152:2;57156:7;57165:5;57123:22;:48::i;:::-;57115:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;56962:272;;;;:::o;46491:746::-;46547:13;46777:1;46768:5;:10;46764:53;;;46795:10;;;;;;;;;;;;;;;;;;;;;46764:53;46827:12;46842:5;46827:20;;46858:14;46883:78;46898:1;46890:4;:9;46883:78;;46916:8;;;;;;;46947:2;46939:10;;;;;;;;;46883:78;;;46971:19;47003:6;46993:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46971:39;;47021:13;47046:1;47037:6;:10;47021:26;;47065:5;47058:12;;47081:117;47096:1;47088:4;:9;47081:117;;47157:2;47150:4;:9;;;;;;47145:2;:14;47132:29;;47114:6;47121:7;;;;;;;47114:15;;;;;;;;;;;:47;;;;;;;;;;;47184:2;47176:10;;;;;;;;;47081:117;;;47222:6;47208:21;;;;;;46491:746;;;;:::o;44040:151::-;44124:4;44148:35;44158:3;:10;;44178:3;44170:12;;44148:9;:35::i;:::-;44141:42;;44040:151;;;;:::o;40858:110::-;40914:7;40941:3;:12;;:19;;;;40934:26;;40858:110;;;:::o;64370:93::-;;;;:::o;35157:137::-;35227:4;35251:35;35259:3;:10;;35279:5;35271:14;;35251:7;:35::i;:::-;35244:42;;35157:137;;;;:::o;34850:131::-;34917:4;34941:32;34946:3;:10;;34966:5;34958:14;;34941:4;:32::i;:::-;34934:39;;34850:131;;;;:::o;43463:185::-;43552:4;43576:64;43581:3;:10;;43601:3;43593:12;;43631:5;43615:23;;43607:32;;43576:4;:64::i;:::-;43569:71;;43463:185;;;;;:::o;58876:250::-;58972:18;58978:2;58982:7;58972:5;:18::i;:::-;59009:54;59040:1;59044:2;59048:7;59057:5;59009:22;:54::i;:::-;59001:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;58876:250;;;:::o;31108:204::-;31175:7;31224:5;31203:3;:11;;:18;;;;:26;31195:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31286:3;:11;;31298:5;31286:18;;;;;;;;;;;;;;;;31279:25;;31108:204;;;;:::o;41323:279::-;41390:7;41399;41449:5;41427:3;:12;;:19;;;;:27;41419:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;41506:22;41531:3;:12;;41544:5;41531:19;;;;;;;;;;;;;;;;;;41506:44;;41569:5;:10;;;41581:5;:12;;;41561:33;;;;;41323:279;;;;;:::o;42820:319::-;42914:7;42934:16;42953:3;:12;;:17;42966:3;42953:17;;;;;;;;;;;;42934:36;;43001:1;42989:8;:13;;43004:12;42981:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;43071:3;:12;;43095:1;43084:8;:12;43071:26;;;;;;;;;;;;;;;;;;:33;;;43064:40;;;42820:319;;;;;:::o;30655:109::-;30711:7;30738:3;:11;;:18;;;;30731:25;;30655:109;;;:::o;62842:604::-;62963:4;62990:15;:2;:13;;;:15::i;:::-;62985:60;;63029:4;63022:11;;;;62985:60;63055:23;63081:252;63134:45;;;63194:12;:10;:12::i;:::-;63221:4;63240:7;63262:5;63097:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63081:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;63055:278;;63344:13;63371:10;63360:32;;;;;;;;;;;;:::i;:::-;63344:48;;47991:10;63421:16;;63411:26;;;:6;:26;;;;63403:35;;;;62842:604;;;;;;;:::o;40638:125::-;40709:4;40754:1;40733:3;:12;;:17;40746:3;40733:17;;;;;;;;;;;;:22;;40726:29;;40638:125;;;;:::o;28810:1544::-;28876:4;28994:18;29015:3;:12;;:19;29028:5;29015:19;;;;;;;;;;;;28994:40;;29065:1;29051:10;:15;29047:1300;;29413:21;29450:1;29437:10;:14;29413:38;;29466:17;29507:1;29486:3;:11;;:18;;;;:22;29466:42;;29753:17;29773:3;:11;;29785:9;29773:22;;;;;;;;;;;;;;;;29753:42;;29919:9;29890:3;:11;;29902:13;29890:26;;;;;;;;;;;;;;;:38;;;;30038:1;30022:13;:17;29996:3;:12;;:23;30009:9;29996:23;;;;;;;;;;;:43;;;;30148:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;30243:3;:12;;:19;30256:5;30243:19;;;;;;;;;;;30236:26;;;30286:4;30279:11;;;;;;;;29047:1300;30330:5;30323:12;;;28810:1544;;;;;:::o;28220:414::-;28283:4;28305:21;28315:3;28320:5;28305:9;:21::i;:::-;28300:327;;28343:3;:11;;28360:5;28343:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28526:3;:11;;:18;;;;28504:3;:12;;:19;28517:5;28504:19;;;;;;;;;;;:40;;;;28566:4;28559:11;;;;28300:327;28610:5;28603:12;;28220:414;;;;;:::o;38138:692::-;38214:4;38330:16;38349:3;:12;;:17;38362:3;38349:17;;;;;;;;;;;;38330:36;;38395:1;38383:8;:13;38379:444;;;38450:3;:12;;38468:38;;;;;;;;38485:3;38468:38;;;;38498:5;38468:38;;;38450:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38665:3;:12;;:19;;;;38645:3;:12;;:17;38658:3;38645:17;;;;;;;;;;;:39;;;;38706:4;38699:11;;;;;38379:444;38779:5;38743:3;:12;;38767:1;38756:8;:12;38743:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38806:5;38799:12;;;38138:692;;;;;;:::o;59462:404::-;59556:1;59542:16;;:2;:16;;;;59534:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;59615:16;59623:7;59615;:16::i;:::-;59614:17;59606:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;59677:45;59706:1;59710:2;59714:7;59677:20;:45::i;:::-;59735:30;59757:7;59735:13;:17;59749:2;59735:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;59778:29;59795:7;59804:2;59778:12;:16;;:29;;;;;:::i;:::-;;59850:7;59846:2;59825:33;;59842:1;59825:33;;;;;;;;;;;;59462:404;;:::o;19239:422::-;19299:4;19507:12;19618:7;19606:20;19598:28;;19652:1;19645:4;:8;19638:15;;;19239:422;;;:::o;22157:195::-;22260:12;22292:52;22314:6;22322:4;22328:1;22331:12;22292:21;:52::i;:::-;22285:59;;22157:195;;;;;:::o;30440:129::-;30513:4;30560:1;30537:3;:12;;:19;30550:5;30537:19;;;;;;;;;;;;:24;;30530:31;;30440:129;;;;:::o;23209:530::-;23336:12;23394:5;23369:21;:30;;23361:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;23461:18;23472:6;23461:10;:18::i;:::-;23453:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;23587:12;23601:23;23628:6;:11;;23648:5;23656:4;23628:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23586:75;;;;23679:52;23697:7;23706:10;23718:12;23679:17;:52::i;:::-;23672:59;;;;23209:530;;;;;;:::o;25749:742::-;25864:12;25893:7;25889:595;;;25924:10;25917:17;;;;25889:595;26058:1;26038:10;:17;:21;26034:439;;;26301:10;26295:17;26362:15;26349:10;26345:2;26341:19;26334:44;26249:148;26444:12;26437:20;;;;;;;;;;;:::i;:::-;;;;;;;;25749: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:373::-;;10052:67;10116:2;10111:3;10052:67;:::i;:::-;10045:74;;10149:34;10145:1;10140:3;10136:11;10129:55;10215:11;10210:2;10205:3;10201:12;10194:33;10253:2;10248:3;10244:12;10237:19;;10035:227;;;:::o;10268:366::-;;10431:67;10495:2;10490:3;10431:67;:::i;:::-;10424:74;;10528:34;10524:1;10519:3;10515:11;10508:55;10594:4;10589:2;10584:3;10580:12;10573:26;10625:2;10620:3;10616:12;10609:19;;10414:220;;;:::o;10640:382::-;;10803:67;10867:2;10862:3;10803:67;:::i;:::-;10796:74;;10900:34;10896:1;10891:3;10887:11;10880:55;10966:20;10961:2;10956:3;10952:12;10945:42;11013:2;11008:3;11004:12;10997:19;;10786:236;;;:::o;11028:370::-;;11191:67;11255:2;11250:3;11191:67;:::i;:::-;11184:74;;11288:34;11284:1;11279:3;11275:11;11268:55;11354:8;11349:2;11344:3;11340:12;11333:30;11389:2;11384:3;11380:12;11373:19;;11174:224;;;:::o;11404:326::-;;11567:67;11631:2;11626:3;11567:67;:::i;:::-;11560:74;;11664:30;11660:1;11655:3;11651:11;11644:51;11721:2;11716:3;11712:12;11705:19;;11550:180;;;:::o;11736:325::-;;11899:67;11963:2;11958:3;11899:67;:::i;:::-;11892:74;;11996:29;11992:1;11987:3;11983:11;11976:50;12052:2;12047:3;12043:12;12036:19;;11882:179;;;:::o;12067:330::-;;12230:67;12294:2;12289:3;12230:67;:::i;:::-;12223:74;;12327:34;12323:1;12318:3;12314:11;12307:55;12388:2;12383:3;12379:12;12372:19;;12213:184;;;:::o;12403:330::-;;12566:67;12630:2;12625:3;12566:67;:::i;:::-;12559:74;;12663:34;12659:1;12654:3;12650:11;12643:55;12724:2;12719:3;12715:12;12708:19;;12549:184;;;:::o;12739:368::-;;12902:67;12966:2;12961:3;12902:67;:::i;:::-;12895:74;;12999:34;12995:1;12990:3;12986:11;12979:55;13065:6;13060:2;13055:3;13051:12;13044:28;13098:2;13093:3;13089:12;13082:19;;12885:222;;;:::o;13113:323::-;;13276:67;13340:2;13335:3;13276:67;:::i;:::-;13269:74;;13373:27;13369:1;13364:3;13360:11;13353:48;13427:2;13422:3;13418:12;13411:19;;13259:177;;;:::o;13442:329::-;;13605:67;13669:2;13664:3;13605:67;:::i;:::-;13598:74;;13702:33;13698:1;13693:3;13689:11;13682:54;13762:2;13757:3;13753:12;13746:19;;13588:183;;;:::o;13777:328::-;;13940:67;14004:2;13999:3;13940:67;:::i;:::-;13933:74;;14037:32;14033:1;14028:3;14024:11;14017:53;14096:2;14091:3;14087:12;14080:19;;13923:182;;;:::o;14111:370::-;;14274:67;14338:2;14333:3;14274:67;:::i;:::-;14267:74;;14371:34;14367:1;14362:3;14358:11;14351:55;14437:8;14432:2;14427:3;14423:12;14416:30;14472:2;14467:3;14463:12;14456:19;;14257:224;;;:::o;14487:376::-;;14650:67;14714:2;14709:3;14650:67;:::i;:::-;14643:74;;14747:34;14743:1;14738:3;14734:11;14727:55;14813:14;14808:2;14803:3;14799:12;14792:36;14854:2;14849:3;14845:12;14838:19;;14633:230;;;:::o;14869:330::-;;15032:67;15096:2;15091:3;15032:67;:::i;:::-;15025:74;;15129:34;15125:1;15120:3;15116:11;15109:55;15190:2;15185:3;15181:12;15174:19;;15015:184;;;:::o;15205:388::-;;15368:67;15432:2;15427:3;15368:67;:::i;:::-;15361:74;;15465:34;15461:1;15456:3;15452:11;15445:55;15531:26;15526:2;15521:3;15517:12;15510:48;15584:2;15579:3;15575:12;15568:19;;15351:242;;;:::o;15599:374::-;;15762:67;15826:2;15821:3;15762:67;:::i;:::-;15755:74;;15859:34;15855:1;15850:3;15846:11;15839:55;15925:12;15920:2;15915:3;15911:12;15904:34;15964:2;15959:3;15955:12;15948:19;;15745:228;;;:::o;15979:366::-;;16142:67;16206:2;16201:3;16142:67;:::i;:::-;16135:74;;16239:34;16235:1;16230:3;16226:11;16219:55;16305:4;16300:2;16295:3;16291:12;16284:26;16336:2;16331:3;16327:12;16320:19;;16125:220;;;:::o;16351:330::-;;16514:67;16578:2;16573:3;16514:67;:::i;:::-;16507:74;;16611:34;16607:1;16602:3;16598:11;16591:55;16672:2;16667:3;16663:12;16656:19;;16497:184;;;:::o;16687:365::-;;16850:67;16914:2;16909:3;16850:67;:::i;:::-;16843:74;;16947:34;16943:1;16938:3;16934:11;16927:55;17013:3;17008:2;17003:3;16999:12;16992:25;17043:2;17038:3;17034:12;17027:19;;16833:219;;;:::o;17058:376::-;;17221:67;17285:2;17280:3;17221:67;:::i;:::-;17214:74;;17318:34;17314:1;17309:3;17305:11;17298:55;17384:14;17379:2;17374:3;17370:12;17363:36;17425:2;17420:3;17416:12;17409:19;;17204:230;;;:::o;17440:324::-;;17603:67;17667:2;17662:3;17603:67;:::i;:::-;17596:74;;17700:28;17696:1;17691:3;17687:11;17680:49;17755:2;17750:3;17746:12;17739:19;;17586:178;;;:::o;17770:330::-;;17933:67;17997:2;17992:3;17933:67;:::i;:::-;17926:74;;18030:34;18026:1;18021:3;18017:11;18010:55;18091:2;18086:3;18082:12;18075:19;;17916:184;;;:::o;18106:373::-;;18269:67;18333:2;18328:3;18269:67;:::i;:::-;18262:74;;18366:34;18362:1;18357:3;18353:11;18346:55;18432:11;18427:2;18422:3;18418:12;18411:33;18470:2;18465:3;18461:12;18454:19;;18252:227;;;:::o;18485:379::-;;18648:67;18712:2;18707:3;18648:67;:::i;:::-;18641:74;;18745:34;18741:1;18736:3;18732:11;18725:55;18811:17;18806:2;18801:3;18797:12;18790:39;18855:2;18850:3;18846:12;18839:19;;18631:233;;;:::o;18870:365::-;;19033:67;19097:2;19092:3;19033:67;:::i;:::-;19026:74;;19130:34;19126:1;19121:3;19117:11;19110:55;19196:3;19191:2;19186:3;19182:12;19175:25;19226:2;19221:3;19217:12;19210:19;;19016:219;;;:::o;19241:320::-;;19404:67;19468:2;19463:3;19404:67;:::i;:::-;19397:74;;19501:24;19497:1;19492:3;19488:11;19481:45;19552:2;19547:3;19543:12;19536:19;;19387:174;;;:::o;19567:381::-;;19730:67;19794:2;19789:3;19730:67;:::i;:::-;19723:74;;19827:34;19823:1;19818:3;19814:11;19807:55;19893:19;19888:2;19883:3;19879:12;19872:41;19939:2;19934:3;19930:12;19923:19;;19713:235;;;:::o;19954:327::-;;20117:67;20181:2;20176:3;20117:67;:::i;:::-;20110:74;;20214:31;20210:1;20205:3;20201:11;20194:52;20272:2;20267:3;20263:12;20256:19;;20100:181;;;:::o;20287:108::-;20364:24;20382:5;20364:24;:::i;:::-;20359:3;20352:37;20342:53;;:::o;20401:118::-;20488:24;20506:5;20488:24;:::i;:::-;20483:3;20476:37;20466:53;;:::o;20525:271::-;;20677:93;20766:3;20757:6;20677:93;:::i;:::-;20670:100;;20787:3;20780:10;;20659:137;;;;:::o;20802:435::-;;21004:95;21095:3;21086:6;21004:95;:::i;:::-;20997:102;;21116:95;21207:3;21198:6;21116:95;:::i;:::-;21109:102;;21228:3;21221:10;;20986:251;;;;;:::o;21243:222::-;;21374:2;21363:9;21359:18;21351:26;;21387:71;21455:1;21444:9;21440:17;21431:6;21387:71;:::i;:::-;21341:124;;;;:::o;21471:672::-;;21720:3;21709:9;21705:19;21697:27;;21734:87;21818:1;21807:9;21803:17;21794:6;21734:87;:::i;:::-;21831:72;21899:2;21888:9;21884:18;21875:6;21831:72;:::i;:::-;21913;21981:2;21970:9;21966:18;21957:6;21913:72;:::i;:::-;22032:9;22026:4;22022:20;22017:2;22006:9;22002:18;21995:48;22060:76;22131:4;22122:6;22060:76;:::i;:::-;22052:84;;21687:456;;;;;;;:::o;22149:373::-;;22330:2;22319:9;22315:18;22307:26;;22379:9;22373:4;22369:20;22365:1;22354:9;22350:17;22343:47;22407:108;22510:4;22501:6;22407:108;:::i;:::-;22399:116;;22297:225;;;;:::o;22528:210::-;;22653:2;22642:9;22638:18;22630:26;;22666:65;22728:1;22717:9;22713:17;22704:6;22666:65;:::i;:::-;22620:118;;;;:::o;22744:313::-;;22895:2;22884:9;22880:18;22872:26;;22944:9;22938:4;22934:20;22930:1;22919:9;22915:17;22908:47;22972:78;23045:4;23036:6;22972:78;:::i;:::-;22964:86;;22862:195;;;;:::o;23063:307::-;;23211:2;23200:9;23196:18;23188:26;;23260:9;23254:4;23250:20;23246:1;23235:9;23231:17;23224:47;23288:75;23358:4;23349:6;23288:75;:::i;:::-;23280:83;;23178:192;;;;:::o;23376:419::-;;23580:2;23569:9;23565:18;23557:26;;23629:9;23623:4;23619:20;23615:1;23604:9;23600:17;23593:47;23657:131;23783:4;23657:131;:::i;:::-;23649:139;;23547:248;;;:::o;23801:419::-;;24005:2;23994:9;23990:18;23982:26;;24054:9;24048:4;24044:20;24040:1;24029:9;24025:17;24018:47;24082:131;24208:4;24082:131;:::i;:::-;24074:139;;23972:248;;;:::o;24226:419::-;;24430:2;24419:9;24415:18;24407:26;;24479:9;24473:4;24469:20;24465:1;24454:9;24450:17;24443:47;24507:131;24633:4;24507:131;:::i;:::-;24499:139;;24397:248;;;:::o;24651:419::-;;24855:2;24844:9;24840:18;24832:26;;24904:9;24898:4;24894:20;24890:1;24879:9;24875:17;24868:47;24932:131;25058:4;24932:131;:::i;:::-;24924:139;;24822:248;;;:::o;25076:419::-;;25280:2;25269:9;25265:18;25257:26;;25329:9;25323:4;25319:20;25315:1;25304:9;25300:17;25293:47;25357:131;25483:4;25357:131;:::i;:::-;25349:139;;25247:248;;;:::o;25501:419::-;;25705:2;25694:9;25690:18;25682:26;;25754:9;25748:4;25744:20;25740:1;25729:9;25725:17;25718:47;25782:131;25908:4;25782:131;:::i;:::-;25774:139;;25672:248;;;:::o;25926:419::-;;26130:2;26119:9;26115:18;26107:26;;26179:9;26173:4;26169:20;26165:1;26154:9;26150:17;26143:47;26207:131;26333:4;26207:131;:::i;:::-;26199:139;;26097:248;;;:::o;26351:419::-;;26555:2;26544:9;26540:18;26532:26;;26604:9;26598:4;26594:20;26590:1;26579:9;26575:17;26568:47;26632:131;26758:4;26632:131;:::i;:::-;26624:139;;26522:248;;;:::o;26776:419::-;;26980:2;26969:9;26965:18;26957:26;;27029:9;27023:4;27019:20;27015:1;27004:9;27000:17;26993:47;27057:131;27183:4;27057:131;:::i;:::-;27049:139;;26947:248;;;:::o;27201:419::-;;27405:2;27394:9;27390:18;27382:26;;27454:9;27448:4;27444:20;27440:1;27429:9;27425:17;27418:47;27482:131;27608:4;27482:131;:::i;:::-;27474:139;;27372:248;;;:::o;27626:419::-;;27830:2;27819:9;27815:18;27807:26;;27879:9;27873:4;27869:20;27865:1;27854:9;27850:17;27843:47;27907:131;28033:4;27907:131;:::i;:::-;27899:139;;27797:248;;;:::o;28051:419::-;;28255:2;28244:9;28240:18;28232:26;;28304:9;28298:4;28294:20;28290:1;28279:9;28275:17;28268:47;28332:131;28458:4;28332:131;:::i;:::-;28324:139;;28222:248;;;:::o;28476:419::-;;28680:2;28669:9;28665:18;28657:26;;28729:9;28723:4;28719:20;28715:1;28704:9;28700:17;28693:47;28757:131;28883:4;28757:131;:::i;:::-;28749:139;;28647:248;;;:::o;28901:419::-;;29105:2;29094:9;29090:18;29082:26;;29154:9;29148:4;29144:20;29140:1;29129:9;29125:17;29118:47;29182:131;29308:4;29182:131;:::i;:::-;29174:139;;29072:248;;;:::o;29326:419::-;;29530:2;29519:9;29515:18;29507:26;;29579:9;29573:4;29569:20;29565:1;29554:9;29550:17;29543:47;29607:131;29733:4;29607:131;:::i;:::-;29599:139;;29497:248;;;:::o;29751:419::-;;29955:2;29944:9;29940:18;29932:26;;30004:9;29998:4;29994:20;29990:1;29979:9;29975:17;29968:47;30032:131;30158:4;30032:131;:::i;:::-;30024:139;;29922:248;;;:::o;30176:419::-;;30380:2;30369:9;30365:18;30357:26;;30429:9;30423:4;30419:20;30415:1;30404:9;30400:17;30393:47;30457:131;30583:4;30457:131;:::i;:::-;30449:139;;30347:248;;;:::o;30601:419::-;;30805:2;30794:9;30790:18;30782:26;;30854:9;30848:4;30844:20;30840:1;30829:9;30825:17;30818:47;30882:131;31008:4;30882:131;:::i;:::-;30874:139;;30772:248;;;:::o;31026:419::-;;31230:2;31219:9;31215:18;31207:26;;31279:9;31273:4;31269:20;31265:1;31254:9;31250:17;31243:47;31307:131;31433:4;31307:131;:::i;:::-;31299:139;;31197:248;;;:::o;31451:419::-;;31655:2;31644:9;31640:18;31632:26;;31704:9;31698:4;31694:20;31690:1;31679:9;31675:17;31668:47;31732:131;31858:4;31732:131;:::i;:::-;31724:139;;31622:248;;;:::o;31876:419::-;;32080:2;32069:9;32065:18;32057:26;;32129:9;32123:4;32119:20;32115:1;32104:9;32100:17;32093:47;32157:131;32283:4;32157:131;:::i;:::-;32149:139;;32047:248;;;:::o;32301:419::-;;32505:2;32494:9;32490:18;32482:26;;32554:9;32548:4;32544:20;32540:1;32529:9;32525:17;32518:47;32582:131;32708:4;32582:131;:::i;:::-;32574:139;;32472:248;;;:::o;32726:419::-;;32930:2;32919:9;32915:18;32907:26;;32979:9;32973:4;32969:20;32965:1;32954:9;32950:17;32943:47;33007:131;33133:4;33007:131;:::i;:::-;32999:139;;32897:248;;;:::o;33151:419::-;;33355:2;33344:9;33340:18;33332:26;;33404:9;33398:4;33394:20;33390:1;33379:9;33375:17;33368:47;33432:131;33558:4;33432:131;:::i;:::-;33424:139;;33322:248;;;:::o;33576:419::-;;33780:2;33769:9;33765:18;33757:26;;33829:9;33823:4;33819:20;33815:1;33804:9;33800:17;33793:47;33857:131;33983:4;33857:131;:::i;:::-;33849:139;;33747:248;;;:::o;34001:419::-;;34205:2;34194:9;34190:18;34182:26;;34254:9;34248:4;34244:20;34240:1;34229:9;34225:17;34218:47;34282:131;34408:4;34282:131;:::i;:::-;34274:139;;34172:248;;;:::o;34426:419::-;;34630:2;34619:9;34615:18;34607:26;;34679:9;34673:4;34669:20;34665:1;34654:9;34650:17;34643:47;34707:131;34833:4;34707:131;:::i;:::-;34699:139;;34597:248;;;:::o;34851:419::-;;35055:2;35044:9;35040:18;35032:26;;35104:9;35098:4;35094:20;35090:1;35079:9;35075:17;35068:47;35132:131;35258:4;35132:131;:::i;:::-;35124:139;;35022:248;;;:::o;35276:419::-;;35480:2;35469:9;35465:18;35457:26;;35529:9;35523:4;35519:20;35515:1;35504:9;35500:17;35493:47;35557:131;35683:4;35557:131;:::i;:::-;35549:139;;35447:248;;;:::o;35701:222::-;;35832:2;35821:9;35817:18;35809:26;;35845:71;35913:1;35902:9;35898:17;35889:6;35845:71;:::i;:::-;35799:124;;;;:::o;35929:278::-;;35995:2;35989:9;35979:19;;36037:4;36029:6;36025:17;36144:6;36132:10;36129:22;36108:18;36096:10;36093:34;36090:62;36087:2;;;36155:13;;:::i;:::-;36087:2;36190:10;36186:2;36179:22;35969:238;;;;:::o;36213:326::-;;36364:18;36356:6;36353:30;36350:2;;;36386:13;;:::i;:::-;36350:2;36466:4;36462:9;36455:4;36447:6;36443:17;36439:33;36431:41;;36527:4;36521;36517:15;36509:23;;36279:260;;;:::o;36545:327::-;;36697:18;36689:6;36686:30;36683:2;;;36719:13;;:::i;:::-;36683:2;36799:4;36795:9;36788:4;36780:6;36776:17;36772:33;36764:41;;36860:4;36854;36850:15;36842:23;;36612:260;;;:::o;36878:132::-;;36968:3;36960:11;;36998:4;36993:3;36989:14;36981:22;;36950:60;;;:::o;37016:141::-;;37088:3;37080:11;;37111:3;37108:1;37101:14;37145:4;37142:1;37132:18;37124:26;;37070:87;;;:::o;37163:114::-;;37264:5;37258:12;37248:22;;37237:40;;;:::o;37283:98::-;;37368:5;37362:12;37352:22;;37341:40;;;:::o;37387:99::-;;37473:5;37467:12;37457:22;;37446:40;;;:::o;37492:113::-;;37594:4;37589:3;37585:14;37577:22;;37567:38;;;:::o;37611:184::-;;37744:6;37739:3;37732:19;37784:4;37779:3;37775:14;37760:29;;37722:73;;;;:::o;37801:168::-;;37918:6;37913:3;37906:19;37958:4;37953:3;37949:14;37934:29;;37896:73;;;;:::o;37975:147::-;;38113:3;38098:18;;38088:34;;;;:::o;38128:169::-;;38246:6;38241:3;38234:19;38286:4;38281:3;38277:14;38262:29;;38224:73;;;;:::o;38303:148::-;;38442:3;38427:18;;38417:34;;;;:::o;38457:96::-;;38523:24;38541:5;38523:24;:::i;:::-;38512:35;;38502:51;;;:::o;38559:104::-;;38633:24;38651:5;38633:24;:::i;:::-;38622:35;;38612:51;;;:::o;38669:90::-;;38746:5;38739:13;38732:21;38721:32;;38711:48;;;:::o;38765:149::-;;38841:66;38834:5;38830:78;38819:89;;38809:105;;;:::o;38920:126::-;;38997:42;38990:5;38986:54;38975:65;;38965:81;;;:::o;39052:77::-;;39118:5;39107:16;;39097:32;;;:::o;39135:154::-;39219:6;39214:3;39209;39196:30;39281:1;39272:6;39267:3;39263:16;39256:27;39186:103;;;:::o;39295:307::-;39363:1;39373:113;39387:6;39384:1;39381:13;39373:113;;;39472:1;39467:3;39463:11;39457:18;39453:1;39448:3;39444:11;39437:39;39409:2;39406:1;39402:10;39397:15;;39373:113;;;39504:6;39501:1;39498:13;39495:2;;;39584:1;39575:6;39570:3;39566:16;39559:27;39495:2;39344:258;;;;:::o;39608:48::-;39641:9;39662:102;;39754:2;39750:7;39745:2;39738:5;39734:14;39730:28;39720:38;;39710:54;;;:::o;39770:122::-;39843:24;39861:5;39843:24;:::i;:::-;39836:5;39833:35;39823:2;;39882:1;39879;39872:12;39823:2;39813:79;:::o;39898:116::-;39968:21;39983:5;39968:21;:::i;:::-;39961:5;39958:32;39948:2;;40004:1;40001;39994:12;39948:2;39938:76;:::o;40020:120::-;40092:23;40109:5;40092:23;:::i;:::-;40085:5;40082:34;40072:2;;40130:1;40127;40120:12;40072:2;40062:78;:::o;40146:122::-;40219:24;40237:5;40219:24;:::i;:::-;40212:5;40209:35;40199:2;;40258:1;40255;40248:12;40199:2;40189:79;:::o

Swarm Source

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