ETH Price: $3,388.69 (-1.56%)
Gas: 2 Gwei

Token

WinterBears (WB)
 

Overview

Max Total Supply

10,000 WB

Holders

4,498

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
moone.eth
Balance
16 WB
0x4DAEDd0c7906b0d5e7E5805f283B0d8805735971
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Winter Bears is a collection of 10,000 adorable and unique polar bear NFTs available on the Ethereum blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
WinterBears

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

pragma solidity >=0.6.2 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity >=0.6.2 <0.8.0;

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

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

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

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

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

pragma solidity >=0.6.2 <0.8.0;

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

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

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

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity >=0.6.2 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

            bytes32 lastvalue = set._values[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

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

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

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

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

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

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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


    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

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

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

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

pragma solidity >=0.6.0 <0.8.0;

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

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

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

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

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

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

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

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

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

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

            MapEntry storage lastEntry = map._entries[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

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

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

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

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

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

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

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

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

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

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

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

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

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

    // Base URI
    string private _baseURI;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

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

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

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

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

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

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(tokenId);

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

// File: contracts/WinterBears.sol

//MMMMMMMMMMMMMMMMMMNNNNNNNmmmmNNNNNNNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
//MMMMMMMMMMMMMNNNmdhhyyssssssssssyyhhdmmNNNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
//MMMMMMMMMMNNdhysssssssssssssssssssssssyyhdmNNNMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
//MMMMMMMMNmyssssssssssssssssssssssssssssssyyyhdmNNMMMMMMMMMMMMMMMMMMMMMMMMMM
//MMMMMMNmyosssssssssssssssssssssssssssssssssyyyyhdmNNMMMMMMMMMMMMMMMMMMMMMMM
//MMMMMNd+ossssssssssssssssssssssssssssssssssssyyyyyhdNNMMMMMMMMMMMMMMMMMMMMM
//MMMMNh/osssssssssssssssssssssssssssssssssssssssyyyyyhdNNMMMMMMMMMMMMMMMMMMM
//MMMNd:osssssssssssssssssssssssssssssssssssssssssyyyyyyhdNNMMMMMMMMMMMMMMMMM
//MMNN+/sssssssssssssssssssssssssssssssssssssssssssyyyyyyyhmNMMMMMMMMMMMMMMMM
//MMNh:ossssssyyyhhddddddddddddddhhyyyyssssssssssssyyyyyyyyydNMMMMMMMMMMMMMMM
//MMNo:ssyyhddhhso/::----------:/+osyhddddhyysssssssdhyyyyyyydNNMMMMMMMMMMMMM
//MNN++hddy+:.`                       `-:+shddddhyssymhyyyyyyydNNMMMMMMMMMMMM
//MNNdds:`                                 `.:+oydddhhmdyyyyyyydNMMMMMMMMMMMM
//MNm+`                                        `.-/oydmNdyyyyyyymNMMMMMMMMMMM
//NN-                    `````                    .---/odmhyyyyyhNNMMMMMMMMMM
//Nd         `.:/+ossyyyhhhhhhhyyysso+/:.`         -----:mmyyyyyymNMMMMMMMMMM
//Nh    -/shddhso+/:--..```````..--:/+oshddhs+:.   `-----sNdhyyyyhNNNMMMMMMMM
//Nm`/ymho/.                               .:+shmyo::----/NNNdyyyyNm+sdNNMMMM
//NNmN/`                                        `-+ymho/-:NNmNmdmmy/   -smNMM
//MMNh     :shyo.                   .-:-            :+ymhsNd.-::.`      .:dNM
//MMNs    y+:hNNm/               -ohs/-`            .--:mNN-            .-:mN
//MMNo   .NyomNNNh             .smms+:-`            .---yNm             ---dN
//MMNs    hNNNNNN+             -s+////+o.           `---sNN-          `.--:mN
//MMNy    `ohddy/                                   `---oNNh:.```````.---:yNM
//MNN:      ```     `.....                          `---sNNNd+:--------:+dNMM
//MNh              +ddyyydh-                        `---oNMMMNdyo+//+oydNNMMM
//MNs              /mNNNNNd.                        .---sNMMMMMMNNNNNNMMMMMMM
//MNy            -: .+dNy/`  :s                     ----hNMMMMMMMMMMMMMMMMMMM
//MNm.           .do:+mNh+/+yN+                    .---oNNMMMMMMMMMMMMMMMMMMM
//MMNd.           ./dNmmdhhmNd                   `---:oNNMMMMMMMMMMMMMMMMMMMM
//MMMNm/`           :mmsoosdd-                 `.--:+hNMMMMMMMMMMMMMMMMMMMMMM
//MMMMMNd+.`         .ohddy+`               `.--:/sdNNMMMMMMMMMMMMMMMMMMMMMMM
//MMMMMMMNNho:.`                       ``.--:/oydNNMMMMMMMMMMMMMMMMMMMMMMMMMM
//MMMMMMMMMMNNNdhs+/:-..`````.....--:/+osyhdNNNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
//MMMMMMMMMMMMMMMMNNNNNNmmmmmmmmNNNNNNNNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM

// Winter Bears is a collection of 10,000 adorable polar bear NFTs available on the Ethereum blockchain.
// Each bear is completely unique, created using 150 individual features.

pragma solidity ^0.7.0;
pragma abicoder v2;

contract WinterBears is ERC721, Ownable {

    using SafeMath for uint256;

    string public BEAR_PRE_PROVENANCE = "";

    string public BEAR_PROVENANCE = "";

    uint256 public constant MAX_BEARS = 10000;
    
    uint256 public constant MAX_BEARS_PER_MINT = 20;

    uint256 public price = 30000000000000000; // 0.03 ETH

    // Some bears are reserved for the team, giveaways, promo etc
    uint256 public RESERVED_BEARS = 300;

    uint256 public startingIndex;

    bool public isSaleActive = false;

    constructor() ERC721("WinterBears", "WB") {}

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        msg.sender.transfer(balance);
    }

    // Set before minting
    function setPreProvenanceHash(string memory _preprovenanceHash) public onlyOwner {
        BEAR_PRE_PROVENANCE = _preprovenanceHash;
    }

    // Set after minting to account for offset
    function setProvenanceHash(string memory _provenanceHash) public onlyOwner {
        BEAR_PROVENANCE = _provenanceHash;
    }

    function reserveBears(address _to, uint256 _reserveAmount) public onlyOwner {        
        uint256 supply = totalSupply();
        require(_reserveAmount > 0 && _reserveAmount <= RESERVED_BEARS, "Not enough reserves left");
        for (uint256 i = 0; i < _reserveAmount; i++) {
            _safeMint(_to, supply + i);
        }
        RESERVED_BEARS = RESERVED_BEARS.sub(_reserveAmount);
    }
    
    function mintBear(uint256 _count) public payable {
        uint256 totalSupply = totalSupply();

        require(isSaleActive, "Sale is not active" );
        require(_count > 0 && _count < MAX_BEARS_PER_MINT + 1, "Exceeds maximum bears you can purchase in a single transaction");
        require(totalSupply + _count < MAX_BEARS + 1, "Exceeds maximum bears available for purchase");
        require(msg.value >= price.mul(_count), "Ether value sent is not correct");
        
        for(uint256 i = 0; i < _count; i++){
            _safeMint(msg.sender, totalSupply + i);
        }
    }

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

    function flipSaleStatus() public onlyOwner {
        isSaleActive = !isSaleActive;

        if (isSaleActive && startingIndex == 0) {
            setStartingIndex();
        }
    }

    function setPrice(uint256 _newPrice) public onlyOwner() {
        price = _newPrice;
    }

    function getPrice() public view returns (uint256){
        return price;
    }

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

    function setStartingIndex() internal {
        require(startingIndex == 0, "Starting index is already set");

        // BlockHash only works for the most 256 recent blocks.
        uint256 _block_shift = uint(keccak256(abi.encodePacked(block.difficulty, block.timestamp)));
        _block_shift =  1 + (_block_shift % 255);

        // This shouldn't happen, but just in case the blockchain gets a reboot?
        if (block.number < _block_shift) {
            _block_shift = 1;
        }

        uint256 _block_ref = block.number - _block_shift;
        startingIndex = uint(blockhash(_block_ref)) % MAX_BEARS;

        // Prevent default sequence
        if (startingIndex == 0) {
            startingIndex = startingIndex + 1;
        }
    }
}

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"},{"inputs":[],"name":"BEAR_PRE_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BEAR_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BEARS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BEARS_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_BEARS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintBear","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reserveBears","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_preprovenanceHash","type":"string"}],"name":"setPreProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600b90805190602001906200002b92919062000325565b5060405180602001604052806000815250600c90805190602001906200005392919062000325565b50666a94d74f430000600d5561012c600e556000601060006101000a81548160ff0219169083151502179055503480156200008d57600080fd5b506040518060400160405280600b81526020017f57696e74657242656172730000000000000000000000000000000000000000008152506040518060400160405280600281526020017f5742000000000000000000000000000000000000000000000000000000000000815250620001126301ffc9a760e01b6200024560201b60201c565b81600690805190602001906200012a92919062000325565b5080600790805190602001906200014392919062000325565b506200015c6380ac58cd60e01b6200024560201b60201c565b62000174635b5e139f60e01b6200024560201b60201c565b6200018c63780e9d6360e01b6200024560201b60201c565b50506000620001a06200031d60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35062000450565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620002b1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a8906200041d565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200035d5760008555620003a9565b82601f106200037857805160ff1916838001178555620003a9565b82800160010185558215620003a9579182015b82811115620003a85782518255916020019190600101906200038b565b5b509050620003b89190620003bc565b5090565b5b80821115620003d7576000816000905550600101620003bd565b5090565b6000620003ea601c836200043f565b91507f4552433136353a20696e76616c696420696e74657266616365206964000000006000830152602082019050919050565b600060208201905081810360008301526200043881620003db565b9050919050565b600082825260208201905092915050565b6146d080620004606000396000f3fe6080604052600436106102255760003560e01c8063715018a611610123578063a22cb465116100ab578063ce03ec931161006f578063ce03ec93146107fa578063da649ed714610811578063e2d8d80e1461083c578063e985e9c514610867578063f2fde38b146108a457610225565b8063a22cb46514610724578063b88d4fde1461074d578063c358575c14610776578063c87b56dd14610792578063cb774d47146107cf57610225565b806391b7f5ed116100f257806391b7f5ed1461065157806395d89b411461067a57806398d5fdca146106a55780639b30d6d9146106d0578063a035b1fe146106f957610225565b8063715018a6146105a95780637fdb7304146105c05780638462151c146105e95780638da5cb5b1461062657610225565b80633ccfd60b116101b157806359283a861161017557806359283a86146104ae5780635d9f5a63146104d95780636352211e146105045780636c0360eb1461054157806370a082311461056c57610225565b80633ccfd60b146103dd57806342842e0e146103f45780634f6ccce71461041d57806355f804b31461045a578063564566a81461048357610225565b806310969523116101f857806310969523146102f857806318160ddd146103215780631c23d66c1461034c57806323b872dd146103775780632f745c59146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613390565b6108cd565b60405161025e919061402e565b60405180910390f35b34801561027357600080fd5b5061027c610934565b6040516102899190614049565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613423565b6109d6565b6040516102c69190613fa5565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613354565b610a5b565b005b34801561030457600080fd5b5061031f600480360381019061031a91906133e2565b610b73565b005b34801561032d57600080fd5b50610336610c09565b60405161034391906143cb565b60405180910390f35b34801561035857600080fd5b50610361610c1a565b60405161036e9190614049565b60405180910390f35b34801561038357600080fd5b5061039e6004803603810190610399919061324e565b610cb8565b005b3480156103ac57600080fd5b506103c760048036038101906103c29190613354565b610d18565b6040516103d491906143cb565b60405180910390f35b3480156103e957600080fd5b506103f2610d73565b005b34801561040057600080fd5b5061041b6004803603810190610416919061324e565b610e3e565b005b34801561042957600080fd5b50610444600480360381019061043f9190613423565b610e5e565b60405161045191906143cb565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c91906133e2565b610e81565b005b34801561048f57600080fd5b50610498610f09565b6040516104a5919061402e565b60405180910390f35b3480156104ba57600080fd5b506104c3610f1c565b6040516104d091906143cb565b60405180910390f35b3480156104e557600080fd5b506104ee610f22565b6040516104fb91906143cb565b60405180910390f35b34801561051057600080fd5b5061052b60048036038101906105269190613423565b610f27565b6040516105389190613fa5565b60405180910390f35b34801561054d57600080fd5b50610556610f5e565b6040516105639190614049565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e91906131e9565b611000565b6040516105a091906143cb565b60405180910390f35b3480156105b557600080fd5b506105be6110bf565b005b3480156105cc57600080fd5b506105e760048036038101906105e29190613354565b6111fc565b005b3480156105f557600080fd5b50610610600480360381019061060b91906131e9565b61131a565b60405161061d919061400c565b60405180910390f35b34801561063257600080fd5b5061063b611413565b6040516106489190613fa5565b60405180910390f35b34801561065d57600080fd5b5061067860048036038101906106739190613423565b61143d565b005b34801561068657600080fd5b5061068f6114c3565b60405161069c9190614049565b60405180910390f35b3480156106b157600080fd5b506106ba611565565b6040516106c791906143cb565b60405180910390f35b3480156106dc57600080fd5b506106f760048036038101906106f291906133e2565b61156f565b005b34801561070557600080fd5b5061070e611605565b60405161071b91906143cb565b60405180910390f35b34801561073057600080fd5b5061074b60048036038101906107469190613318565b61160b565b005b34801561075957600080fd5b50610774600480360381019061076f919061329d565b61178c565b005b610790600480360381019061078b9190613423565b6117ee565b005b34801561079e57600080fd5b506107b960048036038101906107b49190613423565b611964565b6040516107c69190614049565b60405180910390f35b3480156107db57600080fd5b506107e4611ae7565b6040516107f191906143cb565b60405180910390f35b34801561080657600080fd5b5061080f611aed565b005b34801561081d57600080fd5b50610826611bc1565b60405161083391906143cb565b60405180910390f35b34801561084857600080fd5b50610851611bc7565b60405161085e9190614049565b60405180910390f35b34801561087357600080fd5b5061088e60048036038101906108899190613212565b611c65565b60405161089b919061402e565b60405180910390f35b3480156108b057600080fd5b506108cb60048036038101906108c691906131e9565b611cf9565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109cc5780601f106109a1576101008083540402835291602001916109cc565b820191906000526020600020905b8154815290600101906020018083116109af57829003601f168201915b5050505050905090565b60006109e182611ea5565b610a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a17906142ab565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6682610f27565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ace9061432b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610af6611ec2565b73ffffffffffffffffffffffffffffffffffffffff161480610b255750610b2481610b1f611ec2565b611c65565b5b610b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5b906141eb565b60405180910390fd5b610b6e8383611eca565b505050565b610b7b611ec2565b73ffffffffffffffffffffffffffffffffffffffff16610b99611413565b73ffffffffffffffffffffffffffffffffffffffff1614610bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be6906142cb565b60405180910390fd5b80600c9080519060200190610c05929190613005565b5050565b6000610c156002611f83565b905090565b600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610cb05780601f10610c8557610100808354040283529160200191610cb0565b820191906000526020600020905b815481529060010190602001808311610c9357829003601f168201915b505050505081565b610cc9610cc3611ec2565b82611f98565b610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff9061434b565b60405180910390fd5b610d13838383612076565b505050565b6000610d6b82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061228d90919063ffffffff16565b905092915050565b610d7b611ec2565b73ffffffffffffffffffffffffffffffffffffffff16610d99611413565b73ffffffffffffffffffffffffffffffffffffffff1614610def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de6906142cb565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e3a573d6000803e3d6000fd5b5050565b610e598383836040518060200160405280600081525061178c565b505050565b600080610e758360026122a790919063ffffffff16565b50905080915050919050565b610e89611ec2565b73ffffffffffffffffffffffffffffffffffffffff16610ea7611413565b73ffffffffffffffffffffffffffffffffffffffff1614610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef4906142cb565b60405180910390fd5b610f06816122d3565b50565b601060009054906101000a900460ff1681565b600e5481565b601481565b6000610f57826040518060600160405280602981526020016146726029913960026122ed9092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ff65780601f10610fcb57610100808354040283529160200191610ff6565b820191906000526020600020905b815481529060010190602001808311610fd957829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611071576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110689061422b565b60405180910390fd5b6110b8600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061230c565b9050919050565b6110c7611ec2565b73ffffffffffffffffffffffffffffffffffffffff166110e5611413565b73ffffffffffffffffffffffffffffffffffffffff161461113b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611132906142cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611204611ec2565b73ffffffffffffffffffffffffffffffffffffffff16611222611413565b73ffffffffffffffffffffffffffffffffffffffff1614611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f906142cb565b60405180910390fd5b6000611282610c09565b90506000821180156112965750600e548211155b6112d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cc906143ab565b60405180910390fd5b60005b828110156112f9576112ec84828401612321565b80806001019150506112d8565b5061130f82600e5461233f90919063ffffffff16565b600e81905550505050565b6060600061132783611000565b9050600081141561138257600067ffffffffffffffff8111801561134a57600080fd5b506040519080825280602002602001820160405280156113795781602001602082028036833780820191505090505b5091505061140e565b60008167ffffffffffffffff8111801561139b57600080fd5b506040519080825280602002602001820160405280156113ca5781602001602082028036833780820191505090505b50905060005b82811015611407576113e28582610d18565b8282815181106113ee57fe5b60200260200101818152505080806001019150506113d0565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611445611ec2565b73ffffffffffffffffffffffffffffffffffffffff16611463611413565b73ffffffffffffffffffffffffffffffffffffffff16146114b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b0906142cb565b60405180910390fd5b80600d8190555050565b606060078054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561155b5780601f106115305761010080835404028352916020019161155b565b820191906000526020600020905b81548152906001019060200180831161153e57829003601f168201915b5050505050905090565b6000600d54905090565b611577611ec2565b73ffffffffffffffffffffffffffffffffffffffff16611595611413565b73ffffffffffffffffffffffffffffffffffffffff16146115eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e2906142cb565b60405180910390fd5b80600b9080519060200190611601929190613005565b5050565b600d5481565b611613611ec2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611681576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116789061410b565b60405180910390fd5b806005600061168e611ec2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661173b611ec2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611780919061402e565b60405180910390a35050565b61179d611797611ec2565b83611f98565b6117dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d39061434b565b60405180910390fd5b6117e88484848461238f565b50505050565b60006117f8610c09565b9050601060009054906101000a900460ff16611849576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118409061412b565b60405180910390fd5b60008211801561185c5750600160140182105b61189b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118929061420b565b60405180910390fd5b600161271001828201106118e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118db9061436b565b60405180910390fd5b6118f982600d546123eb90919063ffffffff16565b34101561193b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119329061414b565b60405180910390fd5b60005b8281101561195f5761195233828401612321565b808060010191505061193e565b505050565b606061196f82611ea5565b6119ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a59061430b565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611a575780601f10611a2c57610100808354040283529160200191611a57565b820191906000526020600020905b815481529060010190602001808311611a3a57829003601f168201915b505050505090506000611a68610f5e565b9050600081511415611a7e578192505050611ae2565b600082511115611ab3578082604051602001611a9b929190613f55565b60405160208183030381529060405292505050611ae2565b80611abd8561245b565b604051602001611ace929190613f55565b604051602081830303815290604052925050505b919050565b600f5481565b611af5611ec2565b73ffffffffffffffffffffffffffffffffffffffff16611b13611413565b73ffffffffffffffffffffffffffffffffffffffff1614611b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b60906142cb565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550601060009054906101000a900460ff168015611bb157506000600f54145b15611bbf57611bbe6125a2565b5b565b61271081565b600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611c5d5780601f10611c3257610100808354040283529160200191611c5d565b820191906000526020600020905b815481529060010190602001808311611c4057829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d01611ec2565b73ffffffffffffffffffffffffffffffffffffffff16611d1f611413565b73ffffffffffffffffffffffffffffffffffffffff1614611d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6c906142cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddc906140ab565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611ebb82600261266d90919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f3d83610f27565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f9182600001612687565b9050919050565b6000611fa382611ea5565b611fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd9906141ab565b60405180910390fd5b6000611fed83610f27565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061205c57508373ffffffffffffffffffffffffffffffffffffffff16612044846109d6565b73ffffffffffffffffffffffffffffffffffffffff16145b8061206d575061206c8185611c65565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661209682610f27565b73ffffffffffffffffffffffffffffffffffffffff16146120ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e3906142eb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561215c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612153906140eb565b60405180910390fd5b612167838383612698565b612172600082611eca565b6121c381600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061269d90919063ffffffff16565b5061221581600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206126b790919063ffffffff16565b5061222c818360026126d19092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061229c8360000183612706565b60001c905092915050565b6000806000806122ba8660000186612773565b915091508160001c8160001c9350935050509250929050565b80600990805190602001906122e9929190613005565b5050565b6000612300846000018460001b846127f6565b60001c90509392505050565b600061231a82600001612887565b9050919050565b61233b828260405180602001604052806000815250612898565b5050565b600082821115612384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237b9061416b565b60405180910390fd5b818303905092915050565b61239a848484612076565b6123a6848484846128f3565b6123e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123dc9061408b565b60405180910390fd5b50505050565b6000808314156123fe5760009050612455565b600082840290508284828161240f57fe5b0414612450576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124479061428b565b60405180910390fd5b809150505b92915050565b606060008214156124a3576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061259d565b600082905060005b600082146124cd578080600101915050600a82816124c557fe5b0491506124ab565b60008167ffffffffffffffff811180156124e657600080fd5b506040519080825280601f01601f1916602001820160405280156125195781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461259557600a848161253a57fe5b0660300160f81b8282806001900393508151811061255457fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161258d57fe5b049350612528565b819450505050505b919050565b6000600f54146125e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125de906141cb565b60405180910390fd5b600044426040516020016125fc929190613f79565b6040516020818303038152906040528051906020012060001c905060ff818161262157fe5b0660010190508043101561263457600190505b60008143039050612710814060001c8161264a57fe5b06600f819055506000600f541415612669576001600f5401600f819055505b5050565b600061267f836000018360001b612a57565b905092915050565b600081600001805490509050919050565b505050565b60006126af836000018360001b612a7a565b905092915050565b60006126c9836000018360001b612b62565b905092915050565b60006126fd846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612bd2565b90509392505050565b600081836000018054905011612751576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127489061406b565b60405180910390fd5b82600001828154811061276057fe5b9060005260206000200154905092915050565b600080828460000180549050116127bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b69061424b565b60405180910390fd5b60008460000184815481106127d057fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284f9190614049565b60405180910390fd5b5084600001600182038154811061286b57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6128a28383612cae565b6128af60008484846128f3565b6128ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e59061408b565b60405180910390fd5b505050565b60006129148473ffffffffffffffffffffffffffffffffffffffff16612e3c565b6129215760019050612a4f565b60006129e863150b7a0260e01b612936611ec2565b88878760405160240161294c9493929190613fc0565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614640603291398773ffffffffffffffffffffffffffffffffffffffff16612e4f9092919063ffffffff16565b9050600081806020019051810190612a0091906133b9565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114612b565760006001820390506000600186600001805490500390506000866000018281548110612ac557fe5b9060005260206000200154905080876000018481548110612ae257fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612b1a57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612b5c565b60009150505b92915050565b6000612b6e8383612e67565b612bc7578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612bcc565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415612c7957846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050612ca7565b82856000016001830381548110612c8c57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d159061426b565b60405180910390fd5b612d2781611ea5565b15612d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5e906140cb565b60405180910390fd5b612d7360008383612698565b612dc481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206126b790919063ffffffff16565b50612ddb818360026126d19092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060612e5e8484600085612e8a565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015612ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec69061418b565b60405180910390fd5b612ed885612e3c565b612f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0e9061438b565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051612f409190613f3e565b60006040518083038185875af1925050503d8060008114612f7d576040519150601f19603f3d011682016040523d82523d6000602084013e612f82565b606091505b5091509150612f92828286612f9e565b92505050949350505050565b60608315612fae57829050612ffe565b600083511115612fc15782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff59190614049565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261303b5760008555613082565b82601f1061305457805160ff1916838001178555613082565b82800160010185558215613082579182015b82811115613081578251825591602001919060010190613066565b5b50905061308f9190613093565b5090565b5b808211156130ac576000816000905550600101613094565b5090565b60006130c36130be84614417565b6143e6565b9050828152602081018484840111156130db57600080fd5b6130e6848285614584565b509392505050565b60006131016130fc84614447565b6143e6565b90508281526020810184848401111561311957600080fd5b613124848285614584565b509392505050565b60008135905061313b816145e3565b92915050565b600081359050613150816145fa565b92915050565b60008135905061316581614611565b92915050565b60008151905061317a81614611565b92915050565b600082601f83011261319157600080fd5b81356131a18482602086016130b0565b91505092915050565b600082601f8301126131bb57600080fd5b81356131cb8482602086016130ee565b91505092915050565b6000813590506131e381614628565b92915050565b6000602082840312156131fb57600080fd5b60006132098482850161312c565b91505092915050565b6000806040838503121561322557600080fd5b60006132338582860161312c565b92505060206132448582860161312c565b9150509250929050565b60008060006060848603121561326357600080fd5b60006132718682870161312c565b93505060206132828682870161312c565b9250506040613293868287016131d4565b9150509250925092565b600080600080608085870312156132b357600080fd5b60006132c18782880161312c565b94505060206132d28782880161312c565b93505060406132e3878288016131d4565b925050606085013567ffffffffffffffff81111561330057600080fd5b61330c87828801613180565b91505092959194509250565b6000806040838503121561332b57600080fd5b60006133398582860161312c565b925050602061334a85828601613141565b9150509250929050565b6000806040838503121561336757600080fd5b60006133758582860161312c565b9250506020613386858286016131d4565b9150509250929050565b6000602082840312156133a257600080fd5b60006133b084828501613156565b91505092915050565b6000602082840312156133cb57600080fd5b60006133d98482850161316b565b91505092915050565b6000602082840312156133f457600080fd5b600082013567ffffffffffffffff81111561340e57600080fd5b61341a848285016131aa565b91505092915050565b60006020828403121561343557600080fd5b6000613443848285016131d4565b91505092915050565b60006134588383613f09565b60208301905092915050565b61346d81614510565b82525050565b61347c816144fe565b82525050565b600061348d82614487565b61349781856144b5565b93506134a283614477565b8060005b838110156134d35781516134ba888261344c565b97506134c5836144a8565b9250506001810190506134a6565b5085935050505092915050565b6134e981614522565b82525050565b60006134fa82614492565b61350481856144c6565b9350613514818560208601614593565b61351d816145d2565b840191505092915050565b600061353382614492565b61353d81856144d7565b935061354d818560208601614593565b80840191505092915050565b60006135648261449d565b61356e81856144e2565b935061357e818560208601614593565b613587816145d2565b840191505092915050565b600061359d8261449d565b6135a781856144f3565b93506135b7818560208601614593565b80840191505092915050565b60006135d06022836144e2565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006136366032836144e2565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061369c6026836144e2565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613702601c836144e2565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006137426024836144e2565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137a86019836144e2565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006137e86012836144e2565b91507f53616c65206973206e6f742061637469766500000000000000000000000000006000830152602082019050919050565b6000613828601f836144e2565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000613868601e836144e2565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b60006138a86026836144e2565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061390e602c836144e2565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613974601d836144e2565b91507f5374617274696e6720696e64657820697320616c7265616479207365740000006000830152602082019050919050565b60006139b46038836144e2565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613a1a603e836144e2565b91507f45786365656473206d6178696d756d20626561727320796f752063616e20707560008301527f72636861736520696e20612073696e676c65207472616e73616374696f6e00006020830152604082019050919050565b6000613a80602a836144e2565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ae66022836144e2565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b4c6020836144e2565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613b8c6021836144e2565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bf2602c836144e2565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613c586020836144e2565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613c986029836144e2565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cfe602f836144e2565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613d646021836144e2565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613dca6031836144e2565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613e30602c836144e2565b91507f45786365656473206d6178696d756d20626561727320617661696c61626c652060008301527f666f7220707572636861736500000000000000000000000000000000000000006020830152604082019050919050565b6000613e96601d836144e2565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b6000613ed66018836144e2565b91507f4e6f7420656e6f756768207265736572766573206c65667400000000000000006000830152602082019050919050565b613f128161457a565b82525050565b613f218161457a565b82525050565b613f38613f338261457a565b6145c6565b82525050565b6000613f4a8284613528565b915081905092915050565b6000613f618285613592565b9150613f6d8284613592565b91508190509392505050565b6000613f858285613f27565b602082019150613f958284613f27565b6020820191508190509392505050565b6000602082019050613fba6000830184613473565b92915050565b6000608082019050613fd56000830187613464565b613fe26020830186613473565b613fef6040830185613f18565b818103606083015261400181846134ef565b905095945050505050565b600060208201905081810360008301526140268184613482565b905092915050565b600060208201905061404360008301846134e0565b92915050565b600060208201905081810360008301526140638184613559565b905092915050565b60006020820190508181036000830152614084816135c3565b9050919050565b600060208201905081810360008301526140a481613629565b9050919050565b600060208201905081810360008301526140c48161368f565b9050919050565b600060208201905081810360008301526140e4816136f5565b9050919050565b6000602082019050818103600083015261410481613735565b9050919050565b600060208201905081810360008301526141248161379b565b9050919050565b60006020820190508181036000830152614144816137db565b9050919050565b600060208201905081810360008301526141648161381b565b9050919050565b600060208201905081810360008301526141848161385b565b9050919050565b600060208201905081810360008301526141a48161389b565b9050919050565b600060208201905081810360008301526141c481613901565b9050919050565b600060208201905081810360008301526141e481613967565b9050919050565b60006020820190508181036000830152614204816139a7565b9050919050565b6000602082019050818103600083015261422481613a0d565b9050919050565b6000602082019050818103600083015261424481613a73565b9050919050565b6000602082019050818103600083015261426481613ad9565b9050919050565b6000602082019050818103600083015261428481613b3f565b9050919050565b600060208201905081810360008301526142a481613b7f565b9050919050565b600060208201905081810360008301526142c481613be5565b9050919050565b600060208201905081810360008301526142e481613c4b565b9050919050565b6000602082019050818103600083015261430481613c8b565b9050919050565b6000602082019050818103600083015261432481613cf1565b9050919050565b6000602082019050818103600083015261434481613d57565b9050919050565b6000602082019050818103600083015261436481613dbd565b9050919050565b6000602082019050818103600083015261438481613e23565b9050919050565b600060208201905081810360008301526143a481613e89565b9050919050565b600060208201905081810360008301526143c481613ec9565b9050919050565b60006020820190506143e06000830184613f18565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561440d5761440c6145d0565b5b8060405250919050565b600067ffffffffffffffff821115614432576144316145d0565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614462576144616145d0565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006145098261455a565b9050919050565b600061451b8261455a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156145b1578082015181840152602081019050614596565b838111156145c0576000848401525b50505050565b6000819050919050565bfe5b6000601f19601f8301169050919050565b6145ec816144fe565b81146145f757600080fd5b50565b61460381614522565b811461460e57600080fd5b50565b61461a8161452e565b811461462557600080fd5b50565b6146318161457a565b811461463c57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220c1397f37e28b10de93944f31a6a4504d40f0a3f9dc9bd2b7ac005391d78f8fa264736f6c63430007060033

Deployed Bytecode

0x6080604052600436106102255760003560e01c8063715018a611610123578063a22cb465116100ab578063ce03ec931161006f578063ce03ec93146107fa578063da649ed714610811578063e2d8d80e1461083c578063e985e9c514610867578063f2fde38b146108a457610225565b8063a22cb46514610724578063b88d4fde1461074d578063c358575c14610776578063c87b56dd14610792578063cb774d47146107cf57610225565b806391b7f5ed116100f257806391b7f5ed1461065157806395d89b411461067a57806398d5fdca146106a55780639b30d6d9146106d0578063a035b1fe146106f957610225565b8063715018a6146105a95780637fdb7304146105c05780638462151c146105e95780638da5cb5b1461062657610225565b80633ccfd60b116101b157806359283a861161017557806359283a86146104ae5780635d9f5a63146104d95780636352211e146105045780636c0360eb1461054157806370a082311461056c57610225565b80633ccfd60b146103dd57806342842e0e146103f45780634f6ccce71461041d57806355f804b31461045a578063564566a81461048357610225565b806310969523116101f857806310969523146102f857806318160ddd146103215780631c23d66c1461034c57806323b872dd146103775780632f745c59146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613390565b6108cd565b60405161025e919061402e565b60405180910390f35b34801561027357600080fd5b5061027c610934565b6040516102899190614049565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613423565b6109d6565b6040516102c69190613fa5565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613354565b610a5b565b005b34801561030457600080fd5b5061031f600480360381019061031a91906133e2565b610b73565b005b34801561032d57600080fd5b50610336610c09565b60405161034391906143cb565b60405180910390f35b34801561035857600080fd5b50610361610c1a565b60405161036e9190614049565b60405180910390f35b34801561038357600080fd5b5061039e6004803603810190610399919061324e565b610cb8565b005b3480156103ac57600080fd5b506103c760048036038101906103c29190613354565b610d18565b6040516103d491906143cb565b60405180910390f35b3480156103e957600080fd5b506103f2610d73565b005b34801561040057600080fd5b5061041b6004803603810190610416919061324e565b610e3e565b005b34801561042957600080fd5b50610444600480360381019061043f9190613423565b610e5e565b60405161045191906143cb565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c91906133e2565b610e81565b005b34801561048f57600080fd5b50610498610f09565b6040516104a5919061402e565b60405180910390f35b3480156104ba57600080fd5b506104c3610f1c565b6040516104d091906143cb565b60405180910390f35b3480156104e557600080fd5b506104ee610f22565b6040516104fb91906143cb565b60405180910390f35b34801561051057600080fd5b5061052b60048036038101906105269190613423565b610f27565b6040516105389190613fa5565b60405180910390f35b34801561054d57600080fd5b50610556610f5e565b6040516105639190614049565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e91906131e9565b611000565b6040516105a091906143cb565b60405180910390f35b3480156105b557600080fd5b506105be6110bf565b005b3480156105cc57600080fd5b506105e760048036038101906105e29190613354565b6111fc565b005b3480156105f557600080fd5b50610610600480360381019061060b91906131e9565b61131a565b60405161061d919061400c565b60405180910390f35b34801561063257600080fd5b5061063b611413565b6040516106489190613fa5565b60405180910390f35b34801561065d57600080fd5b5061067860048036038101906106739190613423565b61143d565b005b34801561068657600080fd5b5061068f6114c3565b60405161069c9190614049565b60405180910390f35b3480156106b157600080fd5b506106ba611565565b6040516106c791906143cb565b60405180910390f35b3480156106dc57600080fd5b506106f760048036038101906106f291906133e2565b61156f565b005b34801561070557600080fd5b5061070e611605565b60405161071b91906143cb565b60405180910390f35b34801561073057600080fd5b5061074b60048036038101906107469190613318565b61160b565b005b34801561075957600080fd5b50610774600480360381019061076f919061329d565b61178c565b005b610790600480360381019061078b9190613423565b6117ee565b005b34801561079e57600080fd5b506107b960048036038101906107b49190613423565b611964565b6040516107c69190614049565b60405180910390f35b3480156107db57600080fd5b506107e4611ae7565b6040516107f191906143cb565b60405180910390f35b34801561080657600080fd5b5061080f611aed565b005b34801561081d57600080fd5b50610826611bc1565b60405161083391906143cb565b60405180910390f35b34801561084857600080fd5b50610851611bc7565b60405161085e9190614049565b60405180910390f35b34801561087357600080fd5b5061088e60048036038101906108899190613212565b611c65565b60405161089b919061402e565b60405180910390f35b3480156108b057600080fd5b506108cb60048036038101906108c691906131e9565b611cf9565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109cc5780601f106109a1576101008083540402835291602001916109cc565b820191906000526020600020905b8154815290600101906020018083116109af57829003601f168201915b5050505050905090565b60006109e182611ea5565b610a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a17906142ab565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6682610f27565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ace9061432b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610af6611ec2565b73ffffffffffffffffffffffffffffffffffffffff161480610b255750610b2481610b1f611ec2565b611c65565b5b610b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5b906141eb565b60405180910390fd5b610b6e8383611eca565b505050565b610b7b611ec2565b73ffffffffffffffffffffffffffffffffffffffff16610b99611413565b73ffffffffffffffffffffffffffffffffffffffff1614610bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be6906142cb565b60405180910390fd5b80600c9080519060200190610c05929190613005565b5050565b6000610c156002611f83565b905090565b600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610cb05780601f10610c8557610100808354040283529160200191610cb0565b820191906000526020600020905b815481529060010190602001808311610c9357829003601f168201915b505050505081565b610cc9610cc3611ec2565b82611f98565b610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff9061434b565b60405180910390fd5b610d13838383612076565b505050565b6000610d6b82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061228d90919063ffffffff16565b905092915050565b610d7b611ec2565b73ffffffffffffffffffffffffffffffffffffffff16610d99611413565b73ffffffffffffffffffffffffffffffffffffffff1614610def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de6906142cb565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e3a573d6000803e3d6000fd5b5050565b610e598383836040518060200160405280600081525061178c565b505050565b600080610e758360026122a790919063ffffffff16565b50905080915050919050565b610e89611ec2565b73ffffffffffffffffffffffffffffffffffffffff16610ea7611413565b73ffffffffffffffffffffffffffffffffffffffff1614610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef4906142cb565b60405180910390fd5b610f06816122d3565b50565b601060009054906101000a900460ff1681565b600e5481565b601481565b6000610f57826040518060600160405280602981526020016146726029913960026122ed9092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ff65780601f10610fcb57610100808354040283529160200191610ff6565b820191906000526020600020905b815481529060010190602001808311610fd957829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611071576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110689061422b565b60405180910390fd5b6110b8600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061230c565b9050919050565b6110c7611ec2565b73ffffffffffffffffffffffffffffffffffffffff166110e5611413565b73ffffffffffffffffffffffffffffffffffffffff161461113b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611132906142cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611204611ec2565b73ffffffffffffffffffffffffffffffffffffffff16611222611413565b73ffffffffffffffffffffffffffffffffffffffff1614611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f906142cb565b60405180910390fd5b6000611282610c09565b90506000821180156112965750600e548211155b6112d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cc906143ab565b60405180910390fd5b60005b828110156112f9576112ec84828401612321565b80806001019150506112d8565b5061130f82600e5461233f90919063ffffffff16565b600e81905550505050565b6060600061132783611000565b9050600081141561138257600067ffffffffffffffff8111801561134a57600080fd5b506040519080825280602002602001820160405280156113795781602001602082028036833780820191505090505b5091505061140e565b60008167ffffffffffffffff8111801561139b57600080fd5b506040519080825280602002602001820160405280156113ca5781602001602082028036833780820191505090505b50905060005b82811015611407576113e28582610d18565b8282815181106113ee57fe5b60200260200101818152505080806001019150506113d0565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611445611ec2565b73ffffffffffffffffffffffffffffffffffffffff16611463611413565b73ffffffffffffffffffffffffffffffffffffffff16146114b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b0906142cb565b60405180910390fd5b80600d8190555050565b606060078054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561155b5780601f106115305761010080835404028352916020019161155b565b820191906000526020600020905b81548152906001019060200180831161153e57829003601f168201915b5050505050905090565b6000600d54905090565b611577611ec2565b73ffffffffffffffffffffffffffffffffffffffff16611595611413565b73ffffffffffffffffffffffffffffffffffffffff16146115eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e2906142cb565b60405180910390fd5b80600b9080519060200190611601929190613005565b5050565b600d5481565b611613611ec2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611681576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116789061410b565b60405180910390fd5b806005600061168e611ec2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661173b611ec2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611780919061402e565b60405180910390a35050565b61179d611797611ec2565b83611f98565b6117dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d39061434b565b60405180910390fd5b6117e88484848461238f565b50505050565b60006117f8610c09565b9050601060009054906101000a900460ff16611849576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118409061412b565b60405180910390fd5b60008211801561185c5750600160140182105b61189b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118929061420b565b60405180910390fd5b600161271001828201106118e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118db9061436b565b60405180910390fd5b6118f982600d546123eb90919063ffffffff16565b34101561193b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119329061414b565b60405180910390fd5b60005b8281101561195f5761195233828401612321565b808060010191505061193e565b505050565b606061196f82611ea5565b6119ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a59061430b565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611a575780601f10611a2c57610100808354040283529160200191611a57565b820191906000526020600020905b815481529060010190602001808311611a3a57829003601f168201915b505050505090506000611a68610f5e565b9050600081511415611a7e578192505050611ae2565b600082511115611ab3578082604051602001611a9b929190613f55565b60405160208183030381529060405292505050611ae2565b80611abd8561245b565b604051602001611ace929190613f55565b604051602081830303815290604052925050505b919050565b600f5481565b611af5611ec2565b73ffffffffffffffffffffffffffffffffffffffff16611b13611413565b73ffffffffffffffffffffffffffffffffffffffff1614611b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b60906142cb565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550601060009054906101000a900460ff168015611bb157506000600f54145b15611bbf57611bbe6125a2565b5b565b61271081565b600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611c5d5780601f10611c3257610100808354040283529160200191611c5d565b820191906000526020600020905b815481529060010190602001808311611c4057829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d01611ec2565b73ffffffffffffffffffffffffffffffffffffffff16611d1f611413565b73ffffffffffffffffffffffffffffffffffffffff1614611d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6c906142cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddc906140ab565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611ebb82600261266d90919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f3d83610f27565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f9182600001612687565b9050919050565b6000611fa382611ea5565b611fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd9906141ab565b60405180910390fd5b6000611fed83610f27565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061205c57508373ffffffffffffffffffffffffffffffffffffffff16612044846109d6565b73ffffffffffffffffffffffffffffffffffffffff16145b8061206d575061206c8185611c65565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661209682610f27565b73ffffffffffffffffffffffffffffffffffffffff16146120ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e3906142eb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561215c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612153906140eb565b60405180910390fd5b612167838383612698565b612172600082611eca565b6121c381600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061269d90919063ffffffff16565b5061221581600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206126b790919063ffffffff16565b5061222c818360026126d19092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061229c8360000183612706565b60001c905092915050565b6000806000806122ba8660000186612773565b915091508160001c8160001c9350935050509250929050565b80600990805190602001906122e9929190613005565b5050565b6000612300846000018460001b846127f6565b60001c90509392505050565b600061231a82600001612887565b9050919050565b61233b828260405180602001604052806000815250612898565b5050565b600082821115612384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237b9061416b565b60405180910390fd5b818303905092915050565b61239a848484612076565b6123a6848484846128f3565b6123e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123dc9061408b565b60405180910390fd5b50505050565b6000808314156123fe5760009050612455565b600082840290508284828161240f57fe5b0414612450576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124479061428b565b60405180910390fd5b809150505b92915050565b606060008214156124a3576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061259d565b600082905060005b600082146124cd578080600101915050600a82816124c557fe5b0491506124ab565b60008167ffffffffffffffff811180156124e657600080fd5b506040519080825280601f01601f1916602001820160405280156125195781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461259557600a848161253a57fe5b0660300160f81b8282806001900393508151811061255457fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161258d57fe5b049350612528565b819450505050505b919050565b6000600f54146125e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125de906141cb565b60405180910390fd5b600044426040516020016125fc929190613f79565b6040516020818303038152906040528051906020012060001c905060ff818161262157fe5b0660010190508043101561263457600190505b60008143039050612710814060001c8161264a57fe5b06600f819055506000600f541415612669576001600f5401600f819055505b5050565b600061267f836000018360001b612a57565b905092915050565b600081600001805490509050919050565b505050565b60006126af836000018360001b612a7a565b905092915050565b60006126c9836000018360001b612b62565b905092915050565b60006126fd846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612bd2565b90509392505050565b600081836000018054905011612751576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127489061406b565b60405180910390fd5b82600001828154811061276057fe5b9060005260206000200154905092915050565b600080828460000180549050116127bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b69061424b565b60405180910390fd5b60008460000184815481106127d057fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284f9190614049565b60405180910390fd5b5084600001600182038154811061286b57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6128a28383612cae565b6128af60008484846128f3565b6128ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e59061408b565b60405180910390fd5b505050565b60006129148473ffffffffffffffffffffffffffffffffffffffff16612e3c565b6129215760019050612a4f565b60006129e863150b7a0260e01b612936611ec2565b88878760405160240161294c9493929190613fc0565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614640603291398773ffffffffffffffffffffffffffffffffffffffff16612e4f9092919063ffffffff16565b9050600081806020019051810190612a0091906133b9565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114612b565760006001820390506000600186600001805490500390506000866000018281548110612ac557fe5b9060005260206000200154905080876000018481548110612ae257fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612b1a57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612b5c565b60009150505b92915050565b6000612b6e8383612e67565b612bc7578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612bcc565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415612c7957846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050612ca7565b82856000016001830381548110612c8c57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d159061426b565b60405180910390fd5b612d2781611ea5565b15612d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5e906140cb565b60405180910390fd5b612d7360008383612698565b612dc481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206126b790919063ffffffff16565b50612ddb818360026126d19092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060612e5e8484600085612e8a565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015612ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec69061418b565b60405180910390fd5b612ed885612e3c565b612f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0e9061438b565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051612f409190613f3e565b60006040518083038185875af1925050503d8060008114612f7d576040519150601f19603f3d011682016040523d82523d6000602084013e612f82565b606091505b5091509150612f92828286612f9e565b92505050949350505050565b60608315612fae57829050612ffe565b600083511115612fc15782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff59190614049565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261303b5760008555613082565b82601f1061305457805160ff1916838001178555613082565b82800160010185558215613082579182015b82811115613081578251825591602001919060010190613066565b5b50905061308f9190613093565b5090565b5b808211156130ac576000816000905550600101613094565b5090565b60006130c36130be84614417565b6143e6565b9050828152602081018484840111156130db57600080fd5b6130e6848285614584565b509392505050565b60006131016130fc84614447565b6143e6565b90508281526020810184848401111561311957600080fd5b613124848285614584565b509392505050565b60008135905061313b816145e3565b92915050565b600081359050613150816145fa565b92915050565b60008135905061316581614611565b92915050565b60008151905061317a81614611565b92915050565b600082601f83011261319157600080fd5b81356131a18482602086016130b0565b91505092915050565b600082601f8301126131bb57600080fd5b81356131cb8482602086016130ee565b91505092915050565b6000813590506131e381614628565b92915050565b6000602082840312156131fb57600080fd5b60006132098482850161312c565b91505092915050565b6000806040838503121561322557600080fd5b60006132338582860161312c565b92505060206132448582860161312c565b9150509250929050565b60008060006060848603121561326357600080fd5b60006132718682870161312c565b93505060206132828682870161312c565b9250506040613293868287016131d4565b9150509250925092565b600080600080608085870312156132b357600080fd5b60006132c18782880161312c565b94505060206132d28782880161312c565b93505060406132e3878288016131d4565b925050606085013567ffffffffffffffff81111561330057600080fd5b61330c87828801613180565b91505092959194509250565b6000806040838503121561332b57600080fd5b60006133398582860161312c565b925050602061334a85828601613141565b9150509250929050565b6000806040838503121561336757600080fd5b60006133758582860161312c565b9250506020613386858286016131d4565b9150509250929050565b6000602082840312156133a257600080fd5b60006133b084828501613156565b91505092915050565b6000602082840312156133cb57600080fd5b60006133d98482850161316b565b91505092915050565b6000602082840312156133f457600080fd5b600082013567ffffffffffffffff81111561340e57600080fd5b61341a848285016131aa565b91505092915050565b60006020828403121561343557600080fd5b6000613443848285016131d4565b91505092915050565b60006134588383613f09565b60208301905092915050565b61346d81614510565b82525050565b61347c816144fe565b82525050565b600061348d82614487565b61349781856144b5565b93506134a283614477565b8060005b838110156134d35781516134ba888261344c565b97506134c5836144a8565b9250506001810190506134a6565b5085935050505092915050565b6134e981614522565b82525050565b60006134fa82614492565b61350481856144c6565b9350613514818560208601614593565b61351d816145d2565b840191505092915050565b600061353382614492565b61353d81856144d7565b935061354d818560208601614593565b80840191505092915050565b60006135648261449d565b61356e81856144e2565b935061357e818560208601614593565b613587816145d2565b840191505092915050565b600061359d8261449d565b6135a781856144f3565b93506135b7818560208601614593565b80840191505092915050565b60006135d06022836144e2565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006136366032836144e2565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061369c6026836144e2565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613702601c836144e2565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006137426024836144e2565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137a86019836144e2565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006137e86012836144e2565b91507f53616c65206973206e6f742061637469766500000000000000000000000000006000830152602082019050919050565b6000613828601f836144e2565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000613868601e836144e2565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b60006138a86026836144e2565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061390e602c836144e2565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613974601d836144e2565b91507f5374617274696e6720696e64657820697320616c7265616479207365740000006000830152602082019050919050565b60006139b46038836144e2565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613a1a603e836144e2565b91507f45786365656473206d6178696d756d20626561727320796f752063616e20707560008301527f72636861736520696e20612073696e676c65207472616e73616374696f6e00006020830152604082019050919050565b6000613a80602a836144e2565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ae66022836144e2565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b4c6020836144e2565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613b8c6021836144e2565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bf2602c836144e2565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613c586020836144e2565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613c986029836144e2565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cfe602f836144e2565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613d646021836144e2565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613dca6031836144e2565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613e30602c836144e2565b91507f45786365656473206d6178696d756d20626561727320617661696c61626c652060008301527f666f7220707572636861736500000000000000000000000000000000000000006020830152604082019050919050565b6000613e96601d836144e2565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b6000613ed66018836144e2565b91507f4e6f7420656e6f756768207265736572766573206c65667400000000000000006000830152602082019050919050565b613f128161457a565b82525050565b613f218161457a565b82525050565b613f38613f338261457a565b6145c6565b82525050565b6000613f4a8284613528565b915081905092915050565b6000613f618285613592565b9150613f6d8284613592565b91508190509392505050565b6000613f858285613f27565b602082019150613f958284613f27565b6020820191508190509392505050565b6000602082019050613fba6000830184613473565b92915050565b6000608082019050613fd56000830187613464565b613fe26020830186613473565b613fef6040830185613f18565b818103606083015261400181846134ef565b905095945050505050565b600060208201905081810360008301526140268184613482565b905092915050565b600060208201905061404360008301846134e0565b92915050565b600060208201905081810360008301526140638184613559565b905092915050565b60006020820190508181036000830152614084816135c3565b9050919050565b600060208201905081810360008301526140a481613629565b9050919050565b600060208201905081810360008301526140c48161368f565b9050919050565b600060208201905081810360008301526140e4816136f5565b9050919050565b6000602082019050818103600083015261410481613735565b9050919050565b600060208201905081810360008301526141248161379b565b9050919050565b60006020820190508181036000830152614144816137db565b9050919050565b600060208201905081810360008301526141648161381b565b9050919050565b600060208201905081810360008301526141848161385b565b9050919050565b600060208201905081810360008301526141a48161389b565b9050919050565b600060208201905081810360008301526141c481613901565b9050919050565b600060208201905081810360008301526141e481613967565b9050919050565b60006020820190508181036000830152614204816139a7565b9050919050565b6000602082019050818103600083015261422481613a0d565b9050919050565b6000602082019050818103600083015261424481613a73565b9050919050565b6000602082019050818103600083015261426481613ad9565b9050919050565b6000602082019050818103600083015261428481613b3f565b9050919050565b600060208201905081810360008301526142a481613b7f565b9050919050565b600060208201905081810360008301526142c481613be5565b9050919050565b600060208201905081810360008301526142e481613c4b565b9050919050565b6000602082019050818103600083015261430481613c8b565b9050919050565b6000602082019050818103600083015261432481613cf1565b9050919050565b6000602082019050818103600083015261434481613d57565b9050919050565b6000602082019050818103600083015261436481613dbd565b9050919050565b6000602082019050818103600083015261438481613e23565b9050919050565b600060208201905081810360008301526143a481613e89565b9050919050565b600060208201905081810360008301526143c481613ec9565b9050919050565b60006020820190506143e06000830184613f18565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561440d5761440c6145d0565b5b8060405250919050565b600067ffffffffffffffff821115614432576144316145d0565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614462576144616145d0565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006145098261455a565b9050919050565b600061451b8261455a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156145b1578082015181840152602081019050614596565b838111156145c0576000848401525b50505050565b6000819050919050565bfe5b6000601f19601f8301169050919050565b6145ec816144fe565b81146145f757600080fd5b50565b61460381614522565b811461460e57600080fd5b50565b61461a8161452e565b811461462557600080fd5b50565b6146318161457a565b811461463c57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220c1397f37e28b10de93944f31a6a4504d40f0a3f9dc9bd2b7ac005391d78f8fa264736f6c63430007060033

Deployed Bytecode Sourcemap

69762:3917:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10204:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51465:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54251:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53781:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70710:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53259:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69846:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55141:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53021:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70348:131;;;;;;;;;;;;;:::i;:::-;;55517:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53547:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71870:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70255:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70174:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69990:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51221:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52840:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50938:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66172:148;;;;;;;;;;;;;:::i;:::-;;70845:405;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72362:540;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65521:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72174:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51634:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72274:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70514:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70046:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54544:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55739:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71262:600;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51809:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70218:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71979:187;;;;;;;;;;;;;:::i;:::-;;69936:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69893:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54910:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66475:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10204:150;10289:4;10313:20;:33;10334:11;10313:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10306:40;;10204:150;;;:::o;51465:100::-;51519:13;51552:5;51545:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51465:100;:::o;54251:221::-;54327:7;54355:16;54363:7;54355;:16::i;:::-;54347:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54440:15;:24;54456:7;54440:24;;;;;;;;;;;;;;;;;;;;;54433:31;;54251:221;;;:::o;53781:404::-;53862:13;53878:23;53893:7;53878:14;:23::i;:::-;53862:39;;53926:5;53920:11;;:2;:11;;;;53912:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;54006:5;53990:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;54015:44;54039:5;54046:12;:10;:12::i;:::-;54015:23;:44::i;:::-;53990:69;53982:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;54156:21;54165:2;54169:7;54156:8;:21::i;:::-;53781:404;;;:::o;70710:127::-;65752:12;:10;:12::i;:::-;65741:23;;:7;:5;:7::i;:::-;:23;;;65733:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70814:15:::1;70796;:33;;;;;;;;;;;;:::i;:::-;;70710:127:::0;:::o;53259:211::-;53320:7;53441:21;:12;:19;:21::i;:::-;53434:28;;53259:211;:::o;69846:38::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55141:305::-;55302:41;55321:12;:10;:12::i;:::-;55335:7;55302:18;:41::i;:::-;55294:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;55410:28;55420:4;55426:2;55430:7;55410:9;:28::i;:::-;55141:305;;;:::o;53021:162::-;53118:7;53145:30;53169:5;53145:13;:20;53159:5;53145:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;53138:37;;53021:162;;;;:::o;70348:131::-;65752:12;:10;:12::i;:::-;65741:23;;:7;:5;:7::i;:::-;:23;;;65733:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70396:12:::1;70411:21;70396:36;;70443:10;:19;;:28;70463:7;70443:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;65812:1;70348:131::o:0;55517:151::-;55621:39;55638:4;55644:2;55648:7;55621:39;;;;;;;;;;;;:16;:39::i;:::-;55517:151;;;:::o;53547:172::-;53622:7;53643:15;53664:22;53680:5;53664:12;:15;;:22;;;;:::i;:::-;53642:44;;;53704:7;53697:14;;;53547:172;;;:::o;71870:101::-;65752:12;:10;:12::i;:::-;65741:23;;:7;:5;:7::i;:::-;:23;;;65733:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71942:21:::1;71954:8;71942:11;:21::i;:::-;71870:101:::0;:::o;70255:32::-;;;;;;;;;;;;;:::o;70174:35::-;;;;:::o;69990:47::-;70035:2;69990:47;:::o;51221:177::-;51293:7;51320:70;51337:7;51320:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;51313:77;;51221:177;;;:::o;52840:97::-;52888:13;52921:8;52914:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52840:97;:::o;50938:221::-;51010:7;51055:1;51038:19;;:5;:19;;;;51030:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;51122:29;:13;:20;51136:5;51122:20;;;;;;;;;;;;;;;:27;:29::i;:::-;51115:36;;50938:221;;;:::o;66172:148::-;65752:12;:10;:12::i;:::-;65741:23;;:7;:5;:7::i;:::-;:23;;;65733:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66279:1:::1;66242:40;;66263:6;;;;;;;;;;;66242:40;;;;;;;;;;;;66310:1;66293:6;;:19;;;;;;;;;;;;;;;;;;66172:148::o:0;70845:405::-;65752:12;:10;:12::i;:::-;65741:23;;:7;:5;:7::i;:::-;:23;;;65733:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70940:14:::1;70957:13;:11;:13::i;:::-;70940:30;;71006:1;70989:14;:18;:54;;;;;71029:14;;71011;:32;;70989:54;70981:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;71088:9;71083:98;71107:14;71103:1;:18;71083:98;;;71143:26;71153:3;71167:1;71158:6;:10;71143:9;:26::i;:::-;71123:3;;;;;;;71083:98;;;;71208:34;71227:14;71208;;:18;;:34;;;;:::i;:::-;71191:14;:51;;;;65812:1;70845:405:::0;;:::o;72362:540::-;72423:16;72453:18;72474:17;72484:6;72474:9;:17::i;:::-;72453:38;;72520:1;72506:10;:15;72502:393;;;72597:1;72583:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72576:23;;;;;72502:393;72632:23;72672:10;72658:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72632:51;;72698:13;72726:130;72750:10;72742:5;:18;72726:130;;;72806:34;72826:6;72834:5;72806:19;:34::i;:::-;72790:6;72797:5;72790:13;;;;;;;;;;;;;:50;;;;;72762:7;;;;;;;72726:130;;;72877:6;72870:13;;;;;72362:540;;;;:::o;65521:87::-;65567:7;65594:6;;;;;;;;;;;65587:13;;65521:87;:::o;72174:92::-;65752:12;:10;:12::i;:::-;65741:23;;:7;:5;:7::i;:::-;:23;;;65733:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72249:9:::1;72241:5;:17;;;;72174:92:::0;:::o;51634:104::-;51690:13;51723:7;51716:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51634:104;:::o;72274:80::-;72315:7;72341:5;;72334:12;;72274:80;:::o;70514:140::-;65752:12;:10;:12::i;:::-;65741:23;;:7;:5;:7::i;:::-;:23;;;65733:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70628:18:::1;70606:19;:40;;;;;;;;;;;;:::i;:::-;;70514:140:::0;:::o;70046:40::-;;;;:::o;54544:295::-;54659:12;:10;:12::i;:::-;54647:24;;:8;:24;;;;54639:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;54759:8;54714:18;:32;54733:12;:10;:12::i;:::-;54714:32;;;;;;;;;;;;;;;:42;54747:8;54714:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;54812:8;54783:48;;54798:12;:10;:12::i;:::-;54783:48;;;54822:8;54783:48;;;;;;:::i;:::-;;;;;;;;54544:295;;:::o;55739:285::-;55871:41;55890:12;:10;:12::i;:::-;55904:7;55871:18;:41::i;:::-;55863:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;55977:39;55991:4;55997:2;56001:7;56010:5;55977:13;:39::i;:::-;55739:285;;;;:::o;71262:600::-;71322:19;71344:13;:11;:13::i;:::-;71322:35;;71378:12;;;;;;;;;;;71370:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;71442:1;71433:6;:10;:45;;;;;71477:1;70035:2;71456:22;71447:6;:31;71433:45;71425:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;71599:1;69972:5;71587:13;71578:6;71564:11;:20;:36;71556:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;71681:17;71691:6;71681:5;;:9;;:17;;;;:::i;:::-;71668:9;:30;;71660:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;71759:9;71755:100;71778:6;71774:1;:10;71755:100;;;71805:38;71815:10;71841:1;71827:11;:15;71805:9;:38::i;:::-;71786:3;;;;;;;71755:100;;;;71262:600;;:::o;51809:792::-;51882:13;51916:16;51924:7;51916;:16::i;:::-;51908:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;51997:23;52023:10;:19;52034:7;52023:19;;;;;;;;;;;51997:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52053:18;52074:9;:7;:9::i;:::-;52053:30;;52181:1;52165:4;52159:18;:23;52155:72;;;52206:9;52199:16;;;;;;52155:72;52357:1;52337:9;52331:23;:27;52327:108;;;52406:4;52412:9;52389:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52375:48;;;;;;52327:108;52567:4;52573:18;:7;:16;:18::i;:::-;52550:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52536:57;;;;51809:792;;;;:::o;70218:28::-;;;;:::o;71979:187::-;65752:12;:10;:12::i;:::-;65741:23;;:7;:5;:7::i;:::-;:23;;;65733:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72049:12:::1;;;;;;;;;;;72048:13;72033:12;;:28;;;;;;;;;;;;;;;;;;72078:12;;;;;;;;;;;:34;;;;;72111:1;72094:13;;:18;72078:34;72074:85;;;72129:18;:16;:18::i;:::-;72074:85;71979:187::o:0;69936:41::-;69972:5;69936:41;:::o;69893:34::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54910:164::-;55007:4;55031:18;:25;55050:5;55031:25;;;;;;;;;;;;;;;:35;55057:8;55031:35;;;;;;;;;;;;;;;;;;;;;;;;;55024:42;;54910:164;;;;:::o;66475:244::-;65752:12;:10;:12::i;:::-;65741:23;;:7;:5;:7::i;:::-;:23;;;65733:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66584:1:::1;66564:22;;:8;:22;;;;66556:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;66674:8;66645:38;;66666:6;;;;;;;;;;;66645:38;;;;;;;;;;;;66703:8;66694:6;;:17;;;;;;;;;;;;;;;;;;66475:244:::0;:::o;57491:127::-;57556:4;57580:30;57602:7;57580:12;:21;;:30;;;;:::i;:::-;57573:37;;57491:127;;;:::o;668:106::-;721:15;756:10;749:17;;668:106;:::o;63509:192::-;63611:2;63584:15;:24;63600:7;63584:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;63667:7;63663:2;63629:46;;63638:23;63653:7;63638:14;:23::i;:::-;63629:46;;;;;;;;;;;;63509:192;;:::o;44231:123::-;44300:7;44327:19;44335:3;:10;;44327:7;:19::i;:::-;44320:26;;44231:123;;;:::o;57785:355::-;57878:4;57903:16;57911:7;57903;:16::i;:::-;57895:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;57979:13;57995:23;58010:7;57995:14;:23::i;:::-;57979:39;;58048:5;58037:16;;:7;:16;;;:51;;;;58081:7;58057:31;;:20;58069:7;58057:11;:20::i;:::-;:31;;;58037:51;:94;;;;58092:39;58116:5;58123:7;58092:23;:39::i;:::-;58037:94;58029:103;;;57785:355;;;;:::o;60921:599::-;61046:4;61019:31;;:23;61034:7;61019:14;:23::i;:::-;:31;;;61011:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;61147:1;61133:16;;:2;:16;;;;61125:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61203:39;61224:4;61230:2;61234:7;61203:20;:39::i;:::-;61307:29;61324:1;61328:7;61307:8;:29::i;:::-;61349:35;61376:7;61349:13;:19;61363:4;61349:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;61395:30;61417:7;61395:13;:17;61409:2;61395:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;61438:29;61455:7;61464:2;61438:12;:16;;:29;;;;;:::i;:::-;;61504:7;61500:2;61485:27;;61494:4;61485:27;;;;;;;;;;;;60921:599;;;:::o;36026:137::-;36097:7;36132:22;36136:3;:10;;36148:5;36132:3;:22::i;:::-;36124:31;;36117:38;;36026:137;;;;:::o;44693:236::-;44773:7;44782;44803:11;44816:13;44833:22;44837:3;:10;;44849:5;44833:3;:22::i;:::-;44802:53;;;;44882:3;44874:12;;44912:5;44904:14;;44866:55;;;;;;44693:236;;;;;:::o;62121:100::-;62205:8;62194;:19;;;;;;;;;;;;:::i;:::-;;62121:100;:::o;45979:213::-;46086:7;46137:44;46142:3;:10;;46162:3;46154:12;;46168;46137:4;:44::i;:::-;46129:53;;46106:78;;45979:213;;;;;:::o;35568:114::-;35628:7;35655:19;35663:3;:10;;35655:7;:19::i;:::-;35648:26;;35568:114;;;:::o;58483:110::-;58559:26;58569:2;58573:7;58559:26;;;;;;;;;;;;:9;:26::i;:::-;58483:110;;:::o;14224:158::-;14282:7;14315:1;14310;:6;;14302:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;14373:1;14369;:5;14362:12;;14224:158;;;;:::o;56906:272::-;57020:28;57030:4;57036:2;57040:7;57020:9;:28::i;:::-;57067:48;57090:4;57096:2;57100:7;57109:5;57067:22;:48::i;:::-;57059:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;56906:272;;;;:::o;14641:220::-;14699:7;14728:1;14723;:6;14719:20;;;14738:1;14731:8;;;;14719:20;14750:9;14766:1;14762;:5;14750:17;;14795:1;14790;14786;:5;;;;;;:10;14778:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;14852:1;14845:8;;;14641:220;;;;;:::o;46439:746::-;46495:13;46725:1;46716:5;:10;46712:53;;;46743:10;;;;;;;;;;;;;;;;;;;;;46712:53;46775:12;46790:5;46775:20;;46806:14;46831:78;46846:1;46838:4;:9;46831:78;;46864:8;;;;;;;46895:2;46887:10;;;;;;;;;46831:78;;;46919:19;46951:6;46941:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46919:39;;46969:13;46994:1;46985:6;:10;46969:26;;47013:5;47006:12;;47029:117;47044:1;47036:4;:9;47029:117;;47105:2;47098:4;:9;;;;;;47093:2;:14;47080:29;;47062:6;47069:7;;;;;;;47062:15;;;;;;;;;;;:47;;;;;;;;;;;47132:2;47124:10;;;;;;;;;47029:117;;;47170:6;47156:21;;;;;;46439:746;;;;:::o;72910:766::-;72983:1;72966:13;;:18;72958:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;73096:20;73151:16;73169:15;73134:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;73124:62;;;;;;73119:68;;73096:91;;73234:3;73219:12;:18;;;;;;73214:1;:24;73198:40;;73352:12;73337;:27;73333:76;;;73396:1;73381:16;;73333:76;73421:18;73457:12;73442;:27;73421:48;;69972:5;73511:10;73501:21;73496:27;;:39;;;;;;73480:13;:55;;;;73606:1;73589:13;;:18;73585:84;;;73656:1;73640:13;;:17;73624:13;:33;;;;73585:84;72910:766;;:::o;43992:151::-;44076:4;44100:35;44110:3;:10;;44130:3;44122:12;;44100:9;:35::i;:::-;44093:42;;43992:151;;;;:::o;40810:110::-;40866:7;40893:3;:12;;:19;;;;40886:26;;40810:110;;;:::o;64314:93::-;;;;:::o;35113:137::-;35183:4;35207:35;35215:3;:10;;35235:5;35227:14;;35207:7;:35::i;:::-;35200:42;;35113:137;;;;:::o;34806:131::-;34873:4;34897:32;34902:3;:10;;34922:5;34914:14;;34897:4;:32::i;:::-;34890:39;;34806:131;;;;:::o;43415:185::-;43504:4;43528:64;43533:3;:10;;43553:3;43545:12;;43583:5;43567:23;;43559:32;;43528:4;:64::i;:::-;43521:71;;43415:185;;;;;:::o;31064:204::-;31131:7;31180:5;31159:3;:11;;:18;;;;:26;31151:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31242:3;:11;;31254:5;31242:18;;;;;;;;;;;;;;;;31235:25;;31064:204;;;;:::o;41275:279::-;41342:7;41351;41401:5;41379:3;:12;;:19;;;;:27;41371:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;41458:22;41483:3;:12;;41496:5;41483:19;;;;;;;;;;;;;;;;;;41458:44;;41521:5;:10;;;41533:5;:12;;;41513:33;;;;;41275:279;;;;;:::o;42772:319::-;42866:7;42886:16;42905:3;:12;;:17;42918:3;42905:17;;;;;;;;;;;;42886:36;;42953:1;42941:8;:13;;42956:12;42933:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;43023:3;:12;;43047:1;43036:8;:12;43023:26;;;;;;;;;;;;;;;;;;:33;;;43016:40;;;42772:319;;;;;:::o;30611:109::-;30667:7;30694:3;:11;;:18;;;;30687:25;;30611:109;;;:::o;58820:250::-;58916:18;58922:2;58926:7;58916:5;:18::i;:::-;58953:54;58984:1;58988:2;58992:7;59001:5;58953:22;:54::i;:::-;58945:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;58820:250;;;:::o;62786:604::-;62907:4;62934:15;:2;:13;;;:15::i;:::-;62929:60;;62973:4;62966:11;;;;62929:60;62999:23;63025:252;63078:45;;;63138:12;:10;:12::i;:::-;63165:4;63184:7;63206:5;63041:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63025:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;62999:278;;63288:13;63315:10;63304:32;;;;;;;;;;;;:::i;:::-;63288:48;;47935:10;63365:16;;63355:26;;;:6;:26;;;;63347:35;;;;62786:604;;;;;;;:::o;40590:125::-;40661:4;40706:1;40685:3;:12;;:17;40698:3;40685:17;;;;;;;;;;;;:22;;40678:29;;40590:125;;;;:::o;28766:1544::-;28832:4;28950:18;28971:3;:12;;:19;28984:5;28971:19;;;;;;;;;;;;28950:40;;29021:1;29007:10;:15;29003:1300;;29369:21;29406:1;29393:10;:14;29369:38;;29422:17;29463:1;29442:3;:11;;:18;;;;:22;29422:42;;29709:17;29729:3;:11;;29741:9;29729:22;;;;;;;;;;;;;;;;29709:42;;29875:9;29846:3;:11;;29858:13;29846:26;;;;;;;;;;;;;;;:38;;;;29994:1;29978:13;:17;29952:3;:12;;:23;29965:9;29952:23;;;;;;;;;;;:43;;;;30104:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;30199:3;:12;;:19;30212:5;30199:19;;;;;;;;;;;30192:26;;;30242:4;30235:11;;;;;;;;29003:1300;30286:5;30279:12;;;28766:1544;;;;;:::o;28176:414::-;28239:4;28261:21;28271:3;28276:5;28261:9;:21::i;:::-;28256:327;;28299:3;:11;;28316:5;28299:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28482:3;:11;;:18;;;;28460:3;:12;;:19;28473:5;28460:19;;;;;;;;;;;:40;;;;28522:4;28515:11;;;;28256:327;28566:5;28559:12;;28176:414;;;;;:::o;38090:692::-;38166:4;38282:16;38301:3;:12;;:17;38314:3;38301:17;;;;;;;;;;;;38282:36;;38347:1;38335:8;:13;38331:444;;;38402:3;:12;;38420:38;;;;;;;;38437:3;38420:38;;;;38450:5;38420:38;;;38402:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38617:3;:12;;:19;;;;38597:3;:12;;:17;38610:3;38597:17;;;;;;;;;;;:39;;;;38658:4;38651:11;;;;;38331:444;38731:5;38695:3;:12;;38719:1;38708:8;:12;38695:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38758:5;38751:12;;;38090:692;;;;;;:::o;59406:404::-;59500:1;59486:16;;:2;:16;;;;59478:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;59559:16;59567:7;59559;:16::i;:::-;59558:17;59550:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;59621:45;59650:1;59654:2;59658:7;59621:20;:45::i;:::-;59679:30;59701:7;59679:13;:17;59693:2;59679:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;59722:29;59739:7;59748:2;59722:12;:16;;:29;;;;;:::i;:::-;;59794:7;59790:2;59769:33;;59786:1;59769:33;;;;;;;;;;;;59406:404;;:::o;19199:422::-;19259:4;19467:12;19578:7;19566:20;19558:28;;19612:1;19605:4;:8;19598:15;;;19199:422;;;:::o;22117:195::-;22220:12;22252:52;22274:6;22282:4;22288:1;22291:12;22252:21;:52::i;:::-;22245:59;;22117:195;;;;;:::o;30396:129::-;30469:4;30516:1;30493:3;:12;;:19;30506:5;30493:19;;;;;;;;;;;;:24;;30486:31;;30396:129;;;;:::o;23169:530::-;23296:12;23354:5;23329:21;:30;;23321:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;23421:18;23432:6;23421:10;:18::i;:::-;23413:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;23547:12;23561:23;23588:6;:11;;23608:5;23616:4;23588:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23546:75;;;;23639:52;23657:7;23666:10;23678:12;23639:17;:52::i;:::-;23632:59;;;;23169:530;;;;;;:::o;25709:742::-;25824:12;25853:7;25849:595;;;25884:10;25877:17;;;;25849:595;26018:1;25998:10;:17;:21;25994:439;;;26261:10;26255:17;26322:15;26309:10;26305:2;26301:19;26294:44;26209:148;26404:12;26397:20;;;;;;;;;;;:::i;:::-;;;;;;;;25709: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;8922:366::-;;9085:67;9149:2;9144:3;9085:67;:::i;:::-;9078:74;;9182:34;9178:1;9173:3;9169:11;9162:55;9248:4;9243:2;9238:3;9234:12;9227:26;9279:2;9274:3;9270:12;9263:19;;9068:220;;;:::o;9294:382::-;;9457:67;9521:2;9516:3;9457:67;:::i;:::-;9450:74;;9554:34;9550:1;9545:3;9541:11;9534:55;9620:20;9615:2;9610:3;9606:12;9599:42;9667:2;9662:3;9658:12;9651:19;;9440:236;;;:::o;9682:370::-;;9845:67;9909:2;9904:3;9845:67;:::i;:::-;9838:74;;9942:34;9938:1;9933:3;9929:11;9922:55;10008:8;10003:2;9998:3;9994:12;9987:30;10043:2;10038:3;10034:12;10027:19;;9828:224;;;:::o;10058:326::-;;10221:67;10285:2;10280:3;10221:67;:::i;:::-;10214:74;;10318:30;10314:1;10309:3;10305:11;10298:51;10375:2;10370:3;10366:12;10359:19;;10204:180;;;:::o;10390:368::-;;10553:67;10617:2;10612:3;10553:67;:::i;:::-;10546:74;;10650:34;10646:1;10641:3;10637:11;10630:55;10716:6;10711:2;10706:3;10702:12;10695:28;10749:2;10744:3;10740:12;10733:19;;10536:222;;;:::o;10764:323::-;;10927:67;10991:2;10986:3;10927:67;:::i;:::-;10920:74;;11024:27;11020:1;11015:3;11011:11;11004:48;11078:2;11073:3;11069:12;11062:19;;10910:177;;;:::o;11093:316::-;;11256:67;11320:2;11315:3;11256:67;:::i;:::-;11249:74;;11353:20;11349:1;11344:3;11340:11;11333:41;11400:2;11395:3;11391:12;11384:19;;11239:170;;;:::o;11415:329::-;;11578:67;11642:2;11637:3;11578:67;:::i;:::-;11571:74;;11675:33;11671:1;11666:3;11662:11;11655:54;11735:2;11730:3;11726:12;11719:19;;11561:183;;;:::o;11750:328::-;;11913:67;11977:2;11972:3;11913:67;:::i;:::-;11906:74;;12010:32;12006:1;12001:3;11997:11;11990:53;12069:2;12064:3;12060:12;12053:19;;11896:182;;;:::o;12084:370::-;;12247:67;12311:2;12306:3;12247:67;:::i;:::-;12240:74;;12344:34;12340:1;12335:3;12331:11;12324:55;12410:8;12405:2;12400:3;12396:12;12389:30;12445:2;12440:3;12436:12;12429:19;;12230:224;;;:::o;12460:376::-;;12623:67;12687:2;12682:3;12623:67;:::i;:::-;12616:74;;12720:34;12716:1;12711:3;12707:11;12700:55;12786:14;12781:2;12776:3;12772:12;12765:36;12827:2;12822:3;12818:12;12811:19;;12606:230;;;:::o;12842:327::-;;13005:67;13069:2;13064:3;13005:67;:::i;:::-;12998:74;;13102:31;13098:1;13093:3;13089:11;13082:52;13160:2;13155:3;13151:12;13144:19;;12988:181;;;:::o;13175:388::-;;13338:67;13402:2;13397:3;13338:67;:::i;:::-;13331:74;;13435:34;13431:1;13426:3;13422:11;13415:55;13501:26;13496:2;13491:3;13487:12;13480:48;13554:2;13549:3;13545:12;13538:19;;13321:242;;;:::o;13569:394::-;;13732:67;13796:2;13791:3;13732:67;:::i;:::-;13725:74;;13829:34;13825:1;13820:3;13816:11;13809:55;13895:32;13890:2;13885:3;13881:12;13874:54;13954:2;13949:3;13945:12;13938:19;;13715:248;;;:::o;13969:374::-;;14132:67;14196:2;14191:3;14132:67;:::i;:::-;14125:74;;14229:34;14225:1;14220:3;14216:11;14209:55;14295:12;14290:2;14285:3;14281:12;14274:34;14334:2;14329:3;14325:12;14318:19;;14115:228;;;:::o;14349:366::-;;14512:67;14576:2;14571:3;14512:67;:::i;:::-;14505:74;;14609:34;14605:1;14600:3;14596:11;14589:55;14675:4;14670:2;14665:3;14661:12;14654:26;14706:2;14701:3;14697:12;14690:19;;14495:220;;;:::o;14721:330::-;;14884:67;14948:2;14943:3;14884:67;:::i;:::-;14877:74;;14981:34;14977:1;14972:3;14968:11;14961:55;15042:2;15037:3;15033:12;15026:19;;14867:184;;;:::o;15057:365::-;;15220:67;15284:2;15279:3;15220:67;:::i;:::-;15213:74;;15317:34;15313:1;15308:3;15304:11;15297:55;15383:3;15378:2;15373:3;15369:12;15362:25;15413:2;15408:3;15404:12;15397:19;;15203:219;;;:::o;15428:376::-;;15591:67;15655:2;15650:3;15591:67;:::i;:::-;15584:74;;15688:34;15684:1;15679:3;15675:11;15668:55;15754:14;15749:2;15744:3;15740:12;15733:36;15795:2;15790:3;15786:12;15779:19;;15574:230;;;:::o;15810:330::-;;15973:67;16037:2;16032:3;15973:67;:::i;:::-;15966:74;;16070:34;16066:1;16061:3;16057:11;16050:55;16131:2;16126:3;16122:12;16115:19;;15956:184;;;:::o;16146:373::-;;16309:67;16373:2;16368:3;16309:67;:::i;:::-;16302:74;;16406:34;16402:1;16397:3;16393:11;16386:55;16472:11;16467:2;16462:3;16458:12;16451:33;16510:2;16505:3;16501:12;16494:19;;16292:227;;;:::o;16525:379::-;;16688:67;16752:2;16747:3;16688:67;:::i;:::-;16681:74;;16785:34;16781:1;16776:3;16772:11;16765:55;16851:17;16846:2;16841:3;16837:12;16830:39;16895:2;16890:3;16886:12;16879:19;;16671:233;;;:::o;16910:365::-;;17073:67;17137:2;17132:3;17073:67;:::i;:::-;17066:74;;17170:34;17166:1;17161:3;17157:11;17150:55;17236:3;17231:2;17226:3;17222:12;17215:25;17266:2;17261:3;17257:12;17250:19;;17056:219;;;:::o;17281:381::-;;17444:67;17508:2;17503:3;17444:67;:::i;:::-;17437:74;;17541:34;17537:1;17532:3;17528:11;17521:55;17607:19;17602:2;17597:3;17593:12;17586:41;17653:2;17648:3;17644:12;17637:19;;17427:235;;;:::o;17668:376::-;;17831:67;17895:2;17890:3;17831:67;:::i;:::-;17824:74;;17928:34;17924:1;17919:3;17915:11;17908:55;17994:14;17989:2;17984:3;17980:12;17973:36;18035:2;18030:3;18026:12;18019:19;;17814:230;;;:::o;18050:327::-;;18213:67;18277:2;18272:3;18213:67;:::i;:::-;18206:74;;18310:31;18306:1;18301:3;18297:11;18290:52;18368:2;18363:3;18359:12;18352:19;;18196:181;;;:::o;18383:322::-;;18546:67;18610:2;18605:3;18546:67;:::i;:::-;18539:74;;18643:26;18639:1;18634:3;18630:11;18623:47;18696:2;18691:3;18687:12;18680:19;;18529:176;;;:::o;18711:108::-;18788:24;18806:5;18788:24;:::i;:::-;18783:3;18776:37;18766:53;;:::o;18825:118::-;18912:24;18930:5;18912:24;:::i;:::-;18907:3;18900:37;18890:53;;:::o;18949:157::-;19054:45;19074:24;19092:5;19074:24;:::i;:::-;19054:45;:::i;:::-;19049:3;19042:58;19032:74;;:::o;19112:271::-;;19264:93;19353:3;19344:6;19264:93;:::i;:::-;19257:100;;19374:3;19367:10;;19246:137;;;;:::o;19389:435::-;;19591:95;19682:3;19673:6;19591:95;:::i;:::-;19584:102;;19703:95;19794:3;19785:6;19703:95;:::i;:::-;19696:102;;19815:3;19808:10;;19573:251;;;;;:::o;19830:397::-;;19985:75;20056:3;20047:6;19985:75;:::i;:::-;20085:2;20080:3;20076:12;20069:19;;20098:75;20169:3;20160:6;20098:75;:::i;:::-;20198:2;20193:3;20189:12;20182:19;;20218:3;20211:10;;19974:253;;;;;:::o;20233:222::-;;20364:2;20353:9;20349:18;20341:26;;20377:71;20445:1;20434:9;20430:17;20421:6;20377:71;:::i;:::-;20331:124;;;;:::o;20461:672::-;;20710:3;20699:9;20695:19;20687:27;;20724:87;20808:1;20797:9;20793:17;20784:6;20724:87;:::i;:::-;20821:72;20889:2;20878:9;20874:18;20865:6;20821:72;:::i;:::-;20903;20971:2;20960:9;20956:18;20947:6;20903:72;:::i;:::-;21022:9;21016:4;21012:20;21007:2;20996:9;20992:18;20985:48;21050:76;21121:4;21112:6;21050:76;:::i;:::-;21042:84;;20677:456;;;;;;;:::o;21139:373::-;;21320:2;21309:9;21305:18;21297:26;;21369:9;21363:4;21359:20;21355:1;21344:9;21340:17;21333:47;21397:108;21500:4;21491:6;21397:108;:::i;:::-;21389:116;;21287:225;;;;:::o;21518:210::-;;21643:2;21632:9;21628:18;21620:26;;21656:65;21718:1;21707:9;21703:17;21694:6;21656:65;:::i;:::-;21610:118;;;;:::o;21734:313::-;;21885:2;21874:9;21870:18;21862:26;;21934:9;21928:4;21924:20;21920:1;21909:9;21905:17;21898:47;21962:78;22035:4;22026:6;21962:78;:::i;:::-;21954:86;;21852:195;;;;:::o;22053:419::-;;22257:2;22246:9;22242:18;22234:26;;22306:9;22300:4;22296:20;22292:1;22281:9;22277:17;22270:47;22334:131;22460:4;22334:131;:::i;:::-;22326:139;;22224:248;;;:::o;22478:419::-;;22682:2;22671:9;22667:18;22659:26;;22731:9;22725:4;22721:20;22717:1;22706:9;22702:17;22695:47;22759:131;22885:4;22759:131;:::i;:::-;22751:139;;22649:248;;;:::o;22903:419::-;;23107:2;23096:9;23092:18;23084:26;;23156:9;23150:4;23146:20;23142:1;23131:9;23127:17;23120:47;23184:131;23310:4;23184:131;:::i;:::-;23176:139;;23074:248;;;:::o;23328:419::-;;23532:2;23521:9;23517:18;23509:26;;23581:9;23575:4;23571:20;23567:1;23556:9;23552:17;23545:47;23609:131;23735:4;23609:131;:::i;:::-;23601:139;;23499:248;;;:::o;23753:419::-;;23957:2;23946:9;23942:18;23934:26;;24006:9;24000:4;23996:20;23992:1;23981:9;23977:17;23970:47;24034:131;24160:4;24034:131;:::i;:::-;24026:139;;23924:248;;;:::o;24178:419::-;;24382:2;24371:9;24367:18;24359:26;;24431:9;24425:4;24421:20;24417:1;24406:9;24402:17;24395:47;24459:131;24585:4;24459:131;:::i;:::-;24451:139;;24349:248;;;:::o;24603:419::-;;24807:2;24796:9;24792:18;24784:26;;24856:9;24850:4;24846:20;24842:1;24831:9;24827:17;24820:47;24884:131;25010:4;24884:131;:::i;:::-;24876:139;;24774:248;;;:::o;25028:419::-;;25232:2;25221:9;25217:18;25209:26;;25281:9;25275:4;25271:20;25267:1;25256:9;25252:17;25245:47;25309:131;25435:4;25309:131;:::i;:::-;25301:139;;25199:248;;;:::o;25453:419::-;;25657:2;25646:9;25642:18;25634:26;;25706:9;25700:4;25696:20;25692:1;25681:9;25677:17;25670:47;25734:131;25860:4;25734:131;:::i;:::-;25726:139;;25624:248;;;:::o;25878:419::-;;26082:2;26071:9;26067:18;26059:26;;26131:9;26125:4;26121:20;26117:1;26106:9;26102:17;26095:47;26159:131;26285:4;26159:131;:::i;:::-;26151:139;;26049:248;;;:::o;26303:419::-;;26507:2;26496:9;26492:18;26484:26;;26556:9;26550:4;26546:20;26542:1;26531:9;26527:17;26520:47;26584:131;26710:4;26584:131;:::i;:::-;26576:139;;26474:248;;;:::o;26728:419::-;;26932:2;26921:9;26917:18;26909:26;;26981:9;26975:4;26971:20;26967:1;26956:9;26952:17;26945:47;27009:131;27135:4;27009:131;:::i;:::-;27001:139;;26899:248;;;:::o;27153:419::-;;27357:2;27346:9;27342:18;27334:26;;27406:9;27400:4;27396:20;27392:1;27381:9;27377:17;27370:47;27434:131;27560:4;27434:131;:::i;:::-;27426:139;;27324:248;;;:::o;27578:419::-;;27782:2;27771:9;27767:18;27759:26;;27831:9;27825:4;27821:20;27817:1;27806:9;27802:17;27795:47;27859:131;27985:4;27859:131;:::i;:::-;27851:139;;27749:248;;;:::o;28003:419::-;;28207:2;28196:9;28192:18;28184:26;;28256:9;28250:4;28246:20;28242:1;28231:9;28227:17;28220:47;28284:131;28410:4;28284:131;:::i;:::-;28276:139;;28174:248;;;:::o;28428:419::-;;28632:2;28621:9;28617:18;28609:26;;28681:9;28675:4;28671:20;28667:1;28656:9;28652:17;28645:47;28709:131;28835:4;28709:131;:::i;:::-;28701:139;;28599:248;;;:::o;28853:419::-;;29057:2;29046:9;29042:18;29034:26;;29106:9;29100:4;29096:20;29092:1;29081:9;29077:17;29070:47;29134:131;29260:4;29134:131;:::i;:::-;29126:139;;29024:248;;;:::o;29278:419::-;;29482:2;29471:9;29467:18;29459:26;;29531:9;29525:4;29521:20;29517:1;29506:9;29502:17;29495:47;29559:131;29685:4;29559:131;:::i;:::-;29551:139;;29449:248;;;:::o;29703:419::-;;29907:2;29896:9;29892:18;29884:26;;29956:9;29950:4;29946:20;29942:1;29931:9;29927:17;29920:47;29984:131;30110:4;29984:131;:::i;:::-;29976:139;;29874:248;;;:::o;30128:419::-;;30332:2;30321:9;30317:18;30309:26;;30381:9;30375:4;30371:20;30367:1;30356:9;30352:17;30345:47;30409:131;30535:4;30409:131;:::i;:::-;30401:139;;30299:248;;;:::o;30553:419::-;;30757:2;30746:9;30742:18;30734:26;;30806:9;30800:4;30796:20;30792:1;30781:9;30777:17;30770:47;30834:131;30960:4;30834:131;:::i;:::-;30826:139;;30724:248;;;:::o;30978:419::-;;31182:2;31171:9;31167:18;31159:26;;31231:9;31225:4;31221:20;31217:1;31206:9;31202:17;31195:47;31259:131;31385:4;31259:131;:::i;:::-;31251:139;;31149:248;;;:::o;31403:419::-;;31607:2;31596:9;31592:18;31584:26;;31656:9;31650:4;31646:20;31642:1;31631:9;31627:17;31620:47;31684:131;31810:4;31684:131;:::i;:::-;31676:139;;31574:248;;;:::o;31828:419::-;;32032:2;32021:9;32017:18;32009:26;;32081:9;32075:4;32071:20;32067:1;32056:9;32052:17;32045:47;32109:131;32235:4;32109:131;:::i;:::-;32101:139;;31999:248;;;:::o;32253:419::-;;32457:2;32446:9;32442:18;32434:26;;32506:9;32500:4;32496:20;32492:1;32481:9;32477:17;32470:47;32534:131;32660:4;32534:131;:::i;:::-;32526:139;;32424:248;;;:::o;32678:419::-;;32882:2;32871:9;32867:18;32859:26;;32931:9;32925:4;32921:20;32917:1;32906:9;32902:17;32895:47;32959:131;33085:4;32959:131;:::i;:::-;32951:139;;32849:248;;;:::o;33103:419::-;;33307:2;33296:9;33292:18;33284:26;;33356:9;33350:4;33346:20;33342:1;33331:9;33327:17;33320:47;33384:131;33510:4;33384:131;:::i;:::-;33376:139;;33274:248;;;:::o;33528:222::-;;33659:2;33648:9;33644:18;33636:26;;33672:71;33740:1;33729:9;33725:17;33716:6;33672:71;:::i;:::-;33626:124;;;;:::o;33756:278::-;;33822:2;33816:9;33806:19;;33864:4;33856:6;33852:17;33971:6;33959:10;33956:22;33935:18;33923:10;33920:34;33917:62;33914:2;;;33982:13;;:::i;:::-;33914:2;34017:10;34013:2;34006:22;33796:238;;;;:::o;34040:326::-;;34191:18;34183:6;34180:30;34177:2;;;34213:13;;:::i;:::-;34177:2;34293:4;34289:9;34282:4;34274:6;34270:17;34266:33;34258:41;;34354:4;34348;34344:15;34336:23;;34106:260;;;:::o;34372:327::-;;34524:18;34516:6;34513:30;34510:2;;;34546:13;;:::i;:::-;34510:2;34626:4;34622:9;34615:4;34607:6;34603:17;34599:33;34591:41;;34687:4;34681;34677:15;34669:23;;34439:260;;;:::o;34705:132::-;;34795:3;34787:11;;34825:4;34820:3;34816:14;34808:22;;34777:60;;;:::o;34843:114::-;;34944:5;34938:12;34928:22;;34917:40;;;:::o;34963:98::-;;35048:5;35042:12;35032:22;;35021:40;;;:::o;35067:99::-;;35153:5;35147:12;35137:22;;35126:40;;;:::o;35172:113::-;;35274:4;35269:3;35265:14;35257:22;;35247:38;;;:::o;35291:184::-;;35424:6;35419:3;35412:19;35464:4;35459:3;35455:14;35440:29;;35402:73;;;;:::o;35481:168::-;;35598:6;35593:3;35586:19;35638:4;35633:3;35629:14;35614:29;;35576:73;;;;:::o;35655:147::-;;35793:3;35778:18;;35768:34;;;;:::o;35808:169::-;;35926:6;35921:3;35914:19;35966:4;35961:3;35957:14;35942:29;;35904:73;;;;:::o;35983:148::-;;36122:3;36107:18;;36097:34;;;;:::o;36137:96::-;;36203:24;36221:5;36203:24;:::i;:::-;36192:35;;36182:51;;;:::o;36239:104::-;;36313:24;36331:5;36313:24;:::i;:::-;36302:35;;36292:51;;;:::o;36349:90::-;;36426:5;36419:13;36412:21;36401:32;;36391:48;;;:::o;36445:149::-;;36521:66;36514:5;36510:78;36499:89;;36489:105;;;:::o;36600:126::-;;36677:42;36670:5;36666:54;36655:65;;36645:81;;;:::o;36732:77::-;;36798:5;36787:16;;36777:32;;;:::o;36815:154::-;36899:6;36894:3;36889;36876:30;36961:1;36952:6;36947:3;36943:16;36936:27;36866:103;;;:::o;36975:307::-;37043:1;37053:113;37067:6;37064:1;37061:13;37053:113;;;37152:1;37147:3;37143:11;37137:18;37133:1;37128:3;37124:11;37117:39;37089:2;37086:1;37082:10;37077:15;;37053:113;;;37184:6;37181:1;37178:13;37175:2;;;37264:1;37255:6;37250:3;37246:16;37239:27;37175:2;37024:258;;;;:::o;37288:79::-;;37356:5;37345:16;;37335:32;;;:::o;37373:48::-;37406:9;37427:102;;37519:2;37515:7;37510:2;37503:5;37499:14;37495:28;37485:38;;37475:54;;;:::o;37535:122::-;37608:24;37626:5;37608:24;:::i;:::-;37601:5;37598:35;37588:2;;37647:1;37644;37637:12;37588:2;37578:79;:::o;37663:116::-;37733:21;37748:5;37733:21;:::i;:::-;37726:5;37723:32;37713:2;;37769:1;37766;37759:12;37713:2;37703:76;:::o;37785:120::-;37857:23;37874:5;37857:23;:::i;:::-;37850:5;37847:34;37837:2;;37895:1;37892;37885:12;37837:2;37827:78;:::o;37911:122::-;37984:24;38002:5;37984:24;:::i;:::-;37977:5;37974:35;37964:2;;38023:1;38020;38013:12;37964:2;37954:79;:::o

Swarm Source

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