ETH Price: $3,386.36 (-1.76%)
Gas: 1 Gwei

Token

Cute Pig Club (CPC)
 

Overview

Max Total Supply

10,000 CPC

Holders

2,159

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CPC
0x4c15ce4cd15816bcd3866e49c4d3f8531502ade8
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Cute pig club is a collection of 10,000 Pig NFTs digital collectibles living on the Ethereum blockchain. CPC is not only NFT, it is also NFT + DEFI.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CutePigClub

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

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

// SPDX-License-Identifier: MIT

// GO TO LINE 1904 TO SEE WHERE THE PIG CONTRACT STARTS
 
// File: @openzeppelin/contracts/utils/Context.sol

pragma solidity >=0.6.0 <0.8.0;

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

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





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





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


// CPC



pragma solidity ^0.7.0;
pragma abicoder v2;

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

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

    uint256 public constant pigPrice = 30000000000000000; // 0.03 ETH
    
    uint public constant maxPigPurchase = 10000;

    uint256 public constant MAX_PIGS = 10000;

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

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


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

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


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

    }
     
    function changePigName(uint _tokenId, string memory _name) public {
        require(ownerOf(_tokenId) == msg.sender, "Hey, your wallet doesn't own this pig!");
        require(sha256(bytes(_name)) != sha256(bytes(pigNames[_tokenId])), "New name is same as the current one");
        pigNames[_tokenId] = _name;
        
        emit pigNameChange(msg.sender, _tokenId, _name);
        
    }
    
    function viewPigName(uint _tokenId) public view returns( string memory ){
        require( _tokenId < totalSupply(), "Choose a pig within range" );
        return pigNames[_tokenId];
    }
    
    
    // GET ALL PIG OF A WALLET AS AN ARRAY OF STRINGS. WOULD BE BETTER MAYBE IF IT RETURNED A STRUCT WITH ID-NAME MATCH
    function pigNamesOfOwner(address _owner) external view returns(string[] memory ) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new string[](0);
        } else {
            string[] memory result = new string[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = pigNames[ tokenOfOwnerByIndex(_owner, index) ] ;
            }
            return result;
        }
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_licenseText","type":"string"}],"name":"licenseisLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_by","type":"address"},{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"_name","type":"string"}],"name":"pigNameChange","type":"event"},{"inputs":[],"name":"LICENSE_TEXT","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PIGS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PIG_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_license","type":"string"}],"name":"changeLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_name","type":"string"}],"name":"changePigName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxPigPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintCutepigclub","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"pigNames","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"pigNamesOfOwner","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pigPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pigReserve","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":"reservePigs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"tokenLicense","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"viewPigName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600b90805190602001906200002b92919062000334565b5060405180602001604052806000815250600c90805190602001906200005392919062000334565b506000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff02191690831515021790555060c8600f553480156200009c57600080fd5b506040518060400160405280600d81526020017f437574652050696720436c7562000000000000000000000000000000000000008152506040518060400160405280600381526020017f4350430000000000000000000000000000000000000000000000000000000000815250620001216301ffc9a760e01b6200025460201b60201c565b81600690805190602001906200013992919062000334565b5080600790805190602001906200015292919062000334565b506200016b6380ac58cd60e01b6200025460201b60201c565b62000183635b5e139f60e01b6200025460201b60201c565b6200019b63780e9d6360e01b6200025460201b60201c565b50506000620001af6200032c60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200045f565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620002c0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b7906200042c565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200036c5760008555620003b8565b82601f106200038757805160ff1916838001178555620003b8565b82800160010185558215620003b8579182015b82811115620003b75782518255916020019190600101906200039a565b5b509050620003c79190620003cb565b5090565b5b80821115620003e6576000816000905550600101620003cc565b5090565b6000620003f9601c836200044e565b91507f4552433136353a20696e76616c696420696e74657266616365206964000000006000830152602082019050919050565b600060208201905081810360008301526200044781620003ea565b9050919050565b600082825260208201905092915050565b61539f806200046f6000396000f3fe6080604052600436106102465760003560e01c8063715018a611610139578063bf4702fc116100b6578063e985e9c51161007a578063e985e9c514610881578063eb8d2444146108be578063f2a24f1b146108e9578063f2fde38b14610912578063fea200cd1461093b578063ff4166781461097857610246565b8063bf4702fc1461079a578063c87b56dd146107b1578063c9b21b85146107ee578063d9b137b214610819578063ddc348121461085657610246565b80639c3e72bd116100fd5780639c3e72bd146106b7578063a22cb465146106e2578063ad319fdd1461070b578063b09904b514610748578063b88d4fde1461077157610246565b8063715018a6146105e25780637aea8862146105f95780638462151c146106245780638da5cb5b1461066157806395d89b411461068c57610246565b806334918dfd116101c75780635ad5159d1161018b5780635ad5159d146104d55780636352211e146105125780636604fd331461054f5780636c0360eb1461057a57806370a08231146105a557610246565b806334918dfd146104185780633ccfd60b1461042f57806342842e0e146104465780634f6ccce71461046f57806355f804b3146104ac57610246565b806318160ddd1161020e57806318160ddd1461034257806319b003c41461036d57806323b872dd146103965780632d8a4e5e146103bf5780632f745c59146103db57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f05780631096952314610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613ada565b6109a3565b60405161027f9190614b7a565b60405180910390f35b34801561029457600080fd5b5061029d610a0a565b6040516102aa9190614b95565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613b6d565b610aac565b6040516102e79190614a91565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613a75565b610b31565b005b34801561032557600080fd5b50610340600480360381019061033b9190613b2c565b610c49565b005b34801561034e57600080fd5b50610357610cdf565b6040516103649190614fd9565b60405180910390f35b34801561037957600080fd5b50610394600480360381019061038f9190613a75565b610cf0565b005b3480156103a257600080fd5b506103bd60048036038101906103b8919061396f565b610e0e565b005b6103d960048036038101906103d49190613b6d565b610e6e565b005b3480156103e757600080fd5b5061040260048036038101906103fd9190613a75565b61100d565b60405161040f9190614fd9565b60405180910390f35b34801561042457600080fd5b5061042d611068565b005b34801561043b57600080fd5b50610444611110565b005b34801561045257600080fd5b5061046d6004803603810190610468919061396f565b6111db565b005b34801561047b57600080fd5b5061049660048036038101906104919190613b6d565b6111fb565b6040516104a39190614fd9565b60405180910390f35b3480156104b857600080fd5b506104d360048036038101906104ce9190613b2c565b61121e565b005b3480156104e157600080fd5b506104fc60048036038101906104f7919061390a565b6112a6565b6040516105099190614b36565b60405180910390f35b34801561051e57600080fd5b5061053960048036038101906105349190613b6d565b611453565b6040516105469190614a91565b60405180910390f35b34801561055b57600080fd5b5061056461148a565b6040516105719190614fd9565b60405180910390f35b34801561058657600080fd5b5061058f611490565b60405161059c9190614b95565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c7919061390a565b611532565b6040516105d99190614fd9565b60405180910390f35b3480156105ee57600080fd5b506105f76115f1565b005b34801561060557600080fd5b5061060e61172e565b60405161061b9190614b95565b60405180910390f35b34801561063057600080fd5b5061064b6004803603810190610646919061390a565b6117cc565b6040516106589190614b58565b60405180910390f35b34801561066d57600080fd5b506106766118c5565b6040516106839190614a91565b60405180910390f35b34801561069857600080fd5b506106a16118ef565b6040516106ae9190614b95565b60405180910390f35b3480156106c357600080fd5b506106cc611991565b6040516106d99190614b95565b60405180910390f35b3480156106ee57600080fd5b5061070960048036038101906107049190613a39565b611a2f565b005b34801561071757600080fd5b50610732600480360381019061072d9190613b6d565b611bb0565b60405161073f9190614b95565b60405180910390f35b34801561075457600080fd5b5061076f600480360381019061076a9190613b2c565b611cae565b005b34801561077d57600080fd5b50610798600480360381019061079391906139be565b611d9a565b005b3480156107a657600080fd5b506107af611dfc565b005b3480156107bd57600080fd5b506107d860048036038101906107d39190613b6d565b611ecd565b6040516107e59190614b95565b60405180910390f35b3480156107fa57600080fd5b50610803612050565b6040516108109190614fd9565b60405180910390f35b34801561082557600080fd5b50610840600480360381019061083b9190613b6d565b612056565b60405161084d9190614b95565b60405180910390f35b34801561086257600080fd5b5061086b612143565b6040516108789190614fd9565b60405180910390f35b34801561088d57600080fd5b506108a860048036038101906108a39190613933565b612149565b6040516108b59190614b7a565b60405180910390f35b3480156108ca57600080fd5b506108d36121dd565b6040516108e09190614b7a565b60405180910390f35b3480156108f557600080fd5b50610910600480360381019061090b9190613b96565b6121f0565b005b34801561091e57600080fd5b506109396004803603810190610934919061390a565b6123c0565b005b34801561094757600080fd5b50610962600480360381019061095d9190613b6d565b61256c565b60405161096f9190614b95565b60405180910390f35b34801561098457600080fd5b5061098d61261c565b60405161099a9190614fd9565b60405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610aa25780601f10610a7757610100808354040283529160200191610aa2565b820191906000526020600020905b815481529060010190602001808311610a8557829003601f168201915b5050505050905090565b6000610ab782612627565b610af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aed90614e99565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b3c82611453565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba490614f39565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bcc612644565b73ffffffffffffffffffffffffffffffffffffffff161480610bfb5750610bfa81610bf5612644565b612149565b5b610c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3190614dd9565b60405180910390fd5b610c44838361264c565b505050565b610c51612644565b73ffffffffffffffffffffffffffffffffffffffff16610c6f6118c5565b73ffffffffffffffffffffffffffffffffffffffff1614610cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbc90614eb9565b60405180910390fd5b80600b9080519060200190610cdb929190613711565b5050565b6000610ceb6002612705565b905090565b610cf8612644565b73ffffffffffffffffffffffffffffffffffffffff16610d166118c5565b73ffffffffffffffffffffffffffffffffffffffff1614610d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6390614eb9565b60405180910390fd5b6000610d76610cdf565b9050600082118015610d8a5750600f548211155b610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc090614cd9565b60405180910390fd5b60005b82811015610ded57610de08482840161271a565b8080600101915050610dcc565b50610e0382600f5461273890919063ffffffff16565b600f81905550505050565b610e1f610e19612644565b82612788565b610e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5590614f79565b60405180910390fd5b610e69838383612866565b505050565b600d60019054906101000a900460ff16610ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb490614fb9565b60405180910390fd5b600081118015610ecf57506127108111155b610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0590614c99565b60405180910390fd5b612710610f2b82610f1d610cdf565b612a7d90919063ffffffff16565b1115610f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6390614cb9565b60405180910390fd5b610f8681666a94d74f430000612ad290919063ffffffff16565b341015610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf90614d39565b60405180910390fd5b60005b81811015611009576000610fdd610cdf565b9050612710610fea610cdf565b1015610ffb57610ffa338261271a565b5b508080600101915050610fcb565b5050565b600061106082600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612b4290919063ffffffff16565b905092915050565b611070612644565b73ffffffffffffffffffffffffffffffffffffffff1661108e6118c5565b73ffffffffffffffffffffffffffffffffffffffff16146110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db90614eb9565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b611118612644565b73ffffffffffffffffffffffffffffffffffffffff166111366118c5565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118390614eb9565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156111d7573d6000803e3d6000fd5b5050565b6111f683838360405180602001604052806000815250611d9a565b505050565b600080611212836002612b5c90919063ffffffff16565b50905080915050919050565b611226612644565b73ffffffffffffffffffffffffffffffffffffffff166112446118c5565b73ffffffffffffffffffffffffffffffffffffffff161461129a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129190614eb9565b60405180910390fd5b6112a381612b88565b50565b606060006112b383611532565b9050600081141561131357600067ffffffffffffffff811180156112d657600080fd5b5060405190808252806020026020018201604052801561130a57816020015b60608152602001906001900390816112f55790505b5091505061144e565b60008167ffffffffffffffff8111801561132c57600080fd5b5060405190808252806020026020018201604052801561136057816020015b606081526020019060019003908161134b5790505b50905060005b8281101561144757600e600061137c878461100d565b81526020019081526020016000208054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561141e5780601f106113f35761010080835404028352916020019161141e565b820191906000526020600020905b81548152906001019060200180831161140157829003601f168201915b505050505082828151811061142f57fe5b60200260200101819052508080600101915050611366565b8193505050505b919050565b600061148382604051806060016040528060298152602001615341602991396002612ba29092919063ffffffff16565b9050919050565b61271081565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156115285780601f106114fd57610100808354040283529160200191611528565b820191906000526020600020905b81548152906001019060200180831161150b57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159a90614e19565b60405180910390fd5b6115ea600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612bc1565b9050919050565b6115f9612644565b73ffffffffffffffffffffffffffffffffffffffff166116176118c5565b73ffffffffffffffffffffffffffffffffffffffff161461166d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166490614eb9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117c45780601f10611799576101008083540402835291602001916117c4565b820191906000526020600020905b8154815290600101906020018083116117a757829003601f168201915b505050505081565b606060006117d983611532565b9050600081141561183457600067ffffffffffffffff811180156117fc57600080fd5b5060405190808252806020026020018201604052801561182b5781602001602082028036833780820191505090505b509150506118c0565b60008167ffffffffffffffff8111801561184d57600080fd5b5060405190808252806020026020018201604052801561187c5781602001602082028036833780820191505090505b50905060005b828110156118b957611894858261100d565b8282815181106118a057fe5b6020026020010181815250508080600101915050611882565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156119875780601f1061195c57610100808354040283529160200191611987565b820191906000526020600020905b81548152906001019060200180831161196a57829003601f168201915b5050505050905090565b600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611a275780601f106119fc57610100808354040283529160200191611a27565b820191906000526020600020905b815481529060010190602001808311611a0a57829003601f168201915b505050505081565b611a37612644565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c90614d19565b60405180910390fd5b8060056000611ab2612644565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b5f612644565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ba49190614b7a565b60405180910390a35050565b6060611bba610cdf565b8210611bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf290614db9565b60405180910390fd5b600e60008381526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611ca25780601f10611c7757610100808354040283529160200191611ca2565b820191906000526020600020905b815481529060010190602001808311611c8557829003601f168201915b50505050509050919050565b611cb6612644565b73ffffffffffffffffffffffffffffffffffffffff16611cd46118c5565b73ffffffffffffffffffffffffffffffffffffffff1614611d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2190614eb9565b60405180910390fd5b60001515600d60009054906101000a900460ff16151514611d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7790614f59565b60405180910390fd5b80600c9080519060200190611d96929190613711565b5050565b611dab611da5612644565b83612788565b611dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de190614f79565b60405180910390fd5b611df684848484612bd6565b50505050565b611e04612644565b73ffffffffffffffffffffffffffffffffffffffff16611e226118c5565b73ffffffffffffffffffffffffffffffffffffffff1614611e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6f90614eb9565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0600c604051611ec39190614bb7565b60405180910390a1565b6060611ed882612627565b611f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0e90614ef9565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611fc05780601f10611f9557610100808354040283529160200191611fc0565b820191906000526020600020905b815481529060010190602001808311611fa357829003601f168201915b505050505090506000611fd1611490565b9050600081511415611fe757819250505061204b565b60008251111561201c578082604051602001612004929190614a6d565b6040516020818303038152906040529250505061204b565b8061202685612c32565b604051602001612037929190614a6d565b604051602081830303815290604052925050505b919050565b61271081565b6060612060610cdf565b82106120a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209890614c79565b60405180910390fd5b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121375780601f1061210c57610100808354040283529160200191612137565b820191906000526020600020905b81548152906001019060200180831161211a57829003601f168201915b50505050509050919050565b600f5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60019054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff1661221083611453565b73ffffffffffffffffffffffffffffffffffffffff1614612266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225d90614df9565b60405180910390fd5b6002600e60008481526020019081526020016000206040516122889190614a56565b602060405180830381855afa1580156122a5573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906122c89190613ab1565b6002826040516122d89190614a3f565b602060405180830381855afa1580156122f5573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906123189190613ab1565b1415612359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235090614f19565b60405180910390fd5b80600e60008481526020019081526020016000209080519060200190612380929190613711565b507f61d724083b831fef0356fcdecdb18b059d56e518be9446c28f2827bb0e3c26bf3383836040516123b493929190614af8565b60405180910390a15050565b6123c8612644565b73ffffffffffffffffffffffffffffffffffffffff166123e66118c5565b73ffffffffffffffffffffffffffffffffffffffff161461243c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243390614eb9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a390614c19565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e6020528060005260406000206000915090508054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156126145780601f106125e957610100808354040283529160200191612614565b820191906000526020600020905b8154815290600101906020018083116125f757829003601f168201915b505050505081565b666a94d74f43000081565b600061263d826002612d7990919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126bf83611453565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061271382600001612d93565b9050919050565b612734828260405180602001604052806000815250612da4565b5050565b60008282111561277d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277490614d59565b60405180910390fd5b818303905092915050565b600061279382612627565b6127d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c990614d99565b60405180910390fd5b60006127dd83611453565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061284c57508373ffffffffffffffffffffffffffffffffffffffff1661283484610aac565b73ffffffffffffffffffffffffffffffffffffffff16145b8061285d575061285c8185612149565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661288682611453565b73ffffffffffffffffffffffffffffffffffffffff16146128dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d390614ed9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561294c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294390614cf9565b60405180910390fd5b612957838383612dff565b61296260008261264c565b6129b381600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612e0490919063ffffffff16565b50612a0581600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612e1e90919063ffffffff16565b50612a1c81836002612e389092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600080828401905083811015612ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abf90614c59565b60405180910390fd5b8091505092915050565b600080831415612ae55760009050612b3c565b6000828402905082848281612af657fe5b0414612b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2e90614e79565b60405180910390fd5b809150505b92915050565b6000612b518360000183612e6d565b60001c905092915050565b600080600080612b6f8660000186612eda565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190612b9e929190613711565b5050565b6000612bb5846000018460001b84612f5d565b60001c90509392505050565b6000612bcf82600001612fee565b9050919050565b612be1848484612866565b612bed84848484612fff565b612c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2390614bf9565b60405180910390fd5b50505050565b60606000821415612c7a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d74565b600082905060005b60008214612ca4578080600101915050600a8281612c9c57fe5b049150612c82565b60008167ffffffffffffffff81118015612cbd57600080fd5b506040519080825280601f01601f191660200182016040528015612cf05781602001600182028036833780820191505090505b50905060006001830390508593505b60008414612d6c57600a8481612d1157fe5b0660300160f81b82828060019003935081518110612d2b57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481612d6457fe5b049350612cff565b819450505050505b919050565b6000612d8b836000018360001b613163565b905092915050565b600081600001805490509050919050565b612dae8383613186565b612dbb6000848484612fff565b612dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df190614bf9565b60405180910390fd5b505050565b505050565b6000612e16836000018360001b613314565b905092915050565b6000612e30836000018360001b6133fc565b905092915050565b6000612e64846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b61346c565b90509392505050565b600081836000018054905011612eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eaf90614bd9565b60405180910390fd5b826000018281548110612ec757fe5b9060005260206000200154905092915050565b60008082846000018054905011612f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1d90614e39565b60405180910390fd5b6000846000018481548110612f3757fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb69190614b95565b60405180910390fd5b50846000016001820381548110612fd257fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006130208473ffffffffffffffffffffffffffffffffffffffff16613548565b61302d576001905061315b565b60006130f463150b7a0260e01b613042612644565b8887876040516024016130589493929190614aac565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405180606001604052806032815260200161530f603291398773ffffffffffffffffffffffffffffffffffffffff1661355b9092919063ffffffff16565b905060008180602001905181019061310c9190613b03565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ed90614e59565b60405180910390fd5b6131ff81612627565b1561323f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161323690614c39565b60405180910390fd5b61324b60008383612dff565b61329c81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612e1e90919063ffffffff16565b506132b381836002612e389092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080836001016000848152602001908152602001600020549050600081146133f0576000600182039050600060018660000180549050039050600086600001828154811061335f57fe5b906000526020600020015490508087600001848154811061337c57fe5b90600052602060002001819055506001830187600101600083815260200190815260200160002081905550866000018054806133b457fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506133f6565b60009150505b92915050565b60006134088383613573565b613461578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613466565b600090505b92915050565b600080846001016000858152602001908152602001600020549050600081141561351357846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050613541565b8285600001600183038154811061352657fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080823b905060008111915050919050565b606061356a8484600085613596565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b6060824710156135db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135d290614d79565b60405180910390fd5b6135e485613548565b613623576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161361a90614f99565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161364c9190614a3f565b60006040518083038185875af1925050503d8060008114613689576040519150601f19603f3d011682016040523d82523d6000602084013e61368e565b606091505b509150915061369e8282866136aa565b92505050949350505050565b606083156136ba5782905061370a565b6000835111156136cd5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137019190614b95565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282613747576000855561378e565b82601f1061376057805160ff191683800117855561378e565b8280016001018555821561378e579182015b8281111561378d578251825591602001919060010190613772565b5b50905061379b919061379f565b5090565b5b808211156137b85760008160009055506001016137a0565b5090565b60006137cf6137ca84615025565b614ff4565b9050828152602081018484840111156137e757600080fd5b6137f2848285615246565b509392505050565b600061380d61380884615055565b614ff4565b90508281526020810184848401111561382557600080fd5b613830848285615246565b509392505050565b6000813590506138478161529b565b92915050565b60008135905061385c816152b2565b92915050565b600081519050613871816152c9565b92915050565b600081359050613886816152e0565b92915050565b60008151905061389b816152e0565b92915050565b600082601f8301126138b257600080fd5b81356138c28482602086016137bc565b91505092915050565b600082601f8301126138dc57600080fd5b81356138ec8482602086016137fa565b91505092915050565b600081359050613904816152f7565b92915050565b60006020828403121561391c57600080fd5b600061392a84828501613838565b91505092915050565b6000806040838503121561394657600080fd5b600061395485828601613838565b925050602061396585828601613838565b9150509250929050565b60008060006060848603121561398457600080fd5b600061399286828701613838565b93505060206139a386828701613838565b92505060406139b4868287016138f5565b9150509250925092565b600080600080608085870312156139d457600080fd5b60006139e287828801613838565b94505060206139f387828801613838565b9350506040613a04878288016138f5565b925050606085013567ffffffffffffffff811115613a2157600080fd5b613a2d878288016138a1565b91505092959194509250565b60008060408385031215613a4c57600080fd5b6000613a5a85828601613838565b9250506020613a6b8582860161384d565b9150509250929050565b60008060408385031215613a8857600080fd5b6000613a9685828601613838565b9250506020613aa7858286016138f5565b9150509250929050565b600060208284031215613ac357600080fd5b6000613ad184828501613862565b91505092915050565b600060208284031215613aec57600080fd5b6000613afa84828501613877565b91505092915050565b600060208284031215613b1557600080fd5b6000613b238482850161388c565b91505092915050565b600060208284031215613b3e57600080fd5b600082013567ffffffffffffffff811115613b5857600080fd5b613b64848285016138cb565b91505092915050565b600060208284031215613b7f57600080fd5b6000613b8d848285016138f5565b91505092915050565b60008060408385031215613ba957600080fd5b6000613bb7858286016138f5565b925050602083013567ffffffffffffffff811115613bd457600080fd5b613be0858286016138cb565b9150509250929050565b6000613bf68383613e1d565b905092915050565b6000613c0a8383614a21565b60208301905092915050565b613c1f81615210565b82525050565b613c2e81615192565b82525050565b613c3d81615180565b82525050565b6000613c4e826150cf565b613c588185615115565b935083602082028501613c6a85615085565b8060005b85811015613ca65784840389528151613c878582613bea565b9450613c92836150fb565b925060208a01995050600181019050613c6e565b50829750879550505050505092915050565b6000613cc3826150da565b613ccd8185615126565b9350613cd883615095565b8060005b83811015613d09578151613cf08882613bfe565b9750613cfb83615108565b925050600181019050613cdc565b5085935050505092915050565b613d1f816151a4565b82525050565b6000613d30826150e5565b613d3a8185615137565b9350613d4a818560208601615255565b613d538161528a565b840191505092915050565b6000613d69826150e5565b613d738185615148565b9350613d83818560208601615255565b80840191505092915050565b600081546001811660008114613dac5760018114613dd157613e15565b607f6002830416613dbd8187615148565b955060ff1983168652808601935050613e15565b60028204613ddf8187615148565b9550613dea856150a5565b60005b82811015613e0c57815481890152600182019150602081019050613ded565b82880195505050505b505092915050565b6000613e28826150f0565b613e328185615153565b9350613e42818560208601615255565b613e4b8161528a565b840191505092915050565b6000613e61826150f0565b613e6b8185615164565b9350613e7b818560208601615255565b613e848161528a565b840191505092915050565b6000613e9a826150f0565b613ea48185615175565b9350613eb4818560208601615255565b80840191505092915050565b600081546001811660008114613edd5760018114613f0357613f47565b607f6002830416613eee8187615164565b955060ff198316865260208601935050613f47565b60028204613f118187615164565b9550613f1c856150ba565b60005b82811015613f3e57815481890152600182019150602081019050613f1f565b80880195505050505b505092915050565b6000613f5c602283615164565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fc2603283615164565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614028602683615164565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061408e601c83615164565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006140ce601b83615164565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b600061410e601983615164565b91507f43484f4f53452041205049472057495448494e2052414e4745000000000000006000830152602082019050919050565b600061414e602283615164565b91507f43616e206f6e6c79206d696e742032353820746f6b656e73206174206120746960008301527f6d650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006141b4602883615164565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620706967730000000000000000000000000000000000000000000000006020830152604082019050919050565b600061421a602083615164565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b600061425a602483615164565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006142c0601983615164565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614300601f83615164565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000614340601e83615164565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000614380602683615164565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006143e6602c83615164565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061444c601983615164565b91507f43686f6f73652061207069672077697468696e2072616e6765000000000000006000830152602082019050919050565b600061448c603883615164565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006144f2602683615164565b91507f4865792c20796f75722077616c6c657420646f65736e2774206f776e2074686960008301527f73207069672100000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614558602a83615164565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006145be602283615164565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614624602083615164565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614664602183615164565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146ca602c83615164565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614730602083615164565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614770602983615164565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006147d6602f83615164565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061483c602383615164565b91507f4e6577206e616d652069732073616d65206173207468652063757272656e742060008301527f6f6e6500000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006148a2602183615164565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614908601683615164565b91507f4c6963656e736520616c7265616479206c6f636b6564000000000000000000006000830152602082019050919050565b6000614948603183615164565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006149ae601d83615164565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b60006149ee601f83615164565b91507f53616c65206d7573742062652061637469766520746f206d696e7420506967006000830152602082019050919050565b614a2a81615206565b82525050565b614a3981615206565b82525050565b6000614a4b8284613d5e565b915081905092915050565b6000614a628284613d8f565b915081905092915050565b6000614a798285613e8f565b9150614a858284613e8f565b91508190509392505050565b6000602082019050614aa66000830184613c34565b92915050565b6000608082019050614ac16000830187613c25565b614ace6020830186613c34565b614adb6040830185614a30565b8181036060830152614aed8184613d25565b905095945050505050565b6000606082019050614b0d6000830186613c16565b614b1a6020830185614a30565b8181036040830152614b2c8184613e56565b9050949350505050565b60006020820190508181036000830152614b508184613c43565b905092915050565b60006020820190508181036000830152614b728184613cb8565b905092915050565b6000602082019050614b8f6000830184613d16565b92915050565b60006020820190508181036000830152614baf8184613e56565b905092915050565b60006020820190508181036000830152614bd18184613ec0565b905092915050565b60006020820190508181036000830152614bf281613f4f565b9050919050565b60006020820190508181036000830152614c1281613fb5565b9050919050565b60006020820190508181036000830152614c328161401b565b9050919050565b60006020820190508181036000830152614c5281614081565b9050919050565b60006020820190508181036000830152614c72816140c1565b9050919050565b60006020820190508181036000830152614c9281614101565b9050919050565b60006020820190508181036000830152614cb281614141565b9050919050565b60006020820190508181036000830152614cd2816141a7565b9050919050565b60006020820190508181036000830152614cf28161420d565b9050919050565b60006020820190508181036000830152614d128161424d565b9050919050565b60006020820190508181036000830152614d32816142b3565b9050919050565b60006020820190508181036000830152614d52816142f3565b9050919050565b60006020820190508181036000830152614d7281614333565b9050919050565b60006020820190508181036000830152614d9281614373565b9050919050565b60006020820190508181036000830152614db2816143d9565b9050919050565b60006020820190508181036000830152614dd28161443f565b9050919050565b60006020820190508181036000830152614df28161447f565b9050919050565b60006020820190508181036000830152614e12816144e5565b9050919050565b60006020820190508181036000830152614e328161454b565b9050919050565b60006020820190508181036000830152614e52816145b1565b9050919050565b60006020820190508181036000830152614e7281614617565b9050919050565b60006020820190508181036000830152614e9281614657565b9050919050565b60006020820190508181036000830152614eb2816146bd565b9050919050565b60006020820190508181036000830152614ed281614723565b9050919050565b60006020820190508181036000830152614ef281614763565b9050919050565b60006020820190508181036000830152614f12816147c9565b9050919050565b60006020820190508181036000830152614f328161482f565b9050919050565b60006020820190508181036000830152614f5281614895565b9050919050565b60006020820190508181036000830152614f72816148fb565b9050919050565b60006020820190508181036000830152614f928161493b565b9050919050565b60006020820190508181036000830152614fb2816149a1565b9050919050565b60006020820190508181036000830152614fd2816149e1565b9050919050565b6000602082019050614fee6000830184614a30565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561501b5761501a615288565b5b8060405250919050565b600067ffffffffffffffff8211156150405761503f615288565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156150705761506f615288565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061518b826151e6565b9050919050565b600061519d826151e6565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061521b82615222565b9050919050565b600061522d82615234565b9050919050565b600061523f826151e6565b9050919050565b82818337600083830152505050565b60005b83811015615273578082015181840152602081019050615258565b83811115615282576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b6152a481615180565b81146152af57600080fd5b50565b6152bb816151a4565b81146152c657600080fd5b50565b6152d2816151b0565b81146152dd57600080fd5b50565b6152e9816151ba565b81146152f457600080fd5b50565b61530081615206565b811461530b57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220294cbff9a202c0cc51db2938e4df16e309d36fca751ff6a7a7b91ffd4239580264736f6c63430007060033

