ETH Price: $3,303.72 (-3.56%)
Gas: 7 Gwei

Token

YOUnicorns (YOU)
 

Overview

Max Total Supply

2,200 YOU

Holders

780

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
k1ra.eth
Balance
2 YOU
0xbfdf30d1c5b9f6b34a18a25244adbe1c1be9c06b
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Younicorns

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

// SPDX-License-Identifier: MIT

// GO TO LINE 1904 TO SEE WHERE THE YOUNICORN CONTRACT STARTS

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

pragma solidity >= 0.6.0 < 0.8.0;

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

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

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



pragma solidity >= 0.6.0 < 0.8.0;

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

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



pragma solidity >= 0.6.2 < 0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity >= 0.6.2 < 0.8.0;


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

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

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

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

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



pragma solidity >= 0.6.2 < 0.8.0;


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

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

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

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

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



pragma solidity >= 0.6.0 < 0.8.0;

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

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



pragma solidity >= 0.6.0 < 0.8.0;


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

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

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

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

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

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



pragma solidity >= 0.6.0 < 0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity >= 0.6.2 < 0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity >= 0.6.0 < 0.8.0;

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

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

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

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

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

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

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

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

            bytes32 lastvalue = set._values[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

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

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

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

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

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

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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


    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

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

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

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



pragma solidity >= 0.6.0 < 0.8.0;

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

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

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

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

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

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

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

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

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

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

            MapEntry storage lastEntry = map._entries[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

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

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

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

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

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

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

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

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

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

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

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

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

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

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



pragma solidity >= 0.6.0 < 0.8.0;

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

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

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



pragma solidity >= 0.6.0 < 0.8.0;

/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */

contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using SafeMath for uint256;
        using Address for address;
            using EnumerableSet for EnumerableSet.UintSet;
                using EnumerableMap for EnumerableMap.UintToAddressMap;
                    using Strings for uint256;

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

    // Base URI
    string private _baseURI;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

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

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

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

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

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

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(tokenId);

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

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



pragma solidity >= 0.6.0 < 0.8.0;

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

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

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

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

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

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

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

pragma solidity ^ 0.7.0;
pragma abicoder v2;

contract Younicorns is ERC721, Ownable {

    using SafeMath for uint256;

        string public YOUNICORN_PROVENANCE = "";

    string public LICENSE_TEXT = "";

    bool licenseLocked = false;

    uint256 public constant younicornPrice = 50000000000000000; // 0.05 ETH

    uint public constant maxYounicornPurchase = 20;

    uint256 public constant MAX_YOUNICORNS = 2200;

    bool public saleIsActive = false;

    mapping(uint => string) public younicornNames;

    uint public younicornReserve = 20;

    event younicornNameChange(address _by, uint _tokenId, string _name);

    event licenseisLocked(string _licenseText);

    constructor() ERC721("YOUnicorns", "YOU") { }

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

    function reserveYounicorns(address _to, uint256 _reserveAmount) public onlyOwner {
        uint supply = totalSupply();
        require(_reserveAmount > 0 && _reserveAmount <= younicornReserve, "Not enough reserve left for team");
        for (uint i = 0; i < _reserveAmount; i++) {
            _safeMint(_to, supply + i);
        }
        younicornReserve = younicornReserve.sub(_reserveAmount);
    }


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

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


    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }


    function tokensOfOwner(address _owner) external view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }

    // Returns the license for tokens
    function tokenLicense(uint _id) public view returns(string memory) {
        require(_id < totalSupply(), "CHOOSE A YOUNICORN WITHIN RANGE");
        return LICENSE_TEXT;
    }

    // Locks the license to prevent further changes 
    function lockLicense() public onlyOwner {
        licenseLocked = true;
        emit licenseisLocked(LICENSE_TEXT);
    }

    // Change the license
    function changeLicense(string memory _license) public onlyOwner {
        require(licenseLocked == false, "License already locked");
        LICENSE_TEXT = _license;
    }


    function mintYounicorn(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint Younicorn");
        require(numberOfTokens > 0 && numberOfTokens <= maxYounicornPurchase, "Can only mint 20 tokens at a time");
        require(totalSupply().add(numberOfTokens) <= MAX_YOUNICORNS, "Purchase would exceed max supply of Younicorns");
        require(msg.value >= younicornPrice.mul(numberOfTokens), "Ether value sent is not correct");

        for (uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply();
            if (totalSupply() < MAX_YOUNICORNS) {
                _safeMint(msg.sender, mintIndex);
            }
        }

    }

    function changeYounicornName(uint _tokenId, string memory _name) public {
        require(ownerOf(_tokenId) == msg.sender, "Hey, your wallet doesn't own this younicorn!");
        require(sha256(bytes(_name)) != sha256(bytes(younicornNames[_tokenId])), "New name is same as the current one");
        younicornNames[_tokenId] = _name;

        emit younicornNameChange(msg.sender, _tokenId, _name);

    }

    function viewYounicornName(uint _tokenId) public view returns(string memory){
        require(_tokenId < totalSupply(), "Choose a younicorn within range");
        return younicornNames[_tokenId];
    }


    // GET ALL YOUNICORNS OF A WALLET AS AN ARRAY OF STRINGS. WOULD BE BETTER MAYBE IF IT RETURNED A STRUCT WITH ID-NAME MATCH
    function younicornNamesOfOwner(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] = younicornNames[tokenOfOwnerByIndex(_owner, index)];
            }
            return result;
        }
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_licenseText","type":"string"}],"name":"licenseisLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_by","type":"address"},{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"_name","type":"string"}],"name":"younicornNameChange","type":"event"},{"inputs":[],"name":"LICENSE_TEXT","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_YOUNICORNS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"YOUNICORN_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_license","type":"string"}],"name":"changeLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_name","type":"string"}],"name":"changeYounicornName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxYounicornPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintYounicorn","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":"reserveYounicorns","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":"viewYounicornName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"younicornNames","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"younicornNamesOfOwner","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"younicornPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"younicornReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

