ETH Price: $3,403.94 (-1.99%)
Gas: 5 Gwei

Token

Ballheads (BHC)
 

Overview

Max Total Supply

880 BHC

Holders

191

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
ngcg24.eth
Balance
2 BHC
0xb34fd18e01a5a42216e461582fbd1e31b671eaf2
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:
Ballheads

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-07-23
*/

// SPDX-License-Identifier: MIT

// GO TO LINE 1904 TO SEE WHERE THE BALL CONTRACT STARTS
 
// 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 Ballheads is ERC721, Ownable {
    
    using SafeMath for uint256;

    string public BALL_PROVENANCE = ""; // IPFS URL WILL BE ADDED WHEN BALLS ARE ALL SOLD OUT
    
    string public LICENSE_TEXT = ""; // IT IS WHAT IT SAYS
    
    bool licenseLocked = false; // TEAM CAN'T EDIT THE LICENSE AFTER THIS GETS TRUE

    uint256 public constant ballPrice = 10000000000000000; // 0.025 ETH

    uint public constant maxBallPurchase = 20;

    uint256 public constant MAX_BALLS = 5000;

    bool public saleIsActive = false;
    
    mapping(uint => string) public ballNames;
    
    // Reserve 200 Balls for team - Giveaways/Prizes etc
    uint public ballReserve = 200;
    
    event ballNameChange(address _by, uint _tokenId, string _name);
    
    event licenseisLocked(string _licenseText);

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


    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        BALL_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 BALL 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 mintBallheads(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint Ball");
        require(numberOfTokens > 0 && numberOfTokens <= maxBallPurchase, "Can only mint 20 tokens at a time");
        require(totalSupply().add(numberOfTokens) <= MAX_BALLS, "Purchase would exceed max supply of Balls");
        require(msg.value >= ballPrice.mul(numberOfTokens), "Ether value sent is not correct");
        
        for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply();
            if (totalSupply() < MAX_BALLS) {
                _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":"address","name":"_by","type":"address"},{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"_name","type":"string"}],"name":"ballNameChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_licenseText","type":"string"}],"name":"licenseisLocked","type":"event"},{"inputs":[],"name":"BALL_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_BALLS","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"ballNames","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ballPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ballReserve","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":[{"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":"maxBallPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintBallheads","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":"reserveBalls","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"}]

608060405260405180602001604052806000815250600b90805190602001906200002b92919062000334565b5060405180602001604052806000815250600c90805190602001906200005392919062000334565b506000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff02191690831515021790555060c8600f553480156200009c57600080fd5b506040518060400160405280600981526020017f42616c6c686561647300000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4248430000000000000000000000000000000000000000000000000000000000815250620001216301ffc9a760e01b6200025460201b60201c565b81600690805190602001906200013992919062000334565b5080600790805190602001906200015292919062000334565b506200016b6380ac58cd60e01b6200025460201b60201c565b62000183635b5e139f60e01b6200025460201b60201c565b6200019b63780e9d6360e01b6200025460201b60201c565b50506000620001af6200032c60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200045f565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620002c0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b7906200042c565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200036c5760008555620003b8565b82601f106200038757805160ff1916838001178555620003b8565b82800160010185558215620003b8579182015b82811115620003b75782518255916020019190600101906200039a565b5b509050620003c79190620003cb565b5090565b5b80821115620003e6576000816000905550600101620003cc565b5090565b6000620003f9601c836200044e565b91507f4552433136353a20696e76616c696420696e74657266616365206964000000006000830152602082019050919050565b600060208201905081810360008301526200044781620003ea565b9050919050565b600082825260208201905092915050565b6149d4806200046f6000396000f3fe6080604052600436106102255760003560e01c80637b932aef11610123578063b09904b5116100ab578063d9b137b21161006f578063d9b137b2146107e6578063e778c5da14610823578063e985e9c51461084e578063eb8d24441461088b578063f2fde38b146108b657610225565b8063b09904b514610724578063b88d4fde1461074d578063bc5cccc414610776578063bf4702fc14610792578063c87b56dd146107a957610225565b8063884b3e6c116100f2578063884b3e6c146106515780638da5cb5b1461067a57806395d89b41146106a55780639c3e72bd146106d0578063a22cb465146106fb57610225565b80637b932aef146105815780637ea9c403146105ac5780638390c269146105d75780638462151c1461061457610225565b806338cf726f116101b15780636352211e116101755780636352211e1461049a5780636c0360eb146104d757806370a0823114610502578063715018a61461053f5780637535d51c1461055657610225565b806338cf726f146103c95780633ccfd60b146103f457806342842e0e1461040b5780634f6ccce71461043457806355f804b31461047157610225565b806310969523116101f857806310969523146102f857806318160ddd1461032157806323b872dd1461034c5780632f745c591461037557806334918dfd146103b257610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061355b565b6108df565b60405161025e91906142c5565b60405180910390f35b34801561027357600080fd5b5061027c610946565b60405161028991906142e0565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906135ee565b6109e8565b6040516102c6919061423c565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f1919061351f565b610a6d565b005b34801561030457600080fd5b5061031f600480360381019061031a91906135ad565b610b85565b005b34801561032d57600080fd5b50610336610c1b565b60405161034391906146c4565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e9190613419565b610c2c565b005b34801561038157600080fd5b5061039c6004803603810190610397919061351f565b610c8c565b6040516103a991906146c4565b60405180910390f35b3480156103be57600080fd5b506103c7610ce7565b005b3480156103d557600080fd5b506103de610d8f565b6040516103eb91906142e0565b60405180910390f35b34801561040057600080fd5b50610409610e2d565b005b34801561041757600080fd5b50610432600480360381019061042d9190613419565b610ef8565b005b34801561044057600080fd5b5061045b600480360381019061045691906135ee565b610f18565b60405161046891906146c4565b60405180910390f35b34801561047d57600080fd5b50610498600480360381019061049391906135ad565b610f3b565b005b3480156104a657600080fd5b506104c160048036038101906104bc91906135ee565b610fc3565b6040516104ce919061423c565b60405180910390f35b3480156104e357600080fd5b506104ec610ffa565b6040516104f991906142e0565b60405180910390f35b34801561050e57600080fd5b50610529600480360381019061052491906133b4565b61109c565b60405161053691906146c4565b60405180910390f35b34801561054b57600080fd5b5061055461115b565b005b34801561056257600080fd5b5061056b611298565b60405161057891906146c4565b60405180910390f35b34801561058d57600080fd5b5061059661129e565b6040516105a391906146c4565b60405180910390f35b3480156105b857600080fd5b506105c16112a4565b6040516105ce91906146c4565b60405180910390f35b3480156105e357600080fd5b506105fe60048036038101906105f991906135ee565b6112af565b60405161060b91906142e0565b60405180910390f35b34801561062057600080fd5b5061063b600480360381019061063691906133b4565b61135f565b60405161064891906142a3565b60405180910390f35b34801561065d57600080fd5b506106786004803603810190610673919061351f565b611458565b005b34801561068657600080fd5b5061068f611576565b60405161069c919061423c565b60405180910390f35b3480156106b157600080fd5b506106ba6115a0565b6040516106c791906142e0565b60405180910390f35b3480156106dc57600080fd5b506106e5611642565b6040516106f291906142e0565b60405180910390f35b34801561070757600080fd5b50610722600480360381019061071d91906134e3565b6116e0565b005b34801561073057600080fd5b5061074b600480360381019061074691906135ad565b611861565b005b34801561075957600080fd5b50610774600480360381019061076f9190613468565b61194d565b005b610790600480360381019061078b91906135ee565b6119af565b005b34801561079e57600080fd5b506107a7611b4d565b005b3480156107b557600080fd5b506107d060048036038101906107cb91906135ee565b611c1e565b6040516107dd91906142e0565b60405180910390f35b3480156107f257600080fd5b5061080d600480360381019061080891906135ee565b611da1565b60405161081a91906142e0565b60405180910390f35b34801561082f57600080fd5b50610838611e8e565b60405161084591906146c4565b60405180910390f35b34801561085a57600080fd5b50610875600480360381019061087091906133dd565b611e93565b60405161088291906142c5565b60405180910390f35b34801561089757600080fd5b506108a0611f27565b6040516108ad91906142c5565b60405180910390f35b3480156108c257600080fd5b506108dd60048036038101906108d891906133b4565b611f3a565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109de5780601f106109b3576101008083540402835291602001916109de565b820191906000526020600020905b8154815290600101906020018083116109c157829003601f168201915b5050505050905090565b60006109f3826120e6565b610a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2990614584565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a7882610fc3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae090614604565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b08612103565b73ffffffffffffffffffffffffffffffffffffffff161480610b375750610b3681610b31612103565b611e93565b5b610b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6d906144e4565b60405180910390fd5b610b80838361210b565b505050565b610b8d612103565b73ffffffffffffffffffffffffffffffffffffffff16610bab611576565b73ffffffffffffffffffffffffffffffffffffffff1614610c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf8906145a4565b60405180910390fd5b80600b9080519060200190610c179291906131d0565b5050565b6000610c2760026121c4565b905090565b610c3d610c37612103565b826121d9565b610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7390614664565b60405180910390fd5b610c878383836122b7565b505050565b6000610cdf82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206124ce90919063ffffffff16565b905092915050565b610cef612103565b73ffffffffffffffffffffffffffffffffffffffff16610d0d611576565b73ffffffffffffffffffffffffffffffffffffffff1614610d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5a906145a4565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e255780601f10610dfa57610100808354040283529160200191610e25565b820191906000526020600020905b815481529060010190602001808311610e0857829003601f168201915b505050505081565b610e35612103565b73ffffffffffffffffffffffffffffffffffffffff16610e53611576565b73ffffffffffffffffffffffffffffffffffffffff1614610ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea0906145a4565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ef4573d6000803e3d6000fd5b5050565b610f138383836040518060200160405280600081525061194d565b505050565b600080610f2f8360026124e890919063ffffffff16565b50905080915050919050565b610f43612103565b73ffffffffffffffffffffffffffffffffffffffff16610f61611576565b73ffffffffffffffffffffffffffffffffffffffff1614610fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fae906145a4565b60405180910390fd5b610fc081612514565b50565b6000610ff38260405180606001604052806029815260200161497660299139600261252e9092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110925780601f1061106757610100808354040283529160200191611092565b820191906000526020600020905b81548152906001019060200180831161107557829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561110d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110490614504565b60405180910390fd5b611154600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061254d565b9050919050565b611163612103565b73ffffffffffffffffffffffffffffffffffffffff16611181611576565b73ffffffffffffffffffffffffffffffffffffffff16146111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce906145a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61138881565b600f5481565b662386f26fc1000081565b600e6020528060005260406000206000915090508054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113575780601f1061132c57610100808354040283529160200191611357565b820191906000526020600020905b81548152906001019060200180831161133a57829003601f168201915b505050505081565b6060600061136c8361109c565b905060008114156113c757600067ffffffffffffffff8111801561138f57600080fd5b506040519080825280602002602001820160405280156113be5781602001602082028036833780820191505090505b50915050611453565b60008167ffffffffffffffff811180156113e057600080fd5b5060405190808252806020026020018201604052801561140f5781602001602082028036833780820191505090505b50905060005b8281101561144c576114278582610c8c565b82828151811061143357fe5b6020026020010181815250508080600101915050611415565b8193505050505b919050565b611460612103565b73ffffffffffffffffffffffffffffffffffffffff1661147e611576565b73ffffffffffffffffffffffffffffffffffffffff16146114d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cb906145a4565b60405180910390fd5b60006114de610c1b565b90506000821180156114f25750600f548211155b611531576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611528906143e4565b60405180910390fd5b60005b828110156115555761154884828401612562565b8080600101915050611534565b5061156b82600f5461258090919063ffffffff16565b600f81905550505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116385780601f1061160d57610100808354040283529160200191611638565b820191906000526020600020905b81548152906001019060200180831161161b57829003601f168201915b5050505050905090565b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116d85780601f106116ad576101008083540402835291602001916116d8565b820191906000526020600020905b8154815290600101906020018083116116bb57829003601f168201915b505050505081565b6116e8612103565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174d90614424565b60405180910390fd5b8060056000611763612103565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611810612103565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161185591906142c5565b60405180910390a35050565b611869612103565b73ffffffffffffffffffffffffffffffffffffffff16611887611576565b73ffffffffffffffffffffffffffffffffffffffff16146118dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d4906145a4565b60405180910390fd5b60001515600d60009054906101000a900460ff16151514611933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192a90614624565b60405180910390fd5b80600c90805190602001906119499291906131d0565b5050565b61195e611958612103565b836121d9565b61199d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199490614664565b60405180910390fd5b6119a9848484846125d0565b50505050565b600d60019054906101000a900460ff166119fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f5906146a4565b60405180910390fd5b600081118015611a0f575060148111155b611a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a45906144c4565b60405180910390fd5b611388611a6b82611a5d610c1b565b61262c90919063ffffffff16565b1115611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa390614644565b60405180910390fd5b611ac681662386f26fc1000061268190919063ffffffff16565b341015611b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aff90614444565b60405180910390fd5b60005b81811015611b49576000611b1d610c1b565b9050611388611b2a610c1b565b1015611b3b57611b3a3382612562565b5b508080600101915050611b0b565b5050565b611b55612103565b73ffffffffffffffffffffffffffffffffffffffff16611b73611576565b73ffffffffffffffffffffffffffffffffffffffff1614611bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc0906145a4565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0600c604051611c149190614302565b60405180910390a1565b6060611c29826120e6565b611c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5f906145e4565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d115780601f10611ce657610100808354040283529160200191611d11565b820191906000526020600020905b815481529060010190602001808311611cf457829003601f168201915b505050505090506000611d22610ffa565b9050600081511415611d38578192505050611d9c565b600082511115611d6d578082604051602001611d55929190614218565b60405160208183030381529060405292505050611d9c565b80611d77856126f1565b604051602001611d88929190614218565b604051602081830303815290604052925050505b919050565b6060611dab610c1b565b8210611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de390614324565b60405180910390fd5b600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611e825780601f10611e5757610100808354040283529160200191611e82565b820191906000526020600020905b815481529060010190602001808311611e6557829003601f168201915b50505050509050919050565b601481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60019054906101000a900460ff1681565b611f42612103565b73ffffffffffffffffffffffffffffffffffffffff16611f60611576565b73ffffffffffffffffffffffffffffffffffffffff1614611fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fad906145a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201d90614384565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006120fc82600261283890919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661217e83610fc3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121d282600001612852565b9050919050565b60006121e4826120e6565b612223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221a906144a4565b60405180910390fd5b600061222e83610fc3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061229d57508373ffffffffffffffffffffffffffffffffffffffff16612285846109e8565b73ffffffffffffffffffffffffffffffffffffffff16145b806122ae57506122ad8185611e93565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122d782610fc3565b73ffffffffffffffffffffffffffffffffffffffff161461232d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612324906145c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561239d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239490614404565b60405180910390fd5b6123a8838383612863565b6123b360008261210b565b61240481600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061286890919063ffffffff16565b5061245681600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061288290919063ffffffff16565b5061246d8183600261289c9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006124dd83600001836128d1565b60001c905092915050565b6000806000806124fb866000018661293e565b915091508160001c8160001c9350935050509250929050565b806009908051906020019061252a9291906131d0565b5050565b6000612541846000018460001b846129c1565b60001c90509392505050565b600061255b82600001612a52565b9050919050565b61257c828260405180602001604052806000815250612a63565b5050565b6000828211156125c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bc90614464565b60405180910390fd5b818303905092915050565b6125db8484846122b7565b6125e784848484612abe565b612626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261d90614364565b60405180910390fd5b50505050565b600080828401905083811015612677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266e906143c4565b60405180910390fd5b8091505092915050565b60008083141561269457600090506126eb565b60008284029050828482816126a557fe5b04146126e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126dd90614564565b60405180910390fd5b809150505b92915050565b60606000821415612739576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612833565b600082905060005b60008214612763578080600101915050600a828161275b57fe5b049150612741565b60008167ffffffffffffffff8111801561277c57600080fd5b506040519080825280601f01601f1916602001820160405280156127af5781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461282b57600a84816127d057fe5b0660300160f81b828280600190039350815181106127ea57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161282357fe5b0493506127be565b819450505050505b919050565b600061284a836000018360001b612c22565b905092915050565b600081600001805490509050919050565b505050565b600061287a836000018360001b612c45565b905092915050565b6000612894836000018360001b612d2d565b905092915050565b60006128c8846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612d9d565b90509392505050565b60008183600001805490501161291c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291390614344565b60405180910390fd5b82600001828154811061292b57fe5b9060005260206000200154905092915050565b6000808284600001805490501161298a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298190614524565b60405180910390fd5b600084600001848154811061299b57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1a91906142e0565b60405180910390fd5b50846000016001820381548110612a3657fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b612a6d8383612e79565b612a7a6000848484612abe565b612ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab090614364565b60405180910390fd5b505050565b6000612adf8473ffffffffffffffffffffffffffffffffffffffff16613007565b612aec5760019050612c1a565b6000612bb363150b7a0260e01b612b01612103565b888787604051602401612b179493929190614257565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614944603291398773ffffffffffffffffffffffffffffffffffffffff1661301a9092919063ffffffff16565b9050600081806020019051810190612bcb9190613584565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114612d215760006001820390506000600186600001805490500390506000866000018281548110612c9057fe5b9060005260206000200154905080876000018481548110612cad57fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612ce557fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612d27565b60009150505b92915050565b6000612d398383613032565b612d92578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612d97565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415612e4457846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050612e72565b82856000016001830381548110612e5757fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee090614544565b60405180910390fd5b612ef2816120e6565b15612f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f29906143a4565b60405180910390fd5b612f3e60008383612863565b612f8f81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061288290919063ffffffff16565b50612fa68183600261289c9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606130298484600085613055565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b60608247101561309a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309190614484565b60405180910390fd5b6130a385613007565b6130e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130d990614684565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161310b9190614201565b60006040518083038185875af1925050503d8060008114613148576040519150601f19603f3d011682016040523d82523d6000602084013e61314d565b606091505b509150915061315d828286613169565b92505050949350505050565b60608315613179578290506131c9565b60008351111561318c5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c091906142e0565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282613206576000855561324d565b82601f1061321f57805160ff191683800117855561324d565b8280016001018555821561324d579182015b8281111561324c578251825591602001919060010190613231565b5b50905061325a919061325e565b5090565b5b8082111561327757600081600090555060010161325f565b5090565b600061328e61328984614710565b6146df565b9050828152602081018484840111156132a657600080fd5b6132b1848285614892565b509392505050565b60006132cc6132c784614740565b6146df565b9050828152602081018484840111156132e457600080fd5b6132ef848285614892565b509392505050565b600081359050613306816148e7565b92915050565b60008135905061331b816148fe565b92915050565b60008135905061333081614915565b92915050565b60008151905061334581614915565b92915050565b600082601f83011261335c57600080fd5b813561336c84826020860161327b565b91505092915050565b600082601f83011261338657600080fd5b81356133968482602086016132b9565b91505092915050565b6000813590506133ae8161492c565b92915050565b6000602082840312156133c657600080fd5b60006133d4848285016132f7565b91505092915050565b600080604083850312156133f057600080fd5b60006133fe858286016132f7565b925050602061340f858286016132f7565b9150509250929050565b60008060006060848603121561342e57600080fd5b600061343c868287016132f7565b935050602061344d868287016132f7565b925050604061345e8682870161339f565b9150509250925092565b6000806000806080858703121561347e57600080fd5b600061348c878288016132f7565b945050602061349d878288016132f7565b93505060406134ae8782880161339f565b925050606085013567ffffffffffffffff8111156134cb57600080fd5b6134d78782880161334b565b91505092959194509250565b600080604083850312156134f657600080fd5b6000613504858286016132f7565b92505060206135158582860161330c565b9150509250929050565b6000806040838503121561353257600080fd5b6000613540858286016132f7565b92505060206135518582860161339f565b9150509250929050565b60006020828403121561356d57600080fd5b600061357b84828501613321565b91505092915050565b60006020828403121561359657600080fd5b60006135a484828501613336565b91505092915050565b6000602082840312156135bf57600080fd5b600082013567ffffffffffffffff8111156135d957600080fd5b6135e584828501613375565b91505092915050565b60006020828403121561360057600080fd5b600061360e8482850161339f565b91505092915050565b600061362383836141e3565b60208301905092915050565b6136388161481e565b82525050565b6136478161480c565b82525050565b600061365882614795565b61366281856147c3565b935061366d83614770565b8060005b8381101561369e5781516136858882613617565b9750613690836147b6565b925050600181019050613671565b5085935050505092915050565b6136b481614830565b82525050565b60006136c5826147a0565b6136cf81856147d4565b93506136df8185602086016148a1565b6136e8816148d6565b840191505092915050565b60006136fe826147a0565b61370881856147e5565b93506137188185602086016148a1565b80840191505092915050565b600061372f826147ab565b61373981856147f0565b93506137498185602086016148a1565b613752816148d6565b840191505092915050565b6000613768826147ab565b6137728185614801565b93506137828185602086016148a1565b80840191505092915050565b6000815460018116600081146137ab57600181146137d157613815565b607f60028304166137bc81876147f0565b955060ff198316865260208601935050613815565b600282046137df81876147f0565b95506137ea85614780565b60005b8281101561380c578154818901526001820191506020810190506137ed565b80880195505050505b505092915050565b600061382a601a836147f0565b91507f43484f4f534520412042414c4c2057495448494e2052414e47450000000000006000830152602082019050919050565b600061386a6022836147f0565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138d06032836147f0565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006139366026836147f0565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061399c601c836147f0565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006139dc601b836147f0565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000613a1c6020836147f0565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b6000613a5c6024836147f0565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ac26019836147f0565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613b02601f836147f0565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000613b42601e836147f0565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000613b826026836147f0565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613be8602c836147f0565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613c4e6021836147f0565b91507f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cb46038836147f0565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613d1a602a836147f0565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d806022836147f0565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613de66020836147f0565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613e266021836147f0565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e8c602c836147f0565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613ef26020836147f0565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613f326029836147f0565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f98602f836147f0565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613ffe6021836147f0565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140646016836147f0565b91507f4c6963656e736520616c7265616479206c6f636b6564000000000000000000006000830152602082019050919050565b60006140a46029836147f0565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f662042616c6c7300000000000000000000000000000000000000000000006020830152604082019050919050565b600061410a6031836147f0565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614170601d836147f0565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b60006141b06020836147f0565b91507f53616c65206d7573742062652061637469766520746f206d696e742042616c6c6000830152602082019050919050565b6141ec81614888565b82525050565b6141fb81614888565b82525050565b600061420d82846136f3565b915081905092915050565b6000614224828561375d565b9150614230828461375d565b91508190509392505050565b6000602082019050614251600083018461363e565b92915050565b600060808201905061426c600083018761362f565b614279602083018661363e565b61428660408301856141f2565b818103606083015261429881846136ba565b905095945050505050565b600060208201905081810360008301526142bd818461364d565b905092915050565b60006020820190506142da60008301846136ab565b92915050565b600060208201905081810360008301526142fa8184613724565b905092915050565b6000602082019050818103600083015261431c818461378e565b905092915050565b6000602082019050818103600083015261433d8161381d565b9050919050565b6000602082019050818103600083015261435d8161385d565b9050919050565b6000602082019050818103600083015261437d816138c3565b9050919050565b6000602082019050818103600083015261439d81613929565b9050919050565b600060208201905081810360008301526143bd8161398f565b9050919050565b600060208201905081810360008301526143dd816139cf565b9050919050565b600060208201905081810360008301526143fd81613a0f565b9050919050565b6000602082019050818103600083015261441d81613a4f565b9050919050565b6000602082019050818103600083015261443d81613ab5565b9050919050565b6000602082019050818103600083015261445d81613af5565b9050919050565b6000602082019050818103600083015261447d81613b35565b9050919050565b6000602082019050818103600083015261449d81613b75565b9050919050565b600060208201905081810360008301526144bd81613bdb565b9050919050565b600060208201905081810360008301526144dd81613c41565b9050919050565b600060208201905081810360008301526144fd81613ca7565b9050919050565b6000602082019050818103600083015261451d81613d0d565b9050919050565b6000602082019050818103600083015261453d81613d73565b9050919050565b6000602082019050818103600083015261455d81613dd9565b9050919050565b6000602082019050818103600083015261457d81613e19565b9050919050565b6000602082019050818103600083015261459d81613e7f565b9050919050565b600060208201905081810360008301526145bd81613ee5565b9050919050565b600060208201905081810360008301526145dd81613f25565b9050919050565b600060208201905081810360008301526145fd81613f8b565b9050919050565b6000602082019050818103600083015261461d81613ff1565b9050919050565b6000602082019050818103600083015261463d81614057565b9050919050565b6000602082019050818103600083015261465d81614097565b9050919050565b6000602082019050818103600083015261467d816140fd565b9050919050565b6000602082019050818103600083015261469d81614163565b9050919050565b600060208201905081810360008301526146bd816141a3565b9050919050565b60006020820190506146d960008301846141f2565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614706576147056148d4565b5b8060405250919050565b600067ffffffffffffffff82111561472b5761472a6148d4565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561475b5761475a6148d4565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061481782614868565b9050919050565b600061482982614868565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156148bf5780820151818401526020810190506148a4565b838111156148ce576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b6148f08161480c565b81146148fb57600080fd5b50565b61490781614830565b811461491257600080fd5b50565b61491e8161483c565b811461492957600080fd5b50565b61493581614888565b811461494057600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220d7556c5c2980d5eb3f99c6067e3b10f324b378b4c94844192e87bba1fd728b2964736f6c63430007060033

Deployed Bytecode

0x6080604052600436106102255760003560e01c80637b932aef11610123578063b09904b5116100ab578063d9b137b21161006f578063d9b137b2146107e6578063e778c5da14610823578063e985e9c51461084e578063eb8d24441461088b578063f2fde38b146108b657610225565b8063b09904b514610724578063b88d4fde1461074d578063bc5cccc414610776578063bf4702fc14610792578063c87b56dd146107a957610225565b8063884b3e6c116100f2578063884b3e6c146106515780638da5cb5b1461067a57806395d89b41146106a55780639c3e72bd146106d0578063a22cb465146106fb57610225565b80637b932aef146105815780637ea9c403146105ac5780638390c269146105d75780638462151c1461061457610225565b806338cf726f116101b15780636352211e116101755780636352211e1461049a5780636c0360eb146104d757806370a0823114610502578063715018a61461053f5780637535d51c1461055657610225565b806338cf726f146103c95780633ccfd60b146103f457806342842e0e1461040b5780634f6ccce71461043457806355f804b31461047157610225565b806310969523116101f857806310969523146102f857806318160ddd1461032157806323b872dd1461034c5780632f745c591461037557806334918dfd146103b257610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061355b565b6108df565b60405161025e91906142c5565b60405180910390f35b34801561027357600080fd5b5061027c610946565b60405161028991906142e0565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906135ee565b6109e8565b6040516102c6919061423c565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f1919061351f565b610a6d565b005b34801561030457600080fd5b5061031f600480360381019061031a91906135ad565b610b85565b005b34801561032d57600080fd5b50610336610c1b565b60405161034391906146c4565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e9190613419565b610c2c565b005b34801561038157600080fd5b5061039c6004803603810190610397919061351f565b610c8c565b6040516103a991906146c4565b60405180910390f35b3480156103be57600080fd5b506103c7610ce7565b005b3480156103d557600080fd5b506103de610d8f565b6040516103eb91906142e0565b60405180910390f35b34801561040057600080fd5b50610409610e2d565b005b34801561041757600080fd5b50610432600480360381019061042d9190613419565b610ef8565b005b34801561044057600080fd5b5061045b600480360381019061045691906135ee565b610f18565b60405161046891906146c4565b60405180910390f35b34801561047d57600080fd5b50610498600480360381019061049391906135ad565b610f3b565b005b3480156104a657600080fd5b506104c160048036038101906104bc91906135ee565b610fc3565b6040516104ce919061423c565b60405180910390f35b3480156104e357600080fd5b506104ec610ffa565b6040516104f991906142e0565b60405180910390f35b34801561050e57600080fd5b50610529600480360381019061052491906133b4565b61109c565b60405161053691906146c4565b60405180910390f35b34801561054b57600080fd5b5061055461115b565b005b34801561056257600080fd5b5061056b611298565b60405161057891906146c4565b60405180910390f35b34801561058d57600080fd5b5061059661129e565b6040516105a391906146c4565b60405180910390f35b3480156105b857600080fd5b506105c16112a4565b6040516105ce91906146c4565b60405180910390f35b3480156105e357600080fd5b506105fe60048036038101906105f991906135ee565b6112af565b60405161060b91906142e0565b60405180910390f35b34801561062057600080fd5b5061063b600480360381019061063691906133b4565b61135f565b60405161064891906142a3565b60405180910390f35b34801561065d57600080fd5b506106786004803603810190610673919061351f565b611458565b005b34801561068657600080fd5b5061068f611576565b60405161069c919061423c565b60405180910390f35b3480156106b157600080fd5b506106ba6115a0565b6040516106c791906142e0565b60405180910390f35b3480156106dc57600080fd5b506106e5611642565b6040516106f291906142e0565b60405180910390f35b34801561070757600080fd5b50610722600480360381019061071d91906134e3565b6116e0565b005b34801561073057600080fd5b5061074b600480360381019061074691906135ad565b611861565b005b34801561075957600080fd5b50610774600480360381019061076f9190613468565b61194d565b005b610790600480360381019061078b91906135ee565b6119af565b005b34801561079e57600080fd5b506107a7611b4d565b005b3480156107b557600080fd5b506107d060048036038101906107cb91906135ee565b611c1e565b6040516107dd91906142e0565b60405180910390f35b3480156107f257600080fd5b5061080d600480360381019061080891906135ee565b611da1565b60405161081a91906142e0565b60405180910390f35b34801561082f57600080fd5b50610838611e8e565b60405161084591906146c4565b60405180910390f35b34801561085a57600080fd5b50610875600480360381019061087091906133dd565b611e93565b60405161088291906142c5565b60405180910390f35b34801561089757600080fd5b506108a0611f27565b6040516108ad91906142c5565b60405180910390f35b3480156108c257600080fd5b506108dd60048036038101906108d891906133b4565b611f3a565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109de5780601f106109b3576101008083540402835291602001916109de565b820191906000526020600020905b8154815290600101906020018083116109c157829003601f168201915b5050505050905090565b60006109f3826120e6565b610a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2990614584565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a7882610fc3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae090614604565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b08612103565b73ffffffffffffffffffffffffffffffffffffffff161480610b375750610b3681610b31612103565b611e93565b5b610b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6d906144e4565b60405180910390fd5b610b80838361210b565b505050565b610b8d612103565b73ffffffffffffffffffffffffffffffffffffffff16610bab611576565b73ffffffffffffffffffffffffffffffffffffffff1614610c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf8906145a4565b60405180910390fd5b80600b9080519060200190610c179291906131d0565b5050565b6000610c2760026121c4565b905090565b610c3d610c37612103565b826121d9565b610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7390614664565b60405180910390fd5b610c878383836122b7565b505050565b6000610cdf82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206124ce90919063ffffffff16565b905092915050565b610cef612103565b73ffffffffffffffffffffffffffffffffffffffff16610d0d611576565b73ffffffffffffffffffffffffffffffffffffffff1614610d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5a906145a4565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e255780601f10610dfa57610100808354040283529160200191610e25565b820191906000526020600020905b815481529060010190602001808311610e0857829003601f168201915b505050505081565b610e35612103565b73ffffffffffffffffffffffffffffffffffffffff16610e53611576565b73ffffffffffffffffffffffffffffffffffffffff1614610ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea0906145a4565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ef4573d6000803e3d6000fd5b5050565b610f138383836040518060200160405280600081525061194d565b505050565b600080610f2f8360026124e890919063ffffffff16565b50905080915050919050565b610f43612103565b73ffffffffffffffffffffffffffffffffffffffff16610f61611576565b73ffffffffffffffffffffffffffffffffffffffff1614610fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fae906145a4565b60405180910390fd5b610fc081612514565b50565b6000610ff38260405180606001604052806029815260200161497660299139600261252e9092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110925780601f1061106757610100808354040283529160200191611092565b820191906000526020600020905b81548152906001019060200180831161107557829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561110d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110490614504565b60405180910390fd5b611154600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061254d565b9050919050565b611163612103565b73ffffffffffffffffffffffffffffffffffffffff16611181611576565b73ffffffffffffffffffffffffffffffffffffffff16146111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce906145a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61138881565b600f5481565b662386f26fc1000081565b600e6020528060005260406000206000915090508054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113575780601f1061132c57610100808354040283529160200191611357565b820191906000526020600020905b81548152906001019060200180831161133a57829003601f168201915b505050505081565b6060600061136c8361109c565b905060008114156113c757600067ffffffffffffffff8111801561138f57600080fd5b506040519080825280602002602001820160405280156113be5781602001602082028036833780820191505090505b50915050611453565b60008167ffffffffffffffff811180156113e057600080fd5b5060405190808252806020026020018201604052801561140f5781602001602082028036833780820191505090505b50905060005b8281101561144c576114278582610c8c565b82828151811061143357fe5b6020026020010181815250508080600101915050611415565b8193505050505b919050565b611460612103565b73ffffffffffffffffffffffffffffffffffffffff1661147e611576565b73ffffffffffffffffffffffffffffffffffffffff16146114d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cb906145a4565b60405180910390fd5b60006114de610c1b565b90506000821180156114f25750600f548211155b611531576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611528906143e4565b60405180910390fd5b60005b828110156115555761154884828401612562565b8080600101915050611534565b5061156b82600f5461258090919063ffffffff16565b600f81905550505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116385780601f1061160d57610100808354040283529160200191611638565b820191906000526020600020905b81548152906001019060200180831161161b57829003601f168201915b5050505050905090565b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116d85780601f106116ad576101008083540402835291602001916116d8565b820191906000526020600020905b8154815290600101906020018083116116bb57829003601f168201915b505050505081565b6116e8612103565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174d90614424565b60405180910390fd5b8060056000611763612103565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611810612103565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161185591906142c5565b60405180910390a35050565b611869612103565b73ffffffffffffffffffffffffffffffffffffffff16611887611576565b73ffffffffffffffffffffffffffffffffffffffff16146118dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d4906145a4565b60405180910390fd5b60001515600d60009054906101000a900460ff16151514611933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192a90614624565b60405180910390fd5b80600c90805190602001906119499291906131d0565b5050565b61195e611958612103565b836121d9565b61199d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199490614664565b60405180910390fd5b6119a9848484846125d0565b50505050565b600d60019054906101000a900460ff166119fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f5906146a4565b60405180910390fd5b600081118015611a0f575060148111155b611a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a45906144c4565b60405180910390fd5b611388611a6b82611a5d610c1b565b61262c90919063ffffffff16565b1115611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa390614644565b60405180910390fd5b611ac681662386f26fc1000061268190919063ffffffff16565b341015611b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aff90614444565b60405180910390fd5b60005b81811015611b49576000611b1d610c1b565b9050611388611b2a610c1b565b1015611b3b57611b3a3382612562565b5b508080600101915050611b0b565b5050565b611b55612103565b73ffffffffffffffffffffffffffffffffffffffff16611b73611576565b73ffffffffffffffffffffffffffffffffffffffff1614611bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc0906145a4565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0600c604051611c149190614302565b60405180910390a1565b6060611c29826120e6565b611c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5f906145e4565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d115780601f10611ce657610100808354040283529160200191611d11565b820191906000526020600020905b815481529060010190602001808311611cf457829003601f168201915b505050505090506000611d22610ffa565b9050600081511415611d38578192505050611d9c565b600082511115611d6d578082604051602001611d55929190614218565b60405160208183030381529060405292505050611d9c565b80611d77856126f1565b604051602001611d88929190614218565b604051602081830303815290604052925050505b919050565b6060611dab610c1b565b8210611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de390614324565b60405180910390fd5b600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611e825780601f10611e5757610100808354040283529160200191611e82565b820191906000526020600020905b815481529060010190602001808311611e6557829003601f168201915b50505050509050919050565b601481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60019054906101000a900460ff1681565b611f42612103565b73ffffffffffffffffffffffffffffffffffffffff16611f60611576565b73ffffffffffffffffffffffffffffffffffffffff1614611fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fad906145a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201d90614384565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006120fc82600261283890919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661217e83610fc3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121d282600001612852565b9050919050565b60006121e4826120e6565b612223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221a906144a4565b60405180910390fd5b600061222e83610fc3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061229d57508373ffffffffffffffffffffffffffffffffffffffff16612285846109e8565b73ffffffffffffffffffffffffffffffffffffffff16145b806122ae57506122ad8185611e93565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122d782610fc3565b73ffffffffffffffffffffffffffffffffffffffff161461232d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612324906145c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561239d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239490614404565b60405180910390fd5b6123a8838383612863565b6123b360008261210b565b61240481600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061286890919063ffffffff16565b5061245681600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061288290919063ffffffff16565b5061246d8183600261289c9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006124dd83600001836128d1565b60001c905092915050565b6000806000806124fb866000018661293e565b915091508160001c8160001c9350935050509250929050565b806009908051906020019061252a9291906131d0565b5050565b6000612541846000018460001b846129c1565b60001c90509392505050565b600061255b82600001612a52565b9050919050565b61257c828260405180602001604052806000815250612a63565b5050565b6000828211156125c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bc90614464565b60405180910390fd5b818303905092915050565b6125db8484846122b7565b6125e784848484612abe565b612626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261d90614364565b60405180910390fd5b50505050565b600080828401905083811015612677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266e906143c4565b60405180910390fd5b8091505092915050565b60008083141561269457600090506126eb565b60008284029050828482816126a557fe5b04146126e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126dd90614564565b60405180910390fd5b809150505b92915050565b60606000821415612739576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612833565b600082905060005b60008214612763578080600101915050600a828161275b57fe5b049150612741565b60008167ffffffffffffffff8111801561277c57600080fd5b506040519080825280601f01601f1916602001820160405280156127af5781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461282b57600a84816127d057fe5b0660300160f81b828280600190039350815181106127ea57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161282357fe5b0493506127be565b819450505050505b919050565b600061284a836000018360001b612c22565b905092915050565b600081600001805490509050919050565b505050565b600061287a836000018360001b612c45565b905092915050565b6000612894836000018360001b612d2d565b905092915050565b60006128c8846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612d9d565b90509392505050565b60008183600001805490501161291c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291390614344565b60405180910390fd5b82600001828154811061292b57fe5b9060005260206000200154905092915050565b6000808284600001805490501161298a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298190614524565b60405180910390fd5b600084600001848154811061299b57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1a91906142e0565b60405180910390fd5b50846000016001820381548110612a3657fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b612a6d8383612e79565b612a7a6000848484612abe565b612ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab090614364565b60405180910390fd5b505050565b6000612adf8473ffffffffffffffffffffffffffffffffffffffff16613007565b612aec5760019050612c1a565b6000612bb363150b7a0260e01b612b01612103565b888787604051602401612b179493929190614257565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614944603291398773ffffffffffffffffffffffffffffffffffffffff1661301a9092919063ffffffff16565b9050600081806020019051810190612bcb9190613584565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114612d215760006001820390506000600186600001805490500390506000866000018281548110612c9057fe5b9060005260206000200154905080876000018481548110612cad57fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612ce557fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612d27565b60009150505b92915050565b6000612d398383613032565b612d92578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612d97565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415612e4457846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050612e72565b82856000016001830381548110612e5757fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee090614544565b60405180910390fd5b612ef2816120e6565b15612f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f29906143a4565b60405180910390fd5b612f3e60008383612863565b612f8f81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061288290919063ffffffff16565b50612fa68183600261289c9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606130298484600085613055565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b60608247101561309a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309190614484565b60405180910390fd5b6130a385613007565b6130e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130d990614684565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161310b9190614201565b60006040518083038185875af1925050503d8060008114613148576040519150601f19603f3d011682016040523d82523d6000602084013e61314d565b606091505b509150915061315d828286613169565b92505050949350505050565b60608315613179578290506131c9565b60008351111561318c5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c091906142e0565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282613206576000855561324d565b82601f1061321f57805160ff191683800117855561324d565b8280016001018555821561324d579182015b8281111561324c578251825591602001919060010190613231565b5b50905061325a919061325e565b5090565b5b8082111561327757600081600090555060010161325f565b5090565b600061328e61328984614710565b6146df565b9050828152602081018484840111156132a657600080fd5b6132b1848285614892565b509392505050565b60006132cc6132c784614740565b6146df565b9050828152602081018484840111156132e457600080fd5b6132ef848285614892565b509392505050565b600081359050613306816148e7565b92915050565b60008135905061331b816148fe565b92915050565b60008135905061333081614915565b92915050565b60008151905061334581614915565b92915050565b600082601f83011261335c57600080fd5b813561336c84826020860161327b565b91505092915050565b600082601f83011261338657600080fd5b81356133968482602086016132b9565b91505092915050565b6000813590506133ae8161492c565b92915050565b6000602082840312156133c657600080fd5b60006133d4848285016132f7565b91505092915050565b600080604083850312156133f057600080fd5b60006133fe858286016132f7565b925050602061340f858286016132f7565b9150509250929050565b60008060006060848603121561342e57600080fd5b600061343c868287016132f7565b935050602061344d868287016132f7565b925050604061345e8682870161339f565b9150509250925092565b6000806000806080858703121561347e57600080fd5b600061348c878288016132f7565b945050602061349d878288016132f7565b93505060406134ae8782880161339f565b925050606085013567ffffffffffffffff8111156134cb57600080fd5b6134d78782880161334b565b91505092959194509250565b600080604083850312156134f657600080fd5b6000613504858286016132f7565b92505060206135158582860161330c565b9150509250929050565b6000806040838503121561353257600080fd5b6000613540858286016132f7565b92505060206135518582860161339f565b9150509250929050565b60006020828403121561356d57600080fd5b600061357b84828501613321565b91505092915050565b60006020828403121561359657600080fd5b60006135a484828501613336565b91505092915050565b6000602082840312156135bf57600080fd5b600082013567ffffffffffffffff8111156135d957600080fd5b6135e584828501613375565b91505092915050565b60006020828403121561360057600080fd5b600061360e8482850161339f565b91505092915050565b600061362383836141e3565b60208301905092915050565b6136388161481e565b82525050565b6136478161480c565b82525050565b600061365882614795565b61366281856147c3565b935061366d83614770565b8060005b8381101561369e5781516136858882613617565b9750613690836147b6565b925050600181019050613671565b5085935050505092915050565b6136b481614830565b82525050565b60006136c5826147a0565b6136cf81856147d4565b93506136df8185602086016148a1565b6136e8816148d6565b840191505092915050565b60006136fe826147a0565b61370881856147e5565b93506137188185602086016148a1565b80840191505092915050565b600061372f826147ab565b61373981856147f0565b93506137498185602086016148a1565b613752816148d6565b840191505092915050565b6000613768826147ab565b6137728185614801565b93506137828185602086016148a1565b80840191505092915050565b6000815460018116600081146137ab57600181146137d157613815565b607f60028304166137bc81876147f0565b955060ff198316865260208601935050613815565b600282046137df81876147f0565b95506137ea85614780565b60005b8281101561380c578154818901526001820191506020810190506137ed565b80880195505050505b505092915050565b600061382a601a836147f0565b91507f43484f4f534520412042414c4c2057495448494e2052414e47450000000000006000830152602082019050919050565b600061386a6022836147f0565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138d06032836147f0565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006139366026836147f0565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061399c601c836147f0565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006139dc601b836147f0565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000613a1c6020836147f0565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b6000613a5c6024836147f0565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ac26019836147f0565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613b02601f836147f0565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000613b42601e836147f0565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000613b826026836147f0565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613be8602c836147f0565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613c4e6021836147f0565b91507f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cb46038836147f0565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613d1a602a836147f0565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d806022836147f0565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613de66020836147f0565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613e266021836147f0565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e8c602c836147f0565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613ef26020836147f0565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613f326029836147f0565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f98602f836147f0565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613ffe6021836147f0565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140646016836147f0565b91507f4c6963656e736520616c7265616479206c6f636b6564000000000000000000006000830152602082019050919050565b60006140a46029836147f0565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f662042616c6c7300000000000000000000000000000000000000000000006020830152604082019050919050565b600061410a6031836147f0565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614170601d836147f0565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b60006141b06020836147f0565b91507f53616c65206d7573742062652061637469766520746f206d696e742042616c6c6000830152602082019050919050565b6141ec81614888565b82525050565b6141fb81614888565b82525050565b600061420d82846136f3565b915081905092915050565b6000614224828561375d565b9150614230828461375d565b91508190509392505050565b6000602082019050614251600083018461363e565b92915050565b600060808201905061426c600083018761362f565b614279602083018661363e565b61428660408301856141f2565b818103606083015261429881846136ba565b905095945050505050565b600060208201905081810360008301526142bd818461364d565b905092915050565b60006020820190506142da60008301846136ab565b92915050565b600060208201905081810360008301526142fa8184613724565b905092915050565b6000602082019050818103600083015261431c818461378e565b905092915050565b6000602082019050818103600083015261433d8161381d565b9050919050565b6000602082019050818103600083015261435d8161385d565b9050919050565b6000602082019050818103600083015261437d816138c3565b9050919050565b6000602082019050818103600083015261439d81613929565b9050919050565b600060208201905081810360008301526143bd8161398f565b9050919050565b600060208201905081810360008301526143dd816139cf565b9050919050565b600060208201905081810360008301526143fd81613a0f565b9050919050565b6000602082019050818103600083015261441d81613a4f565b9050919050565b6000602082019050818103600083015261443d81613ab5565b9050919050565b6000602082019050818103600083015261445d81613af5565b9050919050565b6000602082019050818103600083015261447d81613b35565b9050919050565b6000602082019050818103600083015261449d81613b75565b9050919050565b600060208201905081810360008301526144bd81613bdb565b9050919050565b600060208201905081810360008301526144dd81613c41565b9050919050565b600060208201905081810360008301526144fd81613ca7565b9050919050565b6000602082019050818103600083015261451d81613d0d565b9050919050565b6000602082019050818103600083015261453d81613d73565b9050919050565b6000602082019050818103600083015261455d81613dd9565b9050919050565b6000602082019050818103600083015261457d81613e19565b9050919050565b6000602082019050818103600083015261459d81613e7f565b9050919050565b600060208201905081810360008301526145bd81613ee5565b9050919050565b600060208201905081810360008301526145dd81613f25565b9050919050565b600060208201905081810360008301526145fd81613f8b565b9050919050565b6000602082019050818103600083015261461d81613ff1565b9050919050565b6000602082019050818103600083015261463d81614057565b9050919050565b6000602082019050818103600083015261465d81614097565b9050919050565b6000602082019050818103600083015261467d816140fd565b9050919050565b6000602082019050818103600083015261469d81614163565b9050919050565b600060208201905081810360008301526146bd816141a3565b9050919050565b60006020820190506146d960008301846141f2565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614706576147056148d4565b5b8060405250919050565b600067ffffffffffffffff82111561472b5761472a6148d4565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561475b5761475a6148d4565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061481782614868565b9050919050565b600061482982614868565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156148bf5780820151818401526020810190506148a4565b838111156148ce576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b6148f08161480c565b81146148fb57600080fd5b50565b61490781614830565b811461491257600080fd5b50565b61491e8161483c565b811461492957600080fd5b50565b61493581614888565b811461494057600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220d7556c5c2980d5eb3f99c6067e3b10f324b378b4c94844192e87bba1fd728b2964736f6c63430007060033

Deployed Bytecode Sourcemap

66898:3684:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10296:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51581:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54367:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53897:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68343:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53375:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55257:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53137:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68585:89;;;;;;;;;;;;;:::i;:::-;;66984:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67792:131;;;;;;;;;;;;;:::i;:::-;;55633:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53663:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68476:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51337:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52956:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51054:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66292:148;;;;;;;;;;;;;:::i;:::-;;67363:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67568:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67238:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67457:40;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68692:540;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67935:398;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65641:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51750:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67085:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54660:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69687:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55855:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69879:687;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69523:125;;;;;;;;;;;;;:::i;:::-;;51925:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69283:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67313:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55026:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67412:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66595:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10296:150;10381:4;10405:20;:33;10426:11;10405:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10398:40;;10296:150;;;:::o;51581:100::-;51635:13;51668:5;51661:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51581:100;:::o;54367:221::-;54443:7;54471:16;54479:7;54471;:16::i;:::-;54463:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54556:15;:24;54572:7;54556:24;;;;;;;;;;;;;;;;;;;;;54549:31;;54367:221;;;:::o;53897:404::-;53978:13;53994:23;54009:7;53994:14;:23::i;:::-;53978:39;;54042:5;54036:11;;:2;:11;;;;54028:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;54122:5;54106:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;54131:44;54155:5;54162:12;:10;:12::i;:::-;54131:23;:44::i;:::-;54106:69;54098:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;54272:21;54281:2;54285:7;54272:8;:21::i;:::-;53897:404;;;:::o;68343:125::-;65872:12;:10;:12::i;:::-;65861:23;;:7;:5;:7::i;:::-;:23;;;65853:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68446:14:::1;68428:15;:32;;;;;;;;;;;;:::i;:::-;;68343:125:::0;:::o;53375:211::-;53436:7;53557:21;:12;:19;:21::i;:::-;53550:28;;53375:211;:::o;55257:305::-;55418:41;55437:12;:10;:12::i;:::-;55451:7;55418:18;:41::i;:::-;55410:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;55526:28;55536:4;55542:2;55546:7;55526:9;:28::i;:::-;55257:305;;;:::o;53137:162::-;53234:7;53261:30;53285:5;53261:13;:20;53275:5;53261:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;53254:37;;53137:162;;;;:::o;68585:89::-;65872:12;:10;:12::i;:::-;65861:23;;:7;:5;:7::i;:::-;:23;;;65853:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68654:12:::1;;;;;;;;;;;68653:13;68638:12;;:28;;;;;;;;;;;;;;;;;;68585:89::o:0;66984:34::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;67792:131::-;65872:12;:10;:12::i;:::-;65861:23;;:7;:5;:7::i;:::-;:23;;;65853:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67840:12:::1;67855:21;67840:36;;67887:10;:19;;:28;67907:7;67887:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;65932:1;67792:131::o:0;55633:151::-;55737:39;55754:4;55760:2;55764:7;55737:39;;;;;;;;;;;;:16;:39::i;:::-;55633:151;;;:::o;53663:172::-;53738:7;53759:15;53780:22;53796:5;53780:12;:15;;:22;;;;:::i;:::-;53758:44;;;53820:7;53813:14;;;53663:172;;;:::o;68476:99::-;65872:12;:10;:12::i;:::-;65861:23;;:7;:5;:7::i;:::-;:23;;;65853:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68547:20:::1;68559:7;68547:11;:20::i;:::-;68476:99:::0;:::o;51337:177::-;51409:7;51436:70;51453:7;51436:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;51429:77;;51337:177;;;:::o;52956:97::-;53004:13;53037:8;53030:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52956:97;:::o;51054:221::-;51126:7;51171:1;51154:19;;:5;:19;;;;51146:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;51238:29;:13;:20;51252:5;51238:20;;;;;;;;;;;;;;;:27;:29::i;:::-;51231:36;;51054:221;;;:::o;66292:148::-;65872:12;:10;:12::i;:::-;65861:23;;:7;:5;:7::i;:::-;:23;;;65853:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66399:1:::1;66362:40;;66383:6;;;;;;;;;;;66362:40;;;;;;;;;;;;66430:1;66413:6;;:19;;;;;;;;;;;;;;;;;;66292:148::o:0;67363:40::-;67399:4;67363:40;:::o;67568:29::-;;;;:::o;67238:53::-;67274:17;67238:53;:::o;67457:40::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;68692:540::-;68753:16;68783:18;68804:17;68814:6;68804:9;:17::i;:::-;68783:38;;68850:1;68836:10;:15;68832:393;;;68927:1;68913:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68906:23;;;;;68832:393;68962:23;69002:10;68988:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68962:51;;69028:13;69056:130;69080:10;69072:5;:18;69056:130;;;69136:34;69156:6;69164:5;69136:19;:34::i;:::-;69120:6;69127:5;69120:13;;;;;;;;;;;;;:50;;;;;69092:7;;;;;;;69056:130;;;69207:6;69200:13;;;;;68692:540;;;;:::o;67935:398::-;65872:12;:10;:12::i;:::-;65861:23;;:7;:5;:7::i;:::-;:23;;;65853:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68030:11:::1;68044:13;:11;:13::i;:::-;68030:27;;68093:1;68076:14;:18;:51;;;;;68116:11;;68098:14;:29;;68076:51;68068:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;68180:6;68175:95;68196:14;68192:1;:18;68175:95;;;68232:26;68242:3;68256:1;68247:6;:10;68232:9;:26::i;:::-;68212:3;;;;;;;68175:95;;;;68294:31;68310:14;68294:11;;:15;;:31;;;;:::i;:::-;68280:11;:45;;;;65932:1;67935:398:::0;;:::o;65641:87::-;65687:7;65714:6;;;;;;;;;;;65707:13;;65641:87;:::o;51750:104::-;51806:13;51839:7;51832:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51750:104;:::o;67085:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54660:295::-;54775:12;:10;:12::i;:::-;54763:24;;:8;:24;;;;54755:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;54875:8;54830:18;:32;54849:12;:10;:12::i;:::-;54830:32;;;;;;;;;;;;;;;:42;54863:8;54830:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;54928:8;54899:48;;54914:12;:10;:12::i;:::-;54899:48;;;54938:8;54899:48;;;;;;:::i;:::-;;;;;;;;54660:295;;:::o;69687:174::-;65872:12;:10;:12::i;:::-;65861:23;;:7;:5;:7::i;:::-;:23;;;65853:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69787:5:::1;69770:22;;:13;;;;;;;;;;;:22;;;69762:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;69845:8;69830:12;:23;;;;;;;;;;;;:::i;:::-;;69687:174:::0;:::o;55855:285::-;55987:41;56006:12;:10;:12::i;:::-;56020:7;55987:18;:41::i;:::-;55979:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;56093:39;56107:4;56113:2;56117:7;56126:5;56093:13;:39::i;:::-;55855:285;;;;:::o;69879:687::-;69957:12;;;;;;;;;;;69949:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;70042:1;70025:14;:18;:55;;;;;67352:2;70047:14;:33;;70025:55;70017:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;67399:4;70137:33;70155:14;70137:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:46;;70129:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;70261:29;70275:14;67274:17;70261:13;;:29;;;;:::i;:::-;70248:9;:42;;70240:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;70351:6;70347:210;70367:14;70363:1;:18;70347:210;;;70403:14;70420:13;:11;:13::i;:::-;70403:30;;67399:4;70452:13;:11;:13::i;:::-;:25;70448:98;;;70498:32;70508:10;70520:9;70498;:32::i;:::-;70448:98;70347:210;70383:3;;;;;;;70347:210;;;;69879:687;:::o;69523:125::-;65872:12;:10;:12::i;:::-;65861:23;;:7;:5;:7::i;:::-;:23;;;65853:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69591:4:::1;69574:13;;:21;;;;;;;;;;;;;;;;;;69611:29;69627:12;69611:29;;;;;;:::i;:::-;;;;;;;;69523:125::o:0;51925:792::-;51998:13;52032:16;52040:7;52032;:16::i;:::-;52024:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;52113:23;52139:10;:19;52150:7;52139:19;;;;;;;;;;;52113:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52169:18;52190:9;:7;:9::i;:::-;52169:30;;52297:1;52281:4;52275:18;:23;52271:72;;;52322:9;52315:16;;;;;;52271:72;52473:1;52453:9;52447:23;:27;52443:108;;;52522:4;52528:9;52505:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52491:48;;;;;;52443:108;52683:4;52689:18;:7;:16;:18::i;:::-;52666:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52652:57;;;;51925:792;;;;:::o;69283:174::-;69335:13;69375;:11;:13::i;:::-;69369:3;:19;69361:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;69437:12;69430:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69283:174;;;:::o;67313:41::-;67352:2;67313:41;:::o;55026:164::-;55123:4;55147:18;:25;55166:5;55147:25;;;;;;;;;;;;;;;:35;55173:8;55147:35;;;;;;;;;;;;;;;;;;;;;;;;;55140:42;;55026:164;;;;:::o;67412:32::-;;;;;;;;;;;;;:::o;66595:244::-;65872:12;:10;:12::i;:::-;65861:23;;:7;:5;:7::i;:::-;:23;;;65853:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66704:1:::1;66684:22;;:8;:22;;;;66676:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;66794:8;66765:38;;66786:6;;;;;;;;;;;66765:38;;;;;;;;;;;;66823:8;66814:6;;:17;;;;;;;;;;;;;;;;;;66595:244:::0;:::o;57607:127::-;57672:4;57696:30;57718:7;57696:12;:21;;:30;;;;:::i;:::-;57689:37;;57607:127;;;:::o;728:106::-;781:15;816:10;809:17;;728:106;:::o;63625:192::-;63727:2;63700:15;:24;63716:7;63700:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;63783:7;63779:2;63745:46;;63754:23;63769:7;63754:14;:23::i;:::-;63745:46;;;;;;;;;;;;63625:192;;:::o;44339:123::-;44408:7;44435:19;44443:3;:10;;44435:7;:19::i;:::-;44428:26;;44339:123;;;:::o;57901:355::-;57994:4;58019:16;58027:7;58019;:16::i;:::-;58011:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58095:13;58111:23;58126:7;58111:14;:23::i;:::-;58095:39;;58164:5;58153:16;;:7;:16;;;:51;;;;58197:7;58173:31;;:20;58185:7;58173:11;:20::i;:::-;:31;;;58153:51;:94;;;;58208:39;58232:5;58239:7;58208:23;:39::i;:::-;58153:94;58145:103;;;57901:355;;;;:::o;61037:599::-;61162:4;61135:31;;:23;61150:7;61135:14;:23::i;:::-;:31;;;61127:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;61263:1;61249:16;;:2;:16;;;;61241:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61319:39;61340:4;61346:2;61350:7;61319:20;:39::i;:::-;61423:29;61440:1;61444:7;61423:8;:29::i;:::-;61465:35;61492:7;61465:13;:19;61479:4;61465:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;61511:30;61533:7;61511:13;:17;61525:2;61511:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;61554:29;61571:7;61580:2;61554:12;:16;;:29;;;;;:::i;:::-;;61620:7;61616:2;61601:27;;61610:4;61601:27;;;;;;;;;;;;61037:599;;;:::o;36130:137::-;36201:7;36236:22;36240:3;:10;;36252:5;36236:3;:22::i;:::-;36228:31;;36221:38;;36130:137;;;;:::o;44801:236::-;44881:7;44890;44911:11;44924:13;44941:22;44945:3;:10;;44957:5;44941:3;:22::i;:::-;44910:53;;;;44990:3;44982:12;;45020:5;45012:14;;44974:55;;;;;;44801:236;;;;;:::o;62237:100::-;62321:8;62310;:19;;;;;;;;;;;;:::i;:::-;;62237:100;:::o;46087:213::-;46194:7;46245:44;46250:3;:10;;46270:3;46262:12;;46276;46245:4;:44::i;:::-;46237:53;;46214:78;;46087:213;;;;;:::o;35672:114::-;35732:7;35759:19;35767:3;:10;;35759:7;:19::i;:::-;35752:26;;35672:114;;;:::o;58599:110::-;58675:26;58685:2;58689:7;58675:26;;;;;;;;;;;;:9;:26::i;:::-;58599:110;;:::o;14320:158::-;14378:7;14411:1;14406;:6;;14398:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;14469:1;14465;:5;14458:12;;14320:158;;;;:::o;57022:272::-;57136:28;57146:4;57152:2;57156:7;57136:9;:28::i;:::-;57183:48;57206:4;57212:2;57216:7;57225:5;57183:22;:48::i;:::-;57175:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;57022:272;;;;:::o;13858:179::-;13916:7;13936:9;13952:1;13948;:5;13936:17;;13977:1;13972;:6;;13964:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;14028:1;14021:8;;;13858:179;;;;:::o;14737:220::-;14795:7;14824:1;14819;:6;14815:20;;;14834:1;14827:8;;;;14815:20;14846:9;14862:1;14858;:5;14846:17;;14891:1;14886;14882;:5;;;;;;:10;14874:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;14948:1;14941:8;;;14737:220;;;;;:::o;46551:746::-;46607:13;46837:1;46828:5;:10;46824:53;;;46855:10;;;;;;;;;;;;;;;;;;;;;46824:53;46887:12;46902:5;46887:20;;46918:14;46943:78;46958:1;46950:4;:9;46943:78;;46976:8;;;;;;;47007:2;46999:10;;;;;;;;;46943:78;;;47031:19;47063:6;47053:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47031:39;;47081:13;47106:1;47097:6;:10;47081:26;;47125:5;47118:12;;47141:117;47156:1;47148:4;:9;47141:117;;47217:2;47210:4;:9;;;;;;47205:2;:14;47192:29;;47174:6;47181:7;;;;;;;47174:15;;;;;;;;;;;:47;;;;;;;;;;;47244:2;47236:10;;;;;;;;;47141:117;;;47282:6;47268:21;;;;;;46551:746;;;;:::o;44100:151::-;44184:4;44208:35;44218:3;:10;;44238:3;44230:12;;44208:9;:35::i;:::-;44201:42;;44100:151;;;;:::o;40918:110::-;40974:7;41001:3;:12;;:19;;;;40994:26;;40918:110;;;:::o;64430:93::-;;;;:::o;35217:137::-;35287:4;35311:35;35319:3;:10;;35339:5;35331:14;;35311:7;:35::i;:::-;35304:42;;35217:137;;;;:::o;34910:131::-;34977:4;35001:32;35006:3;:10;;35026:5;35018:14;;35001:4;:32::i;:::-;34994:39;;34910:131;;;;:::o;43523:185::-;43612:4;43636:64;43641:3;:10;;43661:3;43653:12;;43691:5;43675:23;;43667:32;;43636:4;:64::i;:::-;43629:71;;43523:185;;;;;:::o;31168:204::-;31235:7;31284:5;31263:3;:11;;:18;;;;:26;31255:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31346:3;:11;;31358:5;31346:18;;;;;;;;;;;;;;;;31339:25;;31168:204;;;;:::o;41383:279::-;41450:7;41459;41509:5;41487:3;:12;;:19;;;;:27;41479:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;41566:22;41591:3;:12;;41604:5;41591:19;;;;;;;;;;;;;;;;;;41566:44;;41629:5;:10;;;41641:5;:12;;;41621:33;;;;;41383:279;;;;;:::o;42880:319::-;42974:7;42994:16;43013:3;:12;;:17;43026:3;43013:17;;;;;;;;;;;;42994:36;;43061:1;43049:8;:13;;43064:12;43041:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;43131:3;:12;;43155:1;43144:8;:12;43131:26;;;;;;;;;;;;;;;;;;:33;;;43124:40;;;42880:319;;;;;:::o;30715:109::-;30771:7;30798:3;:11;;:18;;;;30791:25;;30715:109;;;:::o;58936:250::-;59032:18;59038:2;59042:7;59032:5;:18::i;:::-;59069:54;59100:1;59104:2;59108:7;59117:5;59069:22;:54::i;:::-;59061:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;58936:250;;;:::o;62902:604::-;63023:4;63050:15;:2;:13;;;:15::i;:::-;63045:60;;63089:4;63082:11;;;;63045:60;63115:23;63141:252;63194:45;;;63254:12;:10;:12::i;:::-;63281:4;63300:7;63322:5;63157:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63141:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;63115:278;;63404:13;63431:10;63420:32;;;;;;;;;;;;:::i;:::-;63404:48;;48051:10;63481:16;;63471:26;;;:6;:26;;;;63463:35;;;;62902:604;;;;;;;:::o;40698:125::-;40769:4;40814:1;40793:3;:12;;:17;40806:3;40793:17;;;;;;;;;;;;:22;;40786:29;;40698:125;;;;:::o;28870:1544::-;28936:4;29054:18;29075:3;:12;;:19;29088:5;29075:19;;;;;;;;;;;;29054:40;;29125:1;29111:10;:15;29107:1300;;29473:21;29510:1;29497:10;:14;29473:38;;29526:17;29567:1;29546:3;:11;;:18;;;;:22;29526:42;;29813:17;29833:3;:11;;29845:9;29833:22;;;;;;;;;;;;;;;;29813:42;;29979:9;29950:3;:11;;29962:13;29950:26;;;;;;;;;;;;;;;:38;;;;30098:1;30082:13;:17;30056:3;:12;;:23;30069:9;30056:23;;;;;;;;;;;:43;;;;30208:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;30303:3;:12;;:19;30316:5;30303:19;;;;;;;;;;;30296:26;;;30346:4;30339:11;;;;;;;;29107:1300;30390:5;30383:12;;;28870:1544;;;;;:::o;28280:414::-;28343:4;28365:21;28375:3;28380:5;28365:9;:21::i;:::-;28360:327;;28403:3;:11;;28420:5;28403:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28586:3;:11;;:18;;;;28564:3;:12;;:19;28577:5;28564:19;;;;;;;;;;;:40;;;;28626:4;28619:11;;;;28360:327;28670:5;28663:12;;28280:414;;;;;:::o;38198:692::-;38274:4;38390:16;38409:3;:12;;:17;38422:3;38409:17;;;;;;;;;;;;38390:36;;38455:1;38443:8;:13;38439:444;;;38510:3;:12;;38528:38;;;;;;;;38545:3;38528:38;;;;38558:5;38528:38;;;38510:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38725:3;:12;;:19;;;;38705:3;:12;;:17;38718:3;38705:17;;;;;;;;;;;:39;;;;38766:4;38759:11;;;;;38439:444;38839:5;38803:3;:12;;38827:1;38816:8;:12;38803:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38866:5;38859:12;;;38198:692;;;;;;:::o;59522:404::-;59616:1;59602:16;;:2;:16;;;;59594:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;59675:16;59683:7;59675;:16::i;:::-;59674:17;59666:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;59737:45;59766:1;59770:2;59774:7;59737:20;:45::i;:::-;59795:30;59817:7;59795:13;:17;59809:2;59795:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;59838:29;59855:7;59864:2;59838:12;:16;;:29;;;;;:::i;:::-;;59910:7;59906:2;59885:33;;59902:1;59885:33;;;;;;;;;;;;59522:404;;:::o;19299:422::-;19359:4;19567:12;19678:7;19666:20;19658:28;;19712:1;19705:4;:8;19698:15;;;19299:422;;;:::o;22217:195::-;22320:12;22352:52;22374:6;22382:4;22388:1;22391:12;22352:21;:52::i;:::-;22345:59;;22217:195;;;;;:::o;30500:129::-;30573:4;30620:1;30597:3;:12;;:19;30610:5;30597:19;;;;;;;;;;;;:24;;30590:31;;30500:129;;;;:::o;23269:530::-;23396:12;23454:5;23429:21;:30;;23421:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;23521:18;23532:6;23521:10;:18::i;:::-;23513:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;23647:12;23661:23;23688:6;:11;;23708:5;23716:4;23688:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23646:75;;;;23739:52;23757:7;23766:10;23778:12;23739:17;:52::i;:::-;23732:59;;;;23269:530;;;;;;:::o;25809:742::-;25924:12;25953:7;25949:595;;;25984:10;25977:17;;;;25949:595;26118:1;26098:10;:17;:21;26094:439;;;26361:10;26355:17;26422:15;26409:10;26405:2;26401:19;26394:44;26309:148;26504:12;26497:20;;;;;;;;;;;:::i;:::-;;;;;;;;25809: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:324::-;;10052:67;10116:2;10111:3;10052:67;:::i;:::-;10045:74;;10149:28;10145:1;10140:3;10136:11;10129:49;10204:2;10199:3;10195:12;10188:19;;10035:178;;;:::o;10219:366::-;;10382:67;10446:2;10441:3;10382:67;:::i;:::-;10375:74;;10479:34;10475:1;10470:3;10466:11;10459:55;10545:4;10540:2;10535:3;10531:12;10524:26;10576:2;10571:3;10567:12;10560:19;;10365:220;;;:::o;10591:382::-;;10754:67;10818:2;10813:3;10754:67;:::i;:::-;10747:74;;10851:34;10847:1;10842:3;10838:11;10831:55;10917:20;10912:2;10907:3;10903:12;10896:42;10964:2;10959:3;10955:12;10948:19;;10737:236;;;:::o;10979:370::-;;11142:67;11206:2;11201:3;11142:67;:::i;:::-;11135:74;;11239:34;11235:1;11230:3;11226:11;11219:55;11305:8;11300:2;11295:3;11291:12;11284:30;11340:2;11335:3;11331:12;11324:19;;11125:224;;;:::o;11355:326::-;;11518:67;11582:2;11577:3;11518:67;:::i;:::-;11511:74;;11615:30;11611:1;11606:3;11602:11;11595:51;11672:2;11667:3;11663:12;11656:19;;11501:180;;;:::o;11687:325::-;;11850:67;11914:2;11909:3;11850:67;:::i;:::-;11843:74;;11947:29;11943:1;11938:3;11934:11;11927:50;12003:2;11998:3;11994:12;11987:19;;11833:179;;;:::o;12018:330::-;;12181:67;12245:2;12240:3;12181:67;:::i;:::-;12174:74;;12278:34;12274:1;12269:3;12265:11;12258:55;12339:2;12334:3;12330:12;12323:19;;12164:184;;;:::o;12354:368::-;;12517:67;12581:2;12576:3;12517:67;:::i;:::-;12510:74;;12614:34;12610:1;12605:3;12601:11;12594:55;12680:6;12675:2;12670:3;12666:12;12659:28;12713:2;12708:3;12704:12;12697:19;;12500:222;;;:::o;12728:323::-;;12891:67;12955:2;12950:3;12891:67;:::i;:::-;12884:74;;12988:27;12984:1;12979:3;12975:11;12968:48;13042:2;13037:3;13033:12;13026:19;;12874:177;;;:::o;13057:329::-;;13220:67;13284:2;13279:3;13220:67;:::i;:::-;13213:74;;13317:33;13313:1;13308:3;13304:11;13297:54;13377:2;13372:3;13368:12;13361:19;;13203:183;;;:::o;13392:328::-;;13555:67;13619:2;13614:3;13555:67;:::i;:::-;13548:74;;13652:32;13648:1;13643:3;13639:11;13632:53;13711:2;13706:3;13702:12;13695:19;;13538:182;;;:::o;13726:370::-;;13889:67;13953:2;13948:3;13889:67;:::i;:::-;13882:74;;13986:34;13982:1;13977:3;13973:11;13966:55;14052:8;14047:2;14042:3;14038:12;14031:30;14087:2;14082:3;14078:12;14071:19;;13872:224;;;:::o;14102:376::-;;14265:67;14329:2;14324:3;14265:67;:::i;:::-;14258:74;;14362:34;14358:1;14353:3;14349:11;14342:55;14428:14;14423:2;14418:3;14414:12;14407:36;14469:2;14464:3;14460:12;14453:19;;14248:230;;;:::o;14484:365::-;;14647:67;14711:2;14706:3;14647:67;:::i;:::-;14640:74;;14744:34;14740:1;14735:3;14731:11;14724:55;14810:3;14805:2;14800:3;14796:12;14789:25;14840:2;14835:3;14831:12;14824:19;;14630:219;;;:::o;14855:388::-;;15018:67;15082:2;15077:3;15018:67;:::i;:::-;15011:74;;15115:34;15111:1;15106:3;15102:11;15095:55;15181:26;15176:2;15171:3;15167:12;15160:48;15234:2;15229:3;15225:12;15218:19;;15001:242;;;:::o;15249:374::-;;15412:67;15476:2;15471:3;15412:67;:::i;:::-;15405:74;;15509:34;15505:1;15500:3;15496:11;15489:55;15575:12;15570:2;15565:3;15561:12;15554:34;15614:2;15609:3;15605:12;15598:19;;15395:228;;;:::o;15629:366::-;;15792:67;15856:2;15851:3;15792:67;:::i;:::-;15785:74;;15889:34;15885:1;15880:3;15876:11;15869:55;15955:4;15950:2;15945:3;15941:12;15934:26;15986:2;15981:3;15977:12;15970:19;;15775:220;;;:::o;16001:330::-;;16164:67;16228:2;16223:3;16164:67;:::i;:::-;16157:74;;16261:34;16257:1;16252:3;16248:11;16241:55;16322:2;16317:3;16313:12;16306:19;;16147:184;;;:::o;16337:365::-;;16500:67;16564:2;16559:3;16500:67;:::i;:::-;16493:74;;16597:34;16593:1;16588:3;16584:11;16577:55;16663:3;16658:2;16653:3;16649:12;16642:25;16693:2;16688:3;16684:12;16677:19;;16483:219;;;:::o;16708:376::-;;16871:67;16935:2;16930:3;16871:67;:::i;:::-;16864:74;;16968:34;16964:1;16959:3;16955:11;16948:55;17034:14;17029:2;17024:3;17020:12;17013:36;17075:2;17070:3;17066:12;17059:19;;16854:230;;;:::o;17090:330::-;;17253:67;17317:2;17312:3;17253:67;:::i;:::-;17246:74;;17350:34;17346:1;17341:3;17337:11;17330:55;17411:2;17406:3;17402:12;17395:19;;17236:184;;;:::o;17426:373::-;;17589:67;17653:2;17648:3;17589:67;:::i;:::-;17582:74;;17686:34;17682:1;17677:3;17673:11;17666:55;17752:11;17747:2;17742:3;17738:12;17731:33;17790:2;17785:3;17781:12;17774:19;;17572:227;;;:::o;17805:379::-;;17968:67;18032:2;18027:3;17968:67;:::i;:::-;17961:74;;18065:34;18061:1;18056:3;18052:11;18045:55;18131:17;18126:2;18121:3;18117:12;18110:39;18175:2;18170:3;18166:12;18159:19;;17951:233;;;:::o;18190:365::-;;18353:67;18417:2;18412:3;18353:67;:::i;:::-;18346:74;;18450:34;18446:1;18441:3;18437:11;18430:55;18516:3;18511:2;18506:3;18502:12;18495:25;18546:2;18541:3;18537:12;18530:19;;18336:219;;;:::o;18561:320::-;;18724:67;18788:2;18783:3;18724:67;:::i;:::-;18717:74;;18821:24;18817:1;18812:3;18808:11;18801:45;18872:2;18867:3;18863:12;18856:19;;18707:174;;;:::o;18887:373::-;;19050:67;19114:2;19109:3;19050:67;:::i;:::-;19043:74;;19147:34;19143:1;19138:3;19134:11;19127:55;19213:11;19208:2;19203:3;19199:12;19192:33;19251:2;19246:3;19242:12;19235:19;;19033:227;;;:::o;19266:381::-;;19429:67;19493:2;19488:3;19429:67;:::i;:::-;19422:74;;19526:34;19522:1;19517:3;19513:11;19506:55;19592:19;19587:2;19582:3;19578:12;19571:41;19638:2;19633:3;19629:12;19622:19;;19412:235;;;:::o;19653:327::-;;19816:67;19880:2;19875:3;19816:67;:::i;:::-;19809:74;;19913:31;19909:1;19904:3;19900:11;19893:52;19971:2;19966:3;19962:12;19955:19;;19799:181;;;:::o;19986:330::-;;20149:67;20213:2;20208:3;20149:67;:::i;:::-;20142:74;;20246:34;20242:1;20237:3;20233:11;20226:55;20307:2;20302:3;20298:12;20291:19;;20132:184;;;:::o;20322:108::-;20399:24;20417:5;20399:24;:::i;:::-;20394:3;20387:37;20377:53;;:::o;20436:118::-;20523:24;20541:5;20523:24;:::i;:::-;20518:3;20511:37;20501:53;;:::o;20560:271::-;;20712:93;20801:3;20792:6;20712:93;:::i;:::-;20705:100;;20822:3;20815:10;;20694:137;;;;:::o;20837:435::-;;21039:95;21130:3;21121:6;21039:95;:::i;:::-;21032:102;;21151:95;21242:3;21233:6;21151:95;:::i;:::-;21144:102;;21263:3;21256:10;;21021:251;;;;;:::o;21278:222::-;;21409:2;21398:9;21394:18;21386:26;;21422:71;21490:1;21479:9;21475:17;21466:6;21422:71;:::i;:::-;21376:124;;;;:::o;21506:672::-;;21755:3;21744:9;21740:19;21732:27;;21769:87;21853:1;21842:9;21838:17;21829:6;21769:87;:::i;:::-;21866:72;21934:2;21923:9;21919:18;21910:6;21866:72;:::i;:::-;21948;22016:2;22005:9;22001:18;21992:6;21948:72;:::i;:::-;22067:9;22061:4;22057:20;22052:2;22041:9;22037:18;22030:48;22095:76;22166:4;22157:6;22095:76;:::i;:::-;22087:84;;21722:456;;;;;;;:::o;22184:373::-;;22365:2;22354:9;22350:18;22342:26;;22414:9;22408:4;22404:20;22400:1;22389:9;22385:17;22378:47;22442:108;22545:4;22536:6;22442:108;:::i;:::-;22434:116;;22332:225;;;;:::o;22563:210::-;;22688:2;22677:9;22673:18;22665:26;;22701:65;22763:1;22752:9;22748:17;22739:6;22701:65;:::i;:::-;22655:118;;;;:::o;22779:313::-;;22930:2;22919:9;22915:18;22907:26;;22979:9;22973:4;22969:20;22965:1;22954:9;22950:17;22943:47;23007:78;23080:4;23071:6;23007:78;:::i;:::-;22999:86;;22897:195;;;;:::o;23098:307::-;;23246:2;23235:9;23231:18;23223:26;;23295:9;23289:4;23285:20;23281:1;23270:9;23266:17;23259:47;23323:75;23393:4;23384:6;23323:75;:::i;:::-;23315:83;;23213:192;;;;:::o;23411:419::-;;23615:2;23604:9;23600:18;23592:26;;23664:9;23658:4;23654:20;23650:1;23639:9;23635:17;23628:47;23692:131;23818:4;23692:131;:::i;:::-;23684:139;;23582:248;;;:::o;23836:419::-;;24040:2;24029:9;24025:18;24017:26;;24089:9;24083:4;24079:20;24075:1;24064:9;24060:17;24053:47;24117:131;24243:4;24117:131;:::i;:::-;24109:139;;24007:248;;;:::o;24261:419::-;;24465:2;24454:9;24450:18;24442:26;;24514:9;24508:4;24504:20;24500:1;24489:9;24485:17;24478:47;24542:131;24668:4;24542:131;:::i;:::-;24534:139;;24432:248;;;:::o;24686:419::-;;24890:2;24879:9;24875:18;24867:26;;24939:9;24933:4;24929:20;24925:1;24914:9;24910:17;24903:47;24967:131;25093:4;24967:131;:::i;:::-;24959:139;;24857:248;;;:::o;25111:419::-;;25315:2;25304:9;25300:18;25292:26;;25364:9;25358:4;25354:20;25350:1;25339:9;25335:17;25328:47;25392:131;25518:4;25392:131;:::i;:::-;25384:139;;25282:248;;;:::o;25536:419::-;;25740:2;25729:9;25725:18;25717:26;;25789:9;25783:4;25779:20;25775:1;25764:9;25760:17;25753:47;25817:131;25943:4;25817:131;:::i;:::-;25809:139;;25707:248;;;:::o;25961:419::-;;26165:2;26154:9;26150:18;26142:26;;26214:9;26208:4;26204:20;26200:1;26189:9;26185:17;26178:47;26242:131;26368:4;26242:131;:::i;:::-;26234:139;;26132:248;;;:::o;26386:419::-;;26590:2;26579:9;26575:18;26567:26;;26639:9;26633:4;26629:20;26625:1;26614:9;26610:17;26603:47;26667:131;26793:4;26667:131;:::i;:::-;26659:139;;26557:248;;;:::o;26811:419::-;;27015:2;27004:9;27000:18;26992:26;;27064:9;27058:4;27054:20;27050:1;27039:9;27035:17;27028:47;27092:131;27218:4;27092:131;:::i;:::-;27084:139;;26982:248;;;:::o;27236:419::-;;27440:2;27429:9;27425:18;27417:26;;27489:9;27483:4;27479:20;27475:1;27464:9;27460:17;27453:47;27517:131;27643:4;27517:131;:::i;:::-;27509:139;;27407:248;;;:::o;27661:419::-;;27865:2;27854:9;27850:18;27842:26;;27914:9;27908:4;27904:20;27900:1;27889:9;27885:17;27878:47;27942:131;28068:4;27942:131;:::i;:::-;27934:139;;27832:248;;;:::o;28086:419::-;;28290:2;28279:9;28275:18;28267:26;;28339:9;28333:4;28329:20;28325:1;28314:9;28310:17;28303:47;28367:131;28493:4;28367:131;:::i;:::-;28359:139;;28257:248;;;:::o;28511:419::-;;28715:2;28704:9;28700:18;28692:26;;28764:9;28758:4;28754:20;28750:1;28739:9;28735:17;28728:47;28792:131;28918:4;28792:131;:::i;:::-;28784:139;;28682:248;;;:::o;28936:419::-;;29140:2;29129:9;29125:18;29117:26;;29189:9;29183:4;29179:20;29175:1;29164:9;29160:17;29153:47;29217:131;29343:4;29217:131;:::i;:::-;29209:139;;29107:248;;;:::o;29361:419::-;;29565:2;29554:9;29550:18;29542:26;;29614:9;29608:4;29604:20;29600:1;29589:9;29585:17;29578:47;29642:131;29768:4;29642:131;:::i;:::-;29634:139;;29532:248;;;:::o;29786:419::-;;29990:2;29979:9;29975:18;29967:26;;30039:9;30033:4;30029:20;30025:1;30014:9;30010:17;30003:47;30067:131;30193:4;30067:131;:::i;:::-;30059:139;;29957:248;;;:::o;30211:419::-;;30415:2;30404:9;30400:18;30392:26;;30464:9;30458:4;30454:20;30450:1;30439:9;30435:17;30428:47;30492:131;30618:4;30492:131;:::i;:::-;30484:139;;30382:248;;;:::o;30636:419::-;;30840:2;30829:9;30825:18;30817:26;;30889:9;30883:4;30879:20;30875:1;30864:9;30860:17;30853:47;30917:131;31043:4;30917:131;:::i;:::-;30909:139;;30807:248;;;:::o;31061:419::-;;31265:2;31254:9;31250:18;31242:26;;31314:9;31308:4;31304:20;31300:1;31289:9;31285:17;31278:47;31342:131;31468:4;31342:131;:::i;:::-;31334:139;;31232:248;;;:::o;31486:419::-;;31690:2;31679:9;31675:18;31667:26;;31739:9;31733:4;31729:20;31725:1;31714:9;31710:17;31703:47;31767:131;31893:4;31767:131;:::i;:::-;31759:139;;31657:248;;;:::o;31911:419::-;;32115:2;32104:9;32100:18;32092:26;;32164:9;32158:4;32154:20;32150:1;32139:9;32135:17;32128:47;32192:131;32318:4;32192:131;:::i;:::-;32184:139;;32082:248;;;:::o;32336:419::-;;32540:2;32529:9;32525:18;32517:26;;32589:9;32583:4;32579:20;32575:1;32564:9;32560:17;32553:47;32617:131;32743:4;32617:131;:::i;:::-;32609:139;;32507:248;;;:::o;32761:419::-;;32965:2;32954:9;32950:18;32942:26;;33014:9;33008:4;33004:20;33000:1;32989:9;32985:17;32978:47;33042:131;33168:4;33042:131;:::i;:::-;33034:139;;32932:248;;;:::o;33186:419::-;;33390:2;33379:9;33375:18;33367:26;;33439:9;33433:4;33429:20;33425:1;33414:9;33410:17;33403:47;33467:131;33593:4;33467:131;:::i;:::-;33459:139;;33357:248;;;:::o;33611:419::-;;33815:2;33804:9;33800:18;33792:26;;33864:9;33858:4;33854:20;33850:1;33839:9;33835:17;33828:47;33892:131;34018:4;33892:131;:::i;:::-;33884:139;;33782:248;;;:::o;34036:419::-;;34240:2;34229:9;34225:18;34217:26;;34289:9;34283:4;34279:20;34275:1;34264:9;34260:17;34253:47;34317:131;34443:4;34317:131;:::i;:::-;34309:139;;34207:248;;;:::o;34461:419::-;;34665:2;34654:9;34650:18;34642:26;;34714:9;34708:4;34704:20;34700:1;34689:9;34685:17;34678:47;34742:131;34868:4;34742:131;:::i;:::-;34734:139;;34632:248;;;:::o;34886:419::-;;35090:2;35079:9;35075:18;35067:26;;35139:9;35133:4;35129:20;35125:1;35114:9;35110:17;35103:47;35167:131;35293:4;35167:131;:::i;:::-;35159:139;;35057:248;;;:::o;35311:419::-;;35515:2;35504:9;35500:18;35492:26;;35564:9;35558:4;35554:20;35550:1;35539:9;35535:17;35528:47;35592:131;35718:4;35592:131;:::i;:::-;35584:139;;35482:248;;;:::o;35736:222::-;;35867:2;35856:9;35852:18;35844:26;;35880:71;35948:1;35937:9;35933:17;35924:6;35880:71;:::i;:::-;35834:124;;;;:::o;35964:278::-;;36030:2;36024:9;36014:19;;36072:4;36064:6;36060:17;36179:6;36167:10;36164:22;36143:18;36131:10;36128:34;36125:62;36122:2;;;36190:13;;:::i;:::-;36122:2;36225:10;36221:2;36214:22;36004:238;;;;:::o;36248:326::-;;36399:18;36391:6;36388:30;36385:2;;;36421:13;;:::i;:::-;36385:2;36501:4;36497:9;36490:4;36482:6;36478:17;36474:33;36466:41;;36562:4;36556;36552:15;36544:23;;36314:260;;;:::o;36580:327::-;;36732:18;36724:6;36721:30;36718:2;;;36754:13;;:::i;:::-;36718:2;36834:4;36830:9;36823:4;36815:6;36811:17;36807:33;36799:41;;36895:4;36889;36885:15;36877:23;;36647:260;;;:::o;36913:132::-;;37003:3;36995:11;;37033:4;37028:3;37024:14;37016:22;;36985:60;;;:::o;37051:141::-;;37123:3;37115:11;;37146:3;37143:1;37136:14;37180:4;37177:1;37167:18;37159:26;;37105:87;;;:::o;37198:114::-;;37299:5;37293:12;37283:22;;37272:40;;;:::o;37318:98::-;;37403:5;37397:12;37387:22;;37376:40;;;:::o;37422:99::-;;37508:5;37502:12;37492:22;;37481:40;;;:::o;37527:113::-;;37629:4;37624:3;37620:14;37612:22;;37602:38;;;:::o;37646:184::-;;37779:6;37774:3;37767:19;37819:4;37814:3;37810:14;37795:29;;37757:73;;;;:::o;37836:168::-;;37953:6;37948:3;37941:19;37993:4;37988:3;37984:14;37969:29;;37931:73;;;;:::o;38010:147::-;;38148:3;38133:18;;38123:34;;;;:::o;38163:169::-;;38281:6;38276:3;38269:19;38321:4;38316:3;38312:14;38297:29;;38259:73;;;;:::o;38338:148::-;;38477:3;38462:18;;38452:34;;;;:::o;38492:96::-;;38558:24;38576:5;38558:24;:::i;:::-;38547:35;;38537:51;;;:::o;38594:104::-;;38668:24;38686:5;38668:24;:::i;:::-;38657:35;;38647:51;;;:::o;38704:90::-;;38781:5;38774:13;38767:21;38756:32;;38746:48;;;:::o;38800:149::-;;38876:66;38869:5;38865:78;38854:89;;38844:105;;;:::o;38955:126::-;;39032:42;39025:5;39021:54;39010:65;;39000:81;;;:::o;39087:77::-;;39153:5;39142:16;;39132:32;;;:::o;39170:154::-;39254:6;39249:3;39244;39231:30;39316:1;39307:6;39302:3;39298:16;39291:27;39221:103;;;:::o;39330:307::-;39398:1;39408:113;39422:6;39419:1;39416:13;39408:113;;;39507:1;39502:3;39498:11;39492:18;39488:1;39483:3;39479:11;39472:39;39444:2;39441:1;39437:10;39432:15;;39408:113;;;39539:6;39536:1;39533:13;39530:2;;;39619:1;39610:6;39605:3;39601:16;39594:27;39530:2;39379:258;;;;:::o;39643:48::-;39676:9;39697:102;;39789:2;39785:7;39780:2;39773:5;39769:14;39765:28;39755:38;;39745:54;;;:::o;39805:122::-;39878:24;39896:5;39878:24;:::i;:::-;39871:5;39868:35;39858:2;;39917:1;39914;39907:12;39858:2;39848:79;:::o;39933:116::-;40003:21;40018:5;40003:21;:::i;:::-;39996:5;39993:32;39983:2;;40039:1;40036;40029:12;39983:2;39973:76;:::o;40055:120::-;40127:23;40144:5;40127:23;:::i;:::-;40120:5;40117:34;40107:2;;40165:1;40162;40155:12;40107:2;40097:78;:::o;40181:122::-;40254:24;40272:5;40254:24;:::i;:::-;40247:5;40244:35;40234:2;;40293:1;40290;40283:12;40234:2;40224:79;:::o

Swarm Source

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