Deployed Bytecode

0x6080604052600436106102465760003560e01c8063715018a611610139578063bf4702fc116100b6578063e985e9c51161007a578063e985e9c514610881578063eb8d2444146108be578063f2a24f1b146108e9578063f2fde38b14610912578063fea200cd1461093b578063ff4166781461097857610246565b8063bf4702fc1461079a578063c87b56dd146107b1578063c9b21b85146107ee578063d9b137b214610819578063ddc348121461085657610246565b80639c3e72bd116100fd5780639c3e72bd146106b7578063a22cb465146106e2578063ad319fdd1461070b578063b09904b514610748578063b88d4fde1461077157610246565b8063715018a6146105e25780637aea8862146105f95780638462151c146106245780638da5cb5b1461066157806395d89b411461068c57610246565b806334918dfd116101c75780635ad5159d1161018b5780635ad5159d146104d55780636352211e146105125780636604fd331461054f5780636c0360eb1461057a57806370a08231146105a557610246565b806334918dfd146104185780633ccfd60b1461042f57806342842e0e146104465780634f6ccce71461046f57806355f804b3146104ac57610246565b806318160ddd1161020e57806318160ddd1461034257806319b003c41461036d57806323b872dd146103965780632d8a4e5e146103bf5780632f745c59146103db57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f05780631096952314610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613ada565b6109a3565b60405161027f9190614b7a565b60405180910390f35b34801561029457600080fd5b5061029d610a0a565b6040516102aa9190614b95565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613b6d565b610aac565b6040516102e79190614a91565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613a75565b610b31565b005b34801561032557600080fd5b50610340600480360381019061033b9190613b2c565b610c49565b005b34801561034e57600080fd5b50610357610cdf565b6040516103649190614fd9565b60405180910390f35b34801561037957600080fd5b50610394600480360381019061038f9190613a75565b610cf0565b005b3480156103a257600080fd5b506103bd60048036038101906103b8919061396f565b610e0e565b005b6103d960048036038101906103d49190613b6d565b610e6e565b005b3480156103e757600080fd5b5061040260048036038101906103fd9190613a75565b61100d565b60405161040f9190614fd9565b60405180910390f35b34801561042457600080fd5b5061042d611068565b005b34801561043b57600080fd5b50610444611110565b005b34801561045257600080fd5b5061046d6004803603810190610468919061396f565b6111db565b005b34801561047b57600080fd5b5061049660048036038101906104919190613b6d565b6111fb565b6040516104a39190614fd9565b60405180910390f35b3480156104b857600080fd5b506104d360048036038101906104ce9190613b2c565b61121e565b005b3480156104e157600080fd5b506104fc60048036038101906104f7919061390a565b6112a6565b6040516105099190614b36565b60405180910390f35b34801561051e57600080fd5b5061053960048036038101906105349190613b6d565b611453565b6040516105469190614a91565b60405180910390f35b34801561055b57600080fd5b5061056461148a565b6040516105719190614fd9565b60405180910390f35b34801561058657600080fd5b5061058f611490565b60405161059c9190614b95565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c7919061390a565b611532565b6040516105d99190614fd9565b60405180910390f35b3480156105ee57600080fd5b506105f76115f1565b005b34801561060557600080fd5b5061060e61172e565b60405161061b9190614b95565b60405180910390f35b34801561063057600080fd5b5061064b6004803603810190610646919061390a565b6117cc565b6040516106589190614b58565b60405180910390f35b34801561066d57600080fd5b506106766118c5565b6040516106839190614a91565b60405180910390f35b34801561069857600080fd5b506106a16118ef565b6040516106ae9190614b95565b60405180910390f35b3480156106c357600080fd5b506106cc611991565b6040516106d99190614b95565b60405180910390f35b3480156106ee57600080fd5b5061070960048036038101906107049190613a39565b611a2f565b005b34801561071757600080fd5b50610732600480360381019061072d9190613b6d565b611bb0565b60405161073f9190614b95565b60405180910390f35b34801561075457600080fd5b5061076f600480360381019061076a9190613b2c565b611cae565b005b34801561077d57600080fd5b50610798600480360381019061079391906139be565b611d9a565b005b3480156107a657600080fd5b506107af611dfc565b005b3480156107bd57600080fd5b506107d860048036038101906107d39190613b6d565b611ecd565b6040516107e59190614b95565b60405180910390f35b3480156107fa57600080fd5b50610803612050565b6040516108109190614fd9565b60405180910390f35b34801561082557600080fd5b50610840600480360381019061083b9190613b6d565b612056565b60405161084d9190614b95565b60405180910390f35b34801561086257600080fd5b5061086b612143565b6040516108789190614fd9565b60405180910390f35b34801561088d57600080fd5b506108a860048036038101906108a39190613933565b612149565b6040516108b59190614b7a565b60405180910390f35b3480156108ca57600080fd5b506108d36121dd565b6040516108e09190614b7a565b60405180910390f35b3480156108f557600080fd5b50610910600480360381019061090b9190613b96565b6121f0565b005b34801561091e57600080fd5b506109396004803603810190610934919061390a565b6123c0565b005b34801561094757600080fd5b50610962600480360381019061095d9190613b6d565b61256c565b60405161096f9190614b95565b60405180910390f35b34801561098457600080fd5b5061098d61261c565b60405161099a9190614fd9565b60405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610aa25780601f10610a7757610100808354040283529160200191610aa2565b820191906000526020600020905b815481529060010190602001808311610a8557829003601f168201915b5050505050905090565b6000610ab782612627565b610af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aed90614e99565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b3c82611453565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba490614f39565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bcc612644565b73ffffffffffffffffffffffffffffffffffffffff161480610bfb5750610bfa81610bf5612644565b612149565b5b610c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3190614dd9565b60405180910390fd5b610c44838361264c565b505050565b610c51612644565b73ffffffffffffffffffffffffffffffffffffffff16610c6f6118c5565b73ffffffffffffffffffffffffffffffffffffffff1614610cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbc90614eb9565b60405180910390fd5b80600b9080519060200190610cdb929190613711565b5050565b6000610ceb6002612705565b905090565b610cf8612644565b73ffffffffffffffffffffffffffffffffffffffff16610d166118c5565b73ffffffffffffffffffffffffffffffffffffffff1614610d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6390614eb9565b60405180910390fd5b6000610d76610cdf565b9050600082118015610d8a5750600f548211155b610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc090614cd9565b60405180910390fd5b60005b82811015610ded57610de08482840161271a565b8080600101915050610dcc565b50610e0382600f5461273890919063ffffffff16565b600f81905550505050565b610e1f610e19612644565b82612788565b610e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5590614f79565b60405180910390fd5b610e69838383612866565b505050565b600d60019054906101000a900460ff16610ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb490614fb9565b60405180910390fd5b600081118015610ecf57506127108111155b610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0590614c99565b60405180910390fd5b612710610f2b82610f1d610cdf565b612a7d90919063ffffffff16565b1115610f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6390614cb9565b60405180910390fd5b610f8681666a94d74f430000612ad290919063ffffffff16565b341015610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf90614d39565b60405180910390fd5b60005b81811015611009576000610fdd610cdf565b9050612710610fea610cdf565b1015610ffb57610ffa338261271a565b5b508080600101915050610fcb565b5050565b600061106082600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612b4290919063ffffffff16565b905092915050565b611070612644565b73ffffffffffffffffffffffffffffffffffffffff1661108e6118c5565b73ffffffffffffffffffffffffffffffffffffffff16146110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db90614eb9565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b611118612644565b73ffffffffffffffffffffffffffffffffffffffff166111366118c5565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118390614eb9565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156111d7573d6000803e3d6000fd5b5050565b6111f683838360405180602001604052806000815250611d9a565b505050565b600080611212836002612b5c90919063ffffffff16565b50905080915050919050565b611226612644565b73ffffffffffffffffffffffffffffffffffffffff166112446118c5565b73ffffffffffffffffffffffffffffffffffffffff161461129a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129190614eb9565b60405180910390fd5b6112a381612b88565b50565b606060006112b383611532565b9050600081141561131357600067ffffffffffffffff811180156112d657600080fd5b5060405190808252806020026020018201604052801561130a57816020015b60608152602001906001900390816112f55790505b5091505061144e565b60008167ffffffffffffffff8111801561132c57600080fd5b5060405190808252806020026020018201604052801561136057816020015b606081526020019060019003908161134b5790505b50905060005b8281101561144757600e600061137c878461100d565b81526020019081526020016000208054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561141e5780601f106113f35761010080835404028352916020019161141e565b820191906000526020600020905b81548152906001019060200180831161140157829003601f168201915b505050505082828151811061142f57fe5b60200260200101819052508080600101915050611366565b8193505050505b919050565b600061148382604051806060016040528060298152602001615341602991396002612ba29092919063ffffffff16565b9050919050565b61271081565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156115285780601f106114fd57610100808354040283529160200191611528565b820191906000526020600020905b81548152906001019060200180831161150b57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159a90614e19565b60405180910390fd5b6115ea600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612bc1565b9050919050565b6115f9612644565b73ffffffffffffffffffffffffffffffffffffffff166116176118c5565b73ffffffffffffffffffffffffffffffffffffffff161461166d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166490614eb9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117c45780601f10611799576101008083540402835291602001916117c4565b820191906000526020600020905b8154815290600101906020018083116117a757829003601f168201915b505050505081565b606060006117d983611532565b9050600081141561183457600067ffffffffffffffff811180156117fc57600080fd5b5060405190808252806020026020018201604052801561182b5781602001602082028036833780820191505090505b509150506118c0565b60008167ffffffffffffffff8111801561184d57600080fd5b5060405190808252806020026020018201604052801561187c5781602001602082028036833780820191505090505b50905060005b828110156118b957611894858261100d565b8282815181106118a057fe5b6020026020010181815250508080600101915050611882565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156119875780601f1061195c57610100808354040283529160200191611987565b820191906000526020600020905b81548152906001019060200180831161196a57829003601f168201915b5050505050905090565b600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611a275780601f106119fc57610100808354040283529160200191611a27565b820191906000526020600020905b815481529060010190602001808311611a0a57829003601f168201915b505050505081565b611a37612644565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c90614d19565b60405180910390fd5b8060056000611ab2612644565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b5f612644565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ba49190614b7a565b60405180910390a35050565b6060611bba610cdf565b8210611bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf290614db9565b60405180910390fd5b600e60008381526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611ca25780601f10611c7757610100808354040283529160200191611ca2565b820191906000526020600020905b815481529060010190602001808311611c8557829003601f168201915b50505050509050919050565b611cb6612644565b73ffffffffffffffffffffffffffffffffffffffff16611cd46118c5565b73ffffffffffffffffffffffffffffffffffffffff1614611d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2190614eb9565b60405180910390fd5b60001515600d60009054906101000a900460ff16151514611d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7790614f59565b60405180910390fd5b80600c9080519060200190611d96929190613711565b5050565b611dab611da5612644565b83612788565b611dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de190614f79565b60405180910390fd5b611df684848484612bd6565b50505050565b611e04612644565b73ffffffffffffffffffffffffffffffffffffffff16611e226118c5565b73ffffffffffffffffffffffffffffffffffffffff1614611e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6f90614eb9565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0600c604051611ec39190614bb7565b60405180910390a1565b6060611ed882612627565b611f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0e90614ef9565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611fc05780601f10611f9557610100808354040283529160200191611fc0565b820191906000526020600020905b815481529060010190602001808311611fa357829003601f168201915b505050505090506000611fd1611490565b9050600081511415611fe757819250505061204b565b60008251111561201c578082604051602001612004929190614a6d565b6040516020818303038152906040529250505061204b565b8061202685612c32565b604051602001612037929190614a6d565b604051602081830303815290604052925050505b919050565b61271081565b6060612060610cdf565b82106120a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209890614c79565b60405180910390fd5b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121375780601f1061210c57610100808354040283529160200191612137565b820191906000526020600020905b81548152906001019060200180831161211a57829003601f168201915b50505050509050919050565b600f5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60019054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff1661221083611453565b73ffffffffffffffffffffffffffffffffffffffff1614612266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225d90614df9565b60405180910390fd5b6002600e60008481526020019081526020016000206040516122889190614a56565b602060405180830381855afa1580156122a5573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906122c89190613ab1565b6002826040516122d89190614a3f565b602060405180830381855afa1580156122f5573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906123189190613ab1565b1415612359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235090614f19565b60405180910390fd5b80600e60008481526020019081526020016000209080519060200190612380929190613711565b507f61d724083b831fef0356fcdecdb18b059d56e518be9446c28f2827bb0e3c26bf3383836040516123b493929190614af8565b60405180910390a15050565b6123c8612644565b73ffffffffffffffffffffffffffffffffffffffff166123e66118c5565b73ffffffffffffffffffffffffffffffffffffffff161461243c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243390614eb9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a390614c19565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e6020528060005260406000206000915090508054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156126145780601f106125e957610100808354040283529160200191612614565b820191906000526020600020905b8154815290600101906020018083116125f757829003601f168201915b505050505081565b666a94d74f43000081565b600061263d826002612d7990919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126bf83611453565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061271382600001612d93565b9050919050565b612734828260405180602001604052806000815250612da4565b5050565b60008282111561277d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277490614d59565b60405180910390fd5b818303905092915050565b600061279382612627565b6127d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c990614d99565b60405180910390fd5b60006127dd83611453565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061284c57508373ffffffffffffffffffffffffffffffffffffffff1661283484610aac565b73ffffffffffffffffffffffffffffffffffffffff16145b8061285d575061285c8185612149565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661288682611453565b73ffffffffffffffffffffffffffffffffffffffff16146128dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d390614ed9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561294c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294390614cf9565b60405180910390fd5b612957838383612dff565b61296260008261264c565b6129b381600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612e0490919063ffffffff16565b50612a0581600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612e1e90919063ffffffff16565b50612a1c81836002612e389092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600080828401905083811015612ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abf90614c59565b60405180910390fd5b8091505092915050565b600080831415612ae55760009050612b3c565b6000828402905082848281612af657fe5b0414612b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2e90614e79565b60405180910390fd5b809150505b92915050565b6000612b518360000183612e6d565b60001c905092915050565b600080600080612b6f8660000186612eda565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190612b9e929190613711565b5050565b6000612bb5846000018460001b84612f5d565b60001c90509392505050565b6000612bcf82600001612fee565b9050919050565b612be1848484612866565b612bed84848484612fff565b612c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2390614bf9565b60405180910390fd5b50505050565b60606000821415612c7a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d74565b600082905060005b60008214612ca4578080600101915050600a8281612c9c57fe5b049150612c82565b60008167ffffffffffffffff81118015612cbd57600080fd5b506040519080825280601f01601f191660200182016040528015612cf05781602001600182028036833780820191505090505b50905060006001830390508593505b60008414612d6c57600a8481612d1157fe5b0660300160f81b82828060019003935081518110612d2b57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481612d6457fe5b049350612cff565b819450505050505b919050565b6000612d8b836000018360001b613163565b905092915050565b600081600001805490509050919050565b612dae8383613186565b612dbb6000848484612fff565b612dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df190614bf9565b60405180910390fd5b505050565b505050565b6000612e16836000018360001b613314565b905092915050565b6000612e30836000018360001b6133fc565b905092915050565b6000612e64846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b61346c565b90509392505050565b600081836000018054905011612eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eaf90614bd9565b60405180910390fd5b826000018281548110612ec757fe5b9060005260206000200154905092915050565b60008082846000018054905011612f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1d90614e39565b60405180910390fd5b6000846000018481548110612f3757fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb69190614b95565b60405180910390fd5b50846000016001820381548110612fd257fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006130208473ffffffffffffffffffffffffffffffffffffffff16613548565b61302d576001905061315b565b60006130f463150b7a0260e01b613042612644565b8887876040516024016130589493929190614aac565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405180606001604052806032815260200161530f603291398773ffffffffffffffffffffffffffffffffffffffff1661355b9092919063ffffffff16565b905060008180602001905181019061310c9190613b03565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ed90614e59565b60405180910390fd5b6131ff81612627565b1561323f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161323690614c39565b60405180910390fd5b61324b60008383612dff565b61329c81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612e1e90919063ffffffff16565b506132b381836002612e389092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080836001016000848152602001908152602001600020549050600081146133f0576000600182039050600060018660000180549050039050600086600001828154811061335f57fe5b906000526020600020015490508087600001848154811061337c57fe5b90600052602060002001819055506001830187600101600083815260200190815260200160002081905550866000018054806133b457fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506133f6565b60009150505b92915050565b60006134088383613573565b613461578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613466565b600090505b92915050565b600080846001016000858152602001908152602001600020549050600081141561351357846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050613541565b8285600001600183038154811061352657fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080823b905060008111915050919050565b606061356a8484600085613596565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b6060824710156135db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135d290614d79565b60405180910390fd5b6135e485613548565b613623576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161361a90614f99565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161364c9190614a3f565b60006040518083038185875af1925050503d8060008114613689576040519150601f19603f3d011682016040523d82523d6000602084013e61368e565b606091505b509150915061369e8282866136aa565b92505050949350505050565b606083156136ba5782905061370a565b6000835111156136cd5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137019190614b95565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282613747576000855561378e565b82601f1061376057805160ff191683800117855561378e565b8280016001018555821561378e579182015b8281111561378d578251825591602001919060010190613772565b5b50905061379b919061379f565b5090565b5b808211156137b85760008160009055506001016137a0565b5090565b60006137cf6137ca84615025565b614ff4565b9050828152602081018484840111156137e757600080fd5b6137f2848285615246565b509392505050565b600061380d61380884615055565b614ff4565b90508281526020810184848401111561382557600080fd5b613830848285615246565b509392505050565b6000813590506138478161529b565b92915050565b60008135905061385c816152b2565b92915050565b600081519050613871816152c9565b92915050565b600081359050613886816152e0565b92915050565b60008151905061389b816152e0565b92915050565b600082601f8301126138b257600080fd5b81356138c28482602086016137bc565b91505092915050565b600082601f8301126138dc57600080fd5b81356138ec8482602086016137fa565b91505092915050565b600081359050613904816152f7565b92915050565b60006020828403121561391c57600080fd5b600061392a84828501613838565b91505092915050565b6000806040838503121561394657600080fd5b600061395485828601613838565b925050602061396585828601613838565b9150509250929050565b60008060006060848603121561398457600080fd5b600061399286828701613838565b93505060206139a386828701613838565b92505060406139b4868287016138f5565b9150509250925092565b600080600080608085870312156139d457600080fd5b60006139e287828801613838565b94505060206139f387828801613838565b9350506040613a04878288016138f5565b925050606085013567ffffffffffffffff811115613a2157600080fd5b613a2d878288016138a1565b91505092959194509250565b60008060408385031215613a4c57600080fd5b6000613a5a85828601613838565b9250506020613a6b8582860161384d565b9150509250929050565b60008060408385031215613a8857600080fd5b6000613a9685828601613838565b9250506020613aa7858286016138f5565b9150509250929050565b600060208284031215613ac357600080fd5b6000613ad184828501613862565b91505092915050565b600060208284031215613aec57600080fd5b6000613afa84828501613877565b91505092915050565b600060208284031215613b1557600080fd5b6000613b238482850161388c565b91505092915050565b600060208284031215613b3e57600080fd5b600082013567ffffffffffffffff811115613b5857600080fd5b613b64848285016138cb565b91505092915050565b600060208284031215613b7f57600080fd5b6000613b8d848285016138f5565b91505092915050565b60008060408385031215613ba957600080fd5b6000613bb7858286016138f5565b925050602083013567ffffffffffffffff811115613bd457600080fd5b613be0858286016138cb565b9150509250929050565b6000613bf68383613e1d565b905092915050565b6000613c0a8383614a21565b60208301905092915050565b613c1f81615210565b82525050565b613c2e81615192565b82525050565b613c3d81615180565b82525050565b6000613c4e826150cf565b613c588185615115565b935083602082028501613c6a85615085565b8060005b85811015613ca65784840389528151613c878582613bea565b9450613c92836150fb565b925060208a01995050600181019050613c6e565b50829750879550505050505092915050565b6000613cc3826150da565b613ccd8185615126565b9350613cd883615095565b8060005b83811015613d09578151613cf08882613bfe565b9750613cfb83615108565b925050600181019050613cdc565b5085935050505092915050565b613d1f816151a4565b82525050565b6000613d30826150e5565b613d3a8185615137565b9350613d4a818560208601615255565b613d538161528a565b840191505092915050565b6000613d69826150e5565b613d738185615148565b9350613d83818560208601615255565b80840191505092915050565b600081546001811660008114613dac5760018114613dd157613e15565b607f6002830416613dbd8187615148565b955060ff1983168652808601935050613e15565b60028204613ddf8187615148565b9550613dea856150a5565b60005b82811015613e0c57815481890152600182019150602081019050613ded565b82880195505050505b505092915050565b6000613e28826150f0565b613e328185615153565b9350613e42818560208601615255565b613e4b8161528a565b840191505092915050565b6000613e61826150f0565b613e6b8185615164565b9350613e7b818560208601615255565b613e848161528a565b840191505092915050565b6000613e9a826150f0565b613ea48185615175565b9350613eb4818560208601615255565b80840191505092915050565b600081546001811660008114613edd5760018114613f0357613f47565b607f6002830416613eee8187615164565b955060ff198316865260208601935050613f47565b60028204613f118187615164565b9550613f1c856150ba565b60005b82811015613f3e57815481890152600182019150602081019050613f1f565b80880195505050505b505092915050565b6000613f5c602283615164565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fc2603283615164565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614028602683615164565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061408e601c83615164565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006140ce601b83615164565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b600061410e601983615164565b91507f43484f4f53452041205049472057495448494e2052414e4745000000000000006000830152602082019050919050565b600061414e602283615164565b91507f43616e206f6e6c79206d696e742032353820746f6b656e73206174206120746960008301527f6d650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006141b4602883615164565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620706967730000000000000000000000000000000000000000000000006020830152604082019050919050565b600061421a602083615164565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b600061425a602483615164565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006142c0601983615164565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614300601f83615164565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000614340601e83615164565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000614380602683615164565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006143e6602c83615164565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061444c601983615164565b91507f43686f6f73652061207069672077697468696e2072616e6765000000000000006000830152602082019050919050565b600061448c603883615164565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006144f2602683615164565b91507f4865792c20796f75722077616c6c657420646f65736e2774206f776e2074686960008301527f73207069672100000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614558602a83615164565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006145be602283615164565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614624602083615164565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614664602183615164565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146ca602c83615164565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614730602083615164565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614770602983615164565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006147d6602f83615164565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061483c602383615164565b91507f4e6577206e616d652069732073616d65206173207468652063757272656e742060008301527f6f6e6500000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006148a2602183615164565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614908601683615164565b91507f4c6963656e736520616c7265616479206c6f636b6564000000000000000000006000830152602082019050919050565b6000614948603183615164565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006149ae601d83615164565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b60006149ee601f83615164565b91507f53616c65206d7573742062652061637469766520746f206d696e7420506967006000830152602082019050919050565b614a2a81615206565b82525050565b614a3981615206565b82525050565b6000614a4b8284613d5e565b915081905092915050565b6000614a628284613d8f565b915081905092915050565b6000614a798285613e8f565b9150614a858284613e8f565b91508190509392505050565b6000602082019050614aa66000830184613c34565b92915050565b6000608082019050614ac16000830187613c25565b614ace6020830186613c34565b614adb6040830185614a30565b8181036060830152614aed8184613d25565b905095945050505050565b6000606082019050614b0d6000830186613c16565b614b1a6020830185614a30565b8181036040830152614b2c8184613e56565b9050949350505050565b60006020820190508181036000830152614b508184613c43565b905092915050565b60006020820190508181036000830152614b728184613cb8565b905092915050565b6000602082019050614b8f6000830184613d16565b92915050565b60006020820190508181036000830152614baf8184613e56565b905092915050565b60006020820190508181036000830152614bd18184613ec0565b905092915050565b60006020820190508181036000830152614bf281613f4f565b9050919050565b60006020820190508181036000830152614c1281613fb5565b9050919050565b60006020820190508181036000830152614c328161401b565b9050919050565b60006020820190508181036000830152614c5281614081565b9050919050565b60006020820190508181036000830152614c72816140c1565b9050919050565b60006020820190508181036000830152614c9281614101565b9050919050565b60006020820190508181036000830152614cb281614141565b9050919050565b60006020820190508181036000830152614cd2816141a7565b9050919050565b60006020820190508181036000830152614cf28161420d565b9050919050565b60006020820190508181036000830152614d128161424d565b9050919050565b60006020820190508181036000830152614d32816142b3565b9050919050565b60006020820190508181036000830152614d52816142f3565b9050919050565b60006020820190508181036000830152614d7281614333565b9050919050565b60006020820190508181036000830152614d9281614373565b9050919050565b60006020820190508181036000830152614db2816143d9565b9050919050565b60006020820190508181036000830152614dd28161443f565b9050919050565b60006020820190508181036000830152614df28161447f565b9050919050565b60006020820190508181036000830152614e12816144e5565b9050919050565b60006020820190508181036000830152614e328161454b565b9050919050565b60006020820190508181036000830152614e52816145b1565b9050919050565b60006020820190508181036000830152614e7281614617565b9050919050565b60006020820190508181036000830152614e9281614657565b9050919050565b60006020820190508181036000830152614eb2816146bd565b9050919050565b60006020820190508181036000830152614ed281614723565b9050919050565b60006020820190508181036000830152614ef281614763565b9050919050565b60006020820190508181036000830152614f12816147c9565b9050919050565b60006020820190508181036000830152614f328161482f565b9050919050565b60006020820190508181036000830152614f5281614895565b9050919050565b60006020820190508181036000830152614f72816148fb565b9050919050565b60006020820190508181036000830152614f928161493b565b9050919050565b60006020820190508181036000830152614fb2816149a1565b9050919050565b60006020820190508181036000830152614fd2816149e1565b9050919050565b6000602082019050614fee6000830184614a30565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561501b5761501a615288565b5b8060405250919050565b600067ffffffffffffffff8211156150405761503f615288565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156150705761506f615288565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061518b826151e6565b9050919050565b600061519d826151e6565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061521b82615222565b9050919050565b600061522d82615234565b9050919050565b600061523f826151e6565b9050919050565b82818337600083830152505050565b60005b83811015615273578082015181840152602081019050615258565b83811115615282576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b6152a481615180565b81146152af57600080fd5b50565b6152bb816151a4565b81146152c657600080fd5b50565b6152d2816151b0565b81146152dd57600080fd5b50565b6152e9816151ba565b81146152f457600080fd5b50565b61530081615206565b811461530b57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220294cbff9a202c0cc51db2938e4df16e309d36fca751ff6a7a7b91ffd4239580264736f6c63430007060033