608060405260405180602001604052806000815250600b90805190602001906200002b92919062000334565b5060405180602001604052806000815250600c90805190602001906200005392919062000334565b506000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506014600f553480156200009c57600080fd5b506040518060400160405280600a81526020017f594f556e69636f726e73000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f594f550000000000000000000000000000000000000000000000000000000000815250620001216301ffc9a760e01b6200025460201b60201c565b81600690805190602001906200013992919062000334565b5080600790805190602001906200015292919062000334565b506200016b6380ac58cd60e01b6200025460201b60201c565b62000183635b5e139f60e01b6200025460201b60201c565b6200019b63780e9d6360e01b6200025460201b60201c565b50506000620001af6200032c60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200045f565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620002c0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b7906200042c565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200036c5760008555620003b8565b82601f106200038757805160ff1916838001178555620003b8565b82800160010185558215620003b8579182015b82811115620003b75782518255916020019190600101906200039a565b5b509050620003c79190620003cb565b5090565b5b80821115620003e6576000816000905550600101620003cc565b5090565b6000620003f9601c836200044e565b91507f4552433136353a20696e76616c696420696e74657266616365206964000000006000830152602082019050919050565b600060208201905081810360008301526200044781620003ea565b9050919050565b600082825260208201905092915050565b6153c3806200046f6000396000f3fe6080604052600436106102465760003560e01c80636c0360eb11610139578063a7a20ace116100b6578063c667115c1161007a578063c667115c1461086d578063c87b56dd14610898578063d9b137b2146108d5578063e985e9c514610912578063eb8d24441461094f578063f2fde38b1461097a57610246565b8063a7a20ace146107ae578063ab55f91f146107d9578063b09904b514610804578063b88d4fde1461082d578063bf4702fc1461085657610246565b80638462151c116100fd5780638462151c146106c75780638da5cb5b1461070457806395d89b411461072f5780639c3e72bd1461075a578063a22cb4651461078557610246565b80636c0360eb146105ef5780636ce86aec1461061a57806370a0823114610636578063715018a61461067357806375ad61741461068a57610246565b80633ccfd60b116101c757806355f804b31161018b57806355f804b31461050a57806356bf12ca146105335780635bac65301461055e5780636352211e146105895780636a8df145146105c657610246565b80633ccfd60b146104135780633e1c31771461042a5780633e86a8e21461046757806342842e0e146104a45780634f6ccce7146104cd57610246565b80631650547d1161020e5780631650547d1461034257806318160ddd1461036b57806323b872dd146103965780632f745c59146103bf57806334918dfd146103fc57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f05780631096952314610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613ad8565b6109a3565b60405161027f9190614b9e565b60405180910390f35b34801561029457600080fd5b5061029d610a0a565b6040516102aa9190614bb9565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613b6b565b610aac565b6040516102e79190614ab5565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613a73565b610b31565b005b34801561032557600080fd5b50610340600480360381019061033b9190613b2a565b610c49565b005b34801561034e57600080fd5b5061036960048036038101906103649190613a73565b610cdf565b005b34801561037757600080fd5b50610380610dfd565b60405161038d9190614ffd565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b8919061396d565b610e0e565b005b3480156103cb57600080fd5b506103e660048036038101906103e19190613a73565b610e6e565b6040516103f39190614ffd565b60405180910390f35b34801561040857600080fd5b50610411610ec9565b005b34801561041f57600080fd5b50610428610f71565b005b34801561043657600080fd5b50610451600480360381019061044c9190613908565b61103c565b60405161045e9190614b5a565b60405180910390f35b34801561047357600080fd5b5061048e60048036038101906104899190613b6b565b6111e9565b60405161049b9190614bb9565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c6919061396d565b6112e7565b005b3480156104d957600080fd5b506104f460048036038101906104ef9190613b6b565b611307565b6040516105019190614ffd565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c9190613b2a565b61132a565b005b34801561053f57600080fd5b506105486113b2565b6040516105559190614ffd565b60405180910390f35b34801561056a57600080fd5b506105736113bd565b6040516105809190614bb9565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab9190613b6b565b61145b565b6040516105bd9190614ab5565b60405180910390f35b3480156105d257600080fd5b506105ed60048036038101906105e89190613b94565b611492565b005b3480156105fb57600080fd5b50610604611662565b6040516106119190614bb9565b60405180910390f35b610634600480360381019061062f9190613b6b565b611704565b005b34801561064257600080fd5b5061065d60048036038101906106589190613908565b6118a2565b60405161066a9190614ffd565b60405180910390f35b34801561067f57600080fd5b50610688611961565b005b34801561069657600080fd5b506106b160048036038101906106ac9190613b6b565b611a9e565b6040516106be9190614bb9565b60405180910390f35b3480156106d357600080fd5b506106ee60048036038101906106e99190613908565b611b4e565b6040516106fb9190614b7c565b60405180910390f35b34801561071057600080fd5b50610719611c47565b6040516107269190614ab5565b60405180910390f35b34801561073b57600080fd5b50610744611c71565b6040516107519190614bb9565b60405180910390f35b34801561076657600080fd5b5061076f611d13565b60405161077c9190614bb9565b60405180910390f35b34801561079157600080fd5b506107ac60048036038101906107a79190613a37565b611db1565b005b3480156107ba57600080fd5b506107c3611f32565b6040516107d09190614ffd565b60405180910390f35b3480156107e557600080fd5b506107ee611f37565b6040516107fb9190614ffd565b60405180910390f35b34801561081057600080fd5b5061082b60048036038101906108269190613b2a565b611f3d565b005b34801561083957600080fd5b50610854600480360381019061084f91906139bc565b612029565b005b34801561086257600080fd5b5061086b61208b565b005b34801561087957600080fd5b5061088261215c565b60405161088f9190614ffd565b60405180910390f35b3480156108a457600080fd5b506108bf60048036038101906108ba9190613b6b565b612162565b6040516108cc9190614bb9565b60405180910390f35b3480156108e157600080fd5b506108fc60048036038101906108f79190613b6b565b6122e5565b6040516109099190614bb9565b60405180910390f35b34801561091e57600080fd5b5061093960048036038101906109349190613931565b6123d2565b6040516109469190614b9e565b60405180910390f35b34801561095b57600080fd5b50610964612466565b6040516109719190614b9e565b60405180910390f35b34801561098657600080fd5b506109a1600480360381019061099c9190613908565b612479565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610aa25780601f10610a7757610100808354040283529160200191610aa2565b820191906000526020600020905b815481529060010190602001808311610a8557829003601f168201915b5050505050905090565b6000610ab782612625565b610af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aed90614e5d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b3c8261145b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba490614f1d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bcc612642565b73ffffffffffffffffffffffffffffffffffffffff161480610bfb5750610bfa81610bf5612642565b6123d2565b5b610c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3190614dbd565b60405180910390fd5b610c44838361264a565b505050565b610c51612642565b73ffffffffffffffffffffffffffffffffffffffff16610c6f611c47565b73ffffffffffffffffffffffffffffffffffffffff1614610cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbc90614e7d565b60405180910390fd5b80600b9080519060200190610cdb92919061370f565b5050565b610ce7612642565b73ffffffffffffffffffffffffffffffffffffffff16610d05611c47565b73ffffffffffffffffffffffffffffffffffffffff1614610d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5290614e7d565b60405180910390fd5b6000610d65610dfd565b9050600082118015610d795750600f548211155b610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf90614cbd565b60405180910390fd5b60005b82811015610ddc57610dcf84828401612703565b8080600101915050610dbb565b50610df282600f5461272190919063ffffffff16565b600f81905550505050565b6000610e096002612771565b905090565b610e1f610e19612642565b82612786565b610e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5590614f9d565b60405180910390fd5b610e69838383612864565b505050565b6000610ec182600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612a7b90919063ffffffff16565b905092915050565b610ed1612642565b73ffffffffffffffffffffffffffffffffffffffff16610eef611c47565b73ffffffffffffffffffffffffffffffffffffffff1614610f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3c90614e7d565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b610f79612642565b73ffffffffffffffffffffffffffffffffffffffff16610f97611c47565b73ffffffffffffffffffffffffffffffffffffffff1614610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe490614e7d565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611038573d6000803e3d6000fd5b5050565b60606000611049836118a2565b905060008114156110a957600067ffffffffffffffff8111801561106c57600080fd5b506040519080825280602002602001820160405280156110a057816020015b606081526020019060019003908161108b5790505b509150506111e4565b60008167ffffffffffffffff811180156110c257600080fd5b506040519080825280602002602001820160405280156110f657816020015b60608152602001906001900390816110e15790505b50905060005b828110156111dd57600e60006111128784610e6e565b81526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111b45780601f10611189576101008083540402835291602001916111b4565b820191906000526020600020905b81548152906001019060200180831161119757829003601f168201915b50505050508282815181106111c557fe5b602002602001018190525080806001019150506110fc565b8193505050505b919050565b60606111f3610dfd565b8210611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b90614f3d565b60405180910390fd5b600e60008381526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112db5780601f106112b0576101008083540402835291602001916112db565b820191906000526020600020905b8154815290600101906020018083116112be57829003601f168201915b50505050509050919050565b61130283838360405180602001604052806000815250612029565b505050565b60008061131e836002612a9590919063ffffffff16565b50905080915050919050565b611332612642565b73ffffffffffffffffffffffffffffffffffffffff16611350611c47565b73ffffffffffffffffffffffffffffffffffffffff16146113a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139d90614e7d565b60405180910390fd5b6113af81612ac1565b50565b66b1a2bc2ec5000081565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114535780601f1061142857610100808354040283529160200191611453565b820191906000526020600020905b81548152906001019060200180831161143657829003601f168201915b505050505081565b600061148b82604051806060016040528060298152602001615365602991396002612adb9092919063ffffffff16565b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff166114b28361145b565b73ffffffffffffffffffffffffffffffffffffffff1614611508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ff90614fdd565b60405180910390fd5b6002600e600084815260200190815260200160002060405161152a9190614a7a565b602060405180830381855afa158015611547573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061156a9190613aaf565b60028260405161157a9190614a63565b602060405180830381855afa158015611597573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906115ba9190613aaf565b14156115fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f290614efd565b60405180910390fd5b80600e6000848152602001908152602001600020908051906020019061162292919061370f565b507f27a085472b3087a5646741e0f253627005fa7d198254fbd3763e082912e44ccc33838360405161165693929190614b1c565b60405180910390a15050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116fa5780601f106116cf576101008083540402835291602001916116fa565b820191906000526020600020905b8154815290600101906020018083116116dd57829003601f168201915b5050505050905090565b600d60019054906101000a900460ff16611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90614f7d565b60405180910390fd5b600081118015611764575060148111155b6117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a90614d9d565b60405180910390fd5b6108986117c0826117b2610dfd565b612afa90919063ffffffff16565b1115611801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f890614c9d565b60405180910390fd5b61181b8166b1a2bc2ec50000612b4f90919063ffffffff16565b34101561185d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185490614d1d565b60405180910390fd5b60005b8181101561189e576000611872610dfd565b905061089861187f610dfd565b10156118905761188f3382612703565b5b508080600101915050611860565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190a90614ddd565b60405180910390fd5b61195a600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612bbf565b9050919050565b611969612642565b73ffffffffffffffffffffffffffffffffffffffff16611987611c47565b73ffffffffffffffffffffffffffffffffffffffff16146119dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d490614e7d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600e6020528060005260406000206000915090508054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b465780601f10611b1b57610100808354040283529160200191611b46565b820191906000526020600020905b815481529060010190602001808311611b2957829003601f168201915b505050505081565b60606000611b5b836118a2565b90506000811415611bb657600067ffffffffffffffff81118015611b7e57600080fd5b50604051908082528060200260200182016040528015611bad5781602001602082028036833780820191505090505b50915050611c42565b60008167ffffffffffffffff81118015611bcf57600080fd5b50604051908082528060200260200182016040528015611bfe5781602001602082028036833780820191505090505b50905060005b82811015611c3b57611c168582610e6e565b828281518110611c2257fe5b6020026020010181815250508080600101915050611c04565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d095780601f10611cde57610100808354040283529160200191611d09565b820191906000526020600020905b815481529060010190602001808311611cec57829003601f168201915b5050505050905090565b600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611da95780601f10611d7e57610100808354040283529160200191611da9565b820191906000526020600020905b815481529060010190602001808311611d8c57829003601f168201915b505050505081565b611db9612642565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1e90614cfd565b60405180910390fd5b8060056000611e34612642565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ee1612642565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f269190614b9e565b60405180910390a35050565b601481565b61089881565b611f45612642565b73ffffffffffffffffffffffffffffffffffffffff16611f63611c47565b73ffffffffffffffffffffffffffffffffffffffff1614611fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb090614e7d565b60405180910390fd5b60001515600d60009054906101000a900460ff1615151461200f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200690614f5d565b60405180910390fd5b80600c908051906020019061202592919061370f565b5050565b61203a612034612642565b83612786565b612079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207090614f9d565b60405180910390fd5b61208584848484612bd4565b50505050565b612093612642565b73ffffffffffffffffffffffffffffffffffffffff166120b1611c47565b73ffffffffffffffffffffffffffffffffffffffff1614612107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fe90614e7d565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0600c6040516121529190614bdb565b60405180910390a1565b600f5481565b606061216d82612625565b6121ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a390614edd565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156122555780601f1061222a57610100808354040283529160200191612255565b820191906000526020600020905b81548152906001019060200180831161223857829003601f168201915b505050505090506000612266611662565b905060008151141561227c5781925050506122e0565b6000825111156122b1578082604051602001612299929190614a91565b604051602081830303815290604052925050506122e0565b806122bb85612c30565b6040516020016122cc929190614a91565b604051602081830303815290604052925050505b919050565b60606122ef610dfd565b8210612330576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232790614ebd565b60405180910390fd5b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156123c65780601f1061239b576101008083540402835291602001916123c6565b820191906000526020600020905b8154815290600101906020018083116123a957829003601f168201915b50505050509050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60019054906101000a900460ff1681565b612481612642565b73ffffffffffffffffffffffffffffffffffffffff1661249f611c47565b73ffffffffffffffffffffffffffffffffffffffff16146124f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ec90614e7d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255c90614c3d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061263b826002612d7790919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126bd8361145b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61271d828260405180602001604052806000815250612d91565b5050565b600082821115612766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275d90614d3d565b60405180910390fd5b818303905092915050565b600061277f82600001612dec565b9050919050565b600061279182612625565b6127d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c790614d7d565b60405180910390fd5b60006127db8361145b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061284a57508373ffffffffffffffffffffffffffffffffffffffff1661283284610aac565b73ffffffffffffffffffffffffffffffffffffffff16145b8061285b575061285a81856123d2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128848261145b565b73ffffffffffffffffffffffffffffffffffffffff16146128da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d190614e9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561294a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294190614cdd565b60405180910390fd5b612955838383612dfd565b61296060008261264a565b6129b181600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612e0290919063ffffffff16565b50612a0381600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612e1c90919063ffffffff16565b50612a1a81836002612e369092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612a8a8360000183612e6b565b60001c905092915050565b600080600080612aa88660000186612ed8565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190612ad792919061370f565b5050565b6000612aee846000018460001b84612f5b565b60001c90509392505050565b600080828401905083811015612b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3c90614c7d565b60405180910390fd5b8091505092915050565b600080831415612b625760009050612bb9565b6000828402905082848281612b7357fe5b0414612bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bab90614e3d565b60405180910390fd5b809150505b92915050565b6000612bcd82600001612fec565b9050919050565b612bdf848484612864565b612beb84848484612ffd565b612c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2190614c1d565b60405180910390fd5b50505050565b60606000821415612c78576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d72565b600082905060005b60008214612ca2578080600101915050600a8281612c9a57fe5b049150612c80565b60008167ffffffffffffffff81118015612cbb57600080fd5b506040519080825280601f01601f191660200182016040528015612cee5781602001600182028036833780820191505090505b50905060006001830390508593505b60008414612d6a57600a8481612d0f57fe5b0660300160f81b82828060019003935081518110612d2957fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481612d6257fe5b049350612cfd565b819450505050505b919050565b6000612d89836000018360001b613161565b905092915050565b612d9b8383613184565b612da86000848484612ffd565b612de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dde90614c1d565b60405180910390fd5b505050565b600081600001805490509050919050565b505050565b6000612e14836000018360001b613312565b905092915050565b6000612e2e836000018360001b6133fa565b905092915050565b6000612e62846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b61346a565b90509392505050565b600081836000018054905011612eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ead90614bfd565b60405180910390fd5b826000018281548110612ec557fe5b9060005260206000200154905092915050565b60008082846000018054905011612f24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1b90614dfd565b60405180910390fd5b6000846000018481548110612f3557fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb49190614bb9565b60405180910390fd5b50846000016001820381548110612fd057fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b600061301e8473ffffffffffffffffffffffffffffffffffffffff16613546565b61302b5760019050613159565b60006130f263150b7a0260e01b613040612642565b8887876040516024016130569493929190614ad0565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001615333603291398773ffffffffffffffffffffffffffffffffffffffff166135599092919063ffffffff16565b905060008180602001905181019061310a9190613b01565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131eb90614e1d565b60405180910390fd5b6131fd81612625565b1561323d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161323490614c5d565b60405180910390fd5b61324960008383612dfd565b61329a81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612e1c90919063ffffffff16565b506132b181836002612e369092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080836001016000848152602001908152602001600020549050600081146133ee576000600182039050600060018660000180549050039050600086600001828154811061335d57fe5b906000526020600020015490508087600001848154811061337a57fe5b90600052602060002001819055506001830187600101600083815260200190815260200160002081905550866000018054806133b257fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506133f4565b60009150505b92915050565b60006134068383613571565b61345f578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613464565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156135115784600001604051806040016040528086815260200185815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050846000018054905085600101600086815260200190815260200160002081905550600191505061353f565b8285600001600183038154811061352457fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080823b905060008111915050919050565b60606135688484600085613594565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b6060824710156135d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135d090614d5d565b60405180910390fd5b6135e285613546565b613621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161361890614fbd565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161364a9190614a63565b60006040518083038185875af1925050503d8060008114613687576040519150601f19603f3d011682016040523d82523d6000602084013e61368c565b606091505b509150915061369c8282866136a8565b92505050949350505050565b606083156136b857829050613708565b6000835111156136cb5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136ff9190614bb9565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282613745576000855561378c565b82601f1061375e57805160ff191683800117855561378c565b8280016001018555821561378c579182015b8281111561378b578251825591602001919060010190613770565b5b509050613799919061379d565b5090565b5b808211156137b657600081600090555060010161379e565b5090565b60006137cd6137c884615049565b615018565b9050828152602081018484840111156137e557600080fd5b6137f084828561526a565b509392505050565b600061380b61380684615079565b615018565b90508281526020810184848401111561382357600080fd5b61382e84828561526a565b509392505050565b600081359050613845816152bf565b92915050565b60008135905061385a816152d6565b92915050565b60008151905061386f816152ed565b92915050565b60008135905061388481615304565b92915050565b60008151905061389981615304565b92915050565b600082601f8301126138b057600080fd5b81356138c08482602086016137ba565b91505092915050565b600082601f8301126138da57600080fd5b81356138ea8482602086016137f8565b91505092915050565b6000813590506139028161531b565b92915050565b60006020828403121561391a57600080fd5b600061392884828501613836565b91505092915050565b6000806040838503121561394457600080fd5b600061395285828601613836565b925050602061396385828601613836565b9150509250929050565b60008060006060848603121561398257600080fd5b600061399086828701613836565b93505060206139a186828701613836565b92505060406139b2868287016138f3565b9150509250925092565b600080600080608085870312156139d257600080fd5b60006139e087828801613836565b94505060206139f187828801613836565b9350506040613a02878288016138f3565b925050606085013567ffffffffffffffff811115613a1f57600080fd5b613a2b8782880161389f565b91505092959194509250565b60008060408385031215613a4a57600080fd5b6000613a5885828601613836565b9250506020613a698582860161384b565b9150509250929050565b60008060408385031215613a8657600080fd5b6000613a9485828601613836565b9250506020613aa5858286016138f3565b9150509250929050565b600060208284031215613ac157600080fd5b6000613acf84828501613860565b91505092915050565b600060208284031215613aea57600080fd5b6000613af884828501613875565b91505092915050565b600060208284031215613b1357600080fd5b6000613b218482850161388a565b91505092915050565b600060208284031215613b3c57600080fd5b600082013567ffffffffffffffff811115613b5657600080fd5b613b62848285016138c9565b91505092915050565b600060208284031215613b7d57600080fd5b6000613b8b848285016138f3565b91505092915050565b60008060408385031215613ba757600080fd5b6000613bb5858286016138f3565b925050602083013567ffffffffffffffff811115613bd257600080fd5b613bde858286016138c9565b9150509250929050565b6000613bf48383613e1b565b905092915050565b6000613c088383614a45565b60208301905092915050565b613c1d81615234565b82525050565b613c2c816151b6565b82525050565b613c3b816151a4565b82525050565b6000613c4c826150f3565b613c568185615139565b935083602082028501613c68856150a9565b8060005b85811015613ca45784840389528151613c858582613be8565b9450613c908361511f565b925060208a01995050600181019050613c6c565b50829750879550505050505092915050565b6000613cc1826150fe565b613ccb818561514a565b9350613cd6836150b9565b8060005b83811015613d07578151613cee8882613bfc565b9750613cf98361512c565b925050600181019050613cda565b5085935050505092915050565b613d1d816151c8565b82525050565b6000613d2e82615109565b613d38818561515b565b9350613d48818560208601615279565b613d51816152ae565b840191505092915050565b6000613d6782615109565b613d71818561516c565b9350613d81818560208601615279565b80840191505092915050565b600081546001811660008114613daa5760018114613dcf57613e13565b607f6002830416613dbb818761516c565b955060ff1983168652808601935050613e13565b60028204613ddd818761516c565b9550613de8856150c9565b60005b82811015613e0a57815481890152600182019150602081019050613deb565b82880195505050505b505092915050565b6000613e2682615114565b613e308185615177565b9350613e40818560208601615279565b613e49816152ae565b840191505092915050565b6000613e5f82615114565b613e698185615188565b9350613e79818560208601615279565b613e82816152ae565b840191505092915050565b6000613e9882615114565b613ea28185615199565b9350613eb2818560208601615279565b80840191505092915050565b600081546001811660008114613edb5760018114613f0157613f45565b607f6002830416613eec8187615188565b955060ff198316865260208601935050613f45565b60028204613f0f8187615188565b9550613f1a856150de565b60005b82811015613f3c57815481890152600182019150602081019050613f1d565b80880195505050505b505092915050565b6000613f5a602283615188565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fc0603283615188565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614026602683615188565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061408c601c83615188565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006140cc601b83615188565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b600061410c602e83615188565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620596f756e69636f726e730000000000000000000000000000000000006020830152604082019050919050565b6000614172602083615188565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b60006141b2602483615188565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614218601983615188565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614258601f83615188565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000614298601e83615188565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b60006142d8602683615188565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061433e602c83615188565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006143a4602183615188565b91507f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061440a603883615188565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614470602a83615188565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006144d6602283615188565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061453c602083615188565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061457c602183615188565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006145e2602c83615188565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614648602083615188565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614688602983615188565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006146ee601f83615188565b91507f43484f4f5345204120594f554e49434f524e2057495448494e2052414e4745006000830152602082019050919050565b600061472e602f83615188565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614794602383615188565b91507f4e6577206e616d652069732073616d65206173207468652063757272656e742060008301527f6f6e6500000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006147fa602183615188565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614860601f83615188565b91507f43686f6f7365206120796f756e69636f726e2077697468696e2072616e6765006000830152602082019050919050565b60006148a0601683615188565b91507f4c6963656e736520616c7265616479206c6f636b6564000000000000000000006000830152602082019050919050565b60006148e0602583615188565b91507f53616c65206d7573742062652061637469766520746f206d696e7420596f756e60008301527f69636f726e0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614946603183615188565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006149ac601d83615188565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b60006149ec602c83615188565b91507f4865792c20796f75722077616c6c657420646f65736e2774206f776e2074686960008301527f7320796f756e69636f726e2100000000000000000000000000000000000000006020830152604082019050919050565b614a4e8161522a565b82525050565b614a5d8161522a565b82525050565b6000614a6f8284613d5c565b915081905092915050565b6000614a868284613d8d565b915081905092915050565b6000614a9d8285613e8d565b9150614aa98284613e8d565b91508190509392505050565b6000602082019050614aca6000830184613c32565b92915050565b6000608082019050614ae56000830187613c23565b614af26020830186613c32565b614aff6040830185614a54565b8181036060830152614b118184613d23565b905095945050505050565b6000606082019050614b316000830186613c14565b614b3e6020830185614a54565b8181036040830152614b508184613e54565b9050949350505050565b60006020820190508181036000830152614b748184613c41565b905092915050565b60006020820190508181036000830152614b968184613cb6565b905092915050565b6000602082019050614bb36000830184613d14565b92915050565b60006020820190508181036000830152614bd38184613e54565b905092915050565b60006020820190508181036000830152614bf58184613ebe565b905092915050565b60006020820190508181036000830152614c1681613f4d565b9050919050565b60006020820190508181036000830152614c3681613fb3565b9050919050565b60006020820190508181036000830152614c5681614019565b9050919050565b60006020820190508181036000830152614c768161407f565b9050919050565b60006020820190508181036000830152614c96816140bf565b9050919050565b60006020820190508181036000830152614cb6816140ff565b9050919050565b60006020820190508181036000830152614cd681614165565b9050919050565b60006020820190508181036000830152614cf6816141a5565b9050919050565b60006020820190508181036000830152614d168161420b565b9050919050565b60006020820190508181036000830152614d368161424b565b9050919050565b60006020820190508181036000830152614d568161428b565b9050919050565b60006020820190508181036000830152614d76816142cb565b9050919050565b60006020820190508181036000830152614d9681614331565b9050919050565b60006020820190508181036000830152614db681614397565b9050919050565b60006020820190508181036000830152614dd6816143fd565b9050919050565b60006020820190508181036000830152614df681614463565b9050919050565b60006020820190508181036000830152614e16816144c9565b9050919050565b60006020820190508181036000830152614e368161452f565b9050919050565b60006020820190508181036000830152614e568161456f565b9050919050565b60006020820190508181036000830152614e76816145d5565b9050919050565b60006020820190508181036000830152614e968161463b565b9050919050565b60006020820190508181036000830152614eb68161467b565b9050919050565b60006020820190508181036000830152614ed6816146e1565b9050919050565b60006020820190508181036000830152614ef681614721565b9050919050565b60006020820190508181036000830152614f1681614787565b9050919050565b60006020820190508181036000830152614f36816147ed565b9050919050565b60006020820190508181036000830152614f5681614853565b9050919050565b60006020820190508181036000830152614f7681614893565b9050919050565b60006020820190508181036000830152614f96816148d3565b9050919050565b60006020820190508181036000830152614fb681614939565b9050919050565b60006020820190508181036000830152614fd68161499f565b9050919050565b60006020820190508181036000830152614ff6816149df565b9050919050565b60006020820190506150126000830184614a54565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561503f5761503e6152ac565b5b8060405250919050565b600067ffffffffffffffff821115615064576150636152ac565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115615094576150936152ac565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006151af8261520a565b9050919050565b60006151c18261520a565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061523f82615246565b9050919050565b600061525182615258565b9050919050565b60006152638261520a565b9050919050565b82818337600083830152505050565b60005b8381101561529757808201518184015260208101905061527c565b838111156152a6576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b6152c8816151a4565b81146152d357600080fd5b50565b6152df816151c8565b81146152ea57600080fd5b50565b6152f6816151d4565b811461530157600080fd5b50565b61530d816151de565b811461531857600080fd5b50565b6153248161522a565b811461532f57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea264697066735822122059d8e18d21eec7792b70bb694d49e6ea93d65a502f0921851fff21da25e9ab0a64736f6c63430007060033

