ETH Price: $3,481.83 (+2.17%)
Gas: 8 Gwei

Token

krazykoalas (KZK)
 

Overview

Max Total Supply

9,999 KZK

Holders

3,902

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
cacahou.eth
Balance
2 KZK
0x9edd069accf979f744ce3fbbebf54507ead29a21
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Krazy Koalas are a collection of programmatically generated NFTS on the Ethereum Blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
KrazyKoalas

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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



pragma solidity >=0.6.2 <0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.2 <0.8.0;


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

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

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

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

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



pragma solidity >=0.6.2 <0.8.0;


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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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



pragma solidity >=0.6.0 <0.8.0;


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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.2 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

            bytes32 lastvalue = set._values[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

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

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

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

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

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

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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


    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

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

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

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

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

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

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

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

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

            MapEntry storage lastEntry = map._entries[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

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

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

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

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

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

    // Base URI
    string private _baseURI;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

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

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

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

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

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

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(tokenId);

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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




// website (https://krazykoalas.io)




pragma solidity ^0.7.0;
pragma abicoder v2;

contract KrazyKoalas is ERC721, Ownable {
    using SafeMath for uint256;
    string public krazykoalas_PROVENANCE = ""; //after sold out
    string public LICENSE_TEXT = ""; // license text
    bool licenseLocked = false; 
    uint256 public krazykoalasPrice = 40000000000000000; // 0.04 ETH
    uint public constant maxkrazykoalasPurchase = 10;
    uint256 public constant MAX_krazykoalas = 9999;
    bool public saleIsActive = false;
    mapping(uint => string) public krazykoalasNames;
    uint public krazykoalasReserve = 100; // for events and giveaways
    event krazykoalasNameChange(address _by, uint _tokenId, string _name);
    event licenseisLocked(string _licenseText);
    constructor() ERC721("krazykoalas", "KZK") {}
    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        msg.sender.transfer(balance);
    }
    
    function _Price(uint256 newPrice) public onlyOwner {
        krazykoalasPrice = newPrice;
    }
    
    function mintkrazykoalas(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint krazykoalas");
        require(numberOfTokens > 0 && numberOfTokens <= maxkrazykoalasPurchase, "Can only mint 10 tokens at a time");
        require(totalSupply().add(numberOfTokens) <= MAX_krazykoalas, "Purchase would exceed max supply of krazykoalas");
        require(msg.value >= krazykoalasPrice.mul(numberOfTokens), "Ether value sent is not correct");
        for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply();
            if (totalSupply() < MAX_krazykoalas) {
                _safeMint(msg.sender, mintIndex);
            }
        }
    }
     
    function changekrazykoalasName(uint _tokenId, string memory _name) public {
        require(ownerOf(_tokenId) == msg.sender, "Hey, your wallet doesn't own this krazykoalas!");
        require(sha256(bytes(_name)) != sha256(bytes(krazykoalasNames[_tokenId])), "New name is same as the current one");
        krazykoalasNames[_tokenId] = _name;
        emit krazykoalasNameChange(msg.sender, _tokenId, _name);
    }
    
    function viewkrazykoalasName(uint _tokenId) public view returns( string memory ){
        require( _tokenId < totalSupply(), "Choose a krazykoalas within range" );
        return krazykoalasNames[_tokenId];
    }
    
    function krazykoalasNamesOfOwner(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] = krazykoalasNames[ tokenOfOwnerByIndex(_owner, index) ] ;
            }
            return result;
        }
    }
    
    function reservekrazykoalas(address _to, uint256 _reserveAmount) public onlyOwner {        
        uint supply = totalSupply();
        require(_reserveAmount > 0 && _reserveAmount <= krazykoalasReserve, "Not enough reserve left for team");
        for (uint i = 0; i < _reserveAmount; i++) {
            _safeMint(_to, supply + i);
        }
        krazykoalasReserve = krazykoalasReserve.sub(_reserveAmount);
    }

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

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

    function tokensOfOwner(address _owner) external view returns(uint256[] memory ) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }
    
    function tokenLicense(uint _id) public view returns(string memory) {
        require(_id < totalSupply(), "Choose krazykoalas Within Range");
        return LICENSE_TEXT;
    }
    
    function lockLicense() public onlyOwner {
        licenseLocked =  true;
        emit licenseisLocked(LICENSE_TEXT);
    }
    
    function changeLicense(string memory _license) public onlyOwner {
        require(licenseLocked == false, "License already locked");
        LICENSE_TEXT = _license;
    }
    
    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_by","type":"address"},{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"_name","type":"string"}],"name":"krazykoalasNameChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_licenseText","type":"string"}],"name":"licenseisLocked","type":"event"},{"inputs":[],"name":"LICENSE_TEXT","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_krazykoalas","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"_Price","outputs":[],"stateMutability":"nonpayable","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":"changekrazykoalasName","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"krazykoalasNames","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"krazykoalasNamesOfOwner","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"krazykoalasPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"krazykoalasReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"krazykoalas_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxkrazykoalasPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintkrazykoalas","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reservekrazykoalas","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":"viewkrazykoalasName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600b90805190602001906200002b9291906200033f565b5060405180602001604052806000815250600c9080519060200190620000539291906200033f565b506000600d60006101000a81548160ff021916908315150217905550668e1bc9bf040000600e556000600f60006101000a81548160ff0219169083151502179055506064601155348015620000a757600080fd5b506040518060400160405280600b81526020017f6b72617a796b6f616c61730000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4b5a4b00000000000000000000000000000000000000000000000000000000008152506200012c6301ffc9a760e01b6200025f60201b60201c565b8160069080519060200190620001449291906200033f565b5080600790805190602001906200015d9291906200033f565b50620001766380ac58cd60e01b6200025f60201b60201c565b6200018e635b5e139f60e01b6200025f60201b60201c565b620001a663780e9d6360e01b6200025f60201b60201c565b50506000620001ba6200033760201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200046a565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620002cb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c29062000437565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620003775760008555620003c3565b82601f106200039257805160ff1916838001178555620003c3565b82800160010185558215620003c3579182015b82811115620003c2578251825591602001919060010190620003a5565b5b509050620003d29190620003d6565b5090565b5b80821115620003f1576000816000905550600101620003d7565b5090565b600062000404601c8362000459565b91507f4552433136353a20696e76616c696420696e74657266616365206964000000006000830152602082019050919050565b600060208201905081810360008301526200045281620003f5565b9050919050565b600082825260208201905092915050565b615499806200047a6000396000f3fe6080604052600436106102515760003560e01c80636c0360eb11610139578063b68f4435116100b6578063c87b56dd1161007a578063c87b56dd146108a1578063d9b137b2146108de578063e985e9c51461091b578063eb8d244414610958578063f2fde38b14610983578063f39c0da4146109ac57610251565b8063b68f4435146107d0578063b88d4fde1461080d578063ba0b932e14610836578063bf4702fc14610861578063c5bdec341461087857610251565b80638da5cb5b116100fd5780638da5cb5b146106fd57806395d89b41146107285780639c3e72bd14610753578063a22cb4651461077e578063b09904b5146107a757610251565b80636c0360eb1461061657806370a0823114610641578063715018a61461067e57806380bb4fcd146106955780638462151c146106c057610251565b806323b872dd116101d25780633f77d8af116101965780633f77d8af146104f457806342842e0e1461051f5780634f6ccce71461054857806355f804b3146105855780636352211e146105ae5780636511d840146105eb57610251565b806323b872dd146104375780632f745c5914610460578063300f7a121461049d57806334918dfd146104c65780633ccfd60b146104dd57610251565b80630aaf2df9116102195780630aaf2df91461034d578063109695231461038a57806318160ddd146103b35780631def43b6146103de57806321481f3a146103fa57610251565b806301ffc9a714610256578063046eca351461029357806306fdde03146102bc578063081812fc146102e7578063095ea7b314610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613b88565b6109d7565b60405161028a9190614c74565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b59190613c44565b610a3e565b005b3480156102c857600080fd5b506102d1610c0e565b6040516102de9190614c8f565b60405180910390f35b3480156102f357600080fd5b5061030e60048036038101906103099190613c1b565b610cb0565b60405161031b9190614b8b565b60405180910390f35b34801561033057600080fd5b5061034b60048036038101906103469190613b23565b610d35565b005b34801561035957600080fd5b50610374600480360381019061036f9190613c1b565b610e4d565b6040516103819190614c8f565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190613bda565b610f4b565b005b3480156103bf57600080fd5b506103c8610fe1565b6040516103d591906150d3565b60405180910390f35b6103f860048036038101906103f39190613c1b565b610ff2565b005b34801561040657600080fd5b50610421600480360381019061041c9190613c1b565b61118b565b60405161042e9190614c8f565b60405180910390f35b34801561044357600080fd5b5061045e60048036038101906104599190613a1d565b61123b565b005b34801561046c57600080fd5b5061048760048036038101906104829190613b23565b61129b565b60405161049491906150d3565b60405180910390f35b3480156104a957600080fd5b506104c460048036038101906104bf9190613b23565b6112f6565b005b3480156104d257600080fd5b506104db611414565b005b3480156104e957600080fd5b506104f26114bc565b005b34801561050057600080fd5b50610509611587565b60405161051691906150d3565b60405180910390f35b34801561052b57600080fd5b5061054660048036038101906105419190613a1d565b61158c565b005b34801561055457600080fd5b5061056f600480360381019061056a9190613c1b565b6115ac565b60405161057c91906150d3565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a79190613bda565b6115cf565b005b3480156105ba57600080fd5b506105d560048036038101906105d09190613c1b565b611657565b6040516105e29190614b8b565b60405180910390f35b3480156105f757600080fd5b5061060061168e565b60405161060d91906150d3565b60405180910390f35b34801561062257600080fd5b5061062b611694565b6040516106389190614c8f565b60405180910390f35b34801561064d57600080fd5b50610668600480360381019061066391906139b8565b611736565b60405161067591906150d3565b60405180910390f35b34801561068a57600080fd5b506106936117f5565b005b3480156106a157600080fd5b506106aa611932565b6040516106b791906150d3565b60405180910390f35b3480156106cc57600080fd5b506106e760048036038101906106e291906139b8565b611938565b6040516106f49190614c52565b60405180910390f35b34801561070957600080fd5b50610712611a31565b60405161071f9190614b8b565b60405180910390f35b34801561073457600080fd5b5061073d611a5b565b60405161074a9190614c8f565b60405180910390f35b34801561075f57600080fd5b50610768611afd565b6040516107759190614c8f565b60405180910390f35b34801561078a57600080fd5b506107a560048036038101906107a09190613ae7565b611b9b565b005b3480156107b357600080fd5b506107ce60048036038101906107c99190613bda565b611d1c565b005b3480156107dc57600080fd5b506107f760048036038101906107f291906139b8565b611e08565b6040516108049190614c30565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f9190613a6c565b611fb5565b005b34801561084257600080fd5b5061084b612017565b6040516108589190614c8f565b60405180910390f35b34801561086d57600080fd5b506108766120b5565b005b34801561088457600080fd5b5061089f600480360381019061089a9190613c1b565b612186565b005b3480156108ad57600080fd5b506108c860048036038101906108c39190613c1b565b61220c565b6040516108d59190614c8f565b60405180910390f35b3480156108ea57600080fd5b5061090560048036038101906109009190613c1b565b61238f565b6040516109129190614c8f565b60405180910390f35b34801561092757600080fd5b50610942600480360381019061093d91906139e1565b61247c565b60405161094f9190614c74565b60405180910390f35b34801561096457600080fd5b5061096d612510565b60405161097a9190614c74565b60405180910390f35b34801561098f57600080fd5b506109aa60048036038101906109a591906139b8565b612523565b005b3480156109b857600080fd5b506109c16126cf565b6040516109ce91906150d3565b60405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b3373ffffffffffffffffffffffffffffffffffffffff16610a5e83611657565b73ffffffffffffffffffffffffffffffffffffffff1614610ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aab90615053565b60405180910390fd5b600260106000848152602001908152602001600020604051610ad69190614b50565b602060405180830381855afa158015610af3573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190610b169190613b5f565b600282604051610b269190614b39565b602060405180830381855afa158015610b43573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190610b669190613b5f565b1415610ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9e90614fb3565b60405180910390fd5b80601060008481526020019081526020016000209080519060200190610bce9291906137bf565b507f6499eeae2cf5768ee4d6c7fd03fee88025ebc4c1461857ba37d666bed125a0af338383604051610c0293929190614bf2565b60405180910390a15050565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ca65780601f10610c7b57610100808354040283529160200191610ca6565b820191906000526020600020905b815481529060010190602001808311610c8957829003601f168201915b5050505050905090565b6000610cbb826126d5565b610cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf190614f33565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d4082611657565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da890614fd3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dd06126f2565b73ffffffffffffffffffffffffffffffffffffffff161480610dff5750610dfe81610df96126f2565b61247c565b5b610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3590614e93565b60405180910390fd5b610e4883836126fa565b505050565b6060610e57610fe1565b8210610e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8f90615093565b60405180910390fd5b601060008381526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f3f5780601f10610f1457610100808354040283529160200191610f3f565b820191906000526020600020905b815481529060010190602001808311610f2257829003601f168201915b50505050509050919050565b610f536126f2565b73ffffffffffffffffffffffffffffffffffffffff16610f71611a31565b73ffffffffffffffffffffffffffffffffffffffff1614610fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbe90614f53565b60405180910390fd5b80600b9080519060200190610fdd9291906137bf565b5050565b6000610fed60026127b3565b905090565b600f60009054906101000a900460ff16611041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103890614e73565b60405180910390fd5b6000811180156110525750600a8111155b611091576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611088906150b3565b60405180910390fd5b61270f6110ae826110a0610fe1565b6127c890919063ffffffff16565b11156110ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e690614d73565b60405180910390fd5b61110481600e5461281d90919063ffffffff16565b341015611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d90614df3565b60405180910390fd5b60005b8181101561118757600061115b610fe1565b905061270f611168610fe1565b101561117957611178338261288d565b5b508080600101915050611149565b5050565b60106020528060005260406000206000915090508054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112335780601f1061120857610100808354040283529160200191611233565b820191906000526020600020905b81548152906001019060200180831161121657829003601f168201915b505050505081565b61124c6112466126f2565b826128ab565b61128b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128290615033565b60405180910390fd5b611296838383612989565b505050565b60006112ee82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612ba090919063ffffffff16565b905092915050565b6112fe6126f2565b73ffffffffffffffffffffffffffffffffffffffff1661131c611a31565b73ffffffffffffffffffffffffffffffffffffffff1614611372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136990614f53565b60405180910390fd5b600061137c610fe1565b905060008211801561139057506011548211155b6113cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c690614d93565b60405180910390fd5b60005b828110156113f3576113e68482840161288d565b80806001019150506113d2565b5061140982601154612bba90919063ffffffff16565b601181905550505050565b61141c6126f2565b73ffffffffffffffffffffffffffffffffffffffff1661143a611a31565b73ffffffffffffffffffffffffffffffffffffffff1614611490576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148790614f53565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6114c46126f2565b73ffffffffffffffffffffffffffffffffffffffff166114e2611a31565b73ffffffffffffffffffffffffffffffffffffffff1614611538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152f90614f53565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611583573d6000803e3d6000fd5b5050565b600a81565b6115a783838360405180602001604052806000815250611fb5565b505050565b6000806115c3836002612c0a90919063ffffffff16565b50905080915050919050565b6115d76126f2565b73ffffffffffffffffffffffffffffffffffffffff166115f5611a31565b73ffffffffffffffffffffffffffffffffffffffff161461164b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164290614f53565b60405180910390fd5b61165481612c36565b50565b60006116878260405180606001604052806029815260200161543b602991396002612c509092919063ffffffff16565b9050919050565b61270f81565b606060098054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561172c5780601f106117015761010080835404028352916020019161172c565b820191906000526020600020905b81548152906001019060200180831161170f57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179e90614eb3565b60405180910390fd5b6117ee600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612c6f565b9050919050565b6117fd6126f2565b73ffffffffffffffffffffffffffffffffffffffff1661181b611a31565b73ffffffffffffffffffffffffffffffffffffffff1614611871576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186890614f53565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600e5481565b6060600061194583611736565b905060008114156119a057600067ffffffffffffffff8111801561196857600080fd5b506040519080825280602002602001820160405280156119975781602001602082028036833780820191505090505b50915050611a2c565b60008167ffffffffffffffff811180156119b957600080fd5b506040519080825280602002602001820160405280156119e85781602001602082028036833780820191505090505b50905060005b82811015611a2557611a00858261129b565b828281518110611a0c57fe5b60200260200101818152505080806001019150506119ee565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611af35780601f10611ac857610100808354040283529160200191611af3565b820191906000526020600020905b815481529060010190602001808311611ad657829003601f168201915b5050505050905090565b600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b935780601f10611b6857610100808354040283529160200191611b93565b820191906000526020600020905b815481529060010190602001808311611b7657829003601f168201915b505050505081565b611ba36126f2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0890614dd3565b60405180910390fd5b8060056000611c1e6126f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ccb6126f2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d109190614c74565b60405180910390a35050565b611d246126f2565b73ffffffffffffffffffffffffffffffffffffffff16611d42611a31565b73ffffffffffffffffffffffffffffffffffffffff1614611d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8f90614f53565b60405180910390fd5b60001515600d60009054906101000a900460ff16151514611dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de590615013565b60405180910390fd5b80600c9080519060200190611e049291906137bf565b5050565b60606000611e1583611736565b90506000811415611e7557600067ffffffffffffffff81118015611e3857600080fd5b50604051908082528060200260200182016040528015611e6c57816020015b6060815260200190600190039081611e575790505b50915050611fb0565b60008167ffffffffffffffff81118015611e8e57600080fd5b50604051908082528060200260200182016040528015611ec257816020015b6060815260200190600190039081611ead5790505b50905060005b82811015611fa95760106000611ede878461129b565b81526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611f805780601f10611f5557610100808354040283529160200191611f80565b820191906000526020600020905b815481529060010190602001808311611f6357829003601f168201915b5050505050828281518110611f9157fe5b60200260200101819052508080600101915050611ec8565b8193505050505b919050565b611fc6611fc06126f2565b836128ab565b612005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffc90615033565b60405180910390fd5b61201184848484612c84565b50505050565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156120ad5780601f10612082576101008083540402835291602001916120ad565b820191906000526020600020905b81548152906001019060200180831161209057829003601f168201915b505050505081565b6120bd6126f2565b73ffffffffffffffffffffffffffffffffffffffff166120db611a31565b73ffffffffffffffffffffffffffffffffffffffff1614612131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212890614f53565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0600c60405161217c9190614cb1565b60405180910390a1565b61218e6126f2565b73ffffffffffffffffffffffffffffffffffffffff166121ac611a31565b73ffffffffffffffffffffffffffffffffffffffff1614612202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f990614f53565b60405180910390fd5b80600e8190555050565b6060612217826126d5565b612256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224d90614f93565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156122ff5780601f106122d4576101008083540402835291602001916122ff565b820191906000526020600020905b8154815290600101906020018083116122e257829003601f168201915b505050505090506000612310611694565b905060008151141561232657819250505061238a565b60008251111561235b578082604051602001612343929190614b67565b6040516020818303038152906040529250505061238a565b8061236585612ce0565b604051602001612376929190614b67565b604051602081830303815290604052925050505b919050565b6060612399610fe1565b82106123da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d190614ff3565b60405180910390fd5b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156124705780601f1061244557610100808354040283529160200191612470565b820191906000526020600020905b81548152906001019060200180831161245357829003601f168201915b50505050509050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b61252b6126f2565b73ffffffffffffffffffffffffffffffffffffffff16612549611a31565b73ffffffffffffffffffffffffffffffffffffffff161461259f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259690614f53565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561260f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260690614d13565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60115481565b60006126eb826002612e2790919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661276d83611657565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006127c182600001612e41565b9050919050565b600080828401905083811015612813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280a90614d53565b60405180910390fd5b8091505092915050565b6000808314156128305760009050612887565b600082840290508284828161284157fe5b0414612882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287990614f13565b60405180910390fd5b809150505b92915050565b6128a7828260405180602001604052806000815250612e52565b5050565b60006128b6826126d5565b6128f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ec90614e53565b60405180910390fd5b600061290083611657565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061296f57508373ffffffffffffffffffffffffffffffffffffffff1661295784610cb0565b73ffffffffffffffffffffffffffffffffffffffff16145b80612980575061297f818561247c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166129a982611657565b73ffffffffffffffffffffffffffffffffffffffff16146129ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f690614f73565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6690614db3565b60405180910390fd5b612a7a838383612ead565b612a856000826126fa565b612ad681600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612eb290919063ffffffff16565b50612b2881600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612ecc90919063ffffffff16565b50612b3f81836002612ee69092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612baf8360000183612f1b565b60001c905092915050565b600082821115612bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf690614e13565b60405180910390fd5b818303905092915050565b600080600080612c1d8660000186612f88565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190612c4c9291906137bf565b5050565b6000612c63846000018460001b8461300b565b60001c90509392505050565b6000612c7d8260000161309c565b9050919050565b612c8f848484612989565b612c9b848484846130ad565b612cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd190614cf3565b60405180910390fd5b50505050565b60606000821415612d28576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e22565b600082905060005b60008214612d52578080600101915050600a8281612d4a57fe5b049150612d30565b60008167ffffffffffffffff81118015612d6b57600080fd5b506040519080825280601f01601f191660200182016040528015612d9e5781602001600182028036833780820191505090505b50905060006001830390508593505b60008414612e1a57600a8481612dbf57fe5b0660300160f81b82828060019003935081518110612dd957fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481612e1257fe5b049350612dad565b819450505050505b919050565b6000612e39836000018360001b613211565b905092915050565b600081600001805490509050919050565b612e5c8383613234565b612e6960008484846130ad565b612ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9f90614cf3565b60405180910390fd5b505050565b505050565b6000612ec4836000018360001b6133c2565b905092915050565b6000612ede836000018360001b6134aa565b905092915050565b6000612f12846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b61351a565b90509392505050565b600081836000018054905011612f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5d90614cd3565b60405180910390fd5b826000018281548110612f7557fe5b9060005260206000200154905092915050565b60008082846000018054905011612fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fcb90614ed3565b60405180910390fd5b6000846000018481548110612fe557fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b6000808460010160008581526020019081526020016000205490506000811415839061306d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130649190614c8f565b60405180910390fd5b5084600001600182038154811061308057fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006130ce8473ffffffffffffffffffffffffffffffffffffffff166135f6565b6130db5760019050613209565b60006131a263150b7a0260e01b6130f06126f2565b8887876040516024016131069493929190614ba6565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001615409603291398773ffffffffffffffffffffffffffffffffffffffff166136099092919063ffffffff16565b90506000818060200190518101906131ba9190613bb1565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329b90614ef3565b60405180910390fd5b6132ad816126d5565b156132ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e490614d33565b60405180910390fd5b6132f960008383612ead565b61334a81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612ecc90919063ffffffff16565b5061336181836002612ee69092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000808360010160008481526020019081526020016000205490506000811461349e576000600182039050600060018660000180549050039050600086600001828154811061340d57fe5b906000526020600020015490508087600001848154811061342a57fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061346257fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506134a4565b60009150505b92915050565b60006134b68383613621565b61350f578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613514565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156135c1578460000160405180604001604052808681526020018581525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505084600001805490508560010160008681526020019081526020016000208190555060019150506135ef565b828560000160018303815481106135d457fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080823b905060008111915050919050565b60606136188484600085613644565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015613689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161368090614e33565b60405180910390fd5b613692856135f6565b6136d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136c890615073565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516136fa9190614b39565b60006040518083038185875af1925050503d8060008114613737576040519150601f19603f3d011682016040523d82523d6000602084013e61373c565b606091505b509150915061374c828286613758565b92505050949350505050565b60608315613768578290506137b8565b60008351111561377b5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137af9190614c8f565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826137f5576000855561383c565b82601f1061380e57805160ff191683800117855561383c565b8280016001018555821561383c579182015b8281111561383b578251825591602001919060010190613820565b5b509050613849919061384d565b5090565b5b8082111561386657600081600090555060010161384e565b5090565b600061387d6138788461511f565b6150ee565b90508281526020810184848401111561389557600080fd5b6138a0848285615340565b509392505050565b60006138bb6138b68461514f565b6150ee565b9050828152602081018484840111156138d357600080fd5b6138de848285615340565b509392505050565b6000813590506138f581615395565b92915050565b60008135905061390a816153ac565b92915050565b60008151905061391f816153c3565b92915050565b600081359050613934816153da565b92915050565b600081519050613949816153da565b92915050565b600082601f83011261396057600080fd5b813561397084826020860161386a565b91505092915050565b600082601f83011261398a57600080fd5b813561399a8482602086016138a8565b91505092915050565b6000813590506139b2816153f1565b92915050565b6000602082840312156139ca57600080fd5b60006139d8848285016138e6565b91505092915050565b600080604083850312156139f457600080fd5b6000613a02858286016138e6565b9250506020613a13858286016138e6565b9150509250929050565b600080600060608486031215613a3257600080fd5b6000613a40868287016138e6565b9350506020613a51868287016138e6565b9250506040613a62868287016139a3565b9150509250925092565b60008060008060808587031215613a8257600080fd5b6000613a90878288016138e6565b9450506020613aa1878288016138e6565b9350506040613ab2878288016139a3565b925050606085013567ffffffffffffffff811115613acf57600080fd5b613adb8782880161394f565b91505092959194509250565b60008060408385031215613afa57600080fd5b6000613b08858286016138e6565b9250506020613b19858286016138fb565b9150509250929050565b60008060408385031215613b3657600080fd5b6000613b44858286016138e6565b9250506020613b55858286016139a3565b9150509250929050565b600060208284031215613b7157600080fd5b6000613b7f84828501613910565b91505092915050565b600060208284031215613b9a57600080fd5b6000613ba884828501613925565b91505092915050565b600060208284031215613bc357600080fd5b6000613bd18482850161393a565b91505092915050565b600060208284031215613bec57600080fd5b600082013567ffffffffffffffff811115613c0657600080fd5b613c1284828501613979565b91505092915050565b600060208284031215613c2d57600080fd5b6000613c3b848285016139a3565b91505092915050565b60008060408385031215613c5757600080fd5b6000613c65858286016139a3565b925050602083013567ffffffffffffffff811115613c8257600080fd5b613c8e85828601613979565b9150509250929050565b6000613ca48383613ecb565b905092915050565b6000613cb88383614b1b565b60208301905092915050565b613ccd8161530a565b82525050565b613cdc8161528c565b82525050565b613ceb8161527a565b82525050565b6000613cfc826151c9565b613d06818561520f565b935083602082028501613d188561517f565b8060005b85811015613d545784840389528151613d358582613c98565b9450613d40836151f5565b925060208a01995050600181019050613d1c565b50829750879550505050505092915050565b6000613d71826151d4565b613d7b8185615220565b9350613d868361518f565b8060005b83811015613db7578151613d9e8882613cac565b9750613da983615202565b925050600181019050613d8a565b5085935050505092915050565b613dcd8161529e565b82525050565b6000613dde826151df565b613de88185615231565b9350613df881856020860161534f565b613e0181615384565b840191505092915050565b6000613e17826151df565b613e218185615242565b9350613e3181856020860161534f565b80840191505092915050565b600081546001811660008114613e5a5760018114613e7f57613ec3565b607f6002830416613e6b8187615242565b955060ff1983168652808601935050613ec3565b60028204613e8d8187615242565b9550613e988561519f565b60005b82811015613eba57815481890152600182019150602081019050613e9b565b82880195505050505b505092915050565b6000613ed6826151ea565b613ee0818561524d565b9350613ef081856020860161534f565b613ef981615384565b840191505092915050565b6000613f0f826151ea565b613f19818561525e565b9350613f2981856020860161534f565b613f3281615384565b840191505092915050565b6000613f48826151ea565b613f52818561526f565b9350613f6281856020860161534f565b80840191505092915050565b600081546001811660008114613f8b5760018114613fb157613ff5565b607f6002830416613f9c818761525e565b955060ff198316865260208601935050613ff5565b60028204613fbf818761525e565b9550613fca856151b4565b60005b82811015613fec57815481890152600182019150602081019050613fcd565b80880195505050505b505092915050565b600061400a60228361525e565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061407060328361525e565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006140d660268361525e565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061413c601c8361525e565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061417c601b8361525e565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b60006141bc602f8361525e565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f66206b72617a796b6f616c617300000000000000000000000000000000006020830152604082019050919050565b600061422260208361525e565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b600061426260248361525e565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006142c860198361525e565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614308601f8361525e565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000614348601e8361525e565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b600061438860268361525e565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006143ee602c8361525e565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061445460278361525e565b91507f53616c65206d7573742062652061637469766520746f206d696e74206b72617a60008301527f796b6f616c6173000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006144ba60388361525e565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614520602a8361525e565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061458660228361525e565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006145ec60208361525e565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061462c60218361525e565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614692602c8361525e565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006146f860208361525e565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061473860298361525e565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061479e602f8361525e565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061480460238361525e565b91507f4e6577206e616d652069732073616d65206173207468652063757272656e742060008301527f6f6e6500000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061486a60218361525e565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006148d0601f8361525e565b91507f43686f6f7365206b72617a796b6f616c61732057697468696e2052616e6765006000830152602082019050919050565b600061491060168361525e565b91507f4c6963656e736520616c7265616479206c6f636b6564000000000000000000006000830152602082019050919050565b600061495060318361525e565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006149b6602e8361525e565b91507f4865792c20796f75722077616c6c657420646f65736e2774206f776e2074686960008301527f73206b72617a796b6f616c6173210000000000000000000000000000000000006020830152604082019050919050565b6000614a1c601d8361525e565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b6000614a5c60218361525e565b91507f43686f6f73652061206b72617a796b6f616c61732077697468696e2072616e6760008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ac260218361525e565b91507f43616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b614b2481615300565b82525050565b614b3381615300565b82525050565b6000614b458284613e0c565b915081905092915050565b6000614b5c8284613e3d565b915081905092915050565b6000614b738285613f3d565b9150614b7f8284613f3d565b91508190509392505050565b6000602082019050614ba06000830184613ce2565b92915050565b6000608082019050614bbb6000830187613cd3565b614bc86020830186613ce2565b614bd56040830185614b2a565b8181036060830152614be78184613dd3565b905095945050505050565b6000606082019050614c076000830186613cc4565b614c146020830185614b2a565b8181036040830152614c268184613f04565b9050949350505050565b60006020820190508181036000830152614c4a8184613cf1565b905092915050565b60006020820190508181036000830152614c6c8184613d66565b905092915050565b6000602082019050614c896000830184613dc4565b92915050565b60006020820190508181036000830152614ca98184613f04565b905092915050565b60006020820190508181036000830152614ccb8184613f6e565b905092915050565b60006020820190508181036000830152614cec81613ffd565b9050919050565b60006020820190508181036000830152614d0c81614063565b9050919050565b60006020820190508181036000830152614d2c816140c9565b9050919050565b60006020820190508181036000830152614d4c8161412f565b9050919050565b60006020820190508181036000830152614d6c8161416f565b9050919050565b60006020820190508181036000830152614d8c816141af565b9050919050565b60006020820190508181036000830152614dac81614215565b9050919050565b60006020820190508181036000830152614dcc81614255565b9050919050565b60006020820190508181036000830152614dec816142bb565b9050919050565b60006020820190508181036000830152614e0c816142fb565b9050919050565b60006020820190508181036000830152614e2c8161433b565b9050919050565b60006020820190508181036000830152614e4c8161437b565b9050919050565b60006020820190508181036000830152614e6c816143e1565b9050919050565b60006020820190508181036000830152614e8c81614447565b9050919050565b60006020820190508181036000830152614eac816144ad565b9050919050565b60006020820190508181036000830152614ecc81614513565b9050919050565b60006020820190508181036000830152614eec81614579565b9050919050565b60006020820190508181036000830152614f0c816145df565b9050919050565b60006020820190508181036000830152614f2c8161461f565b9050919050565b60006020820190508181036000830152614f4c81614685565b9050919050565b60006020820190508181036000830152614f6c816146eb565b9050919050565b60006020820190508181036000830152614f8c8161472b565b9050919050565b60006020820190508181036000830152614fac81614791565b9050919050565b60006020820190508181036000830152614fcc816147f7565b9050919050565b60006020820190508181036000830152614fec8161485d565b9050919050565b6000602082019050818103600083015261500c816148c3565b9050919050565b6000602082019050818103600083015261502c81614903565b9050919050565b6000602082019050818103600083015261504c81614943565b9050919050565b6000602082019050818103600083015261506c816149a9565b9050919050565b6000602082019050818103600083015261508c81614a0f565b9050919050565b600060208201905081810360008301526150ac81614a4f565b9050919050565b600060208201905081810360008301526150cc81614ab5565b9050919050565b60006020820190506150e86000830184614b2a565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561511557615114615382565b5b8060405250919050565b600067ffffffffffffffff82111561513a57615139615382565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561516a57615169615382565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000615285826152e0565b9050919050565b6000615297826152e0565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006153158261531c565b9050919050565b60006153278261532e565b9050919050565b6000615339826152e0565b9050919050565b82818337600083830152505050565b60005b8381101561536d578082015181840152602081019050615352565b8381111561537c576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b61539e8161527a565b81146153a957600080fd5b50565b6153b58161529e565b81146153c057600080fd5b50565b6153cc816152aa565b81146153d757600080fd5b50565b6153e3816152b4565b81146153ee57600080fd5b50565b6153fa81615300565b811461540557600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220e2a9ed8b71774a10842e97b827212fa70e71133bdd3053d0bb7673189f2b4be464736f6c63430007060033