Deployed Bytecode Sourcemap

66867:4971:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10253:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51538:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54324:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53854:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68307:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53332:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67903:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55214:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69841:684;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53094:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68548:89;;;;;;;;;;;;;:::i;:::-;;67760:131;;;;;;;;;;;;;:::i;:::-;;55590:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53620:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68439:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71278:551;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51294:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67284:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52913:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51011:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66249:148;;;;;;;;;;;;;:::i;:::-;;66955:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68655:540;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65598:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51707:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67054:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54617:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70948:191;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69649:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55812:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69485:125;;;;;;;;;;;;;:::i;:::-;;51882:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67336:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69246:173;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67534:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54983:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67385:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70538:398;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66552:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67430:39;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67207:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10253:150;10338:4;10362:20;:33;10383:11;10362:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10355:40;;10253:150;;;:::o;51538:100::-;51592:13;51625:5;51618:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51538:100;:::o;54324:221::-;54400:7;54428:16;54436:7;54428;:16::i;:::-;54420:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54513:15;:24;54529:7;54513:24;;;;;;;;;;;;;;;;;;;;;54506:31;;54324:221;;;:::o;53854:404::-;53935:13;53951:23;53966:7;53951:14;:23::i;:::-;53935:39;;53999:5;53993:11;;:2;:11;;;;53985:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;54079:5;54063:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;54088:44;54112:5;54119:12;:10;:12::i;:::-;54088:23;:44::i;:::-;54063:69;54055:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;54229:21;54238:2;54242:7;54229:8;:21::i;:::-;53854:404;;;:::o;68307:124::-;65829:12;:10;:12::i;:::-;65818:23;;:7;:5;:7::i;:::-;:23;;;65810:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68409:14:::1;68392;:31;;;;;;;;;;;;:::i;:::-;;68307:124:::0;:::o;53332:211::-;53393:7;53514:21;:12;:19;:21::i;:::-;53507:28;;53332:211;:::o;67903:394::-;65829:12;:10;:12::i;:::-;65818:23;;:7;:5;:7::i;:::-;:23;;;65810:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67997:11:::1;68011:13;:11;:13::i;:::-;67997:27;;68060:1;68043:14;:18;:50;;;;;68083:10;;68065:14;:28;;68043:50;68035:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;68146:6;68141:95;68162:14;68158:1;:18;68141:95;;;68198:26;68208:3;68222:1;68213:6;:10;68198:9;:26::i;:::-;68178:3;;;;;;;68141:95;;;;68259:30;68274:14;68259:10;;:14;;:30;;;;:::i;:::-;68246:10;:43;;;;65889:1;67903:394:::0;;:::o;55214:305::-;55375:41;55394:12;:10;:12::i;:::-;55408:7;55375:18;:41::i;:::-;55367:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;55483:28;55493:4;55499:2;55503:7;55483:9;:28::i;:::-;55214:305;;;:::o;69841:684::-;69921:12;;;;;;;;;;;69913:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;70005:1;69988:14;:18;:54;;;;;67322:5;70010:14;:32;;69988:54;69980:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;67371:5;70100:33;70118:14;70100:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:45;;70092:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;70222:28;70235:14;67242:17;70222:12;;:28;;;;:::i;:::-;70209:9;:41;;70201:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;70311:6;70307:209;70327:14;70323:1;:18;70307:209;;;70363:14;70380:13;:11;:13::i;:::-;70363:30;;67371:5;70412:13;:11;:13::i;:::-;:24;70408:97;;;70457:32;70467:10;70479:9;70457;:32::i;:::-;70408:97;70307:209;70343:3;;;;;;;70307:209;;;;69841:684;:::o;53094:162::-;53191:7;53218:30;53242:5;53218:13;:20;53232:5;53218:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;53211:37;;53094:162;;;;:::o;68548:89::-;65829:12;:10;:12::i;:::-;65818:23;;:7;:5;:7::i;:::-;:23;;;65810:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68617:12:::1;;;;;;;;;;;68616:13;68601:12;;:28;;;;;;;;;;;;;;;;;;68548:89::o:0;67760:131::-;65829:12;:10;:12::i;:::-;65818:23;;:7;:5;:7::i;:::-;:23;;;65810:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67808:12:::1;67823:21;67808:36;;67855:10;:19;;:28;67875:7;67855:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;65889:1;67760:131::o:0;55590:151::-;55694:39;55711:4;55717:2;55721:7;55694:39;;;;;;;;;;;;:16;:39::i;:::-;55590:151;;;:::o;53620:172::-;53695:7;53716:15;53737:22;53753:5;53737:12;:15;;:22;;;;:::i;:::-;53715:44;;;53777:7;53770:14;;;53620:172;;;:::o;68439:99::-;65829:12;:10;:12::i;:::-;65818:23;;:7;:5;:7::i;:::-;:23;;;65810:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68510:20:::1;68522:7;68510:11;:20::i;:::-;68439:99:::0;:::o;71278:551::-;71341:15;71370:18;71391:17;71401:6;71391:9;:17::i;:::-;71370:38;;71437:1;71423:10;:15;71419:403;;;71513:1;71500:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71493:22;;;;;71419:403;71548:22;71586:10;71573:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71548:49;;71612:13;71640:143;71664:10;71656:5;:18;71640:143;;;71720:8;:46;71730:34;71750:6;71758:5;71730:19;:34::i;:::-;71720:46;;;;;;;;;;;71704:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:6;71711:5;71704:13;;;;;;;;;;;;;:62;;;;71676:7;;;;;;;71640:143;;;71804:6;71797:13;;;;;71278:551;;;;:::o;51294:177::-;51366:7;51393:70;51410:7;51393:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;51386:77;;51294:177;;;:::o;67284:43::-;67322:5;67284:43;:::o;52913:97::-;52961:13;52994:8;52987:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52913:97;:::o;51011:221::-;51083:7;51128:1;51111:19;;:5;:19;;;;51103:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;51195:29;:13;:20;51209:5;51195:20;;;;;;;;;;;;;;;:27;:29::i;:::-;51188:36;;51011:221;;;:::o;66249:148::-;65829:12;:10;:12::i;:::-;65818:23;;:7;:5;:7::i;:::-;:23;;;65810:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66356:1:::1;66319:40;;66340:6;;;;;;;;;;;66319:40;;;;;;;;;;;;66387:1;66370:6;;:19;;;;;;;;;;;;;;;;;;66249:148::o:0;66955:33::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;68655:540::-;68716:16;68746:18;68767:17;68777:6;68767:9;:17::i;:::-;68746:38;;68813:1;68799:10;:15;68795:393;;;68890:1;68876:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68869:23;;;;;68795:393;68925:23;68965:10;68951:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68925:51;;68991:13;69019:130;69043:10;69035:5;:18;69019:130;;;69099:34;69119:6;69127:5;69099:19;:34::i;:::-;69083:6;69090:5;69083:13;;;;;;;;;;;;;:50;;;;;69055:7;;;;;;;69019:130;;;69170:6;69163:13;;;;;68655:540;;;;:::o;65598:87::-;65644:7;65671:6;;;;;;;;;;;65664:13;;65598:87;:::o;51707:104::-;51763:13;51796:7;51789:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51707:104;:::o;67054:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54617:295::-;54732:12;:10;:12::i;:::-;54720:24;;:8;:24;;;;54712:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;54832:8;54787:18;:32;54806:12;:10;:12::i;:::-;54787:32;;;;;;;;;;;;;;;:42;54820:8;54787:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;54885:8;54856:48;;54871:12;:10;:12::i;:::-;54856:48;;;54895:8;54856:48;;;;;;:::i;:::-;;;;;;;;54617:295;;:::o;70948:191::-;71005:13;71051;:11;:13::i;:::-;71040:8;:24;71031:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;71113:8;:18;71122:8;71113:18;;;;;;;;;;;71106:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70948:191;;;:::o;69649:174::-;65829:12;:10;:12::i;:::-;65818:23;;:7;:5;:7::i;:::-;:23;;;65810:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69749:5:::1;69732:22;;:13;;;;;;;;;;;:22;;;69724:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;69807:8;69792:12;:23;;;;;;;;;;;;:::i;:::-;;69649:174:::0;:::o;55812:285::-;55944:41;55963:12;:10;:12::i;:::-;55977:7;55944:18;:41::i;:::-;55936:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;56050:39;56064:4;56070:2;56074:7;56083:5;56050:13;:39::i;:::-;55812:285;;;;:::o;69485:125::-;65829:12;:10;:12::i;:::-;65818:23;;:7;:5;:7::i;:::-;:23;;;65810:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69553:4:::1;69536:13;;:21;;;;;;;;;;;;;;;;;;69573:29;69589:12;69573:29;;;;;;:::i;:::-;;;;;;;;69485:125::o:0;51882:792::-;51955:13;51989:16;51997:7;51989;:16::i;:::-;51981:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;52070:23;52096:10;:19;52107:7;52096:19;;;;;;;;;;;52070:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52126:18;52147:9;:7;:9::i;:::-;52126:30;;52254:1;52238:4;52232:18;:23;52228:72;;;52279:9;52272:16;;;;;;52228:72;52430:1;52410:9;52404:23;:27;52400:108;;;52479:4;52485:9;52462:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52448:48;;;;;;52400:108;52640:4;52646:18;:7;:16;:18::i;:::-;52623:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52609:57;;;;51882:792;;;;:::o;67336:40::-;67371:5;67336:40;:::o;69246:173::-;69298:13;69338;:11;:13::i;:::-;69332:3;:19;69324:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;69399:12;69392:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69246:173;;;:::o;67534:28::-;;;;:::o;54983:164::-;55080:4;55104:18;:25;55123:5;55104:25;;;;;;;;;;;;;;;:35;55130:8;55104:35;;;;;;;;;;;;;;;;;;;;;;;;;55097:42;;54983:164;;;;:::o;67385:32::-;;;;;;;;;;;;;:::o;70538:398::-;70644:10;70623:31;;:17;70631:8;70623:7;:17::i;:::-;:31;;;70615:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;70740:33;70753:8;:18;70762:8;70753:18;;;;;;;;;;;70740:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;70716:20;70729:5;70716:20;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:57;;70708:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;70845:5;70824:8;:18;70833:8;70824:18;;;;;;;;;;;:26;;;;;;;;;;;;:::i;:::-;;70876:42;70890:10;70902:8;70912:5;70876:42;;;;;;;;:::i;:::-;;;;;;;;70538:398;;:::o;66552:244::-;65829:12;:10;:12::i;:::-;65818:23;;:7;:5;:7::i;:::-;:23;;;65810:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66661:1:::1;66641:22;;:8;:22;;;;66633:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;66751:8;66722:38;;66743:6;;;;;;;;;;;66722:38;;;;;;;;;;;;66780:8;66771:6;;:17;;;;;;;;;;;;;;;;;;66552:244:::0;:::o;67430:39::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;67207:52::-;67242:17;67207:52;:::o;57564:127::-;57629:4;57653:30;57675:7;57653:12;:21;;:30;;;;:::i;:::-;57646:37;;57564:127;;;:::o;798:106::-;851:15;886:10;879:17;;798:106;:::o;63582:192::-;63684:2;63657:15;:24;63673:7;63657:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;63740:7;63736:2;63702:46;;63711:23;63726:7;63711:14;:23::i;:::-;63702:46;;;;;;;;;;;;63582:192;;:::o;44296:123::-;44365:7;44392:19;44400:3;:10;;44392:7;:19::i;:::-;44385:26;;44296:123;;;:::o;58556:110::-;58632:26;58642:2;58646:7;58632:26;;;;;;;;;;;;:9;:26::i;:::-;58556:110;;:::o;14277:158::-;14335:7;14368:1;14363;:6;;14355:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;14426:1;14422;:5;14415:12;;14277:158;;;;:::o;57858:355::-;57951:4;57976:16;57984:7;57976;:16::i;:::-;57968:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58052:13;58068:23;58083:7;58068:14;:23::i;:::-;58052:39;;58121:5;58110:16;;:7;:16;;;:51;;;;58154:7;58130:31;;:20;58142:7;58130:11;:20::i;:::-;:31;;;58110:51;:94;;;;58165:39;58189:5;58196:7;58165:23;:39::i;:::-;58110:94;58102:103;;;57858:355;;;;:::o;60994:599::-;61119:4;61092:31;;:23;61107:7;61092:14;:23::i;:::-;:31;;;61084:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;61220:1;61206:16;;:2;:16;;;;61198:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61276:39;61297:4;61303:2;61307:7;61276:20;:39::i;:::-;61380:29;61397:1;61401:7;61380:8;:29::i;:::-;61422:35;61449:7;61422:13;:19;61436:4;61422:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;61468:30;61490:7;61468:13;:17;61482:2;61468:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;61511:29;61528:7;61537:2;61511:12;:16;;:29;;;;;:::i;:::-;;61577:7;61573:2;61558:27;;61567:4;61558:27;;;;;;;;;;;;60994:599;;;:::o;13815:179::-;13873:7;13893:9;13909:1;13905;:5;13893:17;;13934:1;13929;:6;;13921:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;13985:1;13978:8;;;13815:179;;;;:::o;14694:220::-;14752:7;14781:1;14776;:6;14772:20;;;14791:1;14784:8;;;;14772:20;14803:9;14819:1;14815;:5;14803:17;;14848:1;14843;14839;:5;;;;;;:10;14831:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;14905:1;14898:8;;;14694:220;;;;;:::o;36087:137::-;36158:7;36193:22;36197:3;:10;;36209:5;36193:3;:22::i;:::-;36185:31;;36178:38;;36087:137;;;;:::o;44758:236::-;44838:7;44847;44868:11;44881:13;44898:22;44902:3;:10;;44914:5;44898:3;:22::i;:::-;44867:53;;;;44947:3;44939:12;;44977:5;44969:14;;44931:55;;;;;;44758:236;;;;;:::o;62194:100::-;62278:8;62267;:19;;;;;;;;;;;;:::i;:::-;;62194:100;:::o;46044:213::-;46151:7;46202:44;46207:3;:10;;46227:3;46219:12;;46233;46202:4;:44::i;:::-;46194:53;;46171:78;;46044:213;;;;;:::o;35629:114::-;35689:7;35716:19;35724:3;:10;;35716:7;:19::i;:::-;35709:26;;35629:114;;;:::o;56979:272::-;57093:28;57103:4;57109:2;57113:7;57093:9;:28::i;:::-;57140:48;57163:4;57169:2;57173:7;57182:5;57140:22;:48::i;:::-;57132:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;56979:272;;;;:::o;46508:746::-;46564:13;46794:1;46785:5;:10;46781:53;;;46812:10;;;;;;;;;;;;;;;;;;;;;46781:53;46844:12;46859:5;46844:20;;46875:14;46900:78;46915:1;46907:4;:9;46900:78;;46933:8;;;;;;;46964:2;46956:10;;;;;;;;;46900:78;;;46988:19;47020:6;47010:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46988:39;;47038:13;47063:1;47054:6;:10;47038:26;;47082:5;47075:12;;47098:117;47113:1;47105:4;:9;47098:117;;47174:2;47167:4;:9;;;;;;47162:2;:14;47149:29;;47131:6;47138:7;;;;;;;47131:15;;;;;;;;;;;:47;;;;;;;;;;;47201:2;47193:10;;;;;;;;;47098:117;;;47239:6;47225:21;;;;;;46508:746;;;;:::o;44057:151::-;44141:4;44165:35;44175:3;:10;;44195:3;44187:12;;44165:9;:35::i;:::-;44158:42;;44057:151;;;;:::o;40875:110::-;40931:7;40958:3;:12;;:19;;;;40951:26;;40875:110;;;:::o;58893:250::-;58989:18;58995:2;58999:7;58989:5;:18::i;:::-;59026:54;59057:1;59061:2;59065:7;59074:5;59026:22;:54::i;:::-;59018:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;58893:250;;;:::o;64387:93::-;;;;:::o;35174:137::-;35244:4;35268:35;35276:3;:10;;35296:5;35288:14;;35268:7;:35::i;:::-;35261:42;;35174:137;;;;:::o;34867:131::-;34934:4;34958:32;34963:3;:10;;34983:5;34975:14;;34958:4;:32::i;:::-;34951:39;;34867:131;;;;:::o;43480:185::-;43569:4;43593:64;43598:3;:10;;43618:3;43610:12;;43648:5;43632:23;;43624:32;;43593:4;:64::i;:::-;43586:71;;43480:185;;;;;:::o;31125:204::-;31192:7;31241:5;31220:3;:11;;:18;;;;:26;31212:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31303:3;:11;;31315:5;31303:18;;;;;;;;;;;;;;;;31296:25;;31125:204;;;;:::o;41340:279::-;41407:7;41416;41466:5;41444:3;:12;;:19;;;;:27;41436:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;41523:22;41548:3;:12;;41561:5;41548:19;;;;;;;;;;;;;;;;;;41523:44;;41586:5;:10;;;41598:5;:12;;;41578:33;;;;;41340:279;;;;;:::o;42837:319::-;42931:7;42951:16;42970:3;:12;;:17;42983:3;42970:17;;;;;;;;;;;;42951:36;;43018:1;43006:8;:13;;43021:12;42998:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;43088:3;:12;;43112:1;43101:8;:12;43088:26;;;;;;;;;;;;;;;;;;:33;;;43081:40;;;42837:319;;;;;:::o;30672:109::-;30728:7;30755:3;:11;;:18;;;;30748:25;;30672:109;;;:::o;62859:604::-;62980:4;63007:15;:2;:13;;;:15::i;:::-;63002:60;;63046:4;63039:11;;;;63002:60;63072:23;63098:252;63151:45;;;63211:12;:10;:12::i;:::-;63238:4;63257:7;63279:5;63114:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63098:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;63072:278;;63361:13;63388:10;63377:32;;;;;;;;;;;;:::i;:::-;63361:48;;48008:10;63438:16;;63428:26;;;:6;:26;;;;63420:35;;;;62859:604;;;;;;;:::o;40655:125::-;40726:4;40771:1;40750:3;:12;;:17;40763:3;40750:17;;;;;;;;;;;;:22;;40743:29;;40655:125;;;;:::o;59479:404::-;59573:1;59559:16;;:2;:16;;;;59551:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;59632:16;59640:7;59632;:16::i;:::-;59631:17;59623:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;59694:45;59723:1;59727:2;59731:7;59694:20;:45::i;:::-;59752:30;59774:7;59752:13;:17;59766:2;59752:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;59795:29;59812:7;59821:2;59795:12;:16;;:29;;;;;:::i;:::-;;59867:7;59863:2;59842:33;;59859:1;59842:33;;;;;;;;;;;;59479:404;;:::o;28827:1544::-;28893:4;29011:18;29032:3;:12;;:19;29045:5;29032:19;;;;;;;;;;;;29011:40;;29082:1;29068:10;:15;29064:1300;;29430:21;29467:1;29454:10;:14;29430:38;;29483:17;29524:1;29503:3;:11;;:18;;;;:22;29483:42;;29770:17;29790:3;:11;;29802:9;29790:22;;;;;;;;;;;;;;;;29770:42;;29936:9;29907:3;:11;;29919:13;29907:26;;;;;;;;;;;;;;;:38;;;;30055:1;30039:13;:17;30013:3;:12;;:23;30026:9;30013:23;;;;;;;;;;;:43;;;;30165:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;30260:3;:12;;:19;30273:5;30260:19;;;;;;;;;;;30253:26;;;30303:4;30296:11;;;;;;;;29064:1300;30347:5;30340:12;;;28827:1544;;;;;:::o;28237:414::-;28300:4;28322:21;28332:3;28337:5;28322:9;:21::i;:::-;28317:327;;28360:3;:11;;28377:5;28360:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28543:3;:11;;:18;;;;28521:3;:12;;:19;28534:5;28521:19;;;;;;;;;;;:40;;;;28583:4;28576:11;;;;28317:327;28627:5;28620:12;;28237:414;;;;;:::o;38155:692::-;38231:4;38347:16;38366:3;:12;;:17;38379:3;38366:17;;;;;;;;;;;;38347:36;;38412:1;38400:8;:13;38396:444;;;38467:3;:12;;38485:38;;;;;;;;38502:3;38485:38;;;;38515:5;38485:38;;;38467:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38682:3;:12;;:19;;;;38662:3;:12;;:17;38675:3;38662:17;;;;;;;;;;;:39;;;;38723:4;38716:11;;;;;38396:444;38796:5;38760:3;:12;;38784:1;38773:8;:12;38760:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38823:5;38816:12;;;38155:692;;;;;;:::o;19256:422::-;19316:4;19524:12;19635:7;19623:20;19615:28;;19669:1;19662:4;:8;19655:15;;;19256:422;;;:::o;22174:195::-;22277:12;22309:52;22331:6;22339:4;22345:1;22348:12;22309:21;:52::i;:::-;22302:59;;22174:195;;;;;:::o;30457:129::-;30530:4;30577:1;30554:3;:12;;:19;30567:5;30554:19;;;;;;;;;;;;:24;;30547:31;;30457:129;;;;:::o;23226:530::-;23353:12;23411:5;23386:21;:30;;23378:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;23478:18;23489:6;23478:10;:18::i;:::-;23470:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;23604:12;23618:23;23645:6;:11;;23665:5;23673:4;23645:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23603:75;;;;23696:52;23714:7;23723:10;23735:12;23696:17;:52::i;:::-;23689:59;;;;23226:530;;;;;;:::o;25766:742::-;25881:12;25910:7;25906:595;;;25941:10;25934:17;;;;25906:595;26075:1;26055:10;:17;:21;26051:439;;;26318:10;26312:17;26379:15;26366:10;26362:2;26358:19;26351:44;26266:148;26461:12;26454:20;;;;;;;;;;;:::i;:::-;;;;;;;;25766: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:143::-;;1077:6;1071:13;1062:22;;1093:33;1120:5;1093:33;:::i;:::-;1052:80;;;;:::o;1138:137::-;;1221:6;1208:20;1199:29;;1237:32;1263:5;1237:32;:::i;:::-;1189:86;;;;:::o;1281:141::-;;1368:6;1362:13;1353:22;;1384:32;1410:5;1384:32;:::i;:::-;1343:79;;;;:::o;1441:271::-;;1545:3;1538:4;1530:6;1526:17;1522:27;1512:2;;1563:1;1560;1553:12;1512:2;1603:6;1590:20;1628:78;1702:3;1694:6;1687:4;1679:6;1675:17;1628:78;:::i;:::-;1619:87;;1502:210;;;;;:::o;1732:273::-;;1837:3;1830:4;1822:6;1818:17;1814:27;1804:2;;1855:1;1852;1845:12;1804:2;1895:6;1882:20;1920:79;1995:3;1987:6;1980:4;1972:6;1968:17;1920:79;:::i;:::-;1911:88;;1794:211;;;;;:::o;2011:139::-;;2095:6;2082:20;2073:29;;2111:33;2138:5;2111:33;:::i;:::-;2063:87;;;;:::o;2156:262::-;;2264:2;2252:9;2243:7;2239:23;2235:32;2232:2;;;2280:1;2277;2270:12;2232:2;2323:1;2348:53;2393:7;2384:6;2373:9;2369:22;2348:53;:::i;:::-;2338:63;;2294:117;2222:196;;;;:::o;2424:407::-;;;2549:2;2537:9;2528:7;2524:23;2520:32;2517:2;;;2565:1;2562;2555:12;2517:2;2608:1;2633:53;2678:7;2669:6;2658:9;2654:22;2633:53;:::i;:::-;2623:63;;2579:117;2735:2;2761:53;2806:7;2797:6;2786:9;2782:22;2761:53;:::i;:::-;2751:63;;2706:118;2507:324;;;;;:::o;2837:552::-;;;;2979:2;2967:9;2958:7;2954:23;2950:32;2947:2;;;2995:1;2992;2985:12;2947:2;3038:1;3063:53;3108:7;3099:6;3088:9;3084:22;3063:53;:::i;:::-;3053:63;;3009:117;3165:2;3191:53;3236:7;3227:6;3216:9;3212:22;3191:53;:::i;:::-;3181:63;;3136:118;3293:2;3319:53;3364:7;3355:6;3344:9;3340:22;3319:53;:::i;:::-;3309:63;;3264:118;2937:452;;;;;:::o;3395:809::-;;;;;3563:3;3551:9;3542:7;3538:23;3534:33;3531:2;;;3580:1;3577;3570:12;3531:2;3623:1;3648:53;3693:7;3684:6;3673:9;3669:22;3648:53;:::i;:::-;3638:63;;3594:117;3750:2;3776:53;3821:7;3812:6;3801:9;3797:22;3776:53;:::i;:::-;3766:63;;3721:118;3878:2;3904:53;3949:7;3940:6;3929:9;3925:22;3904:53;:::i;:::-;3894:63;;3849:118;4034:2;4023:9;4019:18;4006:32;4065:18;4057:6;4054:30;4051:2;;;4097:1;4094;4087:12;4051:2;4125:62;4179:7;4170:6;4159:9;4155:22;4125:62;:::i;:::-;4115:72;;3977:220;3521:683;;;;;;;:::o;4210:401::-;;;4332:2;4320:9;4311:7;4307:23;4303:32;4300:2;;;4348:1;4345;4338:12;4300:2;4391:1;4416:53;4461:7;4452:6;4441:9;4437:22;4416:53;:::i;:::-;4406:63;;4362:117;4518:2;4544:50;4586:7;4577:6;4566:9;4562:22;4544:50;:::i;:::-;4534:60;;4489:115;4290:321;;;;;:::o;4617:407::-;;;4742:2;4730:9;4721:7;4717:23;4713:32;4710:2;;;4758:1;4755;4748:12;4710:2;4801:1;4826:53;4871:7;4862:6;4851:9;4847:22;4826:53;:::i;:::-;4816:63;;4772:117;4928:2;4954:53;4999:7;4990:6;4979:9;4975:22;4954:53;:::i;:::-;4944:63;;4899:118;4700:324;;;;;:::o;5030:284::-;;5149:2;5137:9;5128:7;5124:23;5120:32;5117:2;;;5165:1;5162;5155:12;5117:2;5208:1;5233:64;5289:7;5280:6;5269:9;5265:22;5233:64;:::i;:::-;5223:74;;5179:128;5107:207;;;;:::o;5320:260::-;;5427:2;5415:9;5406:7;5402:23;5398:32;5395:2;;;5443:1;5440;5433:12;5395:2;5486:1;5511:52;5555:7;5546:6;5535:9;5531:22;5511:52;:::i;:::-;5501:62;;5457:116;5385:195;;;;:::o;5586:282::-;;5704:2;5692:9;5683:7;5679:23;5675:32;5672:2;;;5720:1;5717;5710:12;5672:2;5763:1;5788:63;5843:7;5834:6;5823:9;5819:22;5788:63;:::i;:::-;5778:73;;5734:127;5662:206;;;;:::o;5874:375::-;;5992:2;5980:9;5971:7;5967:23;5963:32;5960:2;;;6008:1;6005;5998:12;5960:2;6079:1;6068:9;6064:17;6051:31;6109:18;6101:6;6098:30;6095:2;;;6141:1;6138;6131:12;6095:2;6169:63;6224:7;6215:6;6204:9;6200:22;6169:63;:::i;:::-;6159:73;;6022:220;5950:299;;;;:::o;6255:262::-;;6363:2;6351:9;6342:7;6338:23;6334:32;6331:2;;;6379:1;6376;6369:12;6331:2;6422:1;6447:53;6492:7;6483:6;6472:9;6468:22;6447:53;:::i;:::-;6437:63;;6393:117;6321:196;;;;:::o;6523:520::-;;;6658:2;6646:9;6637:7;6633:23;6629:32;6626:2;;;6674:1;6671;6664:12;6626:2;6717:1;6742:53;6787:7;6778:6;6767:9;6763:22;6742:53;:::i;:::-;6732:63;;6688:117;6872:2;6861:9;6857:18;6844:32;6903:18;6895:6;6892:30;6889:2;;;6935:1;6932;6925:12;6889:2;6963:63;7018:7;7009:6;6998:9;6994:22;6963:63;:::i;:::-;6953:73;;6815:221;6616:427;;;;;:::o;7049:196::-;;7173:66;7235:3;7227:6;7173:66;:::i;:::-;7159:80;;7149:96;;;;:::o;7251:179::-;;7341:46;7383:3;7375:6;7341:46;:::i;:::-;7419:4;7414:3;7410:14;7396:28;;7331:99;;;;:::o;7436:147::-;7531:45;7570:5;7531:45;:::i;:::-;7526:3;7519:58;7509:74;;:::o;7589:142::-;7692:32;7718:5;7692:32;:::i;:::-;7687:3;7680:45;7670:61;;:::o;7737:118::-;7824:24;7842:5;7824:24;:::i;:::-;7819:3;7812:37;7802:53;;:::o;7889:991::-;;8057:64;8115:5;8057:64;:::i;:::-;8137:96;8226:6;8221:3;8137:96;:::i;:::-;8130:103;;8259:3;8304:4;8296:6;8292:17;8287:3;8283:27;8334:66;8394:5;8334:66;:::i;:::-;8423:7;8454:1;8439:396;8464:6;8461:1;8458:13;8439:396;;;8535:9;8529:4;8525:20;8520:3;8513:33;8586:6;8580:13;8614:84;8693:4;8678:13;8614:84;:::i;:::-;8606:92;;8721:70;8784:6;8721:70;:::i;:::-;8711:80;;8820:4;8815:3;8811:14;8804:21;;8499:336;8486:1;8483;8479:9;8474:14;;8439:396;;;8443:14;8851:4;8844:11;;8871:3;8864:10;;8033:847;;;;;;;;;:::o;8916:732::-;;9064:54;9112:5;9064:54;:::i;:::-;9134:86;9213:6;9208:3;9134:86;:::i;:::-;9127:93;;9244:56;9294:5;9244:56;:::i;:::-;9323:7;9354:1;9339:284;9364:6;9361:1;9358:13;9339:284;;;9440:6;9434:13;9467:63;9526:3;9511:13;9467:63;:::i;:::-;9460:70;;9553:60;9606:6;9553:60;:::i;:::-;9543:70;;9399:224;9386:1;9383;9379:9;9374:14;;9339:284;;;9343:14;9639:3;9632:10;;9040:608;;;;;;;:::o;9654:109::-;9735:21;9750:5;9735:21;:::i;:::-;9730:3;9723:34;9713:50;;:::o;9769:360::-;;9883:38;9915:5;9883:38;:::i;:::-;9937:70;10000:6;9995:3;9937:70;:::i;:::-;9930:77;;10016:52;10061:6;10056:3;10049:4;10042:5;10038:16;10016:52;:::i;:::-;10093:29;10115:6;10093:29;:::i;:::-;10088:3;10084:39;10077:46;;9859:270;;;;;:::o;10135:373::-;;10267:38;10299:5;10267:38;:::i;:::-;10321:88;10402:6;10397:3;10321:88;:::i;:::-;10314:95;;10418:52;10463:6;10458:3;10451:4;10444:5;10440:16;10418:52;:::i;:::-;10495:6;10490:3;10486:16;10479:23;;10243:265;;;;;:::o;10536:1001::-;;10678:5;10672:12;10715:1;10704:9;10700:17;10731:1;10726:300;;;;11040:1;11035:496;;;;10693:838;;10726:300;10816:4;10812:1;10801:9;10797:17;10793:28;10841:88;10922:6;10917:3;10841:88;:::i;:::-;10834:95;;10973:4;10969:9;10958;10954:25;10949:3;10942:38;11009:6;11004:3;11000:16;10993:23;;10733:293;10726:300;;11035:496;11116:1;11105:9;11101:17;11138:88;11219:6;11214:3;11138:88;:::i;:::-;11131:95;;11254:41;11289:5;11254:41;:::i;:::-;11317:1;11331:154;11345:6;11342:1;11339:13;11331:154;;;11419:7;11413:14;11409:1;11404:3;11400:11;11393:35;11469:1;11460:7;11456:15;11445:26;;11367:4;11364:1;11360:12;11355:17;;11331:154;;;11514:6;11509:3;11505:16;11498:23;;11042:489;;;10693:838;;10645:892;;;;;:::o;11543:344::-;;11649:39;11682:5;11649:39;:::i;:::-;11704:61;11758:6;11753:3;11704:61;:::i;:::-;11697:68;;11774:52;11819:6;11814:3;11807:4;11800:5;11796:16;11774:52;:::i;:::-;11851:29;11873:6;11851:29;:::i;:::-;11846:3;11842:39;11835:46;;11625:262;;;;;:::o;11893:364::-;;12009:39;12042:5;12009:39;:::i;:::-;12064:71;12128:6;12123:3;12064:71;:::i;:::-;12057:78;;12144:52;12189:6;12184:3;12177:4;12170:5;12166:16;12144:52;:::i;:::-;12221:29;12243:6;12221:29;:::i;:::-;12216:3;12212:39;12205:46;;11985:272;;;;;:::o;12263:377::-;;12397:39;12430:5;12397:39;:::i;:::-;12452:89;12534:6;12529:3;12452:89;:::i;:::-;12445:96;;12550:52;12595:6;12590:3;12583:4;12576:5;12572:16;12550:52;:::i;:::-;12627:6;12622:3;12618:16;12611:23;;12373:267;;;;;:::o;12670:937::-;;12792:5;12786:12;12829:1;12818:9;12814:17;12845:1;12840:281;;;;13135:1;13130:471;;;;12807:794;;12840:281;12930:4;12926:1;12915:9;12911:17;12907:28;12955:71;13019:6;13014:3;12955:71;:::i;:::-;12948:78;;13070:4;13066:9;13055;13051:25;13046:3;13039:38;13106:4;13101:3;13097:14;13090:21;;12847:274;12840:281;;13130:471;13211:1;13200:9;13196:17;13233:71;13297:6;13292:3;13233:71;:::i;:::-;13226:78;;13332:38;13364:5;13332:38;:::i;:::-;13392:1;13406:154;13420:6;13417:1;13414:13;13406:154;;;13494:7;13488:14;13484:1;13479:3;13475:11;13468:35;13544:1;13535:7;13531:15;13520:26;;13442:4;13439:1;13435:12;13430:17;;13406:154;;;13589:1;13584:3;13580:11;13573:18;;13137:464;;;12807:794;;12759:848;;;;;:::o;13613:366::-;;13776:67;13840:2;13835:3;13776:67;:::i;:::-;13769:74;;13873:34;13869:1;13864:3;13860:11;13853:55;13939:4;13934:2;13929:3;13925:12;13918:26;13970:2;13965:3;13961:12;13954:19;;13759:220;;;:::o;13985:382::-;;14148:67;14212:2;14207:3;14148:67;:::i;:::-;14141:74;;14245:34;14241:1;14236:3;14232:11;14225:55;14311:20;14306:2;14301:3;14297:12;14290:42;14358:2;14353:3;14349:12;14342:19;;14131:236;;;:::o;14373:370::-;;14536:67;14600:2;14595:3;14536:67;:::i;:::-;14529:74;;14633:34;14629:1;14624:3;14620:11;14613:55;14699:8;14694:2;14689:3;14685:12;14678:30;14734:2;14729:3;14725:12;14718:19;;14519:224;;;:::o;14749:326::-;;14912:67;14976:2;14971:3;14912:67;:::i;:::-;14905:74;;15009:30;15005:1;15000:3;14996:11;14989:51;15066:2;15061:3;15057:12;15050:19;;14895:180;;;:::o;15081:325::-;;15244:67;15308:2;15303:3;15244:67;:::i;:::-;15237:74;;15341:29;15337:1;15332:3;15328:11;15321:50;15397:2;15392:3;15388:12;15381:19;;15227:179;;;:::o;15412:323::-;;15575:67;15639:2;15634:3;15575:67;:::i;:::-;15568:74;;15672:27;15668:1;15663:3;15659:11;15652:48;15726:2;15721:3;15717:12;15710:19;;15558:177;;;:::o;15741:366::-;;15904:67;15968:2;15963:3;15904:67;:::i;:::-;15897:74;;16001:34;15997:1;15992:3;15988:11;15981:55;16067:4;16062:2;16057:3;16053:12;16046:26;16098:2;16093:3;16089:12;16082:19;;15887:220;;;:::o;16113:372::-;;16276:67;16340:2;16335:3;16276:67;:::i;:::-;16269:74;;16373:34;16369:1;16364:3;16360:11;16353:55;16439:10;16434:2;16429:3;16425:12;16418:32;16476:2;16471:3;16467:12;16460:19;;16259:226;;;:::o;16491:330::-;;16654:67;16718:2;16713:3;16654:67;:::i;:::-;16647:74;;16751:34;16747:1;16742:3;16738:11;16731:55;16812:2;16807:3;16803:12;16796:19;;16637:184;;;:::o;16827:368::-;;16990:67;17054:2;17049:3;16990:67;:::i;:::-;16983:74;;17087:34;17083:1;17078:3;17074:11;17067:55;17153:6;17148:2;17143:3;17139:12;17132:28;17186:2;17181:3;17177:12;17170:19;;16973:222;;;:::o;17201:323::-;;17364:67;17428:2;17423:3;17364:67;:::i;:::-;17357:74;;17461:27;17457:1;17452:3;17448:11;17441:48;17515:2;17510:3;17506:12;17499:19;;17347:177;;;:::o;17530:329::-;;17693:67;17757:2;17752:3;17693:67;:::i;:::-;17686:74;;17790:33;17786:1;17781:3;17777:11;17770:54;17850:2;17845:3;17841:12;17834:19;;17676:183;;;:::o;17865:328::-;;18028:67;18092:2;18087:3;18028:67;:::i;:::-;18021:74;;18125:32;18121:1;18116:3;18112:11;18105:53;18184:2;18179:3;18175:12;18168:19;;18011:182;;;:::o;18199:370::-;;18362:67;18426:2;18421:3;18362:67;:::i;:::-;18355:74;;18459:34;18455:1;18450:3;18446:11;18439:55;18525:8;18520:2;18515:3;18511:12;18504:30;18560:2;18555:3;18551:12;18544:19;;18345:224;;;:::o;18575:376::-;;18738:67;18802:2;18797:3;18738:67;:::i;:::-;18731:74;;18835:34;18831:1;18826:3;18822:11;18815:55;18901:14;18896:2;18891:3;18887:12;18880:36;18942:2;18937:3;18933:12;18926:19;;18721:230;;;:::o;18957:323::-;;19120:67;19184:2;19179:3;19120:67;:::i;:::-;19113:74;;19217:27;19213:1;19208:3;19204:11;19197:48;19271:2;19266:3;19262:12;19255:19;;19103:177;;;:::o;19286:388::-;;19449:67;19513:2;19508:3;19449:67;:::i;:::-;19442:74;;19546:34;19542:1;19537:3;19533:11;19526:55;19612:26;19607:2;19602:3;19598:12;19591:48;19665:2;19660:3;19656:12;19649:19;;19432:242;;;:::o;19680:370::-;;19843:67;19907:2;19902:3;19843:67;:::i;:::-;19836:74;;19940:34;19936:1;19931:3;19927:11;19920:55;20006:8;20001:2;19996:3;19992:12;19985:30;20041:2;20036:3;20032:12;20025:19;;19826:224;;;:::o;20056:374::-;;20219:67;20283:2;20278:3;20219:67;:::i;:::-;20212:74;;20316:34;20312:1;20307:3;20303:11;20296:55;20382:12;20377:2;20372:3;20368:12;20361:34;20421:2;20416:3;20412:12;20405:19;;20202:228;;;:::o;20436:366::-;;20599:67;20663:2;20658:3;20599:67;:::i;:::-;20592:74;;20696:34;20692:1;20687:3;20683:11;20676:55;20762:4;20757:2;20752:3;20748:12;20741:26;20793:2;20788:3;20784:12;20777:19;;20582:220;;;:::o;20808:330::-;;20971:67;21035:2;21030:3;20971:67;:::i;:::-;20964:74;;21068:34;21064:1;21059:3;21055:11;21048:55;21129:2;21124:3;21120:12;21113:19;;20954:184;;;:::o;21144:365::-;;21307:67;21371:2;21366:3;21307:67;:::i;:::-;21300:74;;21404:34;21400:1;21395:3;21391:11;21384:55;21470:3;21465:2;21460:3;21456:12;21449:25;21500:2;21495:3;21491:12;21484:19;;21290:219;;;:::o;21515:376::-;;21678:67;21742:2;21737:3;21678:67;:::i;:::-;21671:74;;21775:34;21771:1;21766:3;21762:11;21755:55;21841:14;21836:2;21831:3;21827:12;21820:36;21882:2;21877:3;21873:12;21866:19;;21661:230;;;:::o;21897:330::-;;22060:67;22124:2;22119:3;22060:67;:::i;:::-;22053:74;;22157:34;22153:1;22148:3;22144:11;22137:55;22218:2;22213:3;22209:12;22202:19;;22043:184;;;:::o;22233:373::-;;22396:67;22460:2;22455:3;22396:67;:::i;:::-;22389:74;;22493:34;22489:1;22484:3;22480:11;22473:55;22559:11;22554:2;22549:3;22545:12;22538:33;22597:2;22592:3;22588:12;22581:19;;22379:227;;;:::o;22612:379::-;;22775:67;22839:2;22834:3;22775:67;:::i;:::-;22768:74;;22872:34;22868:1;22863:3;22859:11;22852:55;22938:17;22933:2;22928:3;22924:12;22917:39;22982:2;22977:3;22973:12;22966:19;;22758:233;;;:::o;22997:367::-;;23160:67;23224:2;23219:3;23160:67;:::i;:::-;23153:74;;23257:34;23253:1;23248:3;23244:11;23237:55;23323:5;23318:2;23313:3;23309:12;23302:27;23355:2;23350:3;23346:12;23339:19;;23143:221;;;:::o;23370:365::-;;23533:67;23597:2;23592:3;23533:67;:::i;:::-;23526:74;;23630:34;23626:1;23621:3;23617:11;23610:55;23696:3;23691:2;23686:3;23682:12;23675:25;23726:2;23721:3;23717:12;23710:19;;23516:219;;;:::o;23741:320::-;;23904:67;23968:2;23963:3;23904:67;:::i;:::-;23897:74;;24001:24;23997:1;23992:3;23988:11;23981:45;24052:2;24047:3;24043:12;24036:19;;23887:174;;;:::o;24067:381::-;;24230:67;24294:2;24289:3;24230:67;:::i;:::-;24223:74;;24327:34;24323:1;24318:3;24314:11;24307:55;24393:19;24388:2;24383:3;24379:12;24372:41;24439:2;24434:3;24430:12;24423:19;;24213:235;;;:::o;24454:327::-;;24617:67;24681:2;24676:3;24617:67;:::i;:::-;24610:74;;24714:31;24710:1;24705:3;24701:11;24694:52;24772:2;24767:3;24763:12;24756:19;;24600:181;;;:::o;24787:329::-;;24950:67;25014:2;25009:3;24950:67;:::i;:::-;24943:74;;25047:33;25043:1;25038:3;25034:11;25027:54;25107:2;25102:3;25098:12;25091:19;;24933:183;;;:::o;25122:108::-;25199:24;25217:5;25199:24;:::i;:::-;25194:3;25187:37;25177:53;;:::o;25236:118::-;25323:24;25341:5;25323:24;:::i;:::-;25318:3;25311:37;25301:53;;:::o;25360:271::-;;25512:93;25601:3;25592:6;25512:93;:::i;:::-;25505:100;;25622:3;25615:10;;25494:137;;;;:::o;25637:273::-;;25790:94;25880:3;25871:6;25790:94;:::i;:::-;25783:101;;25901:3;25894:10;;25772:138;;;;:::o;25916:435::-;;26118:95;26209:3;26200:6;26118:95;:::i;:::-;26111:102;;26230:95;26321:3;26312:6;26230:95;:::i;:::-;26223:102;;26342:3;26335:10;;26100:251;;;;;:::o;26357:222::-;;26488:2;26477:9;26473:18;26465:26;;26501:71;26569:1;26558:9;26554:17;26545:6;26501:71;:::i;:::-;26455:124;;;;:::o;26585:672::-;;26834:3;26823:9;26819:19;26811:27;;26848:87;26932:1;26921:9;26917:17;26908:6;26848:87;:::i;:::-;26945:72;27013:2;27002:9;26998:18;26989:6;26945:72;:::i;:::-;27027;27095:2;27084:9;27080:18;27071:6;27027:72;:::i;:::-;27146:9;27140:4;27136:20;27131:2;27120:9;27116:18;27109:48;27174:76;27245:4;27236:6;27174:76;:::i;:::-;27166:84;;26801:456;;;;;;;:::o;27263:549::-;;27478:2;27467:9;27463:18;27455:26;;27491:79;27567:1;27556:9;27552:17;27543:6;27491:79;:::i;:::-;27580:72;27648:2;27637:9;27633:18;27624:6;27580:72;:::i;:::-;27699:9;27693:4;27689:20;27684:2;27673:9;27669:18;27662:48;27727:78;27800:4;27791:6;27727:78;:::i;:::-;27719:86;;27445:367;;;;;;:::o;27818:413::-;;28019:2;28008:9;28004:18;27996:26;;28068:9;28062:4;28058:20;28054:1;28043:9;28039:17;28032:47;28096:128;28219:4;28210:6;28096:128;:::i;:::-;28088:136;;27986:245;;;;:::o;28237:373::-;;28418:2;28407:9;28403:18;28395:26;;28467:9;28461:4;28457:20;28453:1;28442:9;28438:17;28431:47;28495:108;28598:4;28589:6;28495:108;:::i;:::-;28487:116;;28385:225;;;;:::o;28616:210::-;;28741:2;28730:9;28726:18;28718:26;;28754:65;28816:1;28805:9;28801:17;28792:6;28754:65;:::i;:::-;28708:118;;;;:::o;28832:313::-;;28983:2;28972:9;28968:18;28960:26;;29032:9;29026:4;29022:20;29018:1;29007:9;29003:17;28996:47;29060:78;29133:4;29124:6;29060:78;:::i;:::-;29052:86;;28950:195;;;;:::o;29151:307::-;;29299:2;29288:9;29284:18;29276:26;;29348:9;29342:4;29338:20;29334:1;29323:9;29319:17;29312:47;29376:75;29446:4;29437:6;29376:75;:::i;:::-;29368:83;;29266:192;;;;:::o;29464:419::-;;29668:2;29657:9;29653:18;29645:26;;29717:9;29711:4;29707:20;29703:1;29692:9;29688:17;29681:47;29745:131;29871:4;29745:131;:::i;:::-;29737:139;;29635:248;;;:::o;29889:419::-;;30093:2;30082:9;30078:18;30070:26;;30142:9;30136:4;30132:20;30128:1;30117:9;30113:17;30106:47;30170:131;30296:4;30170:131;:::i;:::-;30162:139;;30060:248;;;:::o;30314:419::-;;30518:2;30507:9;30503:18;30495:26;;30567:9;30561:4;30557:20;30553:1;30542:9;30538:17;30531:47;30595:131;30721:4;30595:131;:::i;:::-;30587:139;;30485:248;;;:::o;30739:419::-;;30943:2;30932:9;30928:18;30920:26;;30992:9;30986:4;30982:20;30978:1;30967:9;30963:17;30956:47;31020:131;31146:4;31020:131;:::i;:::-;31012:139;;30910:248;;;:::o;31164:419::-;;31368:2;31357:9;31353:18;31345:26;;31417:9;31411:4;31407:20;31403:1;31392:9;31388:17;31381:47;31445:131;31571:4;31445:131;:::i;:::-;31437:139;;31335:248;;;:::o;31589:419::-;;31793:2;31782:9;31778:18;31770:26;;31842:9;31836:4;31832:20;31828:1;31817:9;31813:17;31806:47;31870:131;31996:4;31870:131;:::i;:::-;31862:139;;31760:248;;;:::o;32014:419::-;;32218:2;32207:9;32203:18;32195:26;;32267:9;32261:4;32257:20;32253:1;32242:9;32238:17;32231:47;32295:131;32421:4;32295:131;:::i;:::-;32287:139;;32185:248;;;:::o;32439:419::-;;32643:2;32632:9;32628:18;32620:26;;32692:9;32686:4;32682:20;32678:1;32667:9;32663:17;32656:47;32720:131;32846:4;32720:131;:::i;:::-;32712:139;;32610:248;;;:::o;32864:419::-;;33068:2;33057:9;33053:18;33045:26;;33117:9;33111:4;33107:20;33103:1;33092:9;33088:17;33081:47;33145:131;33271:4;33145:131;:::i;:::-;33137:139;;33035:248;;;:::o;33289:419::-;;33493:2;33482:9;33478:18;33470:26;;33542:9;33536:4;33532:20;33528:1;33517:9;33513:17;33506:47;33570:131;33696:4;33570:131;:::i;:::-;33562:139;;33460:248;;;:::o;33714:419::-;;33918:2;33907:9;33903:18;33895:26;;33967:9;33961:4;33957:20;33953:1;33942:9;33938:17;33931:47;33995:131;34121:4;33995:131;:::i;:::-;33987:139;;33885:248;;;:::o;34139:419::-;;34343:2;34332:9;34328:18;34320:26;;34392:9;34386:4;34382:20;34378:1;34367:9;34363:17;34356:47;34420:131;34546:4;34420:131;:::i;:::-;34412:139;;34310:248;;;:::o;34564:419::-;;34768:2;34757:9;34753:18;34745:26;;34817:9;34811:4;34807:20;34803:1;34792:9;34788:17;34781:47;34845:131;34971:4;34845:131;:::i;:::-;34837:139;;34735:248;;;:::o;34989:419::-;;35193:2;35182:9;35178:18;35170:26;;35242:9;35236:4;35232:20;35228:1;35217:9;35213:17;35206:47;35270:131;35396:4;35270:131;:::i;:::-;35262:139;;35160:248;;;:::o;35414:419::-;;35618:2;35607:9;35603:18;35595:26;;35667:9;35661:4;35657:20;35653:1;35642:9;35638:17;35631:47;35695:131;35821:4;35695:131;:::i;:::-;35687:139;;35585:248;;;:::o;35839:419::-;;36043:2;36032:9;36028:18;36020:26;;36092:9;36086:4;36082:20;36078:1;36067:9;36063:17;36056:47;36120:131;36246:4;36120:131;:::i;:::-;36112:139;;36010:248;;;:::o;36264:419::-;;36468:2;36457:9;36453:18;36445:26;;36517:9;36511:4;36507:20;36503:1;36492:9;36488:17;36481:47;36545:131;36671:4;36545:131;:::i;:::-;36537:139;;36435:248;;;:::o;36689:419::-;;36893:2;36882:9;36878:18;36870:26;;36942:9;36936:4;36932:20;36928:1;36917:9;36913:17;36906:47;36970:131;37096:4;36970:131;:::i;:::-;36962:139;;36860:248;;;:::o;37114:419::-;;37318:2;37307:9;37303:18;37295:26;;37367:9;37361:4;37357:20;37353:1;37342:9;37338:17;37331:47;37395:131;37521:4;37395:131;:::i;:::-;37387:139;;37285:248;;;:::o;37539:419::-;;37743:2;37732:9;37728:18;37720:26;;37792:9;37786:4;37782:20;37778:1;37767:9;37763:17;37756:47;37820:131;37946:4;37820:131;:::i;:::-;37812:139;;37710:248;;;:::o;37964:419::-;;38168:2;38157:9;38153:18;38145:26;;38217:9;38211:4;38207:20;38203:1;38192:9;38188:17;38181:47;38245:131;38371:4;38245:131;:::i;:::-;38237:139;;38135:248;;;:::o;38389:419::-;;38593:2;38582:9;38578:18;38570:26;;38642:9;38636:4;38632:20;38628:1;38617:9;38613:17;38606:47;38670:131;38796:4;38670:131;:::i;:::-;38662:139;;38560:248;;;:::o;38814:419::-;;39018:2;39007:9;39003:18;38995:26;;39067:9;39061:4;39057:20;39053:1;39042:9;39038:17;39031:47;39095:131;39221:4;39095:131;:::i;:::-;39087:139;;38985:248;;;:::o;39239:419::-;;39443:2;39432:9;39428:18;39420:26;;39492:9;39486:4;39482:20;39478:1;39467:9;39463:17;39456:47;39520:131;39646:4;39520:131;:::i;:::-;39512:139;;39410:248;;;:::o;39664:419::-;;39868:2;39857:9;39853:18;39845:26;;39917:9;39911:4;39907:20;39903:1;39892:9;39888:17;39881:47;39945:131;40071:4;39945:131;:::i;:::-;39937:139;;39835:248;;;:::o;40089:419::-;;40293:2;40282:9;40278:18;40270:26;;40342:9;40336:4;40332:20;40328:1;40317:9;40313:17;40306:47;40370:131;40496:4;40370:131;:::i;:::-;40362:139;;40260:248;;;:::o;40514:419::-;;40718:2;40707:9;40703:18;40695:26;;40767:9;40761:4;40757:20;40753:1;40742:9;40738:17;40731:47;40795:131;40921:4;40795:131;:::i;:::-;40787:139;;40685:248;;;:::o;40939:419::-;;41143:2;41132:9;41128:18;41120:26;;41192:9;41186:4;41182:20;41178:1;41167:9;41163:17;41156:47;41220:131;41346:4;41220:131;:::i;:::-;41212:139;;41110:248;;;:::o;41364:419::-;;41568:2;41557:9;41553:18;41545:26;;41617:9;41611:4;41607:20;41603:1;41592:9;41588:17;41581:47;41645:131;41771:4;41645:131;:::i;:::-;41637:139;;41535:248;;;:::o;41789:419::-;;41993:2;41982:9;41978:18;41970:26;;42042:9;42036:4;42032:20;42028:1;42017:9;42013:17;42006:47;42070:131;42196:4;42070:131;:::i;:::-;42062:139;;41960:248;;;:::o;42214:419::-;;42418:2;42407:9;42403:18;42395:26;;42467:9;42461:4;42457:20;42453:1;42442:9;42438:17;42431:47;42495:131;42621:4;42495:131;:::i;:::-;42487:139;;42385:248;;;:::o;42639:419::-;;42843:2;42832:9;42828:18;42820:26;;42892:9;42886:4;42882:20;42878:1;42867:9;42863:17;42856:47;42920:131;43046:4;42920:131;:::i;:::-;42912:139;;42810:248;;;:::o;43064:222::-;;43195:2;43184:9;43180:18;43172:26;;43208:71;43276:1;43265:9;43261:17;43252:6;43208:71;:::i;:::-;43162:124;;;;:::o;43292:278::-;;43358:2;43352:9;43342:19;;43400:4;43392:6;43388:17;43507:6;43495:10;43492:22;43471:18;43459:10;43456:34;43453:62;43450:2;;;43518:13;;:::i;:::-;43450:2;43553:10;43549:2;43542:22;43332:238;;;;:::o;43576:326::-;;43727:18;43719:6;43716:30;43713:2;;;43749:13;;:::i;:::-;43713:2;43829:4;43825:9;43818:4;43810:6;43806:17;43802:33;43794:41;;43890:4;43884;43880:15;43872:23;;43642:260;;;:::o;43908:327::-;;44060:18;44052:6;44049:30;44046:2;;;44082:13;;:::i;:::-;44046:2;44162:4;44158:9;44151:4;44143:6;44139:17;44135:33;44127:41;;44223:4;44217;44213:15;44205:23;;43975:260;;;:::o;44241:142::-;;44341:3;44333:11;;44371:4;44366:3;44362:14;44354:22;;44323:60;;;:::o;44389:132::-;;44479:3;44471:11;;44509:4;44504:3;44500:14;44492:22;;44461:60;;;:::o;44527:144::-;;44602:3;44594:11;;44625:3;44622:1;44615:14;44659:4;44656:1;44646:18;44638:26;;44584:87;;;:::o;44677:141::-;;44749:3;44741:11;;44772:3;44769:1;44762:14;44806:4;44803:1;44793:18;44785:26;;44731:87;;;:::o;44824:124::-;;44935:5;44929:12;44919:22;;44908:40;;;:::o;44954:114::-;;45055:5;45049:12;45039:22;;45028:40;;;:::o;45074:98::-;;45159:5;45153:12;45143:22;;45132:40;;;:::o;45178:99::-;;45264:5;45258:12;45248:22;;45237:40;;;:::o;45283:123::-;;45395:4;45390:3;45386:14;45378:22;;45368:38;;;:::o;45412:113::-;;45514:4;45509:3;45505:14;45497:22;;45487:38;;;:::o;45531:194::-;;45674:6;45669:3;45662:19;45714:4;45709:3;45705:14;45690:29;;45652:73;;;;:::o;45731:184::-;;45864:6;45859:3;45852:19;45904:4;45899:3;45895:14;45880:29;;45842:73;;;;:::o;45921:168::-;;46038:6;46033:3;46026:19;46078:4;46073:3;46069:14;46054:29;;46016:73;;;;:::o;46095:147::-;;46233:3;46218:18;;46208:34;;;;:::o;46248:159::-;;46356:6;46351:3;46344:19;46396:4;46391:3;46387:14;46372:29;;46334:73;;;;:::o;46413:169::-;;46531:6;46526:3;46519:19;46571:4;46566:3;46562:14;46547:29;;46509:73;;;;:::o;46588:148::-;;46727:3;46712:18;;46702:34;;;;:::o;46742:96::-;;46808:24;46826:5;46808:24;:::i;:::-;46797:35;;46787:51;;;:::o;46844:104::-;;46918:24;46936:5;46918:24;:::i;:::-;46907:35;;46897:51;;;:::o;46954:90::-;;47031:5;47024:13;47017:21;47006:32;;46996:48;;;:::o;47050:77::-;;47116:5;47105:16;;47095:32;;;:::o;47133:149::-;;47209:66;47202:5;47198:78;47187:89;;47177:105;;;:::o;47288:126::-;;47365:42;47358:5;47354:54;47343:65;;47333:81;;;:::o;47420:77::-;;47486:5;47475:16;;47465:32;;;:::o;47503:134::-;;47594:37;47625:5;47594:37;:::i;:::-;47581:50;;47571:66;;;:::o;47643:126::-;;47726:37;47757:5;47726:37;:::i;:::-;47713:50;;47703:66;;;:::o;47775:113::-;;47858:24;47876:5;47858:24;:::i;:::-;47845:37;;47835:53;;;:::o;47894:154::-;47978:6;47973:3;47968;47955:30;48040:1;48031:6;48026:3;48022:16;48015:27;47945:103;;;:::o;48054:307::-;48122:1;48132:113;48146:6;48143:1;48140:13;48132:113;;;48231:1;48226:3;48222:11;48216:18;48212:1;48207:3;48203:11;48196:39;48168:2;48165:1;48161:10;48156:15;;48132:113;;;48263:6;48260:1;48257:13;48254:2;;;48343:1;48334:6;48329:3;48325:16;48318:27;48254:2;48103:258;;;;:::o;48367:48::-;48400:9;48421:102;;48513:2;48509:7;48504:2;48497:5;48493:14;48489:28;48479:38;;48469:54;;;:::o;48529:122::-;48602:24;48620:5;48602:24;:::i;:::-;48595:5;48592:35;48582:2;;48641:1;48638;48631:12;48582:2;48572:79;:::o;48657:116::-;48727:21;48742:5;48727:21;:::i;:::-;48720:5;48717:32;48707:2;;48763:1;48760;48753:12;48707:2;48697:76;:::o;48779:122::-;48852:24;48870:5;48852:24;:::i;:::-;48845:5;48842:35;48832:2;;48891:1;48888;48881:12;48832:2;48822:79;:::o;48907:120::-;48979:23;48996:5;48979:23;:::i;:::-;48972:5;48969:34;48959:2;;49017:1;49014;49007:12;48959:2;48949:78;:::o;49033:122::-;49106:24;49124:5;49106:24;:::i;:::-;49099:5;49096:35;49086:2;;49145:1;49142;49135:12;49086:2;49076:79;:::o

Swarm Source

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