Deployed Bytecode

0x6080604052600436106102465760003560e01c80636c0360eb11610139578063a7a20ace116100b6578063c667115c1161007a578063c667115c1461086d578063c87b56dd14610898578063d9b137b2146108d5578063e985e9c514610912578063eb8d24441461094f578063f2fde38b1461097a57610246565b8063a7a20ace146107ae578063ab55f91f146107d9578063b09904b514610804578063b88d4fde1461082d578063bf4702fc1461085657610246565b80638462151c116100fd5780638462151c146106c75780638da5cb5b1461070457806395d89b411461072f5780639c3e72bd1461075a578063a22cb4651461078557610246565b80636c0360eb146105ef5780636ce86aec1461061a57806370a0823114610636578063715018a61461067357806375ad61741461068a57610246565b80633ccfd60b116101c757806355f804b31161018b57806355f804b31461050a57806356bf12ca146105335780635bac65301461055e5780636352211e146105895780636a8df145146105c657610246565b80633ccfd60b146104135780633e1c31771461042a5780633e86a8e21461046757806342842e0e146104a45780634f6ccce7146104cd57610246565b80631650547d1161020e5780631650547d1461034257806318160ddd1461036b57806323b872dd146103965780632f745c59146103bf57806334918dfd146103fc57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f05780631096952314610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613ad8565b6109a3565b60405161027f9190614b9e565b60405180910390f35b34801561029457600080fd5b5061029d610a0a565b6040516102aa9190614bb9565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613b6b565b610aac565b6040516102e79190614ab5565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613a73565b610b31565b005b34801561032557600080fd5b50610340600480360381019061033b9190613b2a565b610c49565b005b34801561034e57600080fd5b5061036960048036038101906103649190613a73565b610cdf565b005b34801561037757600080fd5b50610380610dfd565b60405161038d9190614ffd565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b8919061396d565b610e0e565b005b3480156103cb57600080fd5b506103e660048036038101906103e19190613a73565b610e6e565b6040516103f39190614ffd565b60405180910390f35b34801561040857600080fd5b50610411610ec9565b005b34801561041f57600080fd5b50610428610f71565b005b34801561043657600080fd5b50610451600480360381019061044c9190613908565b61103c565b60405161045e9190614b5a565b60405180910390f35b34801561047357600080fd5b5061048e60048036038101906104899190613b6b565b6111e9565b60405161049b9190614bb9565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c6919061396d565b6112e7565b005b3480156104d957600080fd5b506104f460048036038101906104ef9190613b6b565b611307565b6040516105019190614ffd565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c9190613b2a565b61132a565b005b34801561053f57600080fd5b506105486113b2565b6040516105559190614ffd565b60405180910390f35b34801561056a57600080fd5b506105736113bd565b6040516105809190614bb9565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab9190613b6b565b61145b565b6040516105bd9190614ab5565b60405180910390f35b3480156105d257600080fd5b506105ed60048036038101906105e89190613b94565b611492565b005b3480156105fb57600080fd5b50610604611662565b6040516106119190614bb9565b60405180910390f35b610634600480360381019061062f9190613b6b565b611704565b005b34801561064257600080fd5b5061065d60048036038101906106589190613908565b6118a2565b60405161066a9190614ffd565b60405180910390f35b34801561067f57600080fd5b50610688611961565b005b34801561069657600080fd5b506106b160048036038101906106ac9190613b6b565b611a9e565b6040516106be9190614bb9565b60405180910390f35b3480156106d357600080fd5b506106ee60048036038101906106e99190613908565b611b4e565b6040516106fb9190614b7c565b60405180910390f35b34801561071057600080fd5b50610719611c47565b6040516107269190614ab5565b60405180910390f35b34801561073b57600080fd5b50610744611c71565b6040516107519190614bb9565b60405180910390f35b34801561076657600080fd5b5061076f611d13565b60405161077c9190614bb9565b60405180910390f35b34801561079157600080fd5b506107ac60048036038101906107a79190613a37565b611db1565b005b3480156107ba57600080fd5b506107c3611f32565b6040516107d09190614ffd565b60405180910390f35b3480156107e557600080fd5b506107ee611f37565b6040516107fb9190614ffd565b60405180910390f35b34801561081057600080fd5b5061082b60048036038101906108269190613b2a565b611f3d565b005b34801561083957600080fd5b50610854600480360381019061084f91906139bc565b612029565b005b34801561086257600080fd5b5061086b61208b565b005b34801561087957600080fd5b5061088261215c565b60405161088f9190614ffd565b60405180910390f35b3480156108a457600080fd5b506108bf60048036038101906108ba9190613b6b565b612162565b6040516108cc9190614bb9565b60405180910390f35b3480156108e157600080fd5b506108fc60048036038101906108f79190613b6b565b6122e5565b6040516109099190614bb9565b60405180910390f35b34801561091e57600080fd5b5061093960048036038101906109349190613931565b6123d2565b6040516109469190614b9e565b60405180910390f35b34801561095b57600080fd5b50610964612466565b6040516109719190614b9e565b60405180910390f35b34801561098657600080fd5b506109a1600480360381019061099c9190613908565b612479565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610aa25780601f10610a7757610100808354040283529160200191610aa2565b820191906000526020600020905b815481529060010190602001808311610a8557829003601f168201915b5050505050905090565b6000610ab782612625565b610af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aed90614e5d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b3c8261145b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba490614f1d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bcc612642565b73ffffffffffffffffffffffffffffffffffffffff161480610bfb5750610bfa81610bf5612642565b6123d2565b5b610c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3190614dbd565b60405180910390fd5b610c44838361264a565b505050565b610c51612642565b73ffffffffffffffffffffffffffffffffffffffff16610c6f611c47565b73ffffffffffffffffffffffffffffffffffffffff1614610cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbc90614e7d565b60405180910390fd5b80600b9080519060200190610cdb92919061370f565b5050565b610ce7612642565b73ffffffffffffffffffffffffffffffffffffffff16610d05611c47565b73ffffffffffffffffffffffffffffffffffffffff1614610d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5290614e7d565b60405180910390fd5b6000610d65610dfd565b9050600082118015610d795750600f548211155b610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf90614cbd565b60405180910390fd5b60005b82811015610ddc57610dcf84828401612703565b8080600101915050610dbb565b50610df282600f5461272190919063ffffffff16565b600f81905550505050565b6000610e096002612771565b905090565b610e1f610e19612642565b82612786565b610e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5590614f9d565b60405180910390fd5b610e69838383612864565b505050565b6000610ec182600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612a7b90919063ffffffff16565b905092915050565b610ed1612642565b73ffffffffffffffffffffffffffffffffffffffff16610eef611c47565b73ffffffffffffffffffffffffffffffffffffffff1614610f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3c90614e7d565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b610f79612642565b73ffffffffffffffffffffffffffffffffffffffff16610f97611c47565b73ffffffffffffffffffffffffffffffffffffffff1614610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe490614e7d565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611038573d6000803e3d6000fd5b5050565b60606000611049836118a2565b905060008114156110a957600067ffffffffffffffff8111801561106c57600080fd5b506040519080825280602002602001820160405280156110a057816020015b606081526020019060019003908161108b5790505b509150506111e4565b60008167ffffffffffffffff811180156110c257600080fd5b506040519080825280602002602001820160405280156110f657816020015b60608152602001906001900390816110e15790505b50905060005b828110156111dd57600e60006111128784610e6e565b81526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111b45780601f10611189576101008083540402835291602001916111b4565b820191906000526020600020905b81548152906001019060200180831161119757829003601f168201915b50505050508282815181106111c557fe5b602002602001018190525080806001019150506110fc565b8193505050505b919050565b60606111f3610dfd565b8210611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b90614f3d565b60405180910390fd5b600e60008381526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112db5780601f106112b0576101008083540402835291602001916112db565b820191906000526020600020905b8154815290600101906020018083116112be57829003601f168201915b50505050509050919050565b61130283838360405180602001604052806000815250612029565b505050565b60008061131e836002612a9590919063ffffffff16565b50905080915050919050565b611332612642565b73ffffffffffffffffffffffffffffffffffffffff16611350611c47565b73ffffffffffffffffffffffffffffffffffffffff16146113a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139d90614e7d565b60405180910390fd5b6113af81612ac1565b50565b66b1a2bc2ec5000081565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114535780601f1061142857610100808354040283529160200191611453565b820191906000526020600020905b81548152906001019060200180831161143657829003601f168201915b505050505081565b600061148b82604051806060016040528060298152602001615365602991396002612adb9092919063ffffffff16565b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff166114b28361145b565b73ffffffffffffffffffffffffffffffffffffffff1614611508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ff90614fdd565b60405180910390fd5b6002600e600084815260200190815260200160002060405161152a9190614a7a565b602060405180830381855afa158015611547573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061156a9190613aaf565b60028260405161157a9190614a63565b602060405180830381855afa158015611597573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906115ba9190613aaf565b14156115fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f290614efd565b60405180910390fd5b80600e6000848152602001908152602001600020908051906020019061162292919061370f565b507f27a085472b3087a5646741e0f253627005fa7d198254fbd3763e082912e44ccc33838360405161165693929190614b1c565b60405180910390a15050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116fa5780601f106116cf576101008083540402835291602001916116fa565b820191906000526020600020905b8154815290600101906020018083116116dd57829003601f168201915b5050505050905090565b600d60019054906101000a900460ff16611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90614f7d565b60405180910390fd5b600081118015611764575060148111155b6117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a90614d9d565b60405180910390fd5b6108986117c0826117b2610dfd565b612afa90919063ffffffff16565b1115611801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f890614c9d565b60405180910390fd5b61181b8166b1a2bc2ec50000612b4f90919063ffffffff16565b34101561185d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185490614d1d565b60405180910390fd5b60005b8181101561189e576000611872610dfd565b905061089861187f610dfd565b10156118905761188f3382612703565b5b508080600101915050611860565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190a90614ddd565b60405180910390fd5b61195a600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612bbf565b9050919050565b611969612642565b73ffffffffffffffffffffffffffffffffffffffff16611987611c47565b73ffffffffffffffffffffffffffffffffffffffff16146119dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d490614e7d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600e6020528060005260406000206000915090508054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b465780601f10611b1b57610100808354040283529160200191611b46565b820191906000526020600020905b815481529060010190602001808311611b2957829003601f168201915b505050505081565b60606000611b5b836118a2565b90506000811415611bb657600067ffffffffffffffff81118015611b7e57600080fd5b50604051908082528060200260200182016040528015611bad5781602001602082028036833780820191505090505b50915050611c42565b60008167ffffffffffffffff81118015611bcf57600080fd5b50604051908082528060200260200182016040528015611bfe5781602001602082028036833780820191505090505b50905060005b82811015611c3b57611c168582610e6e565b828281518110611c2257fe5b6020026020010181815250508080600101915050611c04565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d095780601f10611cde57610100808354040283529160200191611d09565b820191906000526020600020905b815481529060010190602001808311611cec57829003601f168201915b5050505050905090565b600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611da95780601f10611d7e57610100808354040283529160200191611da9565b820191906000526020600020905b815481529060010190602001808311611d8c57829003601f168201915b505050505081565b611db9612642565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1e90614cfd565b60405180910390fd5b8060056000611e34612642565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ee1612642565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f269190614b9e565b60405180910390a35050565b601481565b61089881565b611f45612642565b73ffffffffffffffffffffffffffffffffffffffff16611f63611c47565b73ffffffffffffffffffffffffffffffffffffffff1614611fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb090614e7d565b60405180910390fd5b60001515600d60009054906101000a900460ff1615151461200f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200690614f5d565b60405180910390fd5b80600c908051906020019061202592919061370f565b5050565b61203a612034612642565b83612786565b612079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207090614f9d565b60405180910390fd5b61208584848484612bd4565b50505050565b612093612642565b73ffffffffffffffffffffffffffffffffffffffff166120b1611c47565b73ffffffffffffffffffffffffffffffffffffffff1614612107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fe90614e7d565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0600c6040516121529190614bdb565b60405180910390a1565b600f5481565b606061216d82612625565b6121ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a390614edd565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156122555780601f1061222a57610100808354040283529160200191612255565b820191906000526020600020905b81548152906001019060200180831161223857829003601f168201915b505050505090506000612266611662565b905060008151141561227c5781925050506122e0565b6000825111156122b1578082604051602001612299929190614a91565b604051602081830303815290604052925050506122e0565b806122bb85612c30565b6040516020016122cc929190614a91565b604051602081830303815290604052925050505b919050565b60606122ef610dfd565b8210612330576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232790614ebd565b60405180910390fd5b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156123c65780601f1061239b576101008083540402835291602001916123c6565b820191906000526020600020905b8154815290600101906020018083116123a957829003601f168201915b50505050509050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60019054906101000a900460ff1681565b612481612642565b73ffffffffffffffffffffffffffffffffffffffff1661249f611c47565b73ffffffffffffffffffffffffffffffffffffffff16146124f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ec90614e7d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255c90614c3d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061263b826002612d7790919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126bd8361145b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61271d828260405180602001604052806000815250612d91565b5050565b600082821115612766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275d90614d3d565b60405180910390fd5b818303905092915050565b600061277f82600001612dec565b9050919050565b600061279182612625565b6127d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c790614d7d565b60405180910390fd5b60006127db8361145b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061284a57508373ffffffffffffffffffffffffffffffffffffffff1661283284610aac565b73ffffffffffffffffffffffffffffffffffffffff16145b8061285b575061285a81856123d2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128848261145b565b73ffffffffffffffffffffffffffffffffffffffff16146128da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d190614e9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561294a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294190614cdd565b60405180910390fd5b612955838383612dfd565b61296060008261264a565b6129b181600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612e0290919063ffffffff16565b50612a0381600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612e1c90919063ffffffff16565b50612a1a81836002612e369092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612a8a8360000183612e6b565b60001c905092915050565b600080600080612aa88660000186612ed8565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190612ad792919061370f565b5050565b6000612aee846000018460001b84612f5b565b60001c90509392505050565b600080828401905083811015612b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3c90614c7d565b60405180910390fd5b8091505092915050565b600080831415612b625760009050612bb9565b6000828402905082848281612b7357fe5b0414612bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bab90614e3d565b60405180910390fd5b809150505b92915050565b6000612bcd82600001612fec565b9050919050565b612bdf848484612864565b612beb84848484612ffd565b612c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2190614c1d565b60405180910390fd5b50505050565b60606000821415612c78576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d72565b600082905060005b60008214612ca2578080600101915050600a8281612c9a57fe5b049150612c80565b60008167ffffffffffffffff81118015612cbb57600080fd5b506040519080825280601f01601f191660200182016040528015612cee5781602001600182028036833780820191505090505b50905060006001830390508593505b60008414612d6a57600a8481612d0f57fe5b0660300160f81b82828060019003935081518110612d2957fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481612d6257fe5b049350612cfd565b819450505050505b919050565b6000612d89836000018360001b613161565b905092915050565b612d9b8383613184565b612da86000848484612ffd565b612de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dde90614c1d565b60405180910390fd5b505050565b600081600001805490509050919050565b505050565b6000612e14836000018360001b613312565b905092915050565b6000612e2e836000018360001b6133fa565b905092915050565b6000612e62846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b61346a565b90509392505050565b600081836000018054905011612eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ead90614bfd565b60405180910390fd5b826000018281548110612ec557fe5b9060005260206000200154905092915050565b60008082846000018054905011612f24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1b90614dfd565b60405180910390fd5b6000846000018481548110612f3557fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb49190614bb9565b60405180910390fd5b50846000016001820381548110612fd057fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b600061301e8473ffffffffffffffffffffffffffffffffffffffff16613546565b61302b5760019050613159565b60006130f263150b7a0260e01b613040612642565b8887876040516024016130569493929190614ad0565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001615333603291398773ffffffffffffffffffffffffffffffffffffffff166135599092919063ffffffff16565b905060008180602001905181019061310a9190613b01565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131eb90614e1d565b60405180910390fd5b6131fd81612625565b1561323d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161323490614c5d565b60405180910390fd5b61324960008383612dfd565b61329a81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612e1c90919063ffffffff16565b506132b181836002612e369092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080836001016000848152602001908152602001600020549050600081146133ee576000600182039050600060018660000180549050039050600086600001828154811061335d57fe5b906000526020600020015490508087600001848154811061337a57fe5b90600052602060002001819055506001830187600101600083815260200190815260200160002081905550866000018054806133b257fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506133f4565b60009150505b92915050565b60006134068383613571565b61345f578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613464565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156135115784600001604051806040016040528086815260200185815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050846000018054905085600101600086815260200190815260200160002081905550600191505061353f565b8285600001600183038154811061352457fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080823b905060008111915050919050565b60606135688484600085613594565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b6060824710156135d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135d090614d5d565b60405180910390fd5b6135e285613546565b613621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161361890614fbd565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161364a9190614a63565b60006040518083038185875af1925050503d8060008114613687576040519150601f19603f3d011682016040523d82523d6000602084013e61368c565b606091505b509150915061369c8282866136a8565b92505050949350505050565b606083156136b857829050613708565b6000835111156136cb5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136ff9190614bb9565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282613745576000855561378c565b82601f1061375e57805160ff191683800117855561378c565b8280016001018555821561378c579182015b8281111561378b578251825591602001919060010190613770565b5b509050613799919061379d565b5090565b5b808211156137b657600081600090555060010161379e565b5090565b60006137cd6137c884615049565b615018565b9050828152602081018484840111156137e557600080fd5b6137f084828561526a565b509392505050565b600061380b61380684615079565b615018565b90508281526020810184848401111561382357600080fd5b61382e84828561526a565b509392505050565b600081359050613845816152bf565b92915050565b60008135905061385a816152d6565b92915050565b60008151905061386f816152ed565b92915050565b60008135905061388481615304565b92915050565b60008151905061389981615304565b92915050565b600082601f8301126138b057600080fd5b81356138c08482602086016137ba565b91505092915050565b600082601f8301126138da57600080fd5b81356138ea8482602086016137f8565b91505092915050565b6000813590506139028161531b565b92915050565b60006020828403121561391a57600080fd5b600061392884828501613836565b91505092915050565b6000806040838503121561394457600080fd5b600061395285828601613836565b925050602061396385828601613836565b9150509250929050565b60008060006060848603121561398257600080fd5b600061399086828701613836565b93505060206139a186828701613836565b92505060406139b2868287016138f3565b9150509250925092565b600080600080608085870312156139d257600080fd5b60006139e087828801613836565b94505060206139f187828801613836565b9350506040613a02878288016138f3565b925050606085013567ffffffffffffffff811115613a1f57600080fd5b613a2b8782880161389f565b91505092959194509250565b60008060408385031215613a4a57600080fd5b6000613a5885828601613836565b9250506020613a698582860161384b565b9150509250929050565b60008060408385031215613a8657600080fd5b6000613a9485828601613836565b9250506020613aa5858286016138f3565b9150509250929050565b600060208284031215613ac157600080fd5b6000613acf84828501613860565b91505092915050565b600060208284031215613aea57600080fd5b6000613af884828501613875565b91505092915050565b600060208284031215613b1357600080fd5b6000613b218482850161388a565b91505092915050565b600060208284031215613b3c57600080fd5b600082013567ffffffffffffffff811115613b5657600080fd5b613b62848285016138c9565b91505092915050565b600060208284031215613b7d57600080fd5b6000613b8b848285016138f3565b91505092915050565b60008060408385031215613ba757600080fd5b6000613bb5858286016138f3565b925050602083013567ffffffffffffffff811115613bd257600080fd5b613bde858286016138c9565b9150509250929050565b6000613bf48383613e1b565b905092915050565b6000613c088383614a45565b60208301905092915050565b613c1d81615234565b82525050565b613c2c816151b6565b82525050565b613c3b816151a4565b82525050565b6000613c4c826150f3565b613c568185615139565b935083602082028501613c68856150a9565b8060005b85811015613ca45784840389528151613c858582613be8565b9450613c908361511f565b925060208a01995050600181019050613c6c565b50829750879550505050505092915050565b6000613cc1826150fe565b613ccb818561514a565b9350613cd6836150b9565b8060005b83811015613d07578151613cee8882613bfc565b9750613cf98361512c565b925050600181019050613cda565b5085935050505092915050565b613d1d816151c8565b82525050565b6000613d2e82615109565b613d38818561515b565b9350613d48818560208601615279565b613d51816152ae565b840191505092915050565b6000613d6782615109565b613d71818561516c565b9350613d81818560208601615279565b80840191505092915050565b600081546001811660008114613daa5760018114613dcf57613e13565b607f6002830416613dbb818761516c565b955060ff1983168652808601935050613e13565b60028204613ddd818761516c565b9550613de8856150c9565b60005b82811015613e0a57815481890152600182019150602081019050613deb565b82880195505050505b505092915050565b6000613e2682615114565b613e308185615177565b9350613e40818560208601615279565b613e49816152ae565b840191505092915050565b6000613e5f82615114565b613e698185615188565b9350613e79818560208601615279565b613e82816152ae565b840191505092915050565b6000613e9882615114565b613ea28185615199565b9350613eb2818560208601615279565b80840191505092915050565b600081546001811660008114613edb5760018114613f0157613f45565b607f6002830416613eec8187615188565b955060ff198316865260208601935050613f45565b60028204613f0f8187615188565b9550613f1a856150de565b60005b82811015613f3c57815481890152600182019150602081019050613f1d565b80880195505050505b505092915050565b6000613f5a602283615188565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fc0603283615188565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614026602683615188565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061408c601c83615188565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006140cc601b83615188565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b600061410c602e83615188565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620596f756e69636f726e730000000000000000000000000000000000006020830152604082019050919050565b6000614172602083615188565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b60006141b2602483615188565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614218601983615188565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614258601f83615188565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000614298601e83615188565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b60006142d8602683615188565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061433e602c83615188565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006143a4602183615188565b91507f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061440a603883615188565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614470602a83615188565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006144d6602283615188565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061453c602083615188565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061457c602183615188565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006145e2602c83615188565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614648602083615188565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614688602983615188565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006146ee601f83615188565b91507f43484f4f5345204120594f554e49434f524e2057495448494e2052414e4745006000830152602082019050919050565b600061472e602f83615188565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614794602383615188565b91507f4e6577206e616d652069732073616d65206173207468652063757272656e742060008301527f6f6e6500000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006147fa602183615188565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614860601f83615188565b91507f43686f6f7365206120796f756e69636f726e2077697468696e2072616e6765006000830152602082019050919050565b60006148a0601683615188565b91507f4c6963656e736520616c7265616479206c6f636b6564000000000000000000006000830152602082019050919050565b60006148e0602583615188565b91507f53616c65206d7573742062652061637469766520746f206d696e7420596f756e60008301527f69636f726e0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614946603183615188565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006149ac601d83615188565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b60006149ec602c83615188565b91507f4865792c20796f75722077616c6c657420646f65736e2774206f776e2074686960008301527f7320796f756e69636f726e2100000000000000000000000000000000000000006020830152604082019050919050565b614a4e8161522a565b82525050565b614a5d8161522a565b82525050565b6000614a6f8284613d5c565b915081905092915050565b6000614a868284613d8d565b915081905092915050565b6000614a9d8285613e8d565b9150614aa98284613e8d565b91508190509392505050565b6000602082019050614aca6000830184613c32565b92915050565b6000608082019050614ae56000830187613c23565b614af26020830186613c32565b614aff6040830185614a54565b8181036060830152614b118184613d23565b905095945050505050565b6000606082019050614b316000830186613c14565b614b3e6020830185614a54565b8181036040830152614b508184613e54565b9050949350505050565b60006020820190508181036000830152614b748184613c41565b905092915050565b60006020820190508181036000830152614b968184613cb6565b905092915050565b6000602082019050614bb36000830184613d14565b92915050565b60006020820190508181036000830152614bd38184613e54565b905092915050565b60006020820190508181036000830152614bf58184613ebe565b905092915050565b60006020820190508181036000830152614c1681613f4d565b9050919050565b60006020820190508181036000830152614c3681613fb3565b9050919050565b60006020820190508181036000830152614c5681614019565b9050919050565b60006020820190508181036000830152614c768161407f565b9050919050565b60006020820190508181036000830152614c96816140bf565b9050919050565b60006020820190508181036000830152614cb6816140ff565b9050919050565b60006020820190508181036000830152614cd681614165565b9050919050565b60006020820190508181036000830152614cf6816141a5565b9050919050565b60006020820190508181036000830152614d168161420b565b9050919050565b60006020820190508181036000830152614d368161424b565b9050919050565b60006020820190508181036000830152614d568161428b565b9050919050565b60006020820190508181036000830152614d76816142cb565b9050919050565b60006020820190508181036000830152614d9681614331565b9050919050565b60006020820190508181036000830152614db681614397565b9050919050565b60006020820190508181036000830152614dd6816143fd565b9050919050565b60006020820190508181036000830152614df681614463565b9050919050565b60006020820190508181036000830152614e16816144c9565b9050919050565b60006020820190508181036000830152614e368161452f565b9050919050565b60006020820190508181036000830152614e568161456f565b9050919050565b60006020820190508181036000830152614e76816145d5565b9050919050565b60006020820190508181036000830152614e968161463b565b9050919050565b60006020820190508181036000830152614eb68161467b565b9050919050565b60006020820190508181036000830152614ed6816146e1565b9050919050565b60006020820190508181036000830152614ef681614721565b9050919050565b60006020820190508181036000830152614f1681614787565b9050919050565b60006020820190508181036000830152614f36816147ed565b9050919050565b60006020820190508181036000830152614f5681614853565b9050919050565b60006020820190508181036000830152614f7681614893565b9050919050565b60006020820190508181036000830152614f96816148d3565b9050919050565b60006020820190508181036000830152614fb681614939565b9050919050565b60006020820190508181036000830152614fd68161499f565b9050919050565b60006020820190508181036000830152614ff6816149df565b9050919050565b60006020820190506150126000830184614a54565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561503f5761503e6152ac565b5b8060405250919050565b600067ffffffffffffffff821115615064576150636152ac565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115615094576150936152ac565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006151af8261520a565b9050919050565b60006151c18261520a565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061523f82615246565b9050919050565b600061525182615258565b9050919050565b60006152638261520a565b9050919050565b82818337600083830152505050565b60005b8381101561529757808201518184015260208101905061527c565b838111156152a6576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b6152c8816151a4565b81146152d357600080fd5b50565b6152df816151c8565b81146152ea57600080fd5b50565b6152f6816151d4565b811461530157600080fd5b50565b61530d816151de565b811461531857600080fd5b50565b6153248161522a565b811461532f57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea264697066735822122059d8e18d21eec7792b70bb694d49e6ea93d65a502f0921851fff21da25e9ab0a64736f6c63430007060033