Deployed Bytecode

0x6080604052600436106102515760003560e01c80636c0360eb11610139578063b68f4435116100b6578063c87b56dd1161007a578063c87b56dd146108a1578063d9b137b2146108de578063e985e9c51461091b578063eb8d244414610958578063f2fde38b14610983578063f39c0da4146109ac57610251565b8063b68f4435146107d0578063b88d4fde1461080d578063ba0b932e14610836578063bf4702fc14610861578063c5bdec341461087857610251565b80638da5cb5b116100fd5780638da5cb5b146106fd57806395d89b41146107285780639c3e72bd14610753578063a22cb4651461077e578063b09904b5146107a757610251565b80636c0360eb1461061657806370a0823114610641578063715018a61461067e57806380bb4fcd146106955780638462151c146106c057610251565b806323b872dd116101d25780633f77d8af116101965780633f77d8af146104f457806342842e0e1461051f5780634f6ccce71461054857806355f804b3146105855780636352211e146105ae5780636511d840146105eb57610251565b806323b872dd146104375780632f745c5914610460578063300f7a121461049d57806334918dfd146104c65780633ccfd60b146104dd57610251565b80630aaf2df9116102195780630aaf2df91461034d578063109695231461038a57806318160ddd146103b35780631def43b6146103de57806321481f3a146103fa57610251565b806301ffc9a714610256578063046eca351461029357806306fdde03146102bc578063081812fc146102e7578063095ea7b314610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613b88565b6109d7565b60405161028a9190614c74565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b59190613c44565b610a3e565b005b3480156102c857600080fd5b506102d1610c0e565b6040516102de9190614c8f565b60405180910390f35b3480156102f357600080fd5b5061030e60048036038101906103099190613c1b565b610cb0565b60405161031b9190614b8b565b60405180910390f35b34801561033057600080fd5b5061034b60048036038101906103469190613b23565b610d35565b005b34801561035957600080fd5b50610374600480360381019061036f9190613c1b565b610e4d565b6040516103819190614c8f565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190613bda565b610f4b565b005b3480156103bf57600080fd5b506103c8610fe1565b6040516103d591906150d3565b60405180910390f35b6103f860048036038101906103f39190613c1b565b610ff2565b005b34801561040657600080fd5b50610421600480360381019061041c9190613c1b565b61118b565b60405161042e9190614c8f565b60405180910390f35b34801561044357600080fd5b5061045e60048036038101906104599190613a1d565b61123b565b005b34801561046c57600080fd5b5061048760048036038101906104829190613b23565b61129b565b60405161049491906150d3565b60405180910390f35b3480156104a957600080fd5b506104c460048036038101906104bf9190613b23565b6112f6565b005b3480156104d257600080fd5b506104db611414565b005b3480156104e957600080fd5b506104f26114bc565b005b34801561050057600080fd5b50610509611587565b60405161051691906150d3565b60405180910390f35b34801561052b57600080fd5b5061054660048036038101906105419190613a1d565b61158c565b005b34801561055457600080fd5b5061056f600480360381019061056a9190613c1b565b6115ac565b60405161057c91906150d3565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a79190613bda565b6115cf565b005b3480156105ba57600080fd5b506105d560048036038101906105d09190613c1b565b611657565b6040516105e29190614b8b565b60405180910390f35b3480156105f757600080fd5b5061060061168e565b60405161060d91906150d3565b60405180910390f35b34801561062257600080fd5b5061062b611694565b6040516106389190614c8f565b60405180910390f35b34801561064d57600080fd5b50610668600480360381019061066391906139b8565b611736565b60405161067591906150d3565b60405180910390f35b34801561068a57600080fd5b506106936117f5565b005b3480156106a157600080fd5b506106aa611932565b6040516106b791906150d3565b60405180910390f35b3480156106cc57600080fd5b506106e760048036038101906106e291906139b8565b611938565b6040516106f49190614c52565b60405180910390f35b34801561070957600080fd5b50610712611a31565b60405161071f9190614b8b565b60405180910390f35b34801561073457600080fd5b5061073d611a5b565b60405161074a9190614c8f565b60405180910390f35b34801561075f57600080fd5b50610768611afd565b6040516107759190614c8f565b60405180910390f35b34801561078a57600080fd5b506107a560048036038101906107a09190613ae7565b611b9b565b005b3480156107b357600080fd5b506107ce60048036038101906107c99190613bda565b611d1c565b005b3480156107dc57600080fd5b506107f760048036038101906107f291906139b8565b611e08565b6040516108049190614c30565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f9190613a6c565b611fb5565b005b34801561084257600080fd5b5061084b612017565b6040516108589190614c8f565b60405180910390f35b34801561086d57600080fd5b506108766120b5565b005b34801561088457600080fd5b5061089f600480360381019061089a9190613c1b565b612186565b005b3480156108ad57600080fd5b506108c860048036038101906108c39190613c1b565b61220c565b6040516108d59190614c8f565b60405180910390f35b3480156108ea57600080fd5b5061090560048036038101906109009190613c1b565b61238f565b6040516109129190614c8f565b60405180910390f35b34801561092757600080fd5b50610942600480360381019061093d91906139e1565b61247c565b60405161094f9190614c74565b60405180910390f35b34801561096457600080fd5b5061096d612510565b60405161097a9190614c74565b60405180910390f35b34801561098f57600080fd5b506109aa60048036038101906109a591906139b8565b612523565b005b3480156109b857600080fd5b506109c16126cf565b6040516109ce91906150d3565b60405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b3373ffffffffffffffffffffffffffffffffffffffff16610a5e83611657565b73ffffffffffffffffffffffffffffffffffffffff1614610ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aab90615053565b60405180910390fd5b600260106000848152602001908152602001600020604051610ad69190614b50565b602060405180830381855afa158015610af3573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190610b169190613b5f565b600282604051610b269190614b39565b602060405180830381855afa158015610b43573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190610b669190613b5f565b1415610ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9e90614fb3565b60405180910390fd5b80601060008481526020019081526020016000209080519060200190610bce9291906137bf565b507f6499eeae2cf5768ee4d6c7fd03fee88025ebc4c1461857ba37d666bed125a0af338383604051610c0293929190614bf2565b60405180910390a15050565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ca65780601f10610c7b57610100808354040283529160200191610ca6565b820191906000526020600020905b815481529060010190602001808311610c8957829003601f168201915b5050505050905090565b6000610cbb826126d5565b610cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf190614f33565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d4082611657565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da890614fd3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dd06126f2565b73ffffffffffffffffffffffffffffffffffffffff161480610dff5750610dfe81610df96126f2565b61247c565b5b610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3590614e93565b60405180910390fd5b610e4883836126fa565b505050565b6060610e57610fe1565b8210610e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8f90615093565b60405180910390fd5b601060008381526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f3f5780601f10610f1457610100808354040283529160200191610f3f565b820191906000526020600020905b815481529060010190602001808311610f2257829003601f168201915b50505050509050919050565b610f536126f2565b73ffffffffffffffffffffffffffffffffffffffff16610f71611a31565b73ffffffffffffffffffffffffffffffffffffffff1614610fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbe90614f53565b60405180910390fd5b80600b9080519060200190610fdd9291906137bf565b5050565b6000610fed60026127b3565b905090565b600f60009054906101000a900460ff16611041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103890614e73565b60405180910390fd5b6000811180156110525750600a8111155b611091576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611088906150b3565b60405180910390fd5b61270f6110ae826110a0610fe1565b6127c890919063ffffffff16565b11156110ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e690614d73565b60405180910390fd5b61110481600e5461281d90919063ffffffff16565b341015611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d90614df3565b60405180910390fd5b60005b8181101561118757600061115b610fe1565b905061270f611168610fe1565b101561117957611178338261288d565b5b508080600101915050611149565b5050565b60106020528060005260406000206000915090508054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112335780601f1061120857610100808354040283529160200191611233565b820191906000526020600020905b81548152906001019060200180831161121657829003601f168201915b505050505081565b61124c6112466126f2565b826128ab565b61128b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128290615033565b60405180910390fd5b611296838383612989565b505050565b60006112ee82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612ba090919063ffffffff16565b905092915050565b6112fe6126f2565b73ffffffffffffffffffffffffffffffffffffffff1661131c611a31565b73ffffffffffffffffffffffffffffffffffffffff1614611372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136990614f53565b60405180910390fd5b600061137c610fe1565b905060008211801561139057506011548211155b6113cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c690614d93565b60405180910390fd5b60005b828110156113f3576113e68482840161288d565b80806001019150506113d2565b5061140982601154612bba90919063ffffffff16565b601181905550505050565b61141c6126f2565b73ffffffffffffffffffffffffffffffffffffffff1661143a611a31565b73ffffffffffffffffffffffffffffffffffffffff1614611490576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148790614f53565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6114c46126f2565b73ffffffffffffffffffffffffffffffffffffffff166114e2611a31565b73ffffffffffffffffffffffffffffffffffffffff1614611538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152f90614f53565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611583573d6000803e3d6000fd5b5050565b600a81565b6115a783838360405180602001604052806000815250611fb5565b505050565b6000806115c3836002612c0a90919063ffffffff16565b50905080915050919050565b6115d76126f2565b73ffffffffffffffffffffffffffffffffffffffff166115f5611a31565b73ffffffffffffffffffffffffffffffffffffffff161461164b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164290614f53565b60405180910390fd5b61165481612c36565b50565b60006116878260405180606001604052806029815260200161543b602991396002612c509092919063ffffffff16565b9050919050565b61270f81565b606060098054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561172c5780601f106117015761010080835404028352916020019161172c565b820191906000526020600020905b81548152906001019060200180831161170f57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179e90614eb3565b60405180910390fd5b6117ee600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612c6f565b9050919050565b6117fd6126f2565b73ffffffffffffffffffffffffffffffffffffffff1661181b611a31565b73ffffffffffffffffffffffffffffffffffffffff1614611871576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186890614f53565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600e5481565b6060600061194583611736565b905060008114156119a057600067ffffffffffffffff8111801561196857600080fd5b506040519080825280602002602001820160405280156119975781602001602082028036833780820191505090505b50915050611a2c565b60008167ffffffffffffffff811180156119b957600080fd5b506040519080825280602002602001820160405280156119e85781602001602082028036833780820191505090505b50905060005b82811015611a2557611a00858261129b565b828281518110611a0c57fe5b60200260200101818152505080806001019150506119ee565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611af35780601f10611ac857610100808354040283529160200191611af3565b820191906000526020600020905b815481529060010190602001808311611ad657829003601f168201915b5050505050905090565b600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b935780601f10611b6857610100808354040283529160200191611b93565b820191906000526020600020905b815481529060010190602001808311611b7657829003601f168201915b505050505081565b611ba36126f2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0890614dd3565b60405180910390fd5b8060056000611c1e6126f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ccb6126f2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d109190614c74565b60405180910390a35050565b611d246126f2565b73ffffffffffffffffffffffffffffffffffffffff16611d42611a31565b73ffffffffffffffffffffffffffffffffffffffff1614611d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8f90614f53565b60405180910390fd5b60001515600d60009054906101000a900460ff16151514611dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de590615013565b60405180910390fd5b80600c9080519060200190611e049291906137bf565b5050565b60606000611e1583611736565b90506000811415611e7557600067ffffffffffffffff81118015611e3857600080fd5b50604051908082528060200260200182016040528015611e6c57816020015b6060815260200190600190039081611e575790505b50915050611fb0565b60008167ffffffffffffffff81118015611e8e57600080fd5b50604051908082528060200260200182016040528015611ec257816020015b6060815260200190600190039081611ead5790505b50905060005b82811015611fa95760106000611ede878461129b565b81526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611f805780601f10611f5557610100808354040283529160200191611f80565b820191906000526020600020905b815481529060010190602001808311611f6357829003601f168201915b5050505050828281518110611f9157fe5b60200260200101819052508080600101915050611ec8565b8193505050505b919050565b611fc6611fc06126f2565b836128ab565b612005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffc90615033565b60405180910390fd5b61201184848484612c84565b50505050565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156120ad5780601f10612082576101008083540402835291602001916120ad565b820191906000526020600020905b81548152906001019060200180831161209057829003601f168201915b505050505081565b6120bd6126f2565b73ffffffffffffffffffffffffffffffffffffffff166120db611a31565b73ffffffffffffffffffffffffffffffffffffffff1614612131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212890614f53565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0600c60405161217c9190614cb1565b60405180910390a1565b61218e6126f2565b73ffffffffffffffffffffffffffffffffffffffff166121ac611a31565b73ffffffffffffffffffffffffffffffffffffffff1614612202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f990614f53565b60405180910390fd5b80600e8190555050565b6060612217826126d5565b612256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224d90614f93565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156122ff5780601f106122d4576101008083540402835291602001916122ff565b820191906000526020600020905b8154815290600101906020018083116122e257829003601f168201915b505050505090506000612310611694565b905060008151141561232657819250505061238a565b60008251111561235b578082604051602001612343929190614b67565b6040516020818303038152906040529250505061238a565b8061236585612ce0565b604051602001612376929190614b67565b604051602081830303815290604052925050505b919050565b6060612399610fe1565b82106123da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d190614ff3565b60405180910390fd5b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156124705780601f1061244557610100808354040283529160200191612470565b820191906000526020600020905b81548152906001019060200180831161245357829003601f168201915b50505050509050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b61252b6126f2565b73ffffffffffffffffffffffffffffffffffffffff16612549611a31565b73ffffffffffffffffffffffffffffffffffffffff161461259f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259690614f53565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561260f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260690614d13565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60115481565b60006126eb826002612e2790919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661276d83611657565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006127c182600001612e41565b9050919050565b600080828401905083811015612813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280a90614d53565b60405180910390fd5b8091505092915050565b6000808314156128305760009050612887565b600082840290508284828161284157fe5b0414612882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287990614f13565b60405180910390fd5b809150505b92915050565b6128a7828260405180602001604052806000815250612e52565b5050565b60006128b6826126d5565b6128f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ec90614e53565b60405180910390fd5b600061290083611657565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061296f57508373ffffffffffffffffffffffffffffffffffffffff1661295784610cb0565b73ffffffffffffffffffffffffffffffffffffffff16145b80612980575061297f818561247c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166129a982611657565b73ffffffffffffffffffffffffffffffffffffffff16146129ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f690614f73565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6690614db3565b60405180910390fd5b612a7a838383612ead565b612a856000826126fa565b612ad681600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612eb290919063ffffffff16565b50612b2881600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612ecc90919063ffffffff16565b50612b3f81836002612ee69092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612baf8360000183612f1b565b60001c905092915050565b600082821115612bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf690614e13565b60405180910390fd5b818303905092915050565b600080600080612c1d8660000186612f88565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190612c4c9291906137bf565b5050565b6000612c63846000018460001b8461300b565b60001c90509392505050565b6000612c7d8260000161309c565b9050919050565b612c8f848484612989565b612c9b848484846130ad565b612cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd190614cf3565b60405180910390fd5b50505050565b60606000821415612d28576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e22565b600082905060005b60008214612d52578080600101915050600a8281612d4a57fe5b049150612d30565b60008167ffffffffffffffff81118015612d6b57600080fd5b506040519080825280601f01601f191660200182016040528015612d9e5781602001600182028036833780820191505090505b50905060006001830390508593505b60008414612e1a57600a8481612dbf57fe5b0660300160f81b82828060019003935081518110612dd957fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481612e1257fe5b049350612dad565b819450505050505b919050565b6000612e39836000018360001b613211565b905092915050565b600081600001805490509050919050565b612e5c8383613234565b612e6960008484846130ad565b612ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9f90614cf3565b60405180910390fd5b505050565b505050565b6000612ec4836000018360001b6133c2565b905092915050565b6000612ede836000018360001b6134aa565b905092915050565b6000612f12846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b61351a565b90509392505050565b600081836000018054905011612f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5d90614cd3565b60405180910390fd5b826000018281548110612f7557fe5b9060005260206000200154905092915050565b60008082846000018054905011612fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fcb90614ed3565b60405180910390fd5b6000846000018481548110612fe557fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b6000808460010160008581526020019081526020016000205490506000811415839061306d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130649190614c8f565b60405180910390fd5b5084600001600182038154811061308057fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006130ce8473ffffffffffffffffffffffffffffffffffffffff166135f6565b6130db5760019050613209565b60006131a263150b7a0260e01b6130f06126f2565b8887876040516024016131069493929190614ba6565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001615409603291398773ffffffffffffffffffffffffffffffffffffffff166136099092919063ffffffff16565b90506000818060200190518101906131ba9190613bb1565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329b90614ef3565b60405180910390fd5b6132ad816126d5565b156132ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e490614d33565b60405180910390fd5b6132f960008383612ead565b61334a81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612ecc90919063ffffffff16565b5061336181836002612ee69092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000808360010160008481526020019081526020016000205490506000811461349e576000600182039050600060018660000180549050039050600086600001828154811061340d57fe5b906000526020600020015490508087600001848154811061342a57fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061346257fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506134a4565b60009150505b92915050565b60006134b68383613621565b61350f578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613514565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156135c1578460000160405180604001604052808681526020018581525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505084600001805490508560010160008681526020019081526020016000208190555060019150506135ef565b828560000160018303815481106135d457fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080823b905060008111915050919050565b60606136188484600085613644565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015613689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161368090614e33565b60405180910390fd5b613692856135f6565b6136d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136c890615073565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516136fa9190614b39565b60006040518083038185875af1925050503d8060008114613737576040519150601f19603f3d011682016040523d82523d6000602084013e61373c565b606091505b509150915061374c828286613758565b92505050949350505050565b60608315613768578290506137b8565b60008351111561377b5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137af9190614c8f565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826137f5576000855561383c565b82601f1061380e57805160ff191683800117855561383c565b8280016001018555821561383c579182015b8281111561383b578251825591602001919060010190613820565b5b509050613849919061384d565b5090565b5b8082111561386657600081600090555060010161384e565b5090565b600061387d6138788461511f565b6150ee565b90508281526020810184848401111561389557600080fd5b6138a0848285615340565b509392505050565b60006138bb6138b68461514f565b6150ee565b9050828152602081018484840111156138d357600080fd5b6138de848285615340565b509392505050565b6000813590506138f581615395565b92915050565b60008135905061390a816153ac565b92915050565b60008151905061391f816153c3565b92915050565b600081359050613934816153da565b92915050565b600081519050613949816153da565b92915050565b600082601f83011261396057600080fd5b813561397084826020860161386a565b91505092915050565b600082601f83011261398a57600080fd5b813561399a8482602086016138a8565b91505092915050565b6000813590506139b2816153f1565b92915050565b6000602082840312156139ca57600080fd5b60006139d8848285016138e6565b91505092915050565b600080604083850312156139f457600080fd5b6000613a02858286016138e6565b9250506020613a13858286016138e6565b9150509250929050565b600080600060608486031215613a3257600080fd5b6000613a40868287016138e6565b9350506020613a51868287016138e6565b9250506040613a62868287016139a3565b9150509250925092565b60008060008060808587031215613a8257600080fd5b6000613a90878288016138e6565b9450506020613aa1878288016138e6565b9350506040613ab2878288016139a3565b925050606085013567ffffffffffffffff811115613acf57600080fd5b613adb8782880161394f565b91505092959194509250565b60008060408385031215613afa57600080fd5b6000613b08858286016138e6565b9250506020613b19858286016138fb565b9150509250929050565b60008060408385031215613b3657600080fd5b6000613b44858286016138e6565b9250506020613b55858286016139a3565b9150509250929050565b600060208284031215613b7157600080fd5b6000613b7f84828501613910565b91505092915050565b600060208284031215613b9a57600080fd5b6000613ba884828501613925565b91505092915050565b600060208284031215613bc357600080fd5b6000613bd18482850161393a565b91505092915050565b600060208284031215613bec57600080fd5b600082013567ffffffffffffffff811115613c0657600080fd5b613c1284828501613979565b91505092915050565b600060208284031215613c2d57600080fd5b6000613c3b848285016139a3565b91505092915050565b60008060408385031215613c5757600080fd5b6000613c65858286016139a3565b925050602083013567ffffffffffffffff811115613c8257600080fd5b613c8e85828601613979565b9150509250929050565b6000613ca48383613ecb565b905092915050565b6000613cb88383614b1b565b60208301905092915050565b613ccd8161530a565b82525050565b613cdc8161528c565b82525050565b613ceb8161527a565b82525050565b6000613cfc826151c9565b613d06818561520f565b935083602082028501613d188561517f565b8060005b85811015613d545784840389528151613d358582613c98565b9450613d40836151f5565b925060208a01995050600181019050613d1c565b50829750879550505050505092915050565b6000613d71826151d4565b613d7b8185615220565b9350613d868361518f565b8060005b83811015613db7578151613d9e8882613cac565b9750613da983615202565b925050600181019050613d8a565b5085935050505092915050565b613dcd8161529e565b82525050565b6000613dde826151df565b613de88185615231565b9350613df881856020860161534f565b613e0181615384565b840191505092915050565b6000613e17826151df565b613e218185615242565b9350613e3181856020860161534f565b80840191505092915050565b600081546001811660008114613e5a5760018114613e7f57613ec3565b607f6002830416613e6b8187615242565b955060ff1983168652808601935050613ec3565b60028204613e8d8187615242565b9550613e988561519f565b60005b82811015613eba57815481890152600182019150602081019050613e9b565b82880195505050505b505092915050565b6000613ed6826151ea565b613ee0818561524d565b9350613ef081856020860161534f565b613ef981615384565b840191505092915050565b6000613f0f826151ea565b613f19818561525e565b9350613f2981856020860161534f565b613f3281615384565b840191505092915050565b6000613f48826151ea565b613f52818561526f565b9350613f6281856020860161534f565b80840191505092915050565b600081546001811660008114613f8b5760018114613fb157613ff5565b607f6002830416613f9c818761525e565b955060ff198316865260208601935050613ff5565b60028204613fbf818761525e565b9550613fca856151b4565b60005b82811015613fec57815481890152600182019150602081019050613fcd565b80880195505050505b505092915050565b600061400a60228361525e565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061407060328361525e565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006140d660268361525e565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061413c601c8361525e565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061417c601b8361525e565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b60006141bc602f8361525e565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f66206b72617a796b6f616c617300000000000000000000000000000000006020830152604082019050919050565b600061422260208361525e565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b600061426260248361525e565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006142c860198361525e565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614308601f8361525e565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000614348601e8361525e565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b600061438860268361525e565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006143ee602c8361525e565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061445460278361525e565b91507f53616c65206d7573742062652061637469766520746f206d696e74206b72617a60008301527f796b6f616c6173000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006144ba60388361525e565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614520602a8361525e565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061458660228361525e565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006145ec60208361525e565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061462c60218361525e565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614692602c8361525e565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006146f860208361525e565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061473860298361525e565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061479e602f8361525e565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061480460238361525e565b91507f4e6577206e616d652069732073616d65206173207468652063757272656e742060008301527f6f6e6500000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061486a60218361525e565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006148d0601f8361525e565b91507f43686f6f7365206b72617a796b6f616c61732057697468696e2052616e6765006000830152602082019050919050565b600061491060168361525e565b91507f4c6963656e736520616c7265616479206c6f636b6564000000000000000000006000830152602082019050919050565b600061495060318361525e565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006149b6602e8361525e565b91507f4865792c20796f75722077616c6c657420646f65736e2774206f776e2074686960008301527f73206b72617a796b6f616c6173210000000000000000000000000000000000006020830152604082019050919050565b6000614a1c601d8361525e565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b6000614a5c60218361525e565b91507f43686f6f73652061206b72617a796b6f616c61732077697468696e2072616e6760008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ac260218361525e565b91507f43616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b614b2481615300565b82525050565b614b3381615300565b82525050565b6000614b458284613e0c565b915081905092915050565b6000614b5c8284613e3d565b915081905092915050565b6000614b738285613f3d565b9150614b7f8284613f3d565b91508190509392505050565b6000602082019050614ba06000830184613ce2565b92915050565b6000608082019050614bbb6000830187613cd3565b614bc86020830186613ce2565b614bd56040830185614b2a565b8181036060830152614be78184613dd3565b905095945050505050565b6000606082019050614c076000830186613cc4565b614c146020830185614b2a565b8181036040830152614c268184613f04565b9050949350505050565b60006020820190508181036000830152614c4a8184613cf1565b905092915050565b60006020820190508181036000830152614c6c8184613d66565b905092915050565b6000602082019050614c896000830184613dc4565b92915050565b60006020820190508181036000830152614ca98184613f04565b905092915050565b60006020820190508181036000830152614ccb8184613f6e565b905092915050565b60006020820190508181036000830152614cec81613ffd565b9050919050565b60006020820190508181036000830152614d0c81614063565b9050919050565b60006020820190508181036000830152614d2c816140c9565b9050919050565b60006020820190508181036000830152614d4c8161412f565b9050919050565b60006020820190508181036000830152614d6c8161416f565b9050919050565b60006020820190508181036000830152614d8c816141af565b9050919050565b60006020820190508181036000830152614dac81614215565b9050919050565b60006020820190508181036000830152614dcc81614255565b9050919050565b60006020820190508181036000830152614dec816142bb565b9050919050565b60006020820190508181036000830152614e0c816142fb565b9050919050565b60006020820190508181036000830152614e2c8161433b565b9050919050565b60006020820190508181036000830152614e4c8161437b565b9050919050565b60006020820190508181036000830152614e6c816143e1565b9050919050565b60006020820190508181036000830152614e8c81614447565b9050919050565b60006020820190508181036000830152614eac816144ad565b9050919050565b60006020820190508181036000830152614ecc81614513565b9050919050565b60006020820190508181036000830152614eec81614579565b9050919050565b60006020820190508181036000830152614f0c816145df565b9050919050565b60006020820190508181036000830152614f2c8161461f565b9050919050565b60006020820190508181036000830152614f4c81614685565b9050919050565b60006020820190508181036000830152614f6c816146eb565b9050919050565b60006020820190508181036000830152614f8c8161472b565b9050919050565b60006020820190508181036000830152614fac81614791565b9050919050565b60006020820190508181036000830152614fcc816147f7565b9050919050565b60006020820190508181036000830152614fec8161485d565b9050919050565b6000602082019050818103600083015261500c816148c3565b9050919050565b6000602082019050818103600083015261502c81614903565b9050919050565b6000602082019050818103600083015261504c81614943565b9050919050565b6000602082019050818103600083015261506c816149a9565b9050919050565b6000602082019050818103600083015261508c81614a0f565b9050919050565b600060208201905081810360008301526150ac81614a4f565b9050919050565b600060208201905081810360008301526150cc81614ab5565b9050919050565b60006020820190506150e86000830184614b2a565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561511557615114615382565b5b8060405250919050565b600067ffffffffffffffff82111561513a57615139615382565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561516a57615169615382565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000615285826152e0565b9050919050565b6000615297826152e0565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006153158261531c565b9050919050565b60006153278261532e565b9050919050565b6000615339826152e0565b9050919050565b82818337600083830152505050565b60005b8381101561536d578082015181840152602081019050615352565b8381111561537c576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b61539e8161527a565b81146153a957600080fd5b50565b6153b58161529e565b81146153c057600080fd5b50565b6153cc816152aa565b81146153d757600080fd5b50565b6153e3816152b4565b81146153ee57600080fd5b50565b6153fa81615300565b811461540557600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220e2a9ed8b71774a10842e97b827212fa70e71133bdd3053d0bb7673189f2b4be464736f6c63430007060033