Deployed Bytecode Sourcemap

66988:4835:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10299:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51686:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54465:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53995:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68262:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67842:410;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53475:210;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55353:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53238:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68509:89;;;;;;;;;;;;;:::i;:::-;;67703:131;;;;;;;;;;;;;:::i;:::-;;71259:559;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70916:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55729:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53762:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68400:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67198:58;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67075:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51443:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70496:412;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53058:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69778:710;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51161:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66385:148;;;;;;;;;;;;;:::i;:::-;;67427:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68608:539;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65735:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51854:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67123:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54757:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67277:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67332:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69594:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55951:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69435:124;;;;;;;;;;;;;:::i;:::-;;67481:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52028:791;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69194:179;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55123:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67386:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66688:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10299:149;10383:4;10407:20;:33;10428:11;10407:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10400:40;;10299:149;;;:::o;51686:99::-;51739:13;51772:5;51765:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51686:99;:::o;54465:220::-;54540:7;54568:16;54576:7;54568;:16::i;:::-;54560:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54653:15;:24;54669:7;54653:24;;;;;;;;;;;;;;;;;;;;;54646:31;;54465:220;;;:::o;53995:404::-;54076:13;54092:23;54107:7;54092:14;:23::i;:::-;54076:39;;54140:5;54134:11;;:2;:11;;;;54126:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;54220:5;54204:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;54229:44;54253:5;54260:12;:10;:12::i;:::-;54229:23;:44::i;:::-;54204:69;54196:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;54370:21;54379:2;54383:7;54370:8;:21::i;:::-;53995:404;;;:::o;68262:130::-;65965:12;:10;:12::i;:::-;65954:23;;:7;:5;:7::i;:::-;:23;;;65946:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68370:14:::1;68347:20;:37;;;;;;;;;;;;:::i;:::-;;68262:130:::0;:::o;67842:410::-;65965:12;:10;:12::i;:::-;65954:23;;:7;:5;:7::i;:::-;:23;;;65946:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67934:11:::1;67948:13;:11;:13::i;:::-;67934:27;;67997:1;67980:14;:18;:56;;;;;68020:16;;68002:14;:34;;67980:56;67972:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;68089:6;68084:95;68105:14;68101:1;:18;68084:95;;;68141:26;68151:3;68165:1;68156:6;:10;68141:9;:26::i;:::-;68121:3;;;;;;;68084:95;;;;68208:36;68229:14;68208:16;;:20;;:36;;;;:::i;:::-;68189:16;:55;;;;66025:1;67842:410:::0;;:::o;53475:210::-;53535:7;53656:21;:12;:19;:21::i;:::-;53649:28;;53475:210;:::o;55353:305::-;55514:41;55533:12;:10;:12::i;:::-;55547:7;55514:18;:41::i;:::-;55506:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;55622:28;55632:4;55638:2;55642:7;55622:9;:28::i;:::-;55353:305;;;:::o;53238:161::-;53334:7;53361:30;53385:5;53361:13;:20;53375:5;53361:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;53354:37;;53238:161;;;;:::o;68509:89::-;65965:12;:10;:12::i;:::-;65954:23;;:7;:5;:7::i;:::-;:23;;;65946:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68578:12:::1;;;;;;;;;;;68577:13;68562:12;;:28;;;;;;;;;;;;;;;;;;68509:89::o:0;67703:131::-;65965:12;:10;:12::i;:::-;65954:23;;:7;:5;:7::i;:::-;:23;;;65946:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67751:12:::1;67766:21;67751:36;;67798:10;:19;;:28;67818:7;67798:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;66025:1;67703:131::o:0;71259:559::-;71328:15;71356:18;71377:17;71387:6;71377:9;:17::i;:::-;71356:38;;71423:1;71409:10;:15;71405:406;;;71499:1;71486:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71479:22;;;;;71405:406;71534:22;71572:10;71559:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71534:49;;71598:13;71626:146;71650:10;71642:5;:18;71626:146;;;71706:14;:50;71721:34;71741:6;71749:5;71721:19;:34::i;:::-;71706:50;;;;;;;;;;;71690:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:6;71697:5;71690:13;;;;;;;;;;;;;:66;;;;71662:7;;;;;;;71626:146;;;71793:6;71786:13;;;;;71259:559;;;;:::o;70916:205::-;70978:13;71022;:11;:13::i;:::-;71011:8;:24;71003:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71089:14;:24;71104:8;71089:24;;;;;;;;;;;71082:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70916:205;;;:::o;55729:151::-;55833:39;55850:4;55856:2;55860:7;55833:39;;;;;;;;;;;;:16;:39::i;:::-;55729:151;;;:::o;53762:171::-;53836:7;53857:15;53878:22;53894:5;53878:12;:15;;:22;;;;:::i;:::-;53856:44;;;53918:7;53911:14;;;53762:171;;;:::o;68400:99::-;65965:12;:10;:12::i;:::-;65954:23;;:7;:5;:7::i;:::-;:23;;;65946:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68471:20:::1;68483:7;68471:11;:20::i;:::-;68400:99:::0;:::o;67198:58::-;67239:17;67198:58;:::o;67075:39::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51443:176::-;51514:7;51541:70;51558:7;51541:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;51534:77;;51443:176;;;:::o;70496:412::-;70608:10;70587:31;;:17;70595:8;70587:7;:17::i;:::-;:31;;;70579:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;70710:39;70723:14;:24;70738:8;70723:24;;;;;;;;;;;70710:39;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;70686:20;70699:5;70686:20;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:63;;70678:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;70827:5;70800:14;:24;70815:8;70800:24;;;;;;;;;;;:32;;;;;;;;;;;;:::i;:::-;;70850:48;70870:10;70882:8;70892:5;70850:48;;;;;;;;:::i;:::-;;;;;;;;70496:412;;:::o;53058:96::-;53105:13;53138:8;53131:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53058:96;:::o;69778:710::-;69856:12;;;;;;;;;;;69848:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;69946:1;69929:14;:18;:60;;;;;67321:2;69951:14;:38;;69929:60;69921:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;67373:4;70046:33;70064:14;70046:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:51;;70038:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;70180:34;70199:14;67239:17;70180:18;;:34;;;;:::i;:::-;70167:9;:47;;70159:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;70268:6;70263:216;70284:14;70280:1;:18;70263:216;;;70320:14;70337:13;:11;:13::i;:::-;70320:30;;67373:4;70369:13;:11;:13::i;:::-;:30;70365:103;;;70420:32;70430:10;70442:9;70420;:32::i;:::-;70365:103;70263:216;70300:3;;;;;;;70263:216;;;;69778:710;:::o;51161:220::-;51232:7;51277:1;51260:19;;:5;:19;;;;51252:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;51344:29;:13;:20;51358:5;51344:20;;;;;;;;;;;;;;;:27;:29::i;:::-;51337:36;;51161:220;;;:::o;66385:148::-;65965:12;:10;:12::i;:::-;65954:23;;:7;:5;:7::i;:::-;:23;;;65946:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66492:1:::1;66455:40;;66476:6;;;;;;;;;;;66455:40;;;;;;;;;;;;66523:1;66506:6;;:19;;;;;;;;;;;;;;;;;;66385:148::o:0;67427:45::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;68608:539::-;68669:16;68698:18;68719:17;68729:6;68719:9;:17::i;:::-;68698:38;;68765:1;68751:10;:15;68747:393;;;68842:1;68828:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68821:23;;;;;68747:393;68877:23;68917:10;68903:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68877:51;;68943:13;68971:130;68995:10;68987:5;:18;68971:130;;;69051:34;69071:6;69079:5;69051:19;:34::i;:::-;69035:6;69042:5;69035:13;;;;;;;;;;;;;:50;;;;;69007:7;;;;;;;68971:130;;;69122:6;69115:13;;;;;68608:539;;;;:::o;65735:86::-;65780:7;65807:6;;;;;;;;;;;65800:13;;65735:86;:::o;51854:103::-;51909:13;51942:7;51935:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51854:103;:::o;67123:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54757:295::-;54872:12;:10;:12::i;:::-;54860:24;;:8;:24;;;;54852:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;54972:8;54927:18;:32;54946:12;:10;:12::i;:::-;54927:32;;;;;;;;;;;;;;;:42;54960:8;54927:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;55025:8;54996:48;;55011:12;:10;:12::i;:::-;54996:48;;;55035:8;54996:48;;;;;;:::i;:::-;;;;;;;;54757:295;;:::o;67277:46::-;67321:2;67277:46;:::o;67332:45::-;67373:4;67332:45;:::o;69594:174::-;65965:12;:10;:12::i;:::-;65954:23;;:7;:5;:7::i;:::-;:23;;;65946:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69694:5:::1;69677:22;;:13;;;;;;;;;;;:22;;;69669:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;69752:8;69737:12;:23;;;;;;;;;;;;:::i;:::-;;69594:174:::0;:::o;55951:285::-;56083:41;56102:12;:10;:12::i;:::-;56116:7;56083:18;:41::i;:::-;56075:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;56189:39;56203:4;56209:2;56213:7;56222:5;56189:13;:39::i;:::-;55951:285;;;;:::o;69435:124::-;65965:12;:10;:12::i;:::-;65954:23;;:7;:5;:7::i;:::-;:23;;;65946:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69502:4:::1;69486:13;;:20;;;;;;;;;;;;;;;;;;69522:29;69538:12;69522:29;;;;;;:::i;:::-;;;;;;;;69435:124::o:0;67481:33::-;;;;:::o;52028:791::-;52100:13;52134:16;52142:7;52134;:16::i;:::-;52126:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;52215:23;52241:10;:19;52252:7;52241:19;;;;;;;;;;;52215:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52271:18;52292:9;:7;:9::i;:::-;52271:30;;52399:1;52383:4;52377:18;:23;52373:72;;;52424:9;52417:16;;;;;;52373:72;52575:1;52555:9;52549:23;:27;52545:108;;;52624:4;52630:9;52607:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52593:48;;;;;;52545:108;52785:4;52791:18;:7;:16;:18::i;:::-;52768:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52754:57;;;;52028:791;;;;:::o;69194:179::-;69246:13;69286;:11;:13::i;:::-;69280:3;:19;69272:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;69353:12;69346:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69194:179;;;:::o;55123:163::-;55219:4;55243:18;:25;55262:5;55243:25;;;;;;;;;;;;;;;:35;55269:8;55243:35;;;;;;;;;;;;;;;;;;;;;;;;;55236:42;;55123:163;;;;:::o;67386:32::-;;;;;;;;;;;;;:::o;66688:244::-;65965:12;:10;:12::i;:::-;65954:23;;:7;:5;:7::i;:::-;:23;;;65946:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66797:1:::1;66777:22;;:8;:22;;;;66769:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;66887:8;66858:38;;66879:6;;;;;;;;;;;66858:38;;;;;;;;;;;;66916:8;66907:6;;:17;;;;;;;;;;;;;;;;;;66688:244:::0;:::o;57703:126::-;57767:4;57791:30;57813:7;57791:12;:21;;:30;;;;:::i;:::-;57784:37;;57703:126;;;:::o;734:105::-;786:15;821:10;814:17;;734:105;:::o;63718:192::-;63820:2;63793:15;:24;63809:7;63793:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;63876:7;63872:2;63838:46;;63847:23;63862:7;63847:14;:23::i;:::-;63838:46;;;;;;;;;;;;63718:192;;:::o;58693:110::-;58769:26;58779:2;58783:7;58769:26;;;;;;;;;;;;:9;:26::i;:::-;58693:110;;:::o;14318:157::-;14375:7;14408:1;14403;:6;;14395:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;14466:1;14462;:5;14455:12;;14318:157;;;;:::o;44346:122::-;44414:7;44441:19;44449:3;:10;;44441:7;:19::i;:::-;44434:26;;44346:122;;;:::o;57996:354::-;58088:4;58113:16;58121:7;58113;:16::i;:::-;58105:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58189:13;58205:23;58220:7;58205:14;:23::i;:::-;58189:39;;58258:5;58247:16;;:7;:16;;;:51;;;;58291:7;58267:31;;:20;58279:7;58267:11;:20::i;:::-;:31;;;58247:51;:94;;;;58302:39;58326:5;58333:7;58302:23;:39::i;:::-;58247:94;58239:103;;;57996:354;;;;:::o;61131:599::-;61256:4;61229:31;;:23;61244:7;61229:14;:23::i;:::-;:31;;;61221:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;61357:1;61343:16;;:2;:16;;;;61335:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61413:39;61434:4;61440:2;61444:7;61413:20;:39::i;:::-;61517:29;61534:1;61538:7;61517:8;:29::i;:::-;61559:35;61586:7;61559:13;:19;61573:4;61559:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;61605:30;61627:7;61605:13;:17;61619:2;61605:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;61648:29;61665:7;61674:2;61648:12;:16;;:29;;;;;:::i;:::-;;61714:7;61710:2;61695:27;;61704:4;61695:27;;;;;;;;;;;;61131:599;;;:::o;36138:136::-;36208:7;36243:22;36247:3;:10;;36259:5;36243:3;:22::i;:::-;36235:31;;36228:38;;36138:136;;;;:::o;44816:235::-;44895:7;44904;44925:11;44938:13;44955:22;44959:3;:10;;44971:5;44955:3;:22::i;:::-;44924:53;;;;45004:3;44996:12;;45034:5;45026:14;;44988:55;;;;;;44816:235;;;;;:::o;62331:100::-;62415:8;62404;:19;;;;;;;;;;;;:::i;:::-;;62331:100;:::o;46099:212::-;46205:7;46256:44;46261:3;:10;;46281:3;46273:12;;46287;46256:4;:44::i;:::-;46248:53;;46225:78;;46099:212;;;;;:::o;13857:178::-;13914:7;13934:9;13950:1;13946;:5;13934:17;;13975:1;13970;:6;;13962:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;14026:1;14019:8;;;13857:178;;;;:::o;14734:219::-;14791:7;14820:1;14815;:6;14811:20;;;14830:1;14823:8;;;;14811:20;14842:9;14858:1;14854;:5;14842:17;;14887:1;14882;14878;:5;;;;;;:10;14870:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;14944:1;14937:8;;;14734:219;;;;;:::o;35671:113::-;35730:7;35757:19;35765:3;:10;;35757:7;:19::i;:::-;35750:26;;35671:113;;;:::o;57118:272::-;57232:28;57242:4;57248:2;57252:7;57232:9;:28::i;:::-;57279:48;57302:4;57308:2;57312:7;57321:5;57279:22;:48::i;:::-;57271:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;57118:272;;;;:::o;46564:745::-;46619:13;46849:1;46840:5;:10;46836:53;;;46867:10;;;;;;;;;;;;;;;;;;;;;46836:53;46899:12;46914:5;46899:20;;46930:14;46955:78;46970:1;46962:4;:9;46955:78;;46988:8;;;;;;;47019:2;47011:10;;;;;;;;;46955:78;;;47043:19;47075:6;47065:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47043:39;;47093:13;47118:1;47109:6;:10;47093:26;;47137:5;47130:12;;47153:117;47168:1;47160:4;:9;47153:117;;47229:2;47222:4;:9;;;;;;47217:2;:14;47204:29;;47186:6;47193:7;;;;;;;47186:15;;;;;;;;;;;:47;;;;;;;;;;;47256:2;47248:10;;;;;;;;;47153:117;;;47294:6;47280:21;;;;;;46564:745;;;;:::o;44108:150::-;44191:4;44215:35;44225:3;:10;;44245:3;44237:12;;44215:9;:35::i;:::-;44208:42;;44108:150;;;;:::o;59030:250::-;59126:18;59132:2;59136:7;59126:5;:18::i;:::-;59163:54;59194:1;59198:2;59202:7;59211:5;59163:22;:54::i;:::-;59155:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;59030:250;;;:::o;40923:109::-;40978:7;41005:3;:12;;:19;;;;40998:26;;40923:109;;;:::o;64523:93::-;;;;:::o;35218:136::-;35287:4;35311:35;35319:3;:10;;35339:5;35331:14;;35311:7;:35::i;:::-;35304:42;;35218:136;;;;:::o;34912:130::-;34978:4;35002:32;35007:3;:10;;35027:5;35019:14;;35002:4;:32::i;:::-;34995:39;;34912:130;;;;:::o;43533:184::-;43621:4;43645:64;43650:3;:10;;43670:3;43662:12;;43700:5;43684:23;;43676:32;;43645:4;:64::i;:::-;43638:71;;43533:184;;;;;:::o;31161:203::-;31227:7;31276:5;31255:3;:11;;:18;;;;:26;31247:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31338:3;:11;;31350:5;31338:18;;;;;;;;;;;;;;;;31331:25;;31161:203;;;;:::o;41397:278::-;41463:7;41472;41522:5;41500:3;:12;;:19;;;;:27;41492:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;41579:22;41604:3;:12;;41617:5;41604:19;;;;;;;;;;;;;;;;;;41579:44;;41642:5;:10;;;41654:5;:12;;;41634:33;;;;;41397:278;;;;;:::o;42891:318::-;42984:7;43004:16;43023:3;:12;;:17;43036:3;43023:17;;;;;;;;;;;;43004:36;;43071:1;43059:8;:13;;43074:12;43051:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;43141:3;:12;;43165:1;43154:8;:12;43141:26;;;;;;;;;;;;;;;;;;:33;;;43134:40;;;42891:318;;;;;:::o;30699:108::-;30754:7;30781:3;:11;;:18;;;;30774:25;;30699:108;;;:::o;62996:603::-;63116:4;63143:15;:2;:13;;;:15::i;:::-;63138:60;;63182:4;63175:11;;;;63138:60;63208:23;63234:252;63287:45;;;63347:12;:10;:12::i;:::-;63374:4;63393:7;63415:5;63250:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63234:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;63208:278;;63497:13;63524:10;63513:32;;;;;;;;;;;;:::i;:::-;63497:48;;48164:10;63574:16;;63564:26;;;:6;:26;;;;63556:35;;;;62996:603;;;;;;;:::o;40704:124::-;40774:4;40819:1;40798:3;:12;;:17;40811:3;40798:17;;;;;;;;;;;;:22;;40791:29;;40704:124;;;;:::o;59616:404::-;59710:1;59696:16;;:2;:16;;;;59688:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;59769:16;59777:7;59769;:16::i;:::-;59768:17;59760:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;59831:45;59860:1;59864:2;59868:7;59831:20;:45::i;:::-;59889:30;59911:7;59889:13;:17;59903:2;59889:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;59932:29;59949:7;59958:2;59932:12;:16;;:29;;;;;:::i;:::-;;60004:7;60000:2;59979:33;;59996:1;59979:33;;;;;;;;;;;;59616:404;;:::o;28856:1543::-;28921:4;29039:18;29060:3;:12;;:19;29073:5;29060:19;;;;;;;;;;;;29039:40;;29110:1;29096:10;:15;29092:1300;;29458:21;29495:1;29482:10;:14;29458:38;;29511:17;29552:1;29531:3;:11;;:18;;;;:22;29511:42;;29798:17;29818:3;:11;;29830:9;29818:22;;;;;;;;;;;;;;;;29798:42;;29964:9;29935:3;:11;;29947:13;29935:26;;;;;;;;;;;;;;;:38;;;;30083:1;30067:13;:17;30041:3;:12;;:23;30054:9;30041:23;;;;;;;;;;;:43;;;;30193:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;30288:3;:12;;:19;30301:5;30288:19;;;;;;;;;;;30281:26;;;30331:4;30324:11;;;;;;;;29092:1300;30375:5;30368:12;;;28856:1543;;;;;:::o;28267:413::-;28329:4;28351:21;28361:3;28366:5;28351:9;:21::i;:::-;28346:327;;28389:3;:11;;28406:5;28389:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28572:3;:11;;:18;;;;28550:3;:12;;:19;28563:5;28550:19;;;;;;;;;;;:40;;;;28612:4;28605:11;;;;28346:327;28656:5;28649:12;;28267:413;;;;;:::o;38206:691::-;38281:4;38397:16;38416:3;:12;;:17;38429:3;38416:17;;;;;;;;;;;;38397:36;;38462:1;38450:8;:13;38446:444;;;38517:3;:12;;38535:38;;;;;;;;38552:3;38535:38;;;;38565:5;38535:38;;;38517:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38732:3;:12;;:19;;;;38712:3;:12;;:17;38725:3;38712:17;;;;;;;;;;;:39;;;;38773:4;38766:11;;;;;38446:444;38846:5;38810:3;:12;;38834:1;38823:8;:12;38810:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38873:5;38866:12;;;38206:691;;;;;;:::o;19292:420::-;19351:4;19559:12;19669:7;19657:20;19650:27;;19703:1;19696:4;:8;19689:15;;;19292:420;;;:::o;22210:194::-;22312:12;22344:52;22366:6;22374:4;22380:1;22383:12;22344:21;:52::i;:::-;22337:59;;22210:194;;;;;:::o;30485:128::-;30557:4;30604:1;30581:3;:12;;:19;30594:5;30581:19;;;;;;;;;;;;:24;;30574:31;;30485:128;;;;:::o;23260:530::-;23386:12;23444:5;23419:21;:30;;23411:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;23511:18;23522:6;23511:10;:18::i;:::-;23503:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;23637:12;23651:23;23678:6;:11;;23698:5;23707:4;23678:34;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23636:76;;;;23730:52;23748:7;23757:10;23769:12;23730:17;:52::i;:::-;23723:59;;;;23260:530;;;;;;:::o;25796:741::-;25911:12;25940:7;25936:594;;;25971:10;25964:17;;;;25936:594;26105:1;26085:10;:17;:21;26081:438;;;26347:10;26341:17;26408:15;26395:10;26391:2;26387:19;26380:44;26296:147;26490:12;26483:20;;;;;;;;;;;:::i;:::-;;;;;;;;25796:741;;;;;;:::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:378::-;;15575:67;15639:2;15634:3;15575:67;:::i;:::-;15568:74;;15672:34;15668:1;15663:3;15659:11;15652:55;15738:16;15733:2;15728:3;15724:12;15717:38;15781:2;15776:3;15772:12;15765:19;;15558:232;;;:::o;15796:330::-;;15959:67;16023:2;16018:3;15959:67;:::i;:::-;15952:74;;16056:34;16052:1;16047:3;16043:11;16036:55;16117:2;16112:3;16108:12;16101:19;;15942:184;;;:::o;16132:368::-;;16295:67;16359:2;16354:3;16295:67;:::i;:::-;16288:74;;16392:34;16388:1;16383:3;16379:11;16372:55;16458:6;16453:2;16448:3;16444:12;16437:28;16491:2;16486:3;16482:12;16475:19;;16278:222;;;:::o;16506:323::-;;16669:67;16733:2;16728:3;16669:67;:::i;:::-;16662:74;;16766:27;16762:1;16757:3;16753:11;16746:48;16820:2;16815:3;16811:12;16804:19;;16652:177;;;:::o;16835:329::-;;16998:67;17062:2;17057:3;16998:67;:::i;:::-;16991:74;;17095:33;17091:1;17086:3;17082:11;17075:54;17155:2;17150:3;17146:12;17139:19;;16981:183;;;:::o;17170:328::-;;17333:67;17397:2;17392:3;17333:67;:::i;:::-;17326:74;;17430:32;17426:1;17421:3;17417:11;17410:53;17489:2;17484:3;17480:12;17473:19;;17316:182;;;:::o;17504:370::-;;17667:67;17731:2;17726:3;17667:67;:::i;:::-;17660:74;;17764:34;17760:1;17755:3;17751:11;17744:55;17830:8;17825:2;17820:3;17816:12;17809:30;17865:2;17860:3;17856:12;17849:19;;17650:224;;;:::o;17880:376::-;;18043:67;18107:2;18102:3;18043:67;:::i;:::-;18036:74;;18140:34;18136:1;18131:3;18127:11;18120:55;18206:14;18201:2;18196:3;18192:12;18185:36;18247:2;18242:3;18238:12;18231:19;;18026:230;;;:::o;18262:365::-;;18425:67;18489:2;18484:3;18425:67;:::i;:::-;18418:74;;18522:34;18518:1;18513:3;18509:11;18502:55;18588:3;18583:2;18578:3;18574:12;18567:25;18618:2;18613:3;18609:12;18602:19;;18408:219;;;:::o;18633:388::-;;18796:67;18860:2;18855:3;18796:67;:::i;:::-;18789:74;;18893:34;18889:1;18884:3;18880:11;18873:55;18959:26;18954:2;18949:3;18945:12;18938:48;19012:2;19007:3;19003:12;18996:19;;18779:242;;;:::o;19027:374::-;;19190:67;19254:2;19249:3;19190:67;:::i;:::-;19183:74;;19287:34;19283:1;19278:3;19274:11;19267:55;19353:12;19348:2;19343:3;19339:12;19332:34;19392:2;19387:3;19383:12;19376:19;;19173:228;;;:::o;19407:366::-;;19570:67;19634:2;19629:3;19570:67;:::i;:::-;19563:74;;19667:34;19663:1;19658:3;19654:11;19647:55;19733:4;19728:2;19723:3;19719:12;19712:26;19764:2;19759:3;19755:12;19748:19;;19553:220;;;:::o;19779:330::-;;19942:67;20006:2;20001:3;19942:67;:::i;:::-;19935:74;;20039:34;20035:1;20030:3;20026:11;20019:55;20100:2;20095:3;20091:12;20084:19;;19925:184;;;:::o;20115:365::-;;20278:67;20342:2;20337:3;20278:67;:::i;:::-;20271:74;;20375:34;20371:1;20366:3;20362:11;20355:55;20441:3;20436:2;20431:3;20427:12;20420:25;20471:2;20466:3;20462:12;20455:19;;20261:219;;;:::o;20486:376::-;;20649:67;20713:2;20708:3;20649:67;:::i;:::-;20642:74;;20746:34;20742:1;20737:3;20733:11;20726:55;20812:14;20807:2;20802:3;20798:12;20791:36;20853:2;20848:3;20844:12;20837:19;;20632:230;;;:::o;20868:330::-;;21031:67;21095:2;21090:3;21031:67;:::i;:::-;21024:74;;21128:34;21124:1;21119:3;21115:11;21108:55;21189:2;21184:3;21180:12;21173:19;;21014:184;;;:::o;21204:373::-;;21367:67;21431:2;21426:3;21367:67;:::i;:::-;21360:74;;21464:34;21460:1;21455:3;21451:11;21444:55;21530:11;21525:2;21520:3;21516:12;21509:33;21568:2;21563:3;21559:12;21552:19;;21350:227;;;:::o;21583:329::-;;21746:67;21810:2;21805:3;21746:67;:::i;:::-;21739:74;;21843:33;21839:1;21834:3;21830:11;21823:54;21903:2;21898:3;21894:12;21887:19;;21729:183;;;:::o;21918:379::-;;22081:67;22145:2;22140:3;22081:67;:::i;:::-;22074:74;;22178:34;22174:1;22169:3;22165:11;22158:55;22244:17;22239:2;22234:3;22230:12;22223:39;22288:2;22283:3;22279:12;22272:19;;22064:233;;;:::o;22303:367::-;;22466:67;22530:2;22525:3;22466:67;:::i;:::-;22459:74;;22563:34;22559:1;22554:3;22550:11;22543:55;22629:5;22624:2;22619:3;22615:12;22608:27;22661:2;22656:3;22652:12;22645:19;;22449:221;;;:::o;22676:365::-;;22839:67;22903:2;22898:3;22839:67;:::i;:::-;22832:74;;22936:34;22932:1;22927:3;22923:11;22916:55;23002:3;22997:2;22992:3;22988:12;22981:25;23032:2;23027:3;23023:12;23016:19;;22822:219;;;:::o;23047:329::-;;23210:67;23274:2;23269:3;23210:67;:::i;:::-;23203:74;;23307:33;23303:1;23298:3;23294:11;23287:54;23367:2;23362:3;23358:12;23351:19;;23193:183;;;:::o;23382:320::-;;23545:67;23609:2;23604:3;23545:67;:::i;:::-;23538:74;;23642:24;23638:1;23633:3;23629:11;23622:45;23693:2;23688:3;23684:12;23677:19;;23528:174;;;:::o;23708:369::-;;23871:67;23935:2;23930:3;23871:67;:::i;:::-;23864:74;;23968:34;23964:1;23959:3;23955:11;23948:55;24034:7;24029:2;24024:3;24020:12;24013:29;24068:2;24063:3;24059:12;24052:19;;23854:223;;;:::o;24083:381::-;;24246:67;24310:2;24305:3;24246:67;:::i;:::-;24239:74;;24343:34;24339:1;24334:3;24330:11;24323:55;24409:19;24404:2;24399:3;24395:12;24388:41;24455:2;24450:3;24446:12;24439:19;;24229:235;;;:::o;24470:327::-;;24633:67;24697:2;24692:3;24633:67;:::i;:::-;24626:74;;24730:31;24726:1;24721:3;24717:11;24710:52;24788:2;24783:3;24779:12;24772:19;;24616:181;;;:::o;24803:376::-;;24966:67;25030:2;25025:3;24966:67;:::i;:::-;24959:74;;25063:34;25059:1;25054:3;25050:11;25043:55;25129:14;25124:2;25119:3;25115:12;25108:36;25170:2;25165:3;25161:12;25154:19;;24949:230;;;:::o;25185:108::-;25262:24;25280:5;25262:24;:::i;:::-;25257:3;25250:37;25240:53;;:::o;25299:118::-;25386:24;25404:5;25386:24;:::i;:::-;25381:3;25374:37;25364:53;;:::o;25423:271::-;;25575:93;25664:3;25655:6;25575:93;:::i;:::-;25568:100;;25685:3;25678:10;;25557:137;;;;:::o;25700:273::-;;25853:94;25943:3;25934:6;25853:94;:::i;:::-;25846:101;;25964:3;25957:10;;25835:138;;;;:::o;25979:435::-;;26181:95;26272:3;26263:6;26181:95;:::i;:::-;26174:102;;26293:95;26384:3;26375:6;26293:95;:::i;:::-;26286:102;;26405:3;26398:10;;26163:251;;;;;:::o;26420:222::-;;26551:2;26540:9;26536:18;26528:26;;26564:71;26632:1;26621:9;26617:17;26608:6;26564:71;:::i;:::-;26518:124;;;;:::o;26648:672::-;;26897:3;26886:9;26882:19;26874:27;;26911:87;26995:1;26984:9;26980:17;26971:6;26911:87;:::i;:::-;27008:72;27076:2;27065:9;27061:18;27052:6;27008:72;:::i;:::-;27090;27158:2;27147:9;27143:18;27134:6;27090:72;:::i;:::-;27209:9;27203:4;27199:20;27194:2;27183:9;27179:18;27172:48;27237:76;27308:4;27299:6;27237:76;:::i;:::-;27229:84;;26864:456;;;;;;;:::o;27326:549::-;;27541:2;27530:9;27526:18;27518:26;;27554:79;27630:1;27619:9;27615:17;27606:6;27554:79;:::i;:::-;27643:72;27711:2;27700:9;27696:18;27687:6;27643:72;:::i;:::-;27762:9;27756:4;27752:20;27747:2;27736:9;27732:18;27725:48;27790:78;27863:4;27854:6;27790:78;:::i;:::-;27782:86;;27508:367;;;;;;:::o;27881:413::-;;28082:2;28071:9;28067:18;28059:26;;28131:9;28125:4;28121:20;28117:1;28106:9;28102:17;28095:47;28159:128;28282:4;28273:6;28159:128;:::i;:::-;28151:136;;28049:245;;;;:::o;28300:373::-;;28481:2;28470:9;28466:18;28458:26;;28530:9;28524:4;28520:20;28516:1;28505:9;28501:17;28494:47;28558:108;28661:4;28652:6;28558:108;:::i;:::-;28550:116;;28448:225;;;;:::o;28679:210::-;;28804:2;28793:9;28789:18;28781:26;;28817:65;28879:1;28868:9;28864:17;28855:6;28817:65;:::i;:::-;28771:118;;;;:::o;28895:313::-;;29046:2;29035:9;29031:18;29023:26;;29095:9;29089:4;29085:20;29081:1;29070:9;29066:17;29059:47;29123:78;29196:4;29187:6;29123:78;:::i;:::-;29115:86;;29013:195;;;;:::o;29214:307::-;;29362:2;29351:9;29347:18;29339:26;;29411:9;29405:4;29401:20;29397:1;29386:9;29382:17;29375:47;29439:75;29509:4;29500:6;29439:75;:::i;:::-;29431:83;;29329:192;;;;:::o;29527:419::-;;29731:2;29720:9;29716:18;29708:26;;29780:9;29774:4;29770:20;29766:1;29755:9;29751:17;29744:47;29808:131;29934:4;29808:131;:::i;:::-;29800:139;;29698:248;;;:::o;29952:419::-;;30156:2;30145:9;30141:18;30133:26;;30205:9;30199:4;30195:20;30191:1;30180:9;30176:17;30169:47;30233:131;30359:4;30233:131;:::i;:::-;30225:139;;30123:248;;;:::o;30377:419::-;;30581:2;30570:9;30566:18;30558:26;;30630:9;30624:4;30620:20;30616:1;30605:9;30601:17;30594:47;30658:131;30784:4;30658:131;:::i;:::-;30650:139;;30548:248;;;:::o;30802:419::-;;31006:2;30995:9;30991:18;30983:26;;31055:9;31049:4;31045:20;31041:1;31030:9;31026:17;31019:47;31083:131;31209:4;31083:131;:::i;:::-;31075:139;;30973:248;;;:::o;31227:419::-;;31431:2;31420:9;31416:18;31408:26;;31480:9;31474:4;31470:20;31466:1;31455:9;31451:17;31444:47;31508:131;31634:4;31508:131;:::i;:::-;31500:139;;31398:248;;;:::o;31652:419::-;;31856:2;31845:9;31841:18;31833:26;;31905:9;31899:4;31895:20;31891:1;31880:9;31876:17;31869:47;31933:131;32059:4;31933:131;:::i;:::-;31925:139;;31823:248;;;:::o;32077:419::-;;32281:2;32270:9;32266:18;32258:26;;32330:9;32324:4;32320:20;32316:1;32305:9;32301:17;32294:47;32358:131;32484:4;32358:131;:::i;:::-;32350:139;;32248:248;;;:::o;32502:419::-;;32706:2;32695:9;32691:18;32683:26;;32755:9;32749:4;32745:20;32741:1;32730:9;32726:17;32719:47;32783:131;32909:4;32783:131;:::i;:::-;32775:139;;32673:248;;;:::o;32927:419::-;;33131:2;33120:9;33116:18;33108:26;;33180:9;33174:4;33170:20;33166:1;33155:9;33151:17;33144:47;33208:131;33334:4;33208:131;:::i;:::-;33200:139;;33098:248;;;:::o;33352:419::-;;33556:2;33545:9;33541:18;33533:26;;33605:9;33599:4;33595:20;33591:1;33580:9;33576:17;33569:47;33633:131;33759:4;33633:131;:::i;:::-;33625:139;;33523:248;;;:::o;33777:419::-;;33981:2;33970:9;33966:18;33958:26;;34030:9;34024:4;34020:20;34016:1;34005:9;34001:17;33994:47;34058:131;34184:4;34058:131;:::i;:::-;34050:139;;33948:248;;;:::o;34202:419::-;;34406:2;34395:9;34391:18;34383:26;;34455:9;34449:4;34445:20;34441:1;34430:9;34426:17;34419:47;34483:131;34609:4;34483:131;:::i;:::-;34475:139;;34373:248;;;:::o;34627:419::-;;34831:2;34820:9;34816:18;34808:26;;34880:9;34874:4;34870:20;34866:1;34855:9;34851:17;34844:47;34908:131;35034:4;34908:131;:::i;:::-;34900:139;;34798:248;;;:::o;35052:419::-;;35256:2;35245:9;35241:18;35233:26;;35305:9;35299:4;35295:20;35291:1;35280:9;35276:17;35269:47;35333:131;35459:4;35333:131;:::i;:::-;35325:139;;35223:248;;;:::o;35477:419::-;;35681:2;35670:9;35666:18;35658:26;;35730:9;35724:4;35720:20;35716:1;35705:9;35701:17;35694:47;35758:131;35884:4;35758:131;:::i;:::-;35750:139;;35648:248;;;:::o;35902:419::-;;36106:2;36095:9;36091:18;36083:26;;36155:9;36149:4;36145:20;36141:1;36130:9;36126:17;36119:47;36183:131;36309:4;36183:131;:::i;:::-;36175:139;;36073:248;;;:::o;36327:419::-;;36531:2;36520:9;36516:18;36508:26;;36580:9;36574:4;36570:20;36566:1;36555:9;36551:17;36544:47;36608:131;36734:4;36608:131;:::i;:::-;36600:139;;36498:248;;;:::o;36752:419::-;;36956:2;36945:9;36941:18;36933:26;;37005:9;36999:4;36995:20;36991:1;36980:9;36976:17;36969:47;37033:131;37159:4;37033:131;:::i;:::-;37025:139;;36923:248;;;:::o;37177:419::-;;37381:2;37370:9;37366:18;37358:26;;37430:9;37424:4;37420:20;37416:1;37405:9;37401:17;37394:47;37458:131;37584:4;37458:131;:::i;:::-;37450:139;;37348:248;;;:::o;37602:419::-;;37806:2;37795:9;37791:18;37783:26;;37855:9;37849:4;37845:20;37841:1;37830:9;37826:17;37819:47;37883:131;38009:4;37883:131;:::i;:::-;37875:139;;37773:248;;;:::o;38027:419::-;;38231:2;38220:9;38216:18;38208:26;;38280:9;38274:4;38270:20;38266:1;38255:9;38251:17;38244:47;38308:131;38434:4;38308:131;:::i;:::-;38300:139;;38198:248;;;:::o;38452:419::-;;38656:2;38645:9;38641:18;38633:26;;38705:9;38699:4;38695:20;38691:1;38680:9;38676:17;38669:47;38733:131;38859:4;38733:131;:::i;:::-;38725:139;;38623:248;;;:::o;38877:419::-;;39081:2;39070:9;39066:18;39058:26;;39130:9;39124:4;39120:20;39116:1;39105:9;39101:17;39094:47;39158:131;39284:4;39158:131;:::i;:::-;39150:139;;39048:248;;;:::o;39302:419::-;;39506:2;39495:9;39491:18;39483:26;;39555:9;39549:4;39545:20;39541:1;39530:9;39526:17;39519:47;39583:131;39709:4;39583:131;:::i;:::-;39575:139;;39473:248;;;:::o;39727:419::-;;39931:2;39920:9;39916:18;39908:26;;39980:9;39974:4;39970:20;39966:1;39955:9;39951:17;39944:47;40008:131;40134:4;40008:131;:::i;:::-;40000:139;;39898:248;;;:::o;40152:419::-;;40356:2;40345:9;40341:18;40333:26;;40405:9;40399:4;40395:20;40391:1;40380:9;40376:17;40369:47;40433:131;40559:4;40433:131;:::i;:::-;40425:139;;40323:248;;;:::o;40577:419::-;;40781:2;40770:9;40766:18;40758:26;;40830:9;40824:4;40820:20;40816:1;40805:9;40801:17;40794:47;40858:131;40984:4;40858:131;:::i;:::-;40850:139;;40748:248;;;:::o;41002:419::-;;41206:2;41195:9;41191:18;41183:26;;41255:9;41249:4;41245:20;41241:1;41230:9;41226:17;41219:47;41283:131;41409:4;41283:131;:::i;:::-;41275:139;;41173:248;;;:::o;41427:419::-;;41631:2;41620:9;41616:18;41608:26;;41680:9;41674:4;41670:20;41666:1;41655:9;41651:17;41644:47;41708:131;41834:4;41708:131;:::i;:::-;41700:139;;41598:248;;;:::o;41852:419::-;;42056:2;42045:9;42041:18;42033:26;;42105:9;42099:4;42095:20;42091:1;42080:9;42076:17;42069:47;42133:131;42259:4;42133:131;:::i;:::-;42125:139;;42023:248;;;:::o;42277:419::-;;42481:2;42470:9;42466:18;42458:26;;42530:9;42524:4;42520:20;42516:1;42505:9;42501:17;42494:47;42558:131;42684:4;42558:131;:::i;:::-;42550:139;;42448:248;;;:::o;42702:419::-;;42906:2;42895:9;42891:18;42883:26;;42955:9;42949:4;42945:20;42941:1;42930:9;42926:17;42919:47;42983:131;43109:4;42983:131;:::i;:::-;42975:139;;42873:248;;;:::o;43127:222::-;;43258:2;43247:9;43243:18;43235:26;;43271:71;43339:1;43328:9;43324:17;43315:6;43271:71;:::i;:::-;43225:124;;;;:::o;43355:278::-;;43421:2;43415:9;43405:19;;43463:4;43455:6;43451:17;43570:6;43558:10;43555:22;43534:18;43522:10;43519:34;43516:62;43513:2;;;43581:13;;:::i;:::-;43513:2;43616:10;43612:2;43605:22;43395:238;;;;:::o;43639:326::-;;43790:18;43782:6;43779:30;43776:2;;;43812:13;;:::i;:::-;43776:2;43892:4;43888:9;43881:4;43873:6;43869:17;43865:33;43857:41;;43953:4;43947;43943:15;43935:23;;43705:260;;;:::o;43971:327::-;;44123:18;44115:6;44112:30;44109:2;;;44145:13;;:::i;:::-;44109:2;44225:4;44221:9;44214:4;44206:6;44202:17;44198:33;44190:41;;44286:4;44280;44276:15;44268:23;;44038:260;;;:::o;44304:142::-;;44404:3;44396:11;;44434:4;44429:3;44425:14;44417:22;;44386:60;;;:::o;44452:132::-;;44542:3;44534:11;;44572:4;44567:3;44563:14;44555:22;;44524:60;;;:::o;44590:144::-;;44665:3;44657:11;;44688:3;44685:1;44678:14;44722:4;44719:1;44709:18;44701:26;;44647:87;;;:::o;44740:141::-;;44812:3;44804:11;;44835:3;44832:1;44825:14;44869:4;44866:1;44856:18;44848:26;;44794:87;;;:::o;44887:124::-;;44998:5;44992:12;44982:22;;44971:40;;;:::o;45017:114::-;;45118:5;45112:12;45102:22;;45091:40;;;:::o;45137:98::-;;45222:5;45216:12;45206:22;;45195:40;;;:::o;45241:99::-;;45327:5;45321:12;45311:22;;45300:40;;;:::o;45346:123::-;;45458:4;45453:3;45449:14;45441:22;;45431:38;;;:::o;45475:113::-;;45577:4;45572:3;45568:14;45560:22;;45550:38;;;:::o;45594:194::-;;45737:6;45732:3;45725:19;45777:4;45772:3;45768:14;45753:29;;45715:73;;;;:::o;45794:184::-;;45927:6;45922:3;45915:19;45967:4;45962:3;45958:14;45943:29;;45905:73;;;;:::o;45984:168::-;;46101:6;46096:3;46089:19;46141:4;46136:3;46132:14;46117:29;;46079:73;;;;:::o;46158:147::-;;46296:3;46281:18;;46271:34;;;;:::o;46311:159::-;;46419:6;46414:3;46407:19;46459:4;46454:3;46450:14;46435:29;;46397:73;;;;:::o;46476:169::-;;46594:6;46589:3;46582:19;46634:4;46629:3;46625:14;46610:29;;46572:73;;;;:::o;46651:148::-;;46790:3;46775:18;;46765:34;;;;:::o;46805:96::-;;46871:24;46889:5;46871:24;:::i;:::-;46860:35;;46850:51;;;:::o;46907:104::-;;46981:24;46999:5;46981:24;:::i;:::-;46970:35;;46960:51;;;:::o;47017:90::-;;47094:5;47087:13;47080:21;47069:32;;47059:48;;;:::o;47113:77::-;;47179:5;47168:16;;47158:32;;;:::o;47196:149::-;;47272:66;47265:5;47261:78;47250:89;;47240:105;;;:::o;47351:126::-;;47428:42;47421:5;47417:54;47406:65;;47396:81;;;:::o;47483:77::-;;47549:5;47538:16;;47528:32;;;:::o;47566:134::-;;47657:37;47688:5;47657:37;:::i;:::-;47644:50;;47634:66;;;:::o;47706:126::-;;47789:37;47820:5;47789:37;:::i;:::-;47776:50;;47766:66;;;:::o;47838:113::-;;47921:24;47939:5;47921:24;:::i;:::-;47908:37;;47898:53;;;:::o;47957:154::-;48041:6;48036:3;48031;48018:30;48103:1;48094:6;48089:3;48085:16;48078:27;48008:103;;;:::o;48117:307::-;48185:1;48195:113;48209:6;48206:1;48203:13;48195:113;;;48294:1;48289:3;48285:11;48279:18;48275:1;48270:3;48266:11;48259:39;48231:2;48228:1;48224:10;48219:15;;48195:113;;;48326:6;48323:1;48320:13;48317:2;;;48406:1;48397:6;48392:3;48388:16;48381:27;48317:2;48166:258;;;;:::o;48430:48::-;48463:9;48484:102;;48576:2;48572:7;48567:2;48560:5;48556:14;48552:28;48542:38;;48532:54;;;:::o;48592:122::-;48665:24;48683:5;48665:24;:::i;:::-;48658:5;48655:35;48645:2;;48704:1;48701;48694:12;48645:2;48635:79;:::o;48720:116::-;48790:21;48805:5;48790:21;:::i;:::-;48783:5;48780:32;48770:2;;48826:1;48823;48816:12;48770:2;48760:76;:::o;48842:122::-;48915:24;48933:5;48915:24;:::i;:::-;48908:5;48905:35;48895:2;;48954:1;48951;48944:12;48895:2;48885:79;:::o;48970:120::-;49042:23;49059:5;49042:23;:::i;:::-;49035:5;49032:34;49022:2;;49080:1;49077;49070:12;49022:2;49012:78;:::o;49096:122::-;49169:24;49187:5;49169:24;:::i;:::-;49162:5;49159:35;49149:2;;49208:1;49205;49198:12;49149:2;49139:79;:::o

Swarm Source

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