Deployed Bytecode Sourcemap

66885:4768:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10236:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68617:418;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51521:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54307:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53837:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69047:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70286:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53315:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67888:716;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67335:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55197:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53077:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69853:425;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71561:89;;;;;;;;;;;;;:::i;:::-;;67636:131;;;;;;;;;;;;;:::i;:::-;;67188:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55573:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53603:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70426:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51277:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67243:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52896:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50994:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66232:148;;;;;;;;;;;;;:::i;:::-;;67118:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70533:502;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65581:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51690:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67030:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54600:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71375:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69274:567;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55795:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66965:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71238:125;;;;;;;;;;;;;:::i;:::-;;67779:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51865:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71047:179;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54966:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67296:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66535:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67389:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10236:150;10321:4;10345:20;:33;10366:11;10345:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10338:40;;10236:150;;;:::o;68617:418::-;68731:10;68710:31;;:17;68718:8;68710:7;:17::i;:::-;:31;;;68702:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;68835:41;68848:16;:26;68865:8;68848:26;;;;;;;;;;;68835:41;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;68811:20;68824:5;68811:20;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:65;;68803:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;68956:5;68927:16;:26;68944:8;68927:26;;;;;;;;;;;:34;;;;;;;;;;;;:::i;:::-;;68977:50;68999:10;69011:8;69021:5;68977:50;;;;;;;;:::i;:::-;;;;;;;;68617:418;;:::o;51521:100::-;51575:13;51608:5;51601:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51521:100;:::o;54307:221::-;54383:7;54411:16;54419:7;54411;:16::i;:::-;54403:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54496:15;:24;54512:7;54496:24;;;;;;;;;;;;;;;;;;;;;54489:31;;54307:221;;;:::o;53837:404::-;53918:13;53934:23;53949:7;53934:14;:23::i;:::-;53918:39;;53982:5;53976:11;;:2;:11;;;;53968:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;54062:5;54046:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;54071:44;54095:5;54102:12;:10;:12::i;:::-;54071:23;:44::i;:::-;54046:69;54038:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;54212:21;54221:2;54225:7;54212:8;:21::i;:::-;53837:404;;;:::o;69047:215::-;69112:13;69158;:11;:13::i;:::-;69147:8;:24;69138:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;69228:16;:26;69245:8;69228:26;;;;;;;;;;;69221:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69047:215;;;:::o;70286:132::-;65812:12;:10;:12::i;:::-;65801:23;;:7;:5;:7::i;:::-;:23;;;65793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70396:14:::1;70371:22;:39;;;;;;;;;;;;:::i;:::-;;70286:132:::0;:::o;53315:211::-;53376:7;53497:21;:12;:19;:21::i;:::-;53490:28;;53315:211;:::o;67888:716::-;67968:12;;;;;;;;;;;67960:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;68060:1;68043:14;:18;:62;;;;;67234:2;68065:14;:40;;68043:62;68035:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;67285:4;68162:33;68180:14;68162:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:52;;68154:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;68298:36;68319:14;68298:16;;:20;;:36;;;;:::i;:::-;68285:9;:49;;68277:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;68385:6;68381:216;68401:14;68397:1;:18;68381:216;;;68437:14;68454:13;:11;:13::i;:::-;68437:30;;67285:4;68486:13;:11;:13::i;:::-;:31;68482:104;;;68538:32;68548:10;68560:9;68538;:32::i;:::-;68482:104;68381:216;68417:3;;;;;;;68381:216;;;;67888:716;:::o;67335:47::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55197:305::-;55358:41;55377:12;:10;:12::i;:::-;55391:7;55358:18;:41::i;:::-;55350:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;55466:28;55476:4;55482:2;55486:7;55466:9;:28::i;:::-;55197:305;;;:::o;53077:162::-;53174:7;53201:30;53225:5;53201:13;:20;53215:5;53201:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;53194:37;;53077:162;;;;:::o;69853:425::-;65812:12;:10;:12::i;:::-;65801:23;;:7;:5;:7::i;:::-;:23;;;65793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69954:11:::1;69968:13;:11;:13::i;:::-;69954:27;;70017:1;70000:14;:18;:58;;;;;70040:18;;70022:14;:36;;70000:58;69992:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;70111:6;70106:95;70127:14;70123:1;:18;70106:95;;;70163:26;70173:3;70187:1;70178:6;:10;70163:9;:26::i;:::-;70143:3;;;;;;;70106:95;;;;70232:38;70255:14;70232:18;;:22;;:38;;;;:::i;:::-;70211:18;:59;;;;65872:1;69853:425:::0;;:::o;71561:89::-;65812:12;:10;:12::i;:::-;65801:23;;:7;:5;:7::i;:::-;:23;;;65793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71630:12:::1;;;;;;;;;;;71629:13;71614:12;;:28;;;;;;;;;;;;;;;;;;71561:89::o:0;67636:131::-;65812:12;:10;:12::i;:::-;65801:23;;:7;:5;:7::i;:::-;:23;;;65793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67684:12:::1;67699:21;67684:36;;67731:10;:19;;:28;67751:7;67731:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;65872:1;67636:131::o:0;67188:48::-;67234:2;67188:48;:::o;55573:151::-;55677:39;55694:4;55700:2;55704:7;55677:39;;;;;;;;;;;;:16;:39::i;:::-;55573:151;;;:::o;53603:172::-;53678:7;53699:15;53720:22;53736:5;53720:12;:15;;:22;;;;:::i;:::-;53698:44;;;53760:7;53753:14;;;53603:172;;;:::o;70426:99::-;65812:12;:10;:12::i;:::-;65801:23;;:7;:5;:7::i;:::-;:23;;;65793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70497:20:::1;70509:7;70497:11;:20::i;:::-;70426:99:::0;:::o;51277:177::-;51349:7;51376:70;51393:7;51376:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;51369:77;;51277:177;;;:::o;67243:46::-;67285:4;67243:46;:::o;52896:97::-;52944:13;52977:8;52970:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52896:97;:::o;50994:221::-;51066:7;51111:1;51094:19;;:5;:19;;;;51086:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;51178:29;:13;:20;51192:5;51178:20;;;;;;;;;;;;;;;:27;:29::i;:::-;51171:36;;50994:221;;;:::o;66232:148::-;65812:12;:10;:12::i;:::-;65801:23;;:7;:5;:7::i;:::-;:23;;;65793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66339:1:::1;66302:40;;66323:6;;;;;;;;;;;66302:40;;;;;;;;;;;;66370:1;66353:6;;:19;;;;;;;;;;;;;;;;;;66232:148::o:0;67118:51::-;;;;:::o;70533:502::-;70594:16;70624:18;70645:17;70655:6;70645:9;:17::i;:::-;70624:38;;70691:1;70677:10;:15;70673:355;;;70730:1;70716:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70709:23;;;;;70673:355;70765:23;70805:10;70791:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70765:51;;70831:13;70859:130;70883:10;70875:5;:18;70859:130;;;70939:34;70959:6;70967:5;70939:19;:34::i;:::-;70923:6;70930:5;70923:13;;;;;;;;;;;;;:50;;;;;70895:7;;;;;;;70859:130;;;71010:6;71003:13;;;;;70533:502;;;;:::o;65581:87::-;65627:7;65654:6;;;;;;;;;;;65647:13;;65581:87;:::o;51690:104::-;51746:13;51779:7;51772:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51690:104;:::o;67030:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54600:295::-;54715:12;:10;:12::i;:::-;54703:24;;:8;:24;;;;54695:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;54815:8;54770:18;:32;54789:12;:10;:12::i;:::-;54770:32;;;;;;;;;;;;;;;:42;54803:8;54770:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;54868:8;54839:48;;54854:12;:10;:12::i;:::-;54839:48;;;54878:8;54839:48;;;;;;:::i;:::-;;;;;;;;54600:295;;:::o;71375:174::-;65812:12;:10;:12::i;:::-;65801:23;;:7;:5;:7::i;:::-;:23;;;65793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71475:5:::1;71458:22;;:13;;;;;;;;;;;:22;;;71450:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;71533:8;71518:12;:23;;;;;;;;;;;;:::i;:::-;;71375:174:::0;:::o;69274:567::-;69345:15;69374:18;69395:17;69405:6;69395:9;:17::i;:::-;69374:38;;69441:1;69427:10;:15;69423:411;;;69517:1;69504:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69497:22;;;;;69423:411;69552:22;69590:10;69577:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69552:49;;69616:13;69644:151;69668:10;69660:5;:18;69644:151;;;69724:16;:54;69742:34;69762:6;69770:5;69742:19;:34::i;:::-;69724:54;;;;;;;;;;;69708:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:6;69715:5;69708:13;;;;;;;;;;;;;:70;;;;69680:7;;;;;;;69644:151;;;69816:6;69809:13;;;;;69274:567;;;;:::o;55795:285::-;55927:41;55946:12;:10;:12::i;:::-;55960:7;55927:18;:41::i;:::-;55919:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;56033:39;56047:4;56053:2;56057:7;56066:5;56033:13;:39::i;:::-;55795:285;;;;:::o;66965:41::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;71238:125::-;65812:12;:10;:12::i;:::-;65801:23;;:7;:5;:7::i;:::-;:23;;;65793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71306:4:::1;71289:13;;:21;;;;;;;;;;;;;;;;;;71326:29;71342:12;71326:29;;;;;;:::i;:::-;;;;;;;;71238:125::o:0;67779:97::-;65812:12;:10;:12::i;:::-;65801:23;;:7;:5;:7::i;:::-;:23;;;65793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67860:8:::1;67841:16;:27;;;;67779:97:::0;:::o;51865:792::-;51938:13;51972:16;51980:7;51972;:16::i;:::-;51964:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;52053:23;52079:10;:19;52090:7;52079:19;;;;;;;;;;;52053:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52109:18;52130:9;:7;:9::i;:::-;52109:30;;52237:1;52221:4;52215:18;:23;52211:72;;;52262:9;52255:16;;;;;;52211:72;52413:1;52393:9;52387:23;:27;52383:108;;;52462:4;52468:9;52445:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52431:48;;;;;;52383:108;52623:4;52629:18;:7;:16;:18::i;:::-;52606:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52592:57;;;;51865:792;;;;:::o;71047:179::-;71099:13;71139;:11;:13::i;:::-;71133:3;:19;71125:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;71206:12;71199:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71047:179;;;:::o;54966:164::-;55063:4;55087:18;:25;55106:5;55087:25;;;;;;;;;;;;;;;:35;55113:8;55087:35;;;;;;;;;;;;;;;;;;;;;;;;;55080:42;;54966:164;;;;:::o;67296:32::-;;;;;;;;;;;;;:::o;66535:244::-;65812:12;:10;:12::i;:::-;65801:23;;:7;:5;:7::i;:::-;:23;;;65793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66644:1:::1;66624:22;;:8;:22;;;;66616:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;66734:8;66705:38;;66726:6;;;;;;;;;;;66705:38;;;;;;;;;;;;66763:8;66754:6;;:17;;;;;;;;;;;;;;;;;;66535:244:::0;:::o;67389:36::-;;;;:::o;57547:127::-;57612:4;57636:30;57658:7;57636:12;:21;;:30;;;;:::i;:::-;57629:37;;57547:127;;;:::o;668:106::-;721:15;756:10;749:17;;668:106;:::o;63565:192::-;63667:2;63640:15;:24;63656:7;63640:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;63723:7;63719:2;63685:46;;63694:23;63709:7;63694:14;:23::i;:::-;63685:46;;;;;;;;;;;;63565:192;;:::o;44279:123::-;44348:7;44375:19;44383:3;:10;;44375:7;:19::i;:::-;44368:26;;44279:123;;;:::o;13798:179::-;13856:7;13876:9;13892:1;13888;:5;13876:17;;13917:1;13912;:6;;13904:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;13968:1;13961:8;;;13798:179;;;;:::o;14677:220::-;14735:7;14764:1;14759;:6;14755:20;;;14774:1;14767:8;;;;14755:20;14786:9;14802:1;14798;:5;14786:17;;14831:1;14826;14822;:5;;;;;;:10;14814:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;14888:1;14881:8;;;14677:220;;;;;:::o;58539:110::-;58615:26;58625:2;58629:7;58615:26;;;;;;;;;;;;:9;:26::i;:::-;58539:110;;:::o;57841:355::-;57934:4;57959:16;57967:7;57959;:16::i;:::-;57951:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58035:13;58051:23;58066:7;58051:14;:23::i;:::-;58035:39;;58104:5;58093:16;;:7;:16;;;:51;;;;58137:7;58113:31;;:20;58125:7;58113:11;:20::i;:::-;:31;;;58093:51;:94;;;;58148:39;58172:5;58179:7;58148:23;:39::i;:::-;58093:94;58085:103;;;57841:355;;;;:::o;60977:599::-;61102:4;61075:31;;:23;61090:7;61075:14;:23::i;:::-;:31;;;61067:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;61203:1;61189:16;;:2;:16;;;;61181:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61259:39;61280:4;61286:2;61290:7;61259:20;:39::i;:::-;61363:29;61380:1;61384:7;61363:8;:29::i;:::-;61405:35;61432:7;61405:13;:19;61419:4;61405:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;61451:30;61473:7;61451:13;:17;61465:2;61451:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;61494:29;61511:7;61520:2;61494:12;:16;;:29;;;;;:::i;:::-;;61560:7;61556:2;61541:27;;61550:4;61541:27;;;;;;;;;;;;60977:599;;;:::o;36070:137::-;36141:7;36176:22;36180:3;:10;;36192:5;36176:3;:22::i;:::-;36168:31;;36161:38;;36070:137;;;;:::o;14260:158::-;14318:7;14351:1;14346;:6;;14338:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;14409:1;14405;:5;14398:12;;14260:158;;;;:::o;44741:236::-;44821:7;44830;44851:11;44864:13;44881:22;44885:3;:10;;44897:5;44881:3;:22::i;:::-;44850:53;;;;44930:3;44922:12;;44960:5;44952:14;;44914:55;;;;;;44741:236;;;;;:::o;62177:100::-;62261:8;62250;:19;;;;;;;;;;;;:::i;:::-;;62177:100;:::o;46027:213::-;46134:7;46185:44;46190:3;:10;;46210:3;46202:12;;46216;46185:4;:44::i;:::-;46177:53;;46154:78;;46027:213;;;;;:::o;35612:114::-;35672:7;35699:19;35707:3;:10;;35699:7;:19::i;:::-;35692:26;;35612:114;;;:::o;56962:272::-;57076:28;57086:4;57092:2;57096:7;57076:9;:28::i;:::-;57123:48;57146:4;57152:2;57156:7;57165:5;57123:22;:48::i;:::-;57115:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;56962:272;;;;:::o;46491:746::-;46547:13;46777:1;46768:5;:10;46764:53;;;46795:10;;;;;;;;;;;;;;;;;;;;;46764:53;46827:12;46842:5;46827:20;;46858:14;46883:78;46898:1;46890:4;:9;46883:78;;46916:8;;;;;;;46947:2;46939:10;;;;;;;;;46883:78;;;46971:19;47003:6;46993:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46971:39;;47021:13;47046:1;47037:6;:10;47021:26;;47065:5;47058:12;;47081:117;47096:1;47088:4;:9;47081:117;;47157:2;47150:4;:9;;;;;;47145:2;:14;47132:29;;47114:6;47121:7;;;;;;;47114:15;;;;;;;;;;;:47;;;;;;;;;;;47184:2;47176:10;;;;;;;;;47081:117;;;47222:6;47208:21;;;;;;46491:746;;;;:::o;44040:151::-;44124:4;44148:35;44158:3;:10;;44178:3;44170:12;;44148:9;:35::i;:::-;44141:42;;44040:151;;;;:::o;40858:110::-;40914:7;40941:3;:12;;:19;;;;40934:26;;40858:110;;;:::o;58876:250::-;58972:18;58978:2;58982:7;58972:5;:18::i;:::-;59009:54;59040:1;59044:2;59048:7;59057:5;59009:22;:54::i;:::-;59001:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;58876:250;;;:::o;64370:93::-;;;;:::o;35157:137::-;35227:4;35251:35;35259:3;:10;;35279:5;35271:14;;35251:7;:35::i;:::-;35244:42;;35157:137;;;;:::o;34850:131::-;34917:4;34941:32;34946:3;:10;;34966:5;34958:14;;34941:4;:32::i;:::-;34934:39;;34850:131;;;;:::o;43463:185::-;43552:4;43576:64;43581:3;:10;;43601:3;43593:12;;43631:5;43615:23;;43607:32;;43576:4;:64::i;:::-;43569:71;;43463:185;;;;;:::o;31108:204::-;31175:7;31224:5;31203:3;:11;;:18;;;;:26;31195:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31286:3;:11;;31298:5;31286:18;;;;;;;;;;;;;;;;31279:25;;31108:204;;;;:::o;41323:279::-;41390:7;41399;41449:5;41427:3;:12;;:19;;;;:27;41419:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;41506:22;41531:3;:12;;41544:5;41531:19;;;;;;;;;;;;;;;;;;41506:44;;41569:5;:10;;;41581:5;:12;;;41561:33;;;;;41323:279;;;;;:::o;42820:319::-;42914:7;42934:16;42953:3;:12;;:17;42966:3;42953:17;;;;;;;;;;;;42934:36;;43001:1;42989:8;:13;;43004:12;42981:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;43071:3;:12;;43095:1;43084:8;:12;43071:26;;;;;;;;;;;;;;;;;;:33;;;43064:40;;;42820:319;;;;;:::o;30655:109::-;30711:7;30738:3;:11;;:18;;;;30731:25;;30655:109;;;:::o;62842:604::-;62963:4;62990:15;:2;:13;;;:15::i;:::-;62985:60;;63029:4;63022:11;;;;62985:60;63055:23;63081:252;63134:45;;;63194:12;:10;:12::i;:::-;63221:4;63240:7;63262:5;63097:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63081:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;63055:278;;63344:13;63371:10;63360:32;;;;;;;;;;;;:::i;:::-;63344:48;;47991:10;63421:16;;63411:26;;;:6;:26;;;;63403:35;;;;62842:604;;;;;;;:::o;40638:125::-;40709:4;40754:1;40733:3;:12;;:17;40746:3;40733:17;;;;;;;;;;;;:22;;40726:29;;40638:125;;;;:::o;59462:404::-;59556:1;59542:16;;:2;:16;;;;59534:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;59615:16;59623:7;59615;:16::i;:::-;59614:17;59606:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;59677:45;59706:1;59710:2;59714:7;59677:20;:45::i;:::-;59735:30;59757:7;59735:13;:17;59749:2;59735:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;59778:29;59795:7;59804:2;59778:12;:16;;:29;;;;;:::i;:::-;;59850:7;59846:2;59825:33;;59842:1;59825:33;;;;;;;;;;;;59462:404;;:::o;28810:1544::-;28876:4;28994:18;29015:3;:12;;:19;29028:5;29015:19;;;;;;;;;;;;28994:40;;29065:1;29051:10;:15;29047:1300;;29413:21;29450:1;29437:10;:14;29413:38;;29466:17;29507:1;29486:3;:11;;:18;;;;:22;29466:42;;29753:17;29773:3;:11;;29785:9;29773:22;;;;;;;;;;;;;;;;29753:42;;29919:9;29890:3;:11;;29902:13;29890:26;;;;;;;;;;;;;;;:38;;;;30038:1;30022:13;:17;29996:3;:12;;:23;30009:9;29996:23;;;;;;;;;;;:43;;;;30148:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;30243:3;:12;;:19;30256:5;30243:19;;;;;;;;;;;30236:26;;;30286:4;30279:11;;;;;;;;29047:1300;30330:5;30323:12;;;28810:1544;;;;;:::o;28220:414::-;28283:4;28305:21;28315:3;28320:5;28305:9;:21::i;:::-;28300:327;;28343:3;:11;;28360:5;28343:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28526:3;:11;;:18;;;;28504:3;:12;;:19;28517:5;28504:19;;;;;;;;;;;:40;;;;28566:4;28559:11;;;;28300:327;28610:5;28603:12;;28220:414;;;;;:::o;38138:692::-;38214:4;38330:16;38349:3;:12;;:17;38362:3;38349:17;;;;;;;;;;;;38330:36;;38395:1;38383:8;:13;38379:444;;;38450:3;:12;;38468:38;;;;;;;;38485:3;38468:38;;;;38498:5;38468:38;;;38450:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38665:3;:12;;:19;;;;38645:3;:12;;:17;38658:3;38645:17;;;;;;;;;;;:39;;;;38706:4;38699:11;;;;;38379:444;38779:5;38743:3;:12;;38767:1;38756:8;:12;38743:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38806:5;38799:12;;;38138:692;;;;;;:::o;19239:422::-;19299:4;19507:12;19618:7;19606:20;19598:28;;19652:1;19645:4;:8;19638:15;;;19239:422;;;:::o;22157:195::-;22260:12;22292:52;22314:6;22322:4;22328:1;22331:12;22292:21;:52::i;:::-;22285:59;;22157:195;;;;;:::o;30440:129::-;30513:4;30560:1;30537:3;:12;;:19;30550:5;30537:19;;;;;;;;;;;;:24;;30530:31;;30440:129;;;;:::o;23209:530::-;23336:12;23394:5;23369:21;:30;;23361:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;23461:18;23472:6;23461:10;:18::i;:::-;23453:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;23587:12;23601:23;23628:6;:11;;23648:5;23656:4;23628:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23586:75;;;;23679:52;23697:7;23706:10;23718:12;23679:17;:52::i;:::-;23672:59;;;;23209:530;;;;;;:::o;25749:742::-;25864:12;25893:7;25889:595;;;25924:10;25917:17;;;;25889:595;26058:1;26038:10;:17;:21;26034:439;;;26301:10;26295:17;26362:15;26349:10;26345:2;26341:19;26334:44;26249:148;26444:12;26437:20;;;;;;;;;;;:::i;:::-;;;;;;;;25749:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989: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:379::-;;15575:67;15639:2;15634:3;15575:67;:::i;:::-;15568:74;;15672:34;15668:1;15663:3;15659:11;15652:55;15738:17;15733:2;15728:3;15724:12;15717:39;15782:2;15777:3;15773:12;15766:19;;15558:233;;;:::o;15797:330::-;;15960:67;16024:2;16019:3;15960:67;:::i;:::-;15953:74;;16057:34;16053:1;16048:3;16044:11;16037:55;16118:2;16113:3;16109:12;16102:19;;15943:184;;;:::o;16133:368::-;;16296:67;16360:2;16355:3;16296:67;:::i;:::-;16289:74;;16393:34;16389:1;16384:3;16380:11;16373:55;16459:6;16454:2;16449:3;16445:12;16438:28;16492:2;16487:3;16483:12;16476:19;;16279:222;;;:::o;16507:323::-;;16670:67;16734:2;16729:3;16670:67;:::i;:::-;16663:74;;16767:27;16763:1;16758:3;16754:11;16747:48;16821:2;16816:3;16812:12;16805:19;;16653:177;;;:::o;16836:329::-;;16999:67;17063:2;17058:3;16999:67;:::i;:::-;16992:74;;17096:33;17092:1;17087:3;17083:11;17076:54;17156:2;17151:3;17147:12;17140:19;;16982:183;;;:::o;17171:328::-;;17334:67;17398:2;17393:3;17334:67;:::i;:::-;17327:74;;17431:32;17427:1;17422:3;17418:11;17411:53;17490:2;17485:3;17481:12;17474:19;;17317:182;;;:::o;17505:370::-;;17668:67;17732:2;17727:3;17668:67;:::i;:::-;17661:74;;17765:34;17761:1;17756:3;17752:11;17745:55;17831:8;17826:2;17821:3;17817:12;17810:30;17866:2;17861:3;17857:12;17850:19;;17651:224;;;:::o;17881:376::-;;18044:67;18108:2;18103:3;18044:67;:::i;:::-;18037:74;;18141:34;18137:1;18132:3;18128:11;18121:55;18207:14;18202:2;18197:3;18193:12;18186:36;18248:2;18243:3;18239:12;18232:19;;18027:230;;;:::o;18263:371::-;;18426:67;18490:2;18485:3;18426:67;:::i;:::-;18419:74;;18523:34;18519:1;18514:3;18510:11;18503:55;18589:9;18584:2;18579:3;18575:12;18568:31;18625:2;18620:3;18616:12;18609:19;;18409:225;;;:::o;18640:388::-;;18803:67;18867:2;18862:3;18803:67;:::i;:::-;18796:74;;18900:34;18896:1;18891:3;18887:11;18880:55;18966:26;18961:2;18956:3;18952:12;18945:48;19019:2;19014:3;19010:12;19003:19;;18786:242;;;:::o;19034:374::-;;19197:67;19261:2;19256:3;19197:67;:::i;:::-;19190:74;;19294:34;19290:1;19285:3;19281:11;19274:55;19360:12;19355:2;19350:3;19346:12;19339:34;19399:2;19394:3;19390:12;19383:19;;19180:228;;;:::o;19414:366::-;;19577:67;19641:2;19636:3;19577:67;:::i;:::-;19570:74;;19674:34;19670:1;19665:3;19661:11;19654:55;19740:4;19735:2;19730:3;19726:12;19719:26;19771:2;19766:3;19762:12;19755:19;;19560:220;;;:::o;19786:330::-;;19949:67;20013:2;20008:3;19949:67;:::i;:::-;19942:74;;20046:34;20042:1;20037:3;20033:11;20026:55;20107:2;20102:3;20098:12;20091:19;;19932:184;;;:::o;20122:365::-;;20285:67;20349:2;20344:3;20285:67;:::i;:::-;20278:74;;20382:34;20378:1;20373:3;20369:11;20362:55;20448:3;20443:2;20438:3;20434:12;20427:25;20478:2;20473:3;20469:12;20462:19;;20268:219;;;:::o;20493:376::-;;20656:67;20720:2;20715:3;20656:67;:::i;:::-;20649:74;;20753:34;20749:1;20744:3;20740:11;20733:55;20819:14;20814:2;20809:3;20805:12;20798:36;20860:2;20855:3;20851:12;20844:19;;20639:230;;;:::o;20875:330::-;;21038:67;21102:2;21097:3;21038:67;:::i;:::-;21031:74;;21135:34;21131:1;21126:3;21122:11;21115:55;21196:2;21191:3;21187:12;21180:19;;21021:184;;;:::o;21211:373::-;;21374:67;21438:2;21433:3;21374:67;:::i;:::-;21367:74;;21471:34;21467:1;21462:3;21458:11;21451:55;21537:11;21532:2;21527:3;21523:12;21516:33;21575:2;21570:3;21566:12;21559:19;;21357:227;;;:::o;21590:379::-;;21753:67;21817:2;21812:3;21753:67;:::i;:::-;21746:74;;21850:34;21846:1;21841:3;21837:11;21830:55;21916:17;21911:2;21906:3;21902:12;21895:39;21960:2;21955:3;21951:12;21944:19;;21736:233;;;:::o;21975:367::-;;22138:67;22202:2;22197:3;22138:67;:::i;:::-;22131:74;;22235:34;22231:1;22226:3;22222:11;22215:55;22301:5;22296:2;22291:3;22287:12;22280:27;22333:2;22328:3;22324:12;22317:19;;22121:221;;;:::o;22348:365::-;;22511:67;22575:2;22570:3;22511:67;:::i;:::-;22504:74;;22608:34;22604:1;22599:3;22595:11;22588:55;22674:3;22669:2;22664:3;22660:12;22653:25;22704:2;22699:3;22695:12;22688:19;;22494:219;;;:::o;22719:329::-;;22882:67;22946:2;22941:3;22882:67;:::i;:::-;22875:74;;22979:33;22975:1;22970:3;22966:11;22959:54;23039:2;23034:3;23030:12;23023:19;;22865:183;;;:::o;23054:320::-;;23217:67;23281:2;23276:3;23217:67;:::i;:::-;23210:74;;23314:24;23310:1;23305:3;23301:11;23294:45;23365:2;23360:3;23356:12;23349:19;;23200:174;;;:::o;23380:381::-;;23543:67;23607:2;23602:3;23543:67;:::i;:::-;23536:74;;23640:34;23636:1;23631:3;23627:11;23620:55;23706:19;23701:2;23696:3;23692:12;23685:41;23752:2;23747:3;23743:12;23736:19;;23526:235;;;:::o;23767:378::-;;23930:67;23994:2;23989:3;23930:67;:::i;:::-;23923:74;;24027:34;24023:1;24018:3;24014:11;24007:55;24093:16;24088:2;24083:3;24079:12;24072:38;24136:2;24131:3;24127:12;24120:19;;23913:232;;;:::o;24151:327::-;;24314:67;24378:2;24373:3;24314:67;:::i;:::-;24307:74;;24411:31;24407:1;24402:3;24398:11;24391:52;24469:2;24464:3;24460:12;24453:19;;24297:181;;;:::o;24484:365::-;;24647:67;24711:2;24706:3;24647:67;:::i;:::-;24640:74;;24744:34;24740:1;24735:3;24731:11;24724:55;24810:3;24805:2;24800:3;24796:12;24789:25;24840:2;24835:3;24831:12;24824:19;;24630:219;;;:::o;24855:365::-;;25018:67;25082:2;25077:3;25018:67;:::i;:::-;25011:74;;25115:34;25111:1;25106:3;25102:11;25095:55;25181:3;25176:2;25171:3;25167:12;25160:25;25211:2;25206:3;25202:12;25195:19;;25001:219;;;:::o;25226:108::-;25303:24;25321:5;25303:24;:::i;:::-;25298:3;25291:37;25281:53;;:::o;25340:118::-;25427:24;25445:5;25427:24;:::i;:::-;25422:3;25415:37;25405:53;;:::o;25464:271::-;;25616:93;25705:3;25696:6;25616:93;:::i;:::-;25609:100;;25726:3;25719:10;;25598:137;;;;:::o;25741:273::-;;25894:94;25984:3;25975:6;25894:94;:::i;:::-;25887:101;;26005:3;25998:10;;25876:138;;;;:::o;26020:435::-;;26222:95;26313:3;26304:6;26222:95;:::i;:::-;26215:102;;26334:95;26425:3;26416:6;26334:95;:::i;:::-;26327:102;;26446:3;26439:10;;26204:251;;;;;:::o;26461:222::-;;26592:2;26581:9;26577:18;26569:26;;26605:71;26673:1;26662:9;26658:17;26649:6;26605:71;:::i;:::-;26559:124;;;;:::o;26689:672::-;;26938:3;26927:9;26923:19;26915:27;;26952:87;27036:1;27025:9;27021:17;27012:6;26952:87;:::i;:::-;27049:72;27117:2;27106:9;27102:18;27093:6;27049:72;:::i;:::-;27131;27199:2;27188:9;27184:18;27175:6;27131:72;:::i;:::-;27250:9;27244:4;27240:20;27235:2;27224:9;27220:18;27213:48;27278:76;27349:4;27340:6;27278:76;:::i;:::-;27270:84;;26905:456;;;;;;;:::o;27367:549::-;;27582:2;27571:9;27567:18;27559:26;;27595:79;27671:1;27660:9;27656:17;27647:6;27595:79;:::i;:::-;27684:72;27752:2;27741:9;27737:18;27728:6;27684:72;:::i;:::-;27803:9;27797:4;27793:20;27788:2;27777:9;27773:18;27766:48;27831:78;27904:4;27895:6;27831:78;:::i;:::-;27823:86;;27549:367;;;;;;:::o;27922:413::-;;28123:2;28112:9;28108:18;28100:26;;28172:9;28166:4;28162:20;28158:1;28147:9;28143:17;28136:47;28200:128;28323:4;28314:6;28200:128;:::i;:::-;28192:136;;28090:245;;;;:::o;28341:373::-;;28522:2;28511:9;28507:18;28499:26;;28571:9;28565:4;28561:20;28557:1;28546:9;28542:17;28535:47;28599:108;28702:4;28693:6;28599:108;:::i;:::-;28591:116;;28489:225;;;;:::o;28720:210::-;;28845:2;28834:9;28830:18;28822:26;;28858:65;28920:1;28909:9;28905:17;28896:6;28858:65;:::i;:::-;28812:118;;;;:::o;28936:313::-;;29087:2;29076:9;29072:18;29064:26;;29136:9;29130:4;29126:20;29122:1;29111:9;29107:17;29100:47;29164:78;29237:4;29228:6;29164:78;:::i;:::-;29156:86;;29054:195;;;;:::o;29255:307::-;;29403:2;29392:9;29388:18;29380:26;;29452:9;29446:4;29442:20;29438:1;29427:9;29423:17;29416:47;29480:75;29550:4;29541:6;29480:75;:::i;:::-;29472:83;;29370:192;;;;:::o;29568:419::-;;29772:2;29761:9;29757:18;29749:26;;29821:9;29815:4;29811:20;29807:1;29796:9;29792:17;29785:47;29849:131;29975:4;29849:131;:::i;:::-;29841:139;;29739:248;;;:::o;29993:419::-;;30197:2;30186:9;30182:18;30174:26;;30246:9;30240:4;30236:20;30232:1;30221:9;30217:17;30210:47;30274:131;30400:4;30274:131;:::i;:::-;30266:139;;30164:248;;;:::o;30418:419::-;;30622:2;30611:9;30607:18;30599:26;;30671:9;30665:4;30661:20;30657:1;30646:9;30642:17;30635:47;30699:131;30825:4;30699:131;:::i;:::-;30691:139;;30589:248;;;:::o;30843:419::-;;31047:2;31036:9;31032:18;31024:26;;31096:9;31090:4;31086:20;31082:1;31071:9;31067:17;31060:47;31124:131;31250:4;31124:131;:::i;:::-;31116:139;;31014:248;;;:::o;31268:419::-;;31472:2;31461:9;31457:18;31449:26;;31521:9;31515:4;31511:20;31507:1;31496:9;31492:17;31485:47;31549:131;31675:4;31549:131;:::i;:::-;31541:139;;31439:248;;;:::o;31693:419::-;;31897:2;31886:9;31882:18;31874:26;;31946:9;31940:4;31936:20;31932:1;31921:9;31917:17;31910:47;31974:131;32100:4;31974:131;:::i;:::-;31966:139;;31864:248;;;:::o;32118:419::-;;32322:2;32311:9;32307:18;32299:26;;32371:9;32365:4;32361:20;32357:1;32346:9;32342:17;32335:47;32399:131;32525:4;32399:131;:::i;:::-;32391:139;;32289:248;;;:::o;32543:419::-;;32747:2;32736:9;32732:18;32724:26;;32796:9;32790:4;32786:20;32782:1;32771:9;32767:17;32760:47;32824:131;32950:4;32824:131;:::i;:::-;32816:139;;32714:248;;;:::o;32968:419::-;;33172:2;33161:9;33157:18;33149:26;;33221:9;33215:4;33211:20;33207:1;33196:9;33192:17;33185:47;33249:131;33375:4;33249:131;:::i;:::-;33241:139;;33139:248;;;:::o;33393:419::-;;33597:2;33586:9;33582:18;33574:26;;33646:9;33640:4;33636:20;33632:1;33621:9;33617:17;33610:47;33674:131;33800:4;33674:131;:::i;:::-;33666:139;;33564:248;;;:::o;33818:419::-;;34022:2;34011:9;34007:18;33999:26;;34071:9;34065:4;34061:20;34057:1;34046:9;34042:17;34035:47;34099:131;34225:4;34099:131;:::i;:::-;34091:139;;33989:248;;;:::o;34243:419::-;;34447:2;34436:9;34432:18;34424:26;;34496:9;34490:4;34486:20;34482:1;34471:9;34467:17;34460:47;34524:131;34650:4;34524:131;:::i;:::-;34516:139;;34414:248;;;:::o;34668:419::-;;34872:2;34861:9;34857:18;34849:26;;34921:9;34915:4;34911:20;34907:1;34896:9;34892:17;34885:47;34949:131;35075:4;34949:131;:::i;:::-;34941:139;;34839:248;;;:::o;35093:419::-;;35297:2;35286:9;35282:18;35274:26;;35346:9;35340:4;35336:20;35332:1;35321:9;35317:17;35310:47;35374:131;35500:4;35374:131;:::i;:::-;35366:139;;35264:248;;;:::o;35518:419::-;;35722:2;35711:9;35707:18;35699:26;;35771:9;35765:4;35761:20;35757:1;35746:9;35742:17;35735:47;35799:131;35925:4;35799:131;:::i;:::-;35791:139;;35689:248;;;:::o;35943:419::-;;36147:2;36136:9;36132:18;36124:26;;36196:9;36190:4;36186:20;36182:1;36171:9;36167:17;36160:47;36224:131;36350:4;36224:131;:::i;:::-;36216:139;;36114:248;;;:::o;36368:419::-;;36572:2;36561:9;36557:18;36549:26;;36621:9;36615:4;36611:20;36607:1;36596:9;36592:17;36585:47;36649:131;36775:4;36649:131;:::i;:::-;36641:139;;36539:248;;;:::o;36793:419::-;;36997:2;36986:9;36982:18;36974:26;;37046:9;37040:4;37036:20;37032:1;37021:9;37017:17;37010:47;37074:131;37200:4;37074:131;:::i;:::-;37066:139;;36964:248;;;:::o;37218:419::-;;37422:2;37411:9;37407:18;37399:26;;37471:9;37465:4;37461:20;37457:1;37446:9;37442:17;37435:47;37499:131;37625:4;37499:131;:::i;:::-;37491:139;;37389:248;;;:::o;37643:419::-;;37847:2;37836:9;37832:18;37824:26;;37896:9;37890:4;37886:20;37882:1;37871:9;37867:17;37860:47;37924:131;38050:4;37924:131;:::i;:::-;37916:139;;37814:248;;;:::o;38068:419::-;;38272:2;38261:9;38257:18;38249:26;;38321:9;38315:4;38311:20;38307:1;38296:9;38292:17;38285:47;38349:131;38475:4;38349:131;:::i;:::-;38341:139;;38239:248;;;:::o;38493:419::-;;38697:2;38686:9;38682:18;38674:26;;38746:9;38740:4;38736:20;38732:1;38721:9;38717:17;38710:47;38774:131;38900:4;38774:131;:::i;:::-;38766:139;;38664:248;;;:::o;38918:419::-;;39122:2;39111:9;39107:18;39099:26;;39171:9;39165:4;39161:20;39157:1;39146:9;39142:17;39135:47;39199:131;39325:4;39199:131;:::i;:::-;39191:139;;39089:248;;;:::o;39343:419::-;;39547:2;39536:9;39532:18;39524:26;;39596:9;39590:4;39586:20;39582:1;39571:9;39567:17;39560:47;39624:131;39750:4;39624:131;:::i;:::-;39616:139;;39514:248;;;:::o;39768:419::-;;39972:2;39961:9;39957:18;39949:26;;40021:9;40015:4;40011:20;40007:1;39996:9;39992:17;39985:47;40049:131;40175:4;40049:131;:::i;:::-;40041:139;;39939:248;;;:::o;40193:419::-;;40397:2;40386:9;40382:18;40374:26;;40446:9;40440:4;40436:20;40432:1;40421:9;40417:17;40410:47;40474:131;40600:4;40474:131;:::i;:::-;40466:139;;40364:248;;;:::o;40618:419::-;;40822:2;40811:9;40807:18;40799:26;;40871:9;40865:4;40861:20;40857:1;40846:9;40842:17;40835:47;40899:131;41025:4;40899:131;:::i;:::-;40891:139;;40789:248;;;:::o;41043:419::-;;41247:2;41236:9;41232:18;41224:26;;41296:9;41290:4;41286:20;41282:1;41271:9;41267:17;41260:47;41324:131;41450:4;41324:131;:::i;:::-;41316:139;;41214:248;;;:::o;41468:419::-;;41672:2;41661:9;41657:18;41649:26;;41721:9;41715:4;41711:20;41707:1;41696:9;41692:17;41685:47;41749:131;41875:4;41749:131;:::i;:::-;41741:139;;41639:248;;;:::o;41893:419::-;;42097:2;42086:9;42082:18;42074:26;;42146:9;42140:4;42136:20;42132:1;42121:9;42117:17;42110:47;42174:131;42300:4;42174:131;:::i;:::-;42166:139;;42064:248;;;:::o;42318:419::-;;42522:2;42511:9;42507:18;42499:26;;42571:9;42565:4;42561:20;42557:1;42546:9;42542:17;42535:47;42599:131;42725:4;42599:131;:::i;:::-;42591:139;;42489:248;;;:::o;42743:419::-;;42947:2;42936:9;42932:18;42924:26;;42996:9;42990:4;42986:20;42982:1;42971:9;42967:17;42960:47;43024:131;43150:4;43024:131;:::i;:::-;43016:139;;42914:248;;;:::o;43168:222::-;;43299:2;43288:9;43284:18;43276:26;;43312:71;43380:1;43369:9;43365:17;43356:6;43312:71;:::i;:::-;43266:124;;;;:::o;43396:278::-;;43462:2;43456:9;43446:19;;43504:4;43496:6;43492:17;43611:6;43599:10;43596:22;43575:18;43563:10;43560:34;43557:62;43554:2;;;43622:13;;:::i;:::-;43554:2;43657:10;43653:2;43646:22;43436:238;;;;:::o;43680:326::-;;43831:18;43823:6;43820:30;43817:2;;;43853:13;;:::i;:::-;43817:2;43933:4;43929:9;43922:4;43914:6;43910:17;43906:33;43898:41;;43994:4;43988;43984:15;43976:23;;43746:260;;;:::o;44012:327::-;;44164:18;44156:6;44153:30;44150:2;;;44186:13;;:::i;:::-;44150:2;44266:4;44262:9;44255:4;44247:6;44243:17;44239:33;44231:41;;44327:4;44321;44317:15;44309:23;;44079:260;;;:::o;44345:142::-;;44445:3;44437:11;;44475:4;44470:3;44466:14;44458:22;;44427:60;;;:::o;44493:132::-;;44583:3;44575:11;;44613:4;44608:3;44604:14;44596:22;;44565:60;;;:::o;44631:144::-;;44706:3;44698:11;;44729:3;44726:1;44719:14;44763:4;44760:1;44750:18;44742:26;;44688:87;;;:::o;44781:141::-;;44853:3;44845:11;;44876:3;44873:1;44866:14;44910:4;44907:1;44897:18;44889:26;;44835:87;;;:::o;44928:124::-;;45039:5;45033:12;45023:22;;45012:40;;;:::o;45058:114::-;;45159:5;45153:12;45143:22;;45132:40;;;:::o;45178:98::-;;45263:5;45257:12;45247:22;;45236:40;;;:::o;45282:99::-;;45368:5;45362:12;45352:22;;45341:40;;;:::o;45387:123::-;;45499:4;45494:3;45490:14;45482:22;;45472:38;;;:::o;45516:113::-;;45618:4;45613:3;45609:14;45601:22;;45591:38;;;:::o;45635:194::-;;45778:6;45773:3;45766:19;45818:4;45813:3;45809:14;45794:29;;45756:73;;;;:::o;45835:184::-;;45968:6;45963:3;45956:19;46008:4;46003:3;45999:14;45984:29;;45946:73;;;;:::o;46025:168::-;;46142:6;46137:3;46130:19;46182:4;46177:3;46173:14;46158:29;;46120:73;;;;:::o;46199:147::-;;46337:3;46322:18;;46312:34;;;;:::o;46352:159::-;;46460:6;46455:3;46448:19;46500:4;46495:3;46491:14;46476:29;;46438:73;;;;:::o;46517:169::-;;46635:6;46630:3;46623:19;46675:4;46670:3;46666:14;46651:29;;46613:73;;;;:::o;46692:148::-;;46831:3;46816:18;;46806:34;;;;:::o;46846:96::-;;46912:24;46930:5;46912:24;:::i;:::-;46901:35;;46891:51;;;:::o;46948:104::-;;47022:24;47040:5;47022:24;:::i;:::-;47011:35;;47001:51;;;:::o;47058:90::-;;47135:5;47128:13;47121:21;47110:32;;47100:48;;;:::o;47154:77::-;;47220:5;47209:16;;47199:32;;;:::o;47237:149::-;;47313:66;47306:5;47302:78;47291:89;;47281:105;;;:::o;47392:126::-;;47469:42;47462:5;47458:54;47447:65;;47437:81;;;:::o;47524:77::-;;47590:5;47579:16;;47569:32;;;:::o;47607:134::-;;47698:37;47729:5;47698:37;:::i;:::-;47685:50;;47675:66;;;:::o;47747:126::-;;47830:37;47861:5;47830:37;:::i;:::-;47817:50;;47807:66;;;:::o;47879:113::-;;47962:24;47980:5;47962:24;:::i;:::-;47949:37;;47939:53;;;:::o;47998:154::-;48082:6;48077:3;48072;48059:30;48144:1;48135:6;48130:3;48126:16;48119:27;48049:103;;;:::o;48158:307::-;48226:1;48236:113;48250:6;48247:1;48244:13;48236:113;;;48335:1;48330:3;48326:11;48320:18;48316:1;48311:3;48307:11;48300:39;48272:2;48269:1;48265:10;48260:15;;48236:113;;;48367:6;48364:1;48361:13;48358:2;;;48447:1;48438:6;48433:3;48429:16;48422:27;48358:2;48207:258;;;;:::o;48471:48::-;48504:9;48525:102;;48617:2;48613:7;48608:2;48601:5;48597:14;48593:28;48583:38;;48573:54;;;:::o;48633:122::-;48706:24;48724:5;48706:24;:::i;:::-;48699:5;48696:35;48686:2;;48745:1;48742;48735:12;48686:2;48676:79;:::o;48761:116::-;48831:21;48846:5;48831:21;:::i;:::-;48824:5;48821:32;48811:2;;48867:1;48864;48857:12;48811:2;48801:76;:::o;48883:122::-;48956:24;48974:5;48956:24;:::i;:::-;48949:5;48946:35;48936:2;;48995:1;48992;48985:12;48936:2;48926:79;:::o;49011:120::-;49083:23;49100:5;49083:23;:::i;:::-;49076:5;49073:34;49063:2;;49121:1;49118;49111:12;49063:2;49053:78;:::o;49137:122::-;49210:24;49228:5;49210:24;:::i;:::-;49203:5;49200:35;49190:2;;49249:1;49246;49239:12;49190:2;49180:79;:::o

Swarm Source

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