ETH Price: $3,353.99 (-1.84%)
Gas: 7 Gwei

Token

Lazy Lions (LION)
 

Overview

Max Total Supply

10,080 LION

Holders

4,717

Market

Volume (24H)

0.0713 ETH

Min Price (24H)

$239.14 @ 0.071300 ETH

Max Price (24H)

$239.14 @ 0.071300 ETH

Other Info

Balance
1 LION
0x1f3c4836C7ca826ACa5b26cbe954392D343AefAD
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Located in a secured, top-secret location, this private island is open exclusively for the VIP members of the Lazy Lion Community.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LazyLions

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

/**
 *Ashur was here
 */

// SPDX-License-Identifier: MIT

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

pragma solidity >=0.6.0 <0.8.0;

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

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

pragma solidity >=0.6.2 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity >=0.6.2 <0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

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

pragma solidity >=0.6.2 <0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity >=0.6.2 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

            bytes32 lastvalue = set._values[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

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

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

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

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

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

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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

    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

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

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

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

pragma solidity >=0.6.0 <0.8.0;

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

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;
        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping(bytes32 => uint256) _indexes;
    }

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

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

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

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

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

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

            MapEntry storage lastEntry = map._entries[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

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

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

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

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

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

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

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

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

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

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

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

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

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

    // Base URI
    string private _baseURI;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

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

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

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

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

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

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(tokenId);

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

/** 
.-.     .--.  .---..-.  .-.   .-.   .-. .----. .-. .-. .----.
| |    / {} \{_   / \ \/ /    | |   | |/  {}  \|  `| |{ {__  
| `--./  /\  \/    } }  {     | `--.| |\      /| |\  |.-._} }
`----'`-'  `-'`---'  `--'     `----'`-' `----' `-' `-'`----' 
*/

pragma solidity ^0.7.0;
pragma abicoder v2;

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

    string public LION_PROVENANCE = ""; // IPFS PROVENANCE TO BE ADDED WHEN SOLD OUT

    string public LICENSE_TEXT = "";

    bool licenseLocked = false;

    uint256 public lionPrice = 50000000000000000; // 0.050 ETH

    uint256 public constant maxLionPurchase = 20;

    uint256 public constant MAX_LIONS = 10000;

    bool public saleIsActive = false;

    uint256 public lionReserve = 250; // Reserve 250 Lions for team & community (Used in giveaways, events etc...)

    event licenseisLocked(string _licenseText);

    constructor() ERC721("Lazy Lions", "LION") {}

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

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

    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        LION_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(uint256 _id) public view returns (string memory) {
        require(_id < totalSupply(), "CHOOSE A LION 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 mintLion(uint256 numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint Lion");
        require(
            numberOfTokens > 0 && numberOfTokens <= maxLionPurchase,
            "Can only mint 20 tokens at a time"
        );
        require(
            totalSupply().add(numberOfTokens) <= MAX_LIONS,
            "Purchase would exceed max supply of Lions"
        );
        require(
            msg.value >= lionPrice.mul(numberOfTokens),
            "Ether value sent is not correct"
        );

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

    function setLionPrice(uint256 newPrice) public onlyOwner {
        lionPrice = newPrice;
    }
}

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"},{"inputs":[],"name":"LICENSE_TEXT","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LION_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_LIONS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_license","type":"string"}],"name":"changeLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lionPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lionReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxLionPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintLion","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":"reserveLions","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":"uint256","name":"newPrice","type":"uint256"}],"name":"setLionPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"tokenLicense","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600b90805190602001906200002b9291906200033f565b5060405180602001604052806000815250600c9080519060200190620000539291906200033f565b506000600d60006101000a81548160ff02191690831515021790555066b1a2bc2ec50000600e556000600f60006101000a81548160ff02191690831515021790555060fa601055348015620000a757600080fd5b506040518060400160405280600a81526020017f4c617a79204c696f6e73000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4c494f4e000000000000000000000000000000000000000000000000000000008152506200012c6301ffc9a760e01b6200025f60201b60201c565b8160069080519060200190620001449291906200033f565b5080600790805190602001906200015d9291906200033f565b50620001766380ac58cd60e01b6200025f60201b60201c565b6200018e635b5e139f60e01b6200025f60201b60201c565b620001a663780e9d6360e01b6200025f60201b60201c565b50506000620001ba6200033760201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200046a565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620002cb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c29062000437565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620003775760008555620003c3565b82601f106200039257805160ff1916838001178555620003c3565b82800160010185558215620003c3579182015b82811115620003c2578251825591602001919060010190620003a5565b5b509050620003d29190620003d6565b5090565b5b80821115620003f1576000816000905550600101620003d7565b5090565b600062000404601c8362000459565b91507f4552433136353a20696e76616c696420696e74657266616365206964000000006000830152602082019050919050565b600060208201905081810360008301526200045281620003f5565b9050919050565b600082825260208201905092915050565b61498c806200047a6000396000f3fe6080604052600436106102255760003560e01c806370a0823111610123578063b09904b5116100ab578063e985e9c51161006f578063e985e9c5146107e6578063eb8d244414610823578063ebcc17061461084e578063f2fde38b14610879578063feae03c9146108a257610225565b8063b09904b514610703578063b88d4fde1461072c578063bf4702fc14610755578063c87b56dd1461076c578063d9b137b2146107a957610225565b80638462151c116100f25780638462151c1461061c5780638da5cb5b1461065957806395d89b41146106845780639c3e72bd146106af578063a22cb465146106da57610225565b806370a0823114610574578063715018a6146105b15780637471f4f5146105c85780637c4d87b2146105f157610225565b80633ccfd60b116101b1578063528b540411610175578063528b54041461049c578063536936ca146104c757806355f804b3146104e35780636352211e1461050c5780636c0360eb1461054957610225565b80633ccfd60b146103c957806342842e0e146103e05780634368dcfc146104095780634cb0aa64146104345780634f6ccce71461045f57610225565b806310969523116101f857806310969523146102f857806318160ddd1461032157806323b872dd1461034c5780632f745c591461037557806334918dfd146103b257610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613513565b6108cb565b60405161025e919061427d565b60405180910390f35b34801561027357600080fd5b5061027c610932565b6040516102899190614298565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906135a6565b6109d4565b6040516102c691906141f4565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f191906134d7565b610a59565b005b34801561030457600080fd5b5061031f600480360381019061031a9190613565565b610b71565b005b34801561032d57600080fd5b50610336610c07565b604051610343919061467c565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e91906133d1565b610c18565b005b34801561038157600080fd5b5061039c600480360381019061039791906134d7565b610c78565b6040516103a9919061467c565b60405180910390f35b3480156103be57600080fd5b506103c7610cd3565b005b3480156103d557600080fd5b506103de610d7b565b005b3480156103ec57600080fd5b50610407600480360381019061040291906133d1565b610e46565b005b34801561041557600080fd5b5061041e610e66565b60405161042b919061467c565b60405180910390f35b34801561044057600080fd5b50610449610e6c565b604051610456919061467c565b60405180910390f35b34801561046b57600080fd5b50610486600480360381019061048191906135a6565b610e72565b604051610493919061467c565b60405180910390f35b3480156104a857600080fd5b506104b1610e95565b6040516104be919061467c565b60405180910390f35b6104e160048036038101906104dc91906135a6565b610e9a565b005b3480156104ef57600080fd5b5061050a60048036038101906105059190613565565b611033565b005b34801561051857600080fd5b50610533600480360381019061052e91906135a6565b6110bb565b60405161054091906141f4565b60405180910390f35b34801561055557600080fd5b5061055e6110f2565b60405161056b9190614298565b60405180910390f35b34801561058057600080fd5b5061059b6004803603810190610596919061336c565b611194565b6040516105a8919061467c565b60405180910390f35b3480156105bd57600080fd5b506105c6611253565b005b3480156105d457600080fd5b506105ef60048036038101906105ea91906135a6565b611390565b005b3480156105fd57600080fd5b50610606611416565b6040516106139190614298565b60405180910390f35b34801561062857600080fd5b50610643600480360381019061063e919061336c565b6114b4565b604051610650919061425b565b60405180910390f35b34801561066557600080fd5b5061066e6115ad565b60405161067b91906141f4565b60405180910390f35b34801561069057600080fd5b506106996115d7565b6040516106a69190614298565b60405180910390f35b3480156106bb57600080fd5b506106c4611679565b6040516106d19190614298565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc919061349b565b611717565b005b34801561070f57600080fd5b5061072a60048036038101906107259190613565565b611898565b005b34801561073857600080fd5b50610753600480360381019061074e9190613420565b611984565b005b34801561076157600080fd5b5061076a6119e6565b005b34801561077857600080fd5b50610793600480360381019061078e91906135a6565b611ab7565b6040516107a09190614298565b60405180910390f35b3480156107b557600080fd5b506107d060048036038101906107cb91906135a6565b611c3a565b6040516107dd9190614298565b60405180910390f35b3480156107f257600080fd5b5061080d60048036038101906108089190613395565b611d27565b60405161081a919061427d565b60405180910390f35b34801561082f57600080fd5b50610838611dbb565b604051610845919061427d565b60405180910390f35b34801561085a57600080fd5b50610863611dce565b604051610870919061467c565b60405180910390f35b34801561088557600080fd5b506108a0600480360381019061089b919061336c565b611dd4565b005b3480156108ae57600080fd5b506108c960048036038101906108c491906134d7565b611f80565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109ca5780601f1061099f576101008083540402835291602001916109ca565b820191906000526020600020905b8154815290600101906020018083116109ad57829003601f168201915b5050505050905090565b60006109df8261209e565b610a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a159061457c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a64826110bb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acc906145fc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610af46120bb565b73ffffffffffffffffffffffffffffffffffffffff161480610b235750610b2281610b1d6120bb565b611d27565b5b610b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b59906144bc565b60405180910390fd5b610b6c83836120c3565b505050565b610b796120bb565b73ffffffffffffffffffffffffffffffffffffffff16610b976115ad565b73ffffffffffffffffffffffffffffffffffffffff1614610bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be49061459c565b60405180910390fd5b80600b9080519060200190610c03929190613188565b5050565b6000610c13600261217c565b905090565b610c29610c236120bb565b82612191565b610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f9061463c565b60405180910390fd5b610c7383838361226f565b505050565b6000610ccb82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061248690919063ffffffff16565b905092915050565b610cdb6120bb565b73ffffffffffffffffffffffffffffffffffffffff16610cf96115ad565b73ffffffffffffffffffffffffffffffffffffffff1614610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d469061459c565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b610d836120bb565b73ffffffffffffffffffffffffffffffffffffffff16610da16115ad565b73ffffffffffffffffffffffffffffffffffffffff1614610df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dee9061459c565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e42573d6000803e3d6000fd5b5050565b610e6183838360405180602001604052806000815250611984565b505050565b600e5481565b61271081565b600080610e898360026124a090919063ffffffff16565b50905080915050919050565b601481565b600f60009054906101000a900460ff16610ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee0906143dc565b60405180910390fd5b600081118015610efa575060148111155b610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f309061449c565b60405180910390fd5b612710610f5682610f48610c07565b6124cc90919063ffffffff16565b1115610f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8e9061443c565b60405180910390fd5b610fac81600e5461252190919063ffffffff16565b341015610fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe5906143fc565b60405180910390fd5b60005b8181101561102f576000611003610c07565b9050612710611010610c07565b1015611021576110203382612591565b5b508080600101915050610ff1565b5050565b61103b6120bb565b73ffffffffffffffffffffffffffffffffffffffff166110596115ad565b73ffffffffffffffffffffffffffffffffffffffff16146110af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a69061459c565b60405180910390fd5b6110b8816125af565b50565b60006110eb8260405180606001604052806029815260200161492e6029913960026125c99092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561118a5780601f1061115f5761010080835404028352916020019161118a565b820191906000526020600020905b81548152906001019060200180831161116d57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc906144dc565b60405180910390fd5b61124c600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206125e8565b9050919050565b61125b6120bb565b73ffffffffffffffffffffffffffffffffffffffff166112796115ad565b73ffffffffffffffffffffffffffffffffffffffff16146112cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c69061459c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6113986120bb565b73ffffffffffffffffffffffffffffffffffffffff166113b66115ad565b73ffffffffffffffffffffffffffffffffffffffff161461140c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114039061459c565b60405180910390fd5b80600e8190555050565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114ac5780601f10611481576101008083540402835291602001916114ac565b820191906000526020600020905b81548152906001019060200180831161148f57829003601f168201915b505050505081565b606060006114c183611194565b9050600081141561151c57600067ffffffffffffffff811180156114e457600080fd5b506040519080825280602002602001820160405280156115135781602001602082028036833780820191505090505b509150506115a8565b60008167ffffffffffffffff8111801561153557600080fd5b506040519080825280602002602001820160405280156115645781602001602082028036833780820191505090505b50905060005b828110156115a15761157c8582610c78565b82828151811061158857fe5b602002602001018181525050808060010191505061156a565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561166f5780601f106116445761010080835404028352916020019161166f565b820191906000526020600020905b81548152906001019060200180831161165257829003601f168201915b5050505050905090565b600c8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561170f5780601f106116e45761010080835404028352916020019161170f565b820191906000526020600020905b8154815290600101906020018083116116f257829003601f168201915b505050505081565b61171f6120bb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561178d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611784906143bc565b60405180910390fd5b806005600061179a6120bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118476120bb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161188c919061427d565b60405180910390a35050565b6118a06120bb565b73ffffffffffffffffffffffffffffffffffffffff166118be6115ad565b73ffffffffffffffffffffffffffffffffffffffff1614611914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190b9061459c565b60405180910390fd5b60001515600d60009054906101000a900460ff1615151461196a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119619061461c565b60405180910390fd5b80600c9080519060200190611980929190613188565b5050565b61199561198f6120bb565b83612191565b6119d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cb9061463c565b60405180910390fd5b6119e0848484846125fd565b50505050565b6119ee6120bb565b73ffffffffffffffffffffffffffffffffffffffff16611a0c6115ad565b73ffffffffffffffffffffffffffffffffffffffff1614611a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a599061459c565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0600c604051611aad91906142ba565b60405180910390a1565b6060611ac28261209e565b611b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af8906145dc565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611baa5780601f10611b7f57610100808354040283529160200191611baa565b820191906000526020600020905b815481529060010190602001808311611b8d57829003601f168201915b505050505090506000611bbb6110f2565b9050600081511415611bd1578192505050611c35565b600082511115611c06578082604051602001611bee9291906141d0565b60405160208183030381529060405292505050611c35565b80611c1085612659565b604051602001611c219291906141d0565b604051602081830303815290604052925050505b919050565b6060611c44610c07565b8210611c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7c906144fc565b60405180910390fd5b600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d1b5780601f10611cf057610100808354040283529160200191611d1b565b820191906000526020600020905b815481529060010190602001808311611cfe57829003601f168201915b50505050509050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b60105481565b611ddc6120bb565b73ffffffffffffffffffffffffffffffffffffffff16611dfa6115ad565b73ffffffffffffffffffffffffffffffffffffffff1614611e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e479061459c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb79061431c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611f886120bb565b73ffffffffffffffffffffffffffffffffffffffff16611fa66115ad565b73ffffffffffffffffffffffffffffffffffffffff1614611ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff39061459c565b60405180910390fd5b6000612006610c07565b905060008211801561201a57506010548211155b612059576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120509061437c565b60405180910390fd5b60005b8281101561207d5761207084828401612591565b808060010191505061205c565b50612093826010546127a090919063ffffffff16565b601081905550505050565b60006120b48260026127f090919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612136836110bb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061218a8260000161280a565b9050919050565b600061219c8261209e565b6121db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d29061447c565b60405180910390fd5b60006121e6836110bb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061225557508373ffffffffffffffffffffffffffffffffffffffff1661223d846109d4565b73ffffffffffffffffffffffffffffffffffffffff16145b8061226657506122658185611d27565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661228f826110bb565b73ffffffffffffffffffffffffffffffffffffffff16146122e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dc906145bc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234c9061439c565b60405180910390fd5b61236083838361281b565b61236b6000826120c3565b6123bc81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061282090919063ffffffff16565b5061240e81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061283a90919063ffffffff16565b50612425818360026128549092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006124958360000183612889565b60001c905092915050565b6000806000806124b386600001866128f6565b915091508160001c8160001c9350935050509250929050565b600080828401905083811015612517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250e9061435c565b60405180910390fd5b8091505092915050565b600080831415612534576000905061258b565b600082840290508284828161254557fe5b0414612586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257d9061455c565b60405180910390fd5b809150505b92915050565b6125ab828260405180602001604052806000815250612979565b5050565b80600990805190602001906125c5929190613188565b5050565b60006125dc846000018460001b846129d4565b60001c90509392505050565b60006125f682600001612a65565b9050919050565b61260884848461226f565b61261484848484612a76565b612653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264a906142fc565b60405180910390fd5b50505050565b606060008214156126a1576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061279b565b600082905060005b600082146126cb578080600101915050600a82816126c357fe5b0491506126a9565b60008167ffffffffffffffff811180156126e457600080fd5b506040519080825280601f01601f1916602001820160405280156127175781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461279357600a848161273857fe5b0660300160f81b8282806001900393508151811061275257fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161278b57fe5b049350612726565b819450505050505b919050565b6000828211156127e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127dc9061441c565b60405180910390fd5b818303905092915050565b6000612802836000018360001b612bda565b905092915050565b600081600001805490509050919050565b505050565b6000612832836000018360001b612bfd565b905092915050565b600061284c836000018360001b612ce5565b905092915050565b6000612880846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612d55565b90509392505050565b6000818360000180549050116128d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cb906142dc565b60405180910390fd5b8260000182815481106128e357fe5b9060005260206000200154905092915050565b60008082846000018054905011612942576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129399061451c565b60405180910390fd5b600084600001848154811061295357fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b6129838383612e31565b6129906000848484612a76565b6129cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c6906142fc565b60405180910390fd5b505050565b60008084600101600085815260200190815260200160002054905060008114158390612a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2d9190614298565b60405180910390fd5b50846000016001820381548110612a4957fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6000612a978473ffffffffffffffffffffffffffffffffffffffff16612fbf565b612aa45760019050612bd2565b6000612b6b63150b7a0260e01b612ab96120bb565b888787604051602401612acf949392919061420f565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518060600160405280603281526020016148fc603291398773ffffffffffffffffffffffffffffffffffffffff16612fd29092919063ffffffff16565b9050600081806020019051810190612b83919061353c565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114612cd95760006001820390506000600186600001805490500390506000866000018281548110612c4857fe5b9060005260206000200154905080876000018481548110612c6557fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612c9d57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612cdf565b60009150505b92915050565b6000612cf18383612fea565b612d4a578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612d4f565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415612dfc57846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050612e2a565b82856000016001830381548110612e0f57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e989061453c565b60405180910390fd5b612eaa8161209e565b15612eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee19061433c565b60405180910390fd5b612ef66000838361281b565b612f4781600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061283a90919063ffffffff16565b50612f5e818360026128549092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060612fe1848460008561300d565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015613052576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130499061445c565b60405180910390fd5b61305b85612fbf565b61309a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130919061465c565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516130c391906141b9565b60006040518083038185875af1925050503d8060008114613100576040519150601f19603f3d011682016040523d82523d6000602084013e613105565b606091505b5091509150613115828286613121565b92505050949350505050565b6060831561313157829050613181565b6000835111156131445782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131789190614298565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826131be5760008555613205565b82601f106131d757805160ff1916838001178555613205565b82800160010185558215613205579182015b828111156132045782518255916020019190600101906131e9565b5b5090506132129190613216565b5090565b5b8082111561322f576000816000905550600101613217565b5090565b6000613246613241846146c8565b614697565b90508281526020810184848401111561325e57600080fd5b61326984828561484a565b509392505050565b600061328461327f846146f8565b614697565b90508281526020810184848401111561329c57600080fd5b6132a784828561484a565b509392505050565b6000813590506132be8161489f565b92915050565b6000813590506132d3816148b6565b92915050565b6000813590506132e8816148cd565b92915050565b6000815190506132fd816148cd565b92915050565b600082601f83011261331457600080fd5b8135613324848260208601613233565b91505092915050565b600082601f83011261333e57600080fd5b813561334e848260208601613271565b91505092915050565b600081359050613366816148e4565b92915050565b60006020828403121561337e57600080fd5b600061338c848285016132af565b91505092915050565b600080604083850312156133a857600080fd5b60006133b6858286016132af565b92505060206133c7858286016132af565b9150509250929050565b6000806000606084860312156133e657600080fd5b60006133f4868287016132af565b9350506020613405868287016132af565b925050604061341686828701613357565b9150509250925092565b6000806000806080858703121561343657600080fd5b6000613444878288016132af565b9450506020613455878288016132af565b935050604061346687828801613357565b925050606085013567ffffffffffffffff81111561348357600080fd5b61348f87828801613303565b91505092959194509250565b600080604083850312156134ae57600080fd5b60006134bc858286016132af565b92505060206134cd858286016132c4565b9150509250929050565b600080604083850312156134ea57600080fd5b60006134f8858286016132af565b925050602061350985828601613357565b9150509250929050565b60006020828403121561352557600080fd5b6000613533848285016132d9565b91505092915050565b60006020828403121561354e57600080fd5b600061355c848285016132ee565b91505092915050565b60006020828403121561357757600080fd5b600082013567ffffffffffffffff81111561359157600080fd5b61359d8482850161332d565b91505092915050565b6000602082840312156135b857600080fd5b60006135c684828501613357565b91505092915050565b60006135db838361419b565b60208301905092915050565b6135f0816147d6565b82525050565b6135ff816147c4565b82525050565b60006136108261474d565b61361a818561477b565b935061362583614728565b8060005b8381101561365657815161363d88826135cf565b97506136488361476e565b925050600181019050613629565b5085935050505092915050565b61366c816147e8565b82525050565b600061367d82614758565b613687818561478c565b9350613697818560208601614859565b6136a08161488e565b840191505092915050565b60006136b682614758565b6136c0818561479d565b93506136d0818560208601614859565b80840191505092915050565b60006136e782614763565b6136f181856147a8565b9350613701818560208601614859565b61370a8161488e565b840191505092915050565b600061372082614763565b61372a81856147b9565b935061373a818560208601614859565b80840191505092915050565b6000815460018116600081146137635760018114613789576137cd565b607f600283041661377481876147a8565b955060ff1983168652602086019350506137cd565b6002820461379781876147a8565b95506137a285614738565b60005b828110156137c4578154818901526001820191506020810190506137a5565b80880195505050505b505092915050565b60006137e26022836147a8565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138486032836147a8565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006138ae6026836147a8565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613914601c836147a8565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613954601b836147a8565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b60006139946020836147a8565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b60006139d46024836147a8565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a3a6019836147a8565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613a7a6020836147a8565b91507f53616c65206d7573742062652061637469766520746f206d696e74204c696f6e6000830152602082019050919050565b6000613aba601f836147a8565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000613afa601e836147a8565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000613b3a6029836147a8565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f66204c696f6e7300000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ba06026836147a8565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c06602c836147a8565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613c6c6021836147a8565b91507f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cd26038836147a8565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613d38602a836147a8565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d9e601a836147a8565b91507f43484f4f53452041204c494f4e2057495448494e2052414e47450000000000006000830152602082019050919050565b6000613dde6022836147a8565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e446020836147a8565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613e846021836147a8565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613eea602c836147a8565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613f506020836147a8565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613f906029836147a8565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ff6602f836147a8565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061405c6021836147a8565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140c26016836147a8565b91507f4c6963656e736520616c7265616479206c6f636b6564000000000000000000006000830152602082019050919050565b60006141026031836147a8565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614168601d836147a8565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b6141a481614840565b82525050565b6141b381614840565b82525050565b60006141c582846136ab565b915081905092915050565b60006141dc8285613715565b91506141e88284613715565b91508190509392505050565b600060208201905061420960008301846135f6565b92915050565b600060808201905061422460008301876135e7565b61423160208301866135f6565b61423e60408301856141aa565b81810360608301526142508184613672565b905095945050505050565b600060208201905081810360008301526142758184613605565b905092915050565b60006020820190506142926000830184613663565b92915050565b600060208201905081810360008301526142b281846136dc565b905092915050565b600060208201905081810360008301526142d48184613746565b905092915050565b600060208201905081810360008301526142f5816137d5565b9050919050565b600060208201905081810360008301526143158161383b565b9050919050565b60006020820190508181036000830152614335816138a1565b9050919050565b6000602082019050818103600083015261435581613907565b9050919050565b6000602082019050818103600083015261437581613947565b9050919050565b6000602082019050818103600083015261439581613987565b9050919050565b600060208201905081810360008301526143b5816139c7565b9050919050565b600060208201905081810360008301526143d581613a2d565b9050919050565b600060208201905081810360008301526143f581613a6d565b9050919050565b6000602082019050818103600083015261441581613aad565b9050919050565b6000602082019050818103600083015261443581613aed565b9050919050565b6000602082019050818103600083015261445581613b2d565b9050919050565b6000602082019050818103600083015261447581613b93565b9050919050565b6000602082019050818103600083015261449581613bf9565b9050919050565b600060208201905081810360008301526144b581613c5f565b9050919050565b600060208201905081810360008301526144d581613cc5565b9050919050565b600060208201905081810360008301526144f581613d2b565b9050919050565b6000602082019050818103600083015261451581613d91565b9050919050565b6000602082019050818103600083015261453581613dd1565b9050919050565b6000602082019050818103600083015261455581613e37565b9050919050565b6000602082019050818103600083015261457581613e77565b9050919050565b6000602082019050818103600083015261459581613edd565b9050919050565b600060208201905081810360008301526145b581613f43565b9050919050565b600060208201905081810360008301526145d581613f83565b9050919050565b600060208201905081810360008301526145f581613fe9565b9050919050565b600060208201905081810360008301526146158161404f565b9050919050565b60006020820190508181036000830152614635816140b5565b9050919050565b60006020820190508181036000830152614655816140f5565b9050919050565b600060208201905081810360008301526146758161415b565b9050919050565b600060208201905061469160008301846141aa565b92915050565b6000604051905081810181811067ffffffffffffffff821117156146be576146bd61488c565b5b8060405250919050565b600067ffffffffffffffff8211156146e3576146e261488c565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156147135761471261488c565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006147cf82614820565b9050919050565b60006147e182614820565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561487757808201518184015260208101905061485c565b83811115614886576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b6148a8816147c4565b81146148b357600080fd5b50565b6148bf816147e8565b81146148ca57600080fd5b50565b6148d6816147f4565b81146148e157600080fd5b50565b6148ed81614840565b81146148f857600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212201c22bc53032fda146b84210033fd69f4ab9b02d31882d6df399652e9a284c20264736f6c63430007060033

Deployed Bytecode

0x6080604052600436106102255760003560e01c806370a0823111610123578063b09904b5116100ab578063e985e9c51161006f578063e985e9c5146107e6578063eb8d244414610823578063ebcc17061461084e578063f2fde38b14610879578063feae03c9146108a257610225565b8063b09904b514610703578063b88d4fde1461072c578063bf4702fc14610755578063c87b56dd1461076c578063d9b137b2146107a957610225565b80638462151c116100f25780638462151c1461061c5780638da5cb5b1461065957806395d89b41146106845780639c3e72bd146106af578063a22cb465146106da57610225565b806370a0823114610574578063715018a6146105b15780637471f4f5146105c85780637c4d87b2146105f157610225565b80633ccfd60b116101b1578063528b540411610175578063528b54041461049c578063536936ca146104c757806355f804b3146104e35780636352211e1461050c5780636c0360eb1461054957610225565b80633ccfd60b146103c957806342842e0e146103e05780634368dcfc146104095780634cb0aa64146104345780634f6ccce71461045f57610225565b806310969523116101f857806310969523146102f857806318160ddd1461032157806323b872dd1461034c5780632f745c591461037557806334918dfd146103b257610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613513565b6108cb565b60405161025e919061427d565b60405180910390f35b34801561027357600080fd5b5061027c610932565b6040516102899190614298565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906135a6565b6109d4565b6040516102c691906141f4565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f191906134d7565b610a59565b005b34801561030457600080fd5b5061031f600480360381019061031a9190613565565b610b71565b005b34801561032d57600080fd5b50610336610c07565b604051610343919061467c565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e91906133d1565b610c18565b005b34801561038157600080fd5b5061039c600480360381019061039791906134d7565b610c78565b6040516103a9919061467c565b60405180910390f35b3480156103be57600080fd5b506103c7610cd3565b005b3480156103d557600080fd5b506103de610d7b565b005b3480156103ec57600080fd5b50610407600480360381019061040291906133d1565b610e46565b005b34801561041557600080fd5b5061041e610e66565b60405161042b919061467c565b60405180910390f35b34801561044057600080fd5b50610449610e6c565b604051610456919061467c565b60405180910390f35b34801561046b57600080fd5b50610486600480360381019061048191906135a6565b610e72565b604051610493919061467c565b60405180910390f35b3480156104a857600080fd5b506104b1610e95565b6040516104be919061467c565b60405180910390f35b6104e160048036038101906104dc91906135a6565b610e9a565b005b3480156104ef57600080fd5b5061050a60048036038101906105059190613565565b611033565b005b34801561051857600080fd5b50610533600480360381019061052e91906135a6565b6110bb565b60405161054091906141f4565b60405180910390f35b34801561055557600080fd5b5061055e6110f2565b60405161056b9190614298565b60405180910390f35b34801561058057600080fd5b5061059b6004803603810190610596919061336c565b611194565b6040516105a8919061467c565b60405180910390f35b3480156105bd57600080fd5b506105c6611253565b005b3480156105d457600080fd5b506105ef60048036038101906105ea91906135a6565b611390565b005b3480156105fd57600080fd5b50610606611416565b6040516106139190614298565b60405180910390f35b34801561062857600080fd5b50610643600480360381019061063e919061336c565b6114b4565b604051610650919061425b565b60405180910390f35b34801561066557600080fd5b5061066e6115ad565b60405161067b91906141f4565b60405180910390f35b34801561069057600080fd5b506106996115d7565b6040516106a69190614298565b60405180910390f35b3480156106bb57600080fd5b506106c4611679565b6040516106d19190614298565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc919061349b565b611717565b005b34801561070f57600080fd5b5061072a60048036038101906107259190613565565b611898565b005b34801561073857600080fd5b50610753600480360381019061074e9190613420565b611984565b005b34801561076157600080fd5b5061076a6119e6565b005b34801561077857600080fd5b50610793600480360381019061078e91906135a6565b611ab7565b6040516107a09190614298565b60405180910390f35b3480156107b557600080fd5b506107d060048036038101906107cb91906135a6565b611c3a565b6040516107dd9190614298565b60405180910390f35b3480156107f257600080fd5b5061080d60048036038101906108089190613395565b611d27565b60405161081a919061427d565b60405180910390f35b34801561082f57600080fd5b50610838611dbb565b604051610845919061427d565b60405180910390f35b34801561085a57600080fd5b50610863611dce565b604051610870919061467c565b60405180910390f35b34801561088557600080fd5b506108a0600480360381019061089b919061336c565b611dd4565b005b3480156108ae57600080fd5b506108c960048036038101906108c491906134d7565b611f80565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109ca5780601f1061099f576101008083540402835291602001916109ca565b820191906000526020600020905b8154815290600101906020018083116109ad57829003601f168201915b5050505050905090565b60006109df8261209e565b610a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a159061457c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a64826110bb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acc906145fc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610af46120bb565b73ffffffffffffffffffffffffffffffffffffffff161480610b235750610b2281610b1d6120bb565b611d27565b5b610b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b59906144bc565b60405180910390fd5b610b6c83836120c3565b505050565b610b796120bb565b73ffffffffffffffffffffffffffffffffffffffff16610b976115ad565b73ffffffffffffffffffffffffffffffffffffffff1614610bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be49061459c565b60405180910390fd5b80600b9080519060200190610c03929190613188565b5050565b6000610c13600261217c565b905090565b610c29610c236120bb565b82612191565b610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f9061463c565b60405180910390fd5b610c7383838361226f565b505050565b6000610ccb82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061248690919063ffffffff16565b905092915050565b610cdb6120bb565b73ffffffffffffffffffffffffffffffffffffffff16610cf96115ad565b73ffffffffffffffffffffffffffffffffffffffff1614610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d469061459c565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b610d836120bb565b73ffffffffffffffffffffffffffffffffffffffff16610da16115ad565b73ffffffffffffffffffffffffffffffffffffffff1614610df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dee9061459c565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e42573d6000803e3d6000fd5b5050565b610e6183838360405180602001604052806000815250611984565b505050565b600e5481565b61271081565b600080610e898360026124a090919063ffffffff16565b50905080915050919050565b601481565b600f60009054906101000a900460ff16610ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee0906143dc565b60405180910390fd5b600081118015610efa575060148111155b610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f309061449c565b60405180910390fd5b612710610f5682610f48610c07565b6124cc90919063ffffffff16565b1115610f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8e9061443c565b60405180910390fd5b610fac81600e5461252190919063ffffffff16565b341015610fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe5906143fc565b60405180910390fd5b60005b8181101561102f576000611003610c07565b9050612710611010610c07565b1015611021576110203382612591565b5b508080600101915050610ff1565b5050565b61103b6120bb565b73ffffffffffffffffffffffffffffffffffffffff166110596115ad565b73ffffffffffffffffffffffffffffffffffffffff16146110af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a69061459c565b60405180910390fd5b6110b8816125af565b50565b60006110eb8260405180606001604052806029815260200161492e6029913960026125c99092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561118a5780601f1061115f5761010080835404028352916020019161118a565b820191906000526020600020905b81548152906001019060200180831161116d57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc906144dc565b60405180910390fd5b61124c600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206125e8565b9050919050565b61125b6120bb565b73ffffffffffffffffffffffffffffffffffffffff166112796115ad565b73ffffffffffffffffffffffffffffffffffffffff16146112cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c69061459c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6113986120bb565b73ffffffffffffffffffffffffffffffffffffffff166113b66115ad565b73ffffffffffffffffffffffffffffffffffffffff161461140c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114039061459c565b60405180910390fd5b80600e8190555050565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114ac5780601f10611481576101008083540402835291602001916114ac565b820191906000526020600020905b81548152906001019060200180831161148f57829003601f168201915b505050505081565b606060006114c183611194565b9050600081141561151c57600067ffffffffffffffff811180156114e457600080fd5b506040519080825280602002602001820160405280156115135781602001602082028036833780820191505090505b509150506115a8565b60008167ffffffffffffffff8111801561153557600080fd5b506040519080825280602002602001820160405280156115645781602001602082028036833780820191505090505b50905060005b828110156115a15761157c8582610c78565b82828151811061158857fe5b602002602001018181525050808060010191505061156a565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561166f5780601f106116445761010080835404028352916020019161166f565b820191906000526020600020905b81548152906001019060200180831161165257829003601f168201915b5050505050905090565b600c8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561170f5780601f106116e45761010080835404028352916020019161170f565b820191906000526020600020905b8154815290600101906020018083116116f257829003601f168201915b505050505081565b61171f6120bb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561178d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611784906143bc565b60405180910390fd5b806005600061179a6120bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118476120bb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161188c919061427d565b60405180910390a35050565b6118a06120bb565b73ffffffffffffffffffffffffffffffffffffffff166118be6115ad565b73ffffffffffffffffffffffffffffffffffffffff1614611914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190b9061459c565b60405180910390fd5b60001515600d60009054906101000a900460ff1615151461196a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119619061461c565b60405180910390fd5b80600c9080519060200190611980929190613188565b5050565b61199561198f6120bb565b83612191565b6119d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cb9061463c565b60405180910390fd5b6119e0848484846125fd565b50505050565b6119ee6120bb565b73ffffffffffffffffffffffffffffffffffffffff16611a0c6115ad565b73ffffffffffffffffffffffffffffffffffffffff1614611a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a599061459c565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0600c604051611aad91906142ba565b60405180910390a1565b6060611ac28261209e565b611b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af8906145dc565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611baa5780601f10611b7f57610100808354040283529160200191611baa565b820191906000526020600020905b815481529060010190602001808311611b8d57829003601f168201915b505050505090506000611bbb6110f2565b9050600081511415611bd1578192505050611c35565b600082511115611c06578082604051602001611bee9291906141d0565b60405160208183030381529060405292505050611c35565b80611c1085612659565b604051602001611c219291906141d0565b604051602081830303815290604052925050505b919050565b6060611c44610c07565b8210611c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7c906144fc565b60405180910390fd5b600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d1b5780601f10611cf057610100808354040283529160200191611d1b565b820191906000526020600020905b815481529060010190602001808311611cfe57829003601f168201915b50505050509050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b60105481565b611ddc6120bb565b73ffffffffffffffffffffffffffffffffffffffff16611dfa6115ad565b73ffffffffffffffffffffffffffffffffffffffff1614611e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e479061459c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb79061431c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611f886120bb565b73ffffffffffffffffffffffffffffffffffffffff16611fa66115ad565b73ffffffffffffffffffffffffffffffffffffffff1614611ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff39061459c565b60405180910390fd5b6000612006610c07565b905060008211801561201a57506010548211155b612059576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120509061437c565b60405180910390fd5b60005b8281101561207d5761207084828401612591565b808060010191505061205c565b50612093826010546127a090919063ffffffff16565b601081905550505050565b60006120b48260026127f090919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612136836110bb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061218a8260000161280a565b9050919050565b600061219c8261209e565b6121db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d29061447c565b60405180910390fd5b60006121e6836110bb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061225557508373ffffffffffffffffffffffffffffffffffffffff1661223d846109d4565b73ffffffffffffffffffffffffffffffffffffffff16145b8061226657506122658185611d27565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661228f826110bb565b73ffffffffffffffffffffffffffffffffffffffff16146122e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dc906145bc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234c9061439c565b60405180910390fd5b61236083838361281b565b61236b6000826120c3565b6123bc81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061282090919063ffffffff16565b5061240e81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061283a90919063ffffffff16565b50612425818360026128549092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006124958360000183612889565b60001c905092915050565b6000806000806124b386600001866128f6565b915091508160001c8160001c9350935050509250929050565b600080828401905083811015612517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250e9061435c565b60405180910390fd5b8091505092915050565b600080831415612534576000905061258b565b600082840290508284828161254557fe5b0414612586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257d9061455c565b60405180910390fd5b809150505b92915050565b6125ab828260405180602001604052806000815250612979565b5050565b80600990805190602001906125c5929190613188565b5050565b60006125dc846000018460001b846129d4565b60001c90509392505050565b60006125f682600001612a65565b9050919050565b61260884848461226f565b61261484848484612a76565b612653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264a906142fc565b60405180910390fd5b50505050565b606060008214156126a1576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061279b565b600082905060005b600082146126cb578080600101915050600a82816126c357fe5b0491506126a9565b60008167ffffffffffffffff811180156126e457600080fd5b506040519080825280601f01601f1916602001820160405280156127175781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461279357600a848161273857fe5b0660300160f81b8282806001900393508151811061275257fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161278b57fe5b049350612726565b819450505050505b919050565b6000828211156127e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127dc9061441c565b60405180910390fd5b818303905092915050565b6000612802836000018360001b612bda565b905092915050565b600081600001805490509050919050565b505050565b6000612832836000018360001b612bfd565b905092915050565b600061284c836000018360001b612ce5565b905092915050565b6000612880846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612d55565b90509392505050565b6000818360000180549050116128d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cb906142dc565b60405180910390fd5b8260000182815481106128e357fe5b9060005260206000200154905092915050565b60008082846000018054905011612942576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129399061451c565b60405180910390fd5b600084600001848154811061295357fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b6129838383612e31565b6129906000848484612a76565b6129cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c6906142fc565b60405180910390fd5b505050565b60008084600101600085815260200190815260200160002054905060008114158390612a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2d9190614298565b60405180910390fd5b50846000016001820381548110612a4957fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6000612a978473ffffffffffffffffffffffffffffffffffffffff16612fbf565b612aa45760019050612bd2565b6000612b6b63150b7a0260e01b612ab96120bb565b888787604051602401612acf949392919061420f565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518060600160405280603281526020016148fc603291398773ffffffffffffffffffffffffffffffffffffffff16612fd29092919063ffffffff16565b9050600081806020019051810190612b83919061353c565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114612cd95760006001820390506000600186600001805490500390506000866000018281548110612c4857fe5b9060005260206000200154905080876000018481548110612c6557fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612c9d57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612cdf565b60009150505b92915050565b6000612cf18383612fea565b612d4a578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612d4f565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415612dfc57846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050612e2a565b82856000016001830381548110612e0f57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e989061453c565b60405180910390fd5b612eaa8161209e565b15612eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee19061433c565b60405180910390fd5b612ef66000838361281b565b612f4781600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061283a90919063ffffffff16565b50612f5e818360026128549092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060612fe1848460008561300d565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015613052576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130499061445c565b60405180910390fd5b61305b85612fbf565b61309a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130919061465c565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516130c391906141b9565b60006040518083038185875af1925050503d8060008114613100576040519150601f19603f3d011682016040523d82523d6000602084013e613105565b606091505b5091509150613115828286613121565b92505050949350505050565b6060831561313157829050613181565b6000835111156131445782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131789190614298565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826131be5760008555613205565b82601f106131d757805160ff1916838001178555613205565b82800160010185558215613205579182015b828111156132045782518255916020019190600101906131e9565b5b5090506132129190613216565b5090565b5b8082111561322f576000816000905550600101613217565b5090565b6000613246613241846146c8565b614697565b90508281526020810184848401111561325e57600080fd5b61326984828561484a565b509392505050565b600061328461327f846146f8565b614697565b90508281526020810184848401111561329c57600080fd5b6132a784828561484a565b509392505050565b6000813590506132be8161489f565b92915050565b6000813590506132d3816148b6565b92915050565b6000813590506132e8816148cd565b92915050565b6000815190506132fd816148cd565b92915050565b600082601f83011261331457600080fd5b8135613324848260208601613233565b91505092915050565b600082601f83011261333e57600080fd5b813561334e848260208601613271565b91505092915050565b600081359050613366816148e4565b92915050565b60006020828403121561337e57600080fd5b600061338c848285016132af565b91505092915050565b600080604083850312156133a857600080fd5b60006133b6858286016132af565b92505060206133c7858286016132af565b9150509250929050565b6000806000606084860312156133e657600080fd5b60006133f4868287016132af565b9350506020613405868287016132af565b925050604061341686828701613357565b9150509250925092565b6000806000806080858703121561343657600080fd5b6000613444878288016132af565b9450506020613455878288016132af565b935050604061346687828801613357565b925050606085013567ffffffffffffffff81111561348357600080fd5b61348f87828801613303565b91505092959194509250565b600080604083850312156134ae57600080fd5b60006134bc858286016132af565b92505060206134cd858286016132c4565b9150509250929050565b600080604083850312156134ea57600080fd5b60006134f8858286016132af565b925050602061350985828601613357565b9150509250929050565b60006020828403121561352557600080fd5b6000613533848285016132d9565b91505092915050565b60006020828403121561354e57600080fd5b600061355c848285016132ee565b91505092915050565b60006020828403121561357757600080fd5b600082013567ffffffffffffffff81111561359157600080fd5b61359d8482850161332d565b91505092915050565b6000602082840312156135b857600080fd5b60006135c684828501613357565b91505092915050565b60006135db838361419b565b60208301905092915050565b6135f0816147d6565b82525050565b6135ff816147c4565b82525050565b60006136108261474d565b61361a818561477b565b935061362583614728565b8060005b8381101561365657815161363d88826135cf565b97506136488361476e565b925050600181019050613629565b5085935050505092915050565b61366c816147e8565b82525050565b600061367d82614758565b613687818561478c565b9350613697818560208601614859565b6136a08161488e565b840191505092915050565b60006136b682614758565b6136c0818561479d565b93506136d0818560208601614859565b80840191505092915050565b60006136e782614763565b6136f181856147a8565b9350613701818560208601614859565b61370a8161488e565b840191505092915050565b600061372082614763565b61372a81856147b9565b935061373a818560208601614859565b80840191505092915050565b6000815460018116600081146137635760018114613789576137cd565b607f600283041661377481876147a8565b955060ff1983168652602086019350506137cd565b6002820461379781876147a8565b95506137a285614738565b60005b828110156137c4578154818901526001820191506020810190506137a5565b80880195505050505b505092915050565b60006137e26022836147a8565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138486032836147a8565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006138ae6026836147a8565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613914601c836147a8565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613954601b836147a8565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b60006139946020836147a8565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b60006139d46024836147a8565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a3a6019836147a8565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613a7a6020836147a8565b91507f53616c65206d7573742062652061637469766520746f206d696e74204c696f6e6000830152602082019050919050565b6000613aba601f836147a8565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000613afa601e836147a8565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000613b3a6029836147a8565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f66204c696f6e7300000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ba06026836147a8565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c06602c836147a8565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613c6c6021836147a8565b91507f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cd26038836147a8565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613d38602a836147a8565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d9e601a836147a8565b91507f43484f4f53452041204c494f4e2057495448494e2052414e47450000000000006000830152602082019050919050565b6000613dde6022836147a8565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e446020836147a8565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613e846021836147a8565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613eea602c836147a8565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613f506020836147a8565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613f906029836147a8565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ff6602f836147a8565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061405c6021836147a8565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140c26016836147a8565b91507f4c6963656e736520616c7265616479206c6f636b6564000000000000000000006000830152602082019050919050565b60006141026031836147a8565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614168601d836147a8565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b6141a481614840565b82525050565b6141b381614840565b82525050565b60006141c582846136ab565b915081905092915050565b60006141dc8285613715565b91506141e88284613715565b91508190509392505050565b600060208201905061420960008301846135f6565b92915050565b600060808201905061422460008301876135e7565b61423160208301866135f6565b61423e60408301856141aa565b81810360608301526142508184613672565b905095945050505050565b600060208201905081810360008301526142758184613605565b905092915050565b60006020820190506142926000830184613663565b92915050565b600060208201905081810360008301526142b281846136dc565b905092915050565b600060208201905081810360008301526142d48184613746565b905092915050565b600060208201905081810360008301526142f5816137d5565b9050919050565b600060208201905081810360008301526143158161383b565b9050919050565b60006020820190508181036000830152614335816138a1565b9050919050565b6000602082019050818103600083015261435581613907565b9050919050565b6000602082019050818103600083015261437581613947565b9050919050565b6000602082019050818103600083015261439581613987565b9050919050565b600060208201905081810360008301526143b5816139c7565b9050919050565b600060208201905081810360008301526143d581613a2d565b9050919050565b600060208201905081810360008301526143f581613a6d565b9050919050565b6000602082019050818103600083015261441581613aad565b9050919050565b6000602082019050818103600083015261443581613aed565b9050919050565b6000602082019050818103600083015261445581613b2d565b9050919050565b6000602082019050818103600083015261447581613b93565b9050919050565b6000602082019050818103600083015261449581613bf9565b9050919050565b600060208201905081810360008301526144b581613c5f565b9050919050565b600060208201905081810360008301526144d581613cc5565b9050919050565b600060208201905081810360008301526144f581613d2b565b9050919050565b6000602082019050818103600083015261451581613d91565b9050919050565b6000602082019050818103600083015261453581613dd1565b9050919050565b6000602082019050818103600083015261455581613e37565b9050919050565b6000602082019050818103600083015261457581613e77565b9050919050565b6000602082019050818103600083015261459581613edd565b9050919050565b600060208201905081810360008301526145b581613f43565b9050919050565b600060208201905081810360008301526145d581613f83565b9050919050565b600060208201905081810360008301526145f581613fe9565b9050919050565b600060208201905081810360008301526146158161404f565b9050919050565b60006020820190508181036000830152614635816140b5565b9050919050565b60006020820190508181036000830152614655816140f5565b9050919050565b600060208201905081810360008301526146758161415b565b9050919050565b600060208201905061469160008301846141aa565b92915050565b6000604051905081810181811067ffffffffffffffff821117156146be576146bd61488c565b5b8060405250919050565b600067ffffffffffffffff8211156146e3576146e261488c565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156147135761471261488c565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006147cf82614820565b9050919050565b60006147e182614820565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561487757808201518184015260208101905061485c565b83811115614886576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b6148a8816147c4565b81146148b357600080fd5b50565b6148bf816147e8565b81146148ca57600080fd5b50565b6148d6816147f4565b81146148e157600080fd5b50565b6148ed81614840565b81146148f857600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212201c22bc53032fda146b84210033fd69f4ab9b02d31882d6df399652e9a284c20264736f6c63430007060033

Deployed Bytecode Sourcemap

70759:3717:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10553:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54040:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57048:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56547:435;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72040:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55975:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58107:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55687:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72280:89;;;;;;;;;;;;;:::i;:::-;;71434:134;;;;;;;;;;;;;:::i;:::-;;58554:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71002:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71121:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56263:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71068:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73576:793;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72173:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53684:289;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55506:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53314:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69856:148;;;;;;;;;;;;;:::i;:::-;;74377:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70839:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72377:572;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69205:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54209:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70927:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57428:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73394:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58810:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73235:124;;;;;;;;;;;;;:::i;:::-;;54384:879;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72996:178;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57826:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71171:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71212;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70159:281;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71576:456;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10553:200;10683:4;10712:20;:33;10733:11;10712:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10705:40;;10553:200;;;:::o;54040:100::-;54094:13;54127:5;54120:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54040:100;:::o;57048:308::-;57169:7;57216:16;57224:7;57216;:16::i;:::-;57194:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;57324:15;:24;57340:7;57324:24;;;;;;;;;;;;;;;;;;;;;57317:31;;57048:308;;;:::o;56547:435::-;56628:13;56644:23;56659:7;56644:14;:23::i;:::-;56628:39;;56692:5;56686:11;;:2;:11;;;;56678:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;56786:5;56770:21;;:12;:10;:12::i;:::-;:21;;;:86;;;;56812:44;56836:5;56843:12;:10;:12::i;:::-;56812:23;:44::i;:::-;56770:86;56748:192;;;;;;;;;;;;:::i;:::-;;;;;;;;;56953:21;56962:2;56966:7;56953:8;:21::i;:::-;56547:435;;;:::o;72040:125::-;69436:12;:10;:12::i;:::-;69425:23;;:7;:5;:7::i;:::-;:23;;;69417:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72143:14:::1;72125:15;:32;;;;;;;;;;;;:::i;:::-;;72040:125:::0;:::o;55975:211::-;56036:7;56157:21;:12;:19;:21::i;:::-;56150:28;;55975:211;:::o;58107:376::-;58316:41;58335:12;:10;:12::i;:::-;58349:7;58316:18;:41::i;:::-;58294:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;58447:28;58457:4;58463:2;58467:7;58447:9;:28::i;:::-;58107:376;;;:::o;55687:212::-;55829:7;55861:30;55885:5;55861:13;:20;55875:5;55861:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;55854:37;;55687:212;;;;:::o;72280:89::-;69436:12;:10;:12::i;:::-;69425:23;;:7;:5;:7::i;:::-;:23;;;69417:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72349:12:::1;;;;;;;;;;;72348:13;72333:12;;:28;;;;;;;;;;;;;;;;;;72280:89::o:0;71434:134::-;69436:12;:10;:12::i;:::-;69425:23;;:7;:5;:7::i;:::-;:23;;;69417:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71482:15:::1;71500:21;71482:39;;71532:10;:19;;:28;71552:7;71532:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;69496:1;71434:134::o:0;58554:185::-;58692:39;58709:4;58715:2;58719:7;58692:39;;;;;;;;;;;;:16;:39::i;:::-;58554:185;;;:::o;71002:44::-;;;;:::o;71121:41::-;71157:5;71121:41;:::o;56263:222::-;56383:7;56409:15;56430:22;56446:5;56430:12;:15;;:22;;;;:::i;:::-;56408:44;;;56470:7;56463:14;;;56263:222;;;:::o;71068:44::-;71110:2;71068:44;:::o;73576:793::-;73652:12;;;;;;;;;;;73644:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;73751:1;73734:14;:18;:55;;;;;71110:2;73756:14;:33;;73734:55;73712:138;;;;;;;;;;;;:::i;:::-;;;;;;;;;71157:5;73883:33;73901:14;73883:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:46;;73861:137;;;;;;;;;;;;:::i;:::-;;;;;;;;;74044:29;74058:14;74044:9;;:13;;:29;;;;:::i;:::-;74031:9;:42;;74009:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;74150:9;74145:217;74169:14;74165:1;:18;74145:217;;;74205:17;74225:13;:11;:13::i;:::-;74205:33;;71157:5;74257:13;:11;:13::i;:::-;:25;74253:98;;;74303:32;74313:10;74325:9;74303;:32::i;:::-;74253:98;74145:217;74185:3;;;;;;;74145:217;;;;73576:793;:::o;72173:99::-;69436:12;:10;:12::i;:::-;69425:23;;:7;:5;:7::i;:::-;:23;;;69417:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72244:20:::1;72256:7;72244:11;:20::i;:::-;72173:99:::0;:::o;53684:289::-;53801:7;53846:119;53881:7;53846:119;;;;;;;;;;;;;;;;;:12;:16;;:119;;;;;:::i;:::-;53826:139;;53684:289;;;:::o;55506:97::-;55554:13;55587:8;55580:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55506:97;:::o;53314:308::-;53431:7;53495:1;53478:19;;:5;:19;;;;53456:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;53585:29;:13;:20;53599:5;53585:20;;;;;;;;;;;;;;;:27;:29::i;:::-;53578:36;;53314:308;;;:::o;69856:148::-;69436:12;:10;:12::i;:::-;69425:23;;:7;:5;:7::i;:::-;:23;;;69417:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69963:1:::1;69926:40;;69947:6;;;;;;;;;;;69926:40;;;;;;;;;;;;69994:1;69977:6;;:19;;;;;;;;;;;;;;;;;;69856:148::o:0;74377:96::-;69436:12;:10;:12::i;:::-;69425:23;;:7;:5;:7::i;:::-;:23;;;69417:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;74457:8:::1;74445:9;:20;;;;74377:96:::0;:::o;70839:34::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;72377:572::-;72466:16;72500:18;72521:17;72531:6;72521:9;:17::i;:::-;72500:38;;72567:1;72553:10;:15;72549:393;;;72644:1;72630:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72623:23;;;;;72549:393;72679:23;72719:10;72705:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72679:51;;72745:13;72773:130;72797:10;72789:5;:18;72773:130;;;72853:34;72873:6;72881:5;72853:19;:34::i;:::-;72837:6;72844:5;72837:13;;;;;;;;;;;;;:50;;;;;72809:7;;;;;;;72773:130;;;72924:6;72917:13;;;;;72377:572;;;;:::o;69205:87::-;69251:7;69278:6;;;;;;;;;;;69271:13;;69205:87;:::o;54209:104::-;54265:13;54298:7;54291:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54209:104;:::o;70927:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57428:327::-;57575:12;:10;:12::i;:::-;57563:24;;:8;:24;;;;57555:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;57675:8;57630:18;:32;57649:12;:10;:12::i;:::-;57630:32;;;;;;;;;;;;;;;:42;57663:8;57630:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;57728:8;57699:48;;57714:12;:10;:12::i;:::-;57699:48;;;57738:8;57699:48;;;;;;:::i;:::-;;;;;;;;57428:327;;:::o;73394:174::-;69436:12;:10;:12::i;:::-;69425:23;;:7;:5;:7::i;:::-;:23;;;69417:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;73494:5:::1;73477:22;;:13;;;;;;;;;;;:22;;;73469:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;73552:8;73537:12;:23;;;;;;;;;;;;:::i;:::-;;73394:174:::0;:::o;58810:365::-;58999:41;59018:12;:10;:12::i;:::-;59032:7;58999:18;:41::i;:::-;58977:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;59128:39;59142:4;59148:2;59152:7;59161:5;59128:13;:39::i;:::-;58810:365;;;;:::o;73235:124::-;69436:12;:10;:12::i;:::-;69425:23;;:7;:5;:7::i;:::-;:23;;;69417:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;73302:4:::1;73286:13;;:20;;;;;;;;;;;;;;;;;;73322:29;73338:12;73322:29;;;;;;:::i;:::-;;;;;;;;73235:124::o:0;54384:879::-;54502:13;54555:16;54563:7;54555;:16::i;:::-;54533:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;54659:23;54685:10;:19;54696:7;54685:19;;;;;;;;;;;54659:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54715:18;54736:9;:7;:9::i;:::-;54715:30;;54843:1;54827:4;54821:18;:23;54817:72;;;54868:9;54861:16;;;;;;54817:72;55019:1;54999:9;54993:23;:27;54989:108;;;55068:4;55074:9;55051:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55037:48;;;;;;54989:108;55229:4;55235:18;:7;:16;:18::i;:::-;55212:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55198:57;;;;54384:879;;;;:::o;72996:178::-;73052:13;73092;:11;:13::i;:::-;73086:3;:19;73078:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;73154:12;73147:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72996:178;;;:::o;57826:214::-;57968:4;57997:18;:25;58016:5;57997:25;;;;;;;;;;;;;;;:35;58023:8;57997:35;;;;;;;;;;;;;;;;;;;;;;;;;57990:42;;57826:214;;;;:::o;71171:32::-;;;;;;;;;;;;;:::o;71212:::-;;;;:::o;70159:281::-;69436:12;:10;:12::i;:::-;69425:23;;:7;:5;:7::i;:::-;:23;;;69417:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70282:1:::1;70262:22;;:8;:22;;;;70240:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;70395:8;70366:38;;70387:6;;;;;;;;;;;70366:38;;;;;;;;;;;;70424:8;70415:6;;:17;;;;;;;;;;;;;;;;;;70159:281:::0;:::o;71576:456::-;69436:12;:10;:12::i;:::-;69425:23;;:7;:5;:7::i;:::-;:23;;;69417:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71686:14:::1;71703:13;:11;:13::i;:::-;71686:30;;71766:1;71749:14;:18;:51;;;;;71789:11;;71771:14;:29;;71749:51;71727:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;71876:9;71871:98;71895:14;71891:1;:18;71871:98;;;71931:26;71941:3;71955:1;71946:6;:10;71931:9;:26::i;:::-;71911:3;;;;;;;71871:98;;;;71993:31;72009:14;71993:11;;:15;;:31;;;;:::i;:::-;71979:11;:45;;;;69496:1;71576:456:::0;;:::o;60722:127::-;60787:4;60811:30;60833:7;60811:12;:21;;:30;;;;:::i;:::-;60804:37;;60722:127;;;:::o;697:106::-;750:15;785:10;778:17;;697:106;:::o;67136:192::-;67238:2;67211:15;:24;67227:7;67211:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;67294:7;67290:2;67256:46;;67265:23;67280:7;67265:14;:23::i;:::-;67256:46;;;;;;;;;;;;67136:192;;:::o;46370:155::-;46466:7;46498:19;46506:3;:10;;46498:7;:19::i;:::-;46491:26;;46370:155;;;:::o;61016:459::-;61145:4;61189:16;61197:7;61189;:16::i;:::-;61167:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;61288:13;61304:23;61319:7;61304:14;:23::i;:::-;61288:39;;61357:5;61346:16;;:7;:16;;;:64;;;;61403:7;61379:31;;:20;61391:7;61379:11;:20::i;:::-;:31;;;61346:64;:120;;;;61427:39;61451:5;61458:7;61427:23;:39::i;:::-;61346:120;61338:129;;;61016:459;;;;:::o;64327:670::-;64500:4;64473:31;;:23;64488:7;64473:14;:23::i;:::-;:31;;;64451:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;64624:1;64610:16;;:2;:16;;;;64602:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;64680:39;64701:4;64707:2;64711:7;64680:20;:39::i;:::-;64784:29;64801:1;64805:7;64784:8;:29::i;:::-;64826:35;64853:7;64826:13;:19;64840:4;64826:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;64872:30;64894:7;64872:13;:17;64886:2;64872:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;64915:29;64932:7;64941:2;64915:12;:16;;:29;;;;;:::i;:::-;;64981:7;64977:2;64962:27;;64971:4;64962:27;;;;;;;;;;;;64327:670;;;:::o;37812:169::-;37910:7;37950:22;37954:3;:10;;37966:5;37950:3;:22::i;:::-;37942:31;;37935:38;;37812:169;;;;:::o;46873:268::-;46980:7;46989;47015:11;47028:13;47045:22;47049:3;:10;;47061:5;47045:3;:22::i;:::-;47014:53;;;;47094:3;47086:12;;47124:5;47116:14;;47078:55;;;;;;46873:268;;;;;:::o;14321:179::-;14379:7;14399:9;14415:1;14411;:5;14399:17;;14440:1;14435;:6;;14427:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;14491:1;14484:8;;;14321:179;;;;:::o;15200:220::-;15258:7;15287:1;15282;:6;15278:20;;;15297:1;15290:8;;;;15278:20;15309:9;15325:1;15321;:5;15309:17;;15354:1;15349;15345;:5;;;;;;:10;15337:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;15411:1;15404:8;;;15200:220;;;;;:::o;61818:110::-;61894:26;61904:2;61908:7;61894:26;;;;;;;;;;;;:9;:26::i;:::-;61818:110;;:::o;65658:100::-;65742:8;65731;:19;;;;;;;;;;;;:::i;:::-;;65658:100;:::o;48255:292::-;48396:7;48478:44;48483:3;:10;;48503:3;48495:12;;48509;48478:4;:44::i;:::-;48470:53;;48416:123;;48255:292;;;;;:::o;37344:114::-;37404:7;37431:19;37439:3;:10;;37431:7;:19::i;:::-;37424:26;;37344:114;;;:::o;60057:352::-;60214:28;60224:4;60230:2;60234:7;60214:9;:28::i;:::-;60275:48;60298:4;60304:2;60308:7;60317:5;60275:22;:48::i;:::-;60253:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;60057:352;;;;:::o;48794:748::-;48850:13;49080:1;49071:5;:10;49067:53;;;49098:10;;;;;;;;;;;;;;;;;;;;;49067:53;49130:12;49145:5;49130:20;;49161:14;49186:78;49201:1;49193:4;:9;49186:78;;49219:8;;;;;;;49250:2;49242:10;;;;;;;;;49186:78;;;49274:19;49306:6;49296:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49274:39;;49324:13;49349:1;49340:6;:10;49324:26;;49368:5;49361:12;;49384:119;49399:1;49391:4;:9;49384:119;;49461:2;49454:4;:9;;;;;;49448:2;:16;49435:31;;49417:6;49424:7;;;;;;;49417:15;;;;;;;;;;;:49;;;;;;;;;;;49489:2;49481:10;;;;;;;;;49384:119;;;49527:6;49513:21;;;;;;48794:748;;;;:::o;14783:158::-;14841:7;14874:1;14869;:6;;14861:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;14932:1;14928;:5;14921:12;;14783:158;;;;:::o;46099:183::-;46210:4;46239:35;46249:3;:10;;46269:3;46261:12;;46239:9;:35::i;:::-;46232:42;;46099:183;;;;:::o;42715:110::-;42771:7;42798:3;:12;;:19;;;;42791:26;;42715:110;;;:::o;67941:126::-;;;;:::o;36834:160::-;36922:4;36951:35;36959:3;:10;;36979:5;36971:14;;36951:7;:35::i;:::-;36944:42;;36834:160;;;;:::o;36527:131::-;36594:4;36618:32;36623:3;:10;;36643:5;36635:14;;36618:4;:32::i;:::-;36611:39;;36527:131;;;;:::o;45465:219::-;45588:4;45612:64;45617:3;:10;;45637:3;45629:12;;45667:5;45651:23;;45643:32;;45612:4;:64::i;:::-;45605:71;;45465:219;;;;;:::o;32478:273::-;32572:7;32640:5;32619:3;:11;;:18;;;;:26;32597:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;32725:3;:11;;32737:5;32725:18;;;;;;;;;;;;;;;;32718:25;;32478:273;;;;:::o;43190:348::-;43284:7;43293;43362:5;43340:3;:12;;:19;;;;:27;43318:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;43442:22;43467:3;:12;;43480:5;43467:19;;;;;;;;;;;;;;;;;;43442:44;;43505:5;:10;;;43517:5;:12;;;43497:33;;;;;43190:348;;;;;:::o;62155:321::-;62285:18;62291:2;62295:7;62285:5;:18::i;:::-;62336:54;62367:1;62371:2;62375:7;62384:5;62336:22;:54::i;:::-;62314:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;62155:321;;;:::o;44788:353::-;44916:7;44936:16;44955:3;:12;;:17;44968:3;44955:17;;;;;;;;;;;;44936:36;;45003:1;44991:8;:13;;45006:12;44983:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;45073:3;:12;;45097:1;45086:8;:12;45073:26;;;;;;;;;;;;;;;;;;:33;;;45066:40;;;44788:353;;;;;:::o;32015:109::-;32071:7;32098:3;:11;;:18;;;;32091:25;;32015:109;;;:::o;66323:694::-;66478:4;66500:15;:2;:13;;;:15::i;:::-;66495:60;;66539:4;66532:11;;;;66495:60;66565:23;66591:313;66662:45;;;66726:12;:10;:12::i;:::-;66757:4;66780:7;66806:5;66621:205;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66591:313;;;;;;;;;;;;;;;;;:2;:15;;;;:313;;;;;:::i;:::-;66565:339;;66915:13;66942:10;66931:32;;;;;;;;;;;;:::i;:::-;66915:48;;50317:10;66992:16;;66982:26;;;:6;:26;;;;66974:35;;;;66323:694;;;;;;;:::o;42463:157::-;42561:4;42611:1;42590:3;:12;;:17;42603:3;42590:17;;;;;;;;;;;;:22;;42583:29;;42463:157;;;;:::o;30125:1557::-;30191:4;30309:18;30330:3;:12;;:19;30343:5;30330:19;;;;;;;;;;;;30309:40;;30380:1;30366:10;:15;30362:1313;;30741:21;30778:1;30765:10;:14;30741:38;;30794:17;30835:1;30814:3;:11;;:18;;;;:22;30794:42;;31081:17;31101:3;:11;;31113:9;31101:22;;;;;;;;;;;;;;;;31081:42;;31247:9;31218:3;:11;;31230:13;31218:26;;;;;;;;;;;;;;;:38;;;;31366:1;31350:13;:17;31324:3;:12;;:23;31337:9;31324:23;;;;;;;;;;;:43;;;;31476:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;31571:3;:12;;:19;31584:5;31571:19;;;;;;;;;;;31564:26;;;31614:4;31607:11;;;;;;;;30362:1313;31658:5;31651:12;;;30125:1557;;;;;:::o;29535:414::-;29598:4;29620:21;29630:3;29635:5;29620:9;:21::i;:::-;29615:327;;29658:3;:11;;29675:5;29658:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29841:3;:11;;:18;;;;29819:3;:12;;:19;29832:5;29819:19;;;;;;;;;;;:40;;;;29881:4;29874:11;;;;29615:327;29925:5;29918:12;;29535:414;;;;;:::o;39905:737::-;40015:4;40131:16;40150:3;:12;;:17;40163:3;40150:17;;;;;;;;;;;;40131:36;;40196:1;40184:8;:13;40180:455;;;40264:3;:12;;40282:36;;;;;;;;40298:3;40282:36;;;;40311:5;40282:36;;;40264:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40477:3;:12;;:19;;;;40457:3;:12;;:17;40470:3;40457:17;;;;;;;;;;;:39;;;;40518:4;40511:11;;;;;40180:455;40591:5;40555:3;:12;;40579:1;40568:8;:12;40555:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;40618:5;40611:12;;;39905:737;;;;;;:::o;62812:404::-;62906:1;62892:16;;:2;:16;;;;62884:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;62965:16;62973:7;62965;:16::i;:::-;62964:17;62956:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;63027:45;63056:1;63060:2;63064:7;63027:20;:45::i;:::-;63085:30;63107:7;63085:13;:17;63099:2;63085:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;63128:29;63145:7;63154:2;63128:12;:16;;:29;;;;;:::i;:::-;;63200:7;63196:2;63175:33;;63192:1;63175:33;;;;;;;;;;;;62812:404;;:::o;19860:444::-;19920:4;20128:12;20252:7;20240:20;20232:28;;20295:1;20288:4;:8;20281:15;;;19860:444;;;:::o;22897:229::-;23034:12;23066:52;23088:6;23096:4;23102:1;23105:12;23066:21;:52::i;:::-;23059:59;;22897:229;;;;;:::o;31768:161::-;31868:4;31920:1;31897:3;:12;;:19;31910:5;31897:19;;;;;;;;;;;;:24;;31890:31;;31768:161;;;;:::o;24113:632::-;24283:12;24355:5;24330:21;:30;;24308:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;24445:18;24456:6;24445:10;:18::i;:::-;24437:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;24571:12;24585:23;24612:6;:11;;24631:5;24652:4;24612:55;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24570:97;;;;24685:52;24703:7;24712:10;24724:12;24685:17;:52::i;:::-;24678:59;;;;24113:632;;;;;;:::o;27036:777::-;27186:12;27215:7;27211:595;;;27246:10;27239:17;;;;27211:595;27380:1;27360:10;:17;:21;27356:439;;;27623:10;27617:17;27684:15;27671:10;27667:2;27663:19;27656:44;27571:148;27766:12;27759:20;;;;;;;;;;;:::i;:::-;;;;;;;;27036:777;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:260::-;;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:52;5116:7;5107:6;5096:9;5092:22;5072:52;:::i;:::-;5062:62;;5018:116;4946:195;;;;:::o;5147:282::-;;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5281:1;5278;5271:12;5233:2;5324:1;5349:63;5404:7;5395:6;5384:9;5380:22;5349:63;:::i;:::-;5339:73;;5295:127;5223:206;;;;:::o;5435:375::-;;5553:2;5541:9;5532:7;5528:23;5524:32;5521:2;;;5569:1;5566;5559:12;5521:2;5640:1;5629:9;5625:17;5612:31;5670:18;5662:6;5659:30;5656:2;;;5702:1;5699;5692:12;5656:2;5730:63;5785:7;5776:6;5765:9;5761:22;5730:63;:::i;:::-;5720:73;;5583:220;5511:299;;;;:::o;5816:262::-;;5924:2;5912:9;5903:7;5899:23;5895:32;5892:2;;;5940:1;5937;5930:12;5892:2;5983:1;6008:53;6053:7;6044:6;6033:9;6029:22;6008:53;:::i;:::-;5998:63;;5954:117;5882:196;;;;:::o;6084:179::-;;6174:46;6216:3;6208:6;6174:46;:::i;:::-;6252:4;6247:3;6243:14;6229:28;;6164:99;;;;:::o;6269:142::-;6372:32;6398:5;6372:32;:::i;:::-;6367:3;6360:45;6350:61;;:::o;6417:118::-;6504:24;6522:5;6504:24;:::i;:::-;6499:3;6492:37;6482:53;;:::o;6571:732::-;;6719:54;6767:5;6719:54;:::i;:::-;6789:86;6868:6;6863:3;6789:86;:::i;:::-;6782:93;;6899:56;6949:5;6899:56;:::i;:::-;6978:7;7009:1;6994:284;7019:6;7016:1;7013:13;6994:284;;;7095:6;7089:13;7122:63;7181:3;7166:13;7122:63;:::i;:::-;7115:70;;7208:60;7261:6;7208:60;:::i;:::-;7198:70;;7054:224;7041:1;7038;7034:9;7029:14;;6994:284;;;6998:14;7294:3;7287:10;;6695:608;;;;;;;:::o;7309:109::-;7390:21;7405:5;7390:21;:::i;:::-;7385:3;7378:34;7368:50;;:::o;7424:360::-;;7538:38;7570:5;7538:38;:::i;:::-;7592:70;7655:6;7650:3;7592:70;:::i;:::-;7585:77;;7671:52;7716:6;7711:3;7704:4;7697:5;7693:16;7671:52;:::i;:::-;7748:29;7770:6;7748:29;:::i;:::-;7743:3;7739:39;7732:46;;7514:270;;;;;:::o;7790:373::-;;7922:38;7954:5;7922:38;:::i;:::-;7976:88;8057:6;8052:3;7976:88;:::i;:::-;7969:95;;8073:52;8118:6;8113:3;8106:4;8099:5;8095:16;8073:52;:::i;:::-;8150:6;8145:3;8141:16;8134:23;;7898:265;;;;;:::o;8169:364::-;;8285:39;8318:5;8285:39;:::i;:::-;8340:71;8404:6;8399:3;8340:71;:::i;:::-;8333:78;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:29;8519:6;8497:29;:::i;:::-;8492:3;8488:39;8481:46;;8261:272;;;;;:::o;8539:377::-;;8673:39;8706:5;8673:39;:::i;:::-;8728:89;8810:6;8805:3;8728:89;:::i;:::-;8721:96;;8826:52;8871:6;8866:3;8859:4;8852:5;8848:16;8826:52;:::i;:::-;8903:6;8898:3;8894:16;8887:23;;8649:267;;;;;:::o;8946:937::-;;9068:5;9062:12;9105:1;9094:9;9090:17;9121:1;9116:281;;;;9411:1;9406:471;;;;9083:794;;9116:281;9206:4;9202:1;9191:9;9187:17;9183:28;9231:71;9295:6;9290:3;9231:71;:::i;:::-;9224:78;;9346:4;9342:9;9331;9327:25;9322:3;9315:38;9382:4;9377:3;9373:14;9366:21;;9123:274;9116:281;;9406:471;9487:1;9476:9;9472:17;9509:71;9573:6;9568:3;9509:71;:::i;:::-;9502:78;;9608:38;9640:5;9608:38;:::i;:::-;9668:1;9682:154;9696:6;9693:1;9690:13;9682:154;;;9770:7;9764:14;9760:1;9755:3;9751:11;9744:35;9820:1;9811:7;9807:15;9796:26;;9718:4;9715:1;9711:12;9706:17;;9682:154;;;9865:1;9860:3;9856:11;9849:18;;9413:464;;;9083:794;;9035:848;;;;;:::o;9889:366::-;;10052:67;10116:2;10111:3;10052:67;:::i;:::-;10045:74;;10149:34;10145:1;10140:3;10136:11;10129:55;10215:4;10210:2;10205:3;10201:12;10194:26;10246:2;10241:3;10237:12;10230:19;;10035:220;;;:::o;10261:382::-;;10424:67;10488:2;10483:3;10424:67;:::i;:::-;10417:74;;10521:34;10517:1;10512:3;10508:11;10501:55;10587:20;10582:2;10577:3;10573:12;10566:42;10634:2;10629:3;10625:12;10618:19;;10407:236;;;:::o;10649:370::-;;10812:67;10876:2;10871:3;10812:67;:::i;:::-;10805:74;;10909:34;10905:1;10900:3;10896:11;10889:55;10975:8;10970:2;10965:3;10961:12;10954:30;11010:2;11005:3;11001:12;10994:19;;10795:224;;;:::o;11025:326::-;;11188:67;11252:2;11247:3;11188:67;:::i;:::-;11181:74;;11285:30;11281:1;11276:3;11272:11;11265:51;11342:2;11337:3;11333:12;11326:19;;11171:180;;;:::o;11357:325::-;;11520:67;11584:2;11579:3;11520:67;:::i;:::-;11513:74;;11617:29;11613:1;11608:3;11604:11;11597:50;11673:2;11668:3;11664:12;11657:19;;11503:179;;;:::o;11688:330::-;;11851:67;11915:2;11910:3;11851:67;:::i;:::-;11844:74;;11948:34;11944:1;11939:3;11935:11;11928:55;12009:2;12004:3;12000:12;11993:19;;11834:184;;;:::o;12024:368::-;;12187:67;12251:2;12246:3;12187:67;:::i;:::-;12180:74;;12284:34;12280:1;12275:3;12271:11;12264:55;12350:6;12345:2;12340:3;12336:12;12329:28;12383:2;12378:3;12374:12;12367:19;;12170:222;;;:::o;12398:323::-;;12561:67;12625:2;12620:3;12561:67;:::i;:::-;12554:74;;12658:27;12654:1;12649:3;12645:11;12638:48;12712:2;12707:3;12703:12;12696:19;;12544:177;;;:::o;12727:330::-;;12890:67;12954:2;12949:3;12890:67;:::i;:::-;12883:74;;12987:34;12983:1;12978:3;12974:11;12967:55;13048:2;13043:3;13039:12;13032:19;;12873:184;;;:::o;13063:329::-;;13226:67;13290:2;13285:3;13226:67;:::i;:::-;13219:74;;13323:33;13319:1;13314:3;13310:11;13303:54;13383:2;13378:3;13374:12;13367:19;;13209:183;;;:::o;13398:328::-;;13561:67;13625:2;13620:3;13561:67;:::i;:::-;13554:74;;13658:32;13654:1;13649:3;13645:11;13638:53;13717:2;13712:3;13708:12;13701:19;;13544:182;;;:::o;13732:373::-;;13895:67;13959:2;13954:3;13895:67;:::i;:::-;13888:74;;13992:34;13988:1;13983:3;13979:11;13972:55;14058:11;14053:2;14048:3;14044:12;14037:33;14096:2;14091:3;14087:12;14080:19;;13878:227;;;:::o;14111:370::-;;14274:67;14338:2;14333:3;14274:67;:::i;:::-;14267:74;;14371:34;14367:1;14362:3;14358:11;14351:55;14437:8;14432:2;14427:3;14423:12;14416:30;14472:2;14467:3;14463:12;14456:19;;14257:224;;;:::o;14487:376::-;;14650:67;14714:2;14709:3;14650:67;:::i;:::-;14643:74;;14747:34;14743:1;14738:3;14734:11;14727:55;14813:14;14808:2;14803:3;14799:12;14792:36;14854:2;14849:3;14845:12;14838:19;;14633:230;;;:::o;14869:365::-;;15032:67;15096:2;15091:3;15032:67;:::i;:::-;15025:74;;15129:34;15125:1;15120:3;15116:11;15109:55;15195:3;15190:2;15185:3;15181:12;15174:25;15225:2;15220:3;15216:12;15209:19;;15015:219;;;:::o;15240:388::-;;15403:67;15467:2;15462:3;15403:67;:::i;:::-;15396:74;;15500:34;15496:1;15491:3;15487:11;15480:55;15566:26;15561:2;15556:3;15552:12;15545:48;15619:2;15614:3;15610:12;15603:19;;15386:242;;;:::o;15634:374::-;;15797:67;15861:2;15856:3;15797:67;:::i;:::-;15790:74;;15894:34;15890:1;15885:3;15881:11;15874:55;15960:12;15955:2;15950:3;15946:12;15939:34;15999:2;15994:3;15990:12;15983:19;;15780:228;;;:::o;16014:324::-;;16177:67;16241:2;16236:3;16177:67;:::i;:::-;16170:74;;16274:28;16270:1;16265:3;16261:11;16254:49;16329:2;16324:3;16320:12;16313:19;;16160:178;;;:::o;16344:366::-;;16507:67;16571:2;16566:3;16507:67;:::i;:::-;16500:74;;16604:34;16600:1;16595:3;16591:11;16584:55;16670:4;16665:2;16660:3;16656:12;16649:26;16701:2;16696:3;16692:12;16685:19;;16490:220;;;:::o;16716:330::-;;16879:67;16943:2;16938:3;16879:67;:::i;:::-;16872:74;;16976:34;16972:1;16967:3;16963:11;16956:55;17037:2;17032:3;17028:12;17021:19;;16862:184;;;:::o;17052:365::-;;17215:67;17279:2;17274:3;17215:67;:::i;:::-;17208:74;;17312:34;17308:1;17303:3;17299:11;17292:55;17378:3;17373:2;17368:3;17364:12;17357:25;17408:2;17403:3;17399:12;17392:19;;17198:219;;;:::o;17423:376::-;;17586:67;17650:2;17645:3;17586:67;:::i;:::-;17579:74;;17683:34;17679:1;17674:3;17670:11;17663:55;17749:14;17744:2;17739:3;17735:12;17728:36;17790:2;17785:3;17781:12;17774:19;;17569:230;;;:::o;17805:330::-;;17968:67;18032:2;18027:3;17968:67;:::i;:::-;17961:74;;18065:34;18061:1;18056:3;18052:11;18045:55;18126:2;18121:3;18117:12;18110:19;;17951:184;;;:::o;18141:373::-;;18304:67;18368:2;18363:3;18304:67;:::i;:::-;18297:74;;18401:34;18397:1;18392:3;18388:11;18381:55;18467:11;18462:2;18457:3;18453:12;18446:33;18505:2;18500:3;18496:12;18489:19;;18287:227;;;:::o;18520:379::-;;18683:67;18747:2;18742:3;18683:67;:::i;:::-;18676:74;;18780:34;18776:1;18771:3;18767:11;18760:55;18846:17;18841:2;18836:3;18832:12;18825:39;18890:2;18885:3;18881:12;18874:19;;18666:233;;;:::o;18905:365::-;;19068:67;19132:2;19127:3;19068:67;:::i;:::-;19061:74;;19165:34;19161:1;19156:3;19152:11;19145:55;19231:3;19226:2;19221:3;19217:12;19210:25;19261:2;19256:3;19252:12;19245:19;;19051:219;;;:::o;19276:320::-;;19439:67;19503:2;19498:3;19439:67;:::i;:::-;19432:74;;19536:24;19532:1;19527:3;19523:11;19516:45;19587:2;19582:3;19578:12;19571:19;;19422:174;;;:::o;19602:381::-;;19765:67;19829:2;19824:3;19765:67;:::i;:::-;19758:74;;19862:34;19858:1;19853:3;19849:11;19842:55;19928:19;19923:2;19918:3;19914:12;19907:41;19974:2;19969:3;19965:12;19958:19;;19748:235;;;:::o;19989:327::-;;20152:67;20216:2;20211:3;20152:67;:::i;:::-;20145:74;;20249:31;20245:1;20240:3;20236:11;20229:52;20307:2;20302:3;20298:12;20291:19;;20135:181;;;:::o;20322:108::-;20399:24;20417:5;20399:24;:::i;:::-;20394:3;20387:37;20377:53;;:::o;20436:118::-;20523:24;20541:5;20523:24;:::i;:::-;20518:3;20511:37;20501:53;;:::o;20560:271::-;;20712:93;20801:3;20792:6;20712:93;:::i;:::-;20705:100;;20822:3;20815:10;;20694:137;;;;:::o;20837:435::-;;21039:95;21130:3;21121:6;21039:95;:::i;:::-;21032:102;;21151:95;21242:3;21233:6;21151:95;:::i;:::-;21144:102;;21263:3;21256:10;;21021:251;;;;;:::o;21278:222::-;;21409:2;21398:9;21394:18;21386:26;;21422:71;21490:1;21479:9;21475:17;21466:6;21422:71;:::i;:::-;21376:124;;;;:::o;21506:672::-;;21755:3;21744:9;21740:19;21732:27;;21769:87;21853:1;21842:9;21838:17;21829:6;21769:87;:::i;:::-;21866:72;21934:2;21923:9;21919:18;21910:6;21866:72;:::i;:::-;21948;22016:2;22005:9;22001:18;21992:6;21948:72;:::i;:::-;22067:9;22061:4;22057:20;22052:2;22041:9;22037:18;22030:48;22095:76;22166:4;22157:6;22095:76;:::i;:::-;22087:84;;21722:456;;;;;;;:::o;22184:373::-;;22365:2;22354:9;22350:18;22342:26;;22414:9;22408:4;22404:20;22400:1;22389:9;22385:17;22378:47;22442:108;22545:4;22536:6;22442:108;:::i;:::-;22434:116;;22332:225;;;;:::o;22563:210::-;;22688:2;22677:9;22673:18;22665:26;;22701:65;22763:1;22752:9;22748:17;22739:6;22701:65;:::i;:::-;22655:118;;;;:::o;22779:313::-;;22930:2;22919:9;22915:18;22907:26;;22979:9;22973:4;22969:20;22965:1;22954:9;22950:17;22943:47;23007:78;23080:4;23071:6;23007:78;:::i;:::-;22999:86;;22897:195;;;;:::o;23098:307::-;;23246:2;23235:9;23231:18;23223:26;;23295:9;23289:4;23285:20;23281:1;23270:9;23266:17;23259:47;23323:75;23393:4;23384:6;23323:75;:::i;:::-;23315:83;;23213:192;;;;:::o;23411:419::-;;23615:2;23604:9;23600:18;23592:26;;23664:9;23658:4;23654:20;23650:1;23639:9;23635:17;23628:47;23692:131;23818:4;23692:131;:::i;:::-;23684:139;;23582:248;;;:::o;23836:419::-;;24040:2;24029:9;24025:18;24017:26;;24089:9;24083:4;24079:20;24075:1;24064:9;24060:17;24053:47;24117:131;24243:4;24117:131;:::i;:::-;24109:139;;24007:248;;;:::o;24261:419::-;;24465:2;24454:9;24450:18;24442:26;;24514:9;24508:4;24504:20;24500:1;24489:9;24485:17;24478:47;24542:131;24668:4;24542:131;:::i;:::-;24534:139;;24432:248;;;:::o;24686:419::-;;24890:2;24879:9;24875:18;24867:26;;24939:9;24933:4;24929:20;24925:1;24914:9;24910:17;24903:47;24967:131;25093:4;24967:131;:::i;:::-;24959:139;;24857:248;;;:::o;25111:419::-;;25315:2;25304:9;25300:18;25292:26;;25364:9;25358:4;25354:20;25350:1;25339:9;25335:17;25328:47;25392:131;25518:4;25392:131;:::i;:::-;25384:139;;25282:248;;;:::o;25536:419::-;;25740:2;25729:9;25725:18;25717:26;;25789:9;25783:4;25779:20;25775:1;25764:9;25760:17;25753:47;25817:131;25943:4;25817:131;:::i;:::-;25809:139;;25707:248;;;:::o;25961:419::-;;26165:2;26154:9;26150:18;26142:26;;26214:9;26208:4;26204:20;26200:1;26189:9;26185:17;26178:47;26242:131;26368:4;26242:131;:::i;:::-;26234:139;;26132:248;;;:::o;26386:419::-;;26590:2;26579:9;26575:18;26567:26;;26639:9;26633:4;26629:20;26625:1;26614:9;26610:17;26603:47;26667:131;26793:4;26667:131;:::i;:::-;26659:139;;26557:248;;;:::o;26811:419::-;;27015:2;27004:9;27000:18;26992:26;;27064:9;27058:4;27054:20;27050:1;27039:9;27035:17;27028:47;27092:131;27218:4;27092:131;:::i;:::-;27084:139;;26982:248;;;:::o;27236:419::-;;27440:2;27429:9;27425:18;27417:26;;27489:9;27483:4;27479:20;27475:1;27464:9;27460:17;27453:47;27517:131;27643:4;27517:131;:::i;:::-;27509:139;;27407:248;;;:::o;27661:419::-;;27865:2;27854:9;27850:18;27842:26;;27914:9;27908:4;27904:20;27900:1;27889:9;27885:17;27878:47;27942:131;28068:4;27942:131;:::i;:::-;27934:139;;27832:248;;;:::o;28086:419::-;;28290:2;28279:9;28275:18;28267:26;;28339:9;28333:4;28329:20;28325:1;28314:9;28310:17;28303:47;28367:131;28493:4;28367:131;:::i;:::-;28359:139;;28257:248;;;:::o;28511:419::-;;28715:2;28704:9;28700:18;28692:26;;28764:9;28758:4;28754:20;28750:1;28739:9;28735:17;28728:47;28792:131;28918:4;28792:131;:::i;:::-;28784:139;;28682:248;;;:::o;28936:419::-;;29140:2;29129:9;29125:18;29117:26;;29189:9;29183:4;29179:20;29175:1;29164:9;29160:17;29153:47;29217:131;29343:4;29217:131;:::i;:::-;29209:139;;29107:248;;;:::o;29361:419::-;;29565:2;29554:9;29550:18;29542:26;;29614:9;29608:4;29604:20;29600:1;29589:9;29585:17;29578:47;29642:131;29768:4;29642:131;:::i;:::-;29634:139;;29532:248;;;:::o;29786:419::-;;29990:2;29979:9;29975:18;29967:26;;30039:9;30033:4;30029:20;30025:1;30014:9;30010:17;30003:47;30067:131;30193:4;30067:131;:::i;:::-;30059:139;;29957:248;;;:::o;30211:419::-;;30415:2;30404:9;30400:18;30392:26;;30464:9;30458:4;30454:20;30450:1;30439:9;30435:17;30428:47;30492:131;30618:4;30492:131;:::i;:::-;30484:139;;30382:248;;;:::o;30636:419::-;;30840:2;30829:9;30825:18;30817:26;;30889:9;30883:4;30879:20;30875:1;30864:9;30860:17;30853:47;30917:131;31043:4;30917:131;:::i;:::-;30909:139;;30807:248;;;:::o;31061:419::-;;31265:2;31254:9;31250:18;31242:26;;31314:9;31308:4;31304:20;31300:1;31289:9;31285:17;31278:47;31342:131;31468:4;31342:131;:::i;:::-;31334:139;;31232:248;;;:::o;31486:419::-;;31690:2;31679:9;31675:18;31667:26;;31739:9;31733:4;31729:20;31725:1;31714:9;31710:17;31703:47;31767:131;31893:4;31767:131;:::i;:::-;31759:139;;31657:248;;;:::o;31911:419::-;;32115:2;32104:9;32100:18;32092:26;;32164:9;32158:4;32154:20;32150:1;32139:9;32135:17;32128:47;32192:131;32318:4;32192:131;:::i;:::-;32184:139;;32082:248;;;:::o;32336:419::-;;32540:2;32529:9;32525:18;32517:26;;32589:9;32583:4;32579:20;32575:1;32564:9;32560:17;32553:47;32617:131;32743:4;32617:131;:::i;:::-;32609:139;;32507:248;;;:::o;32761:419::-;;32965:2;32954:9;32950:18;32942:26;;33014:9;33008:4;33004:20;33000:1;32989:9;32985:17;32978:47;33042:131;33168:4;33042:131;:::i;:::-;33034:139;;32932:248;;;:::o;33186:419::-;;33390:2;33379:9;33375:18;33367:26;;33439:9;33433:4;33429:20;33425:1;33414:9;33410:17;33403:47;33467:131;33593:4;33467:131;:::i;:::-;33459:139;;33357:248;;;:::o;33611:419::-;;33815:2;33804:9;33800:18;33792:26;;33864:9;33858:4;33854:20;33850:1;33839:9;33835:17;33828:47;33892:131;34018:4;33892:131;:::i;:::-;33884:139;;33782:248;;;:::o;34036:419::-;;34240:2;34229:9;34225:18;34217:26;;34289:9;34283:4;34279:20;34275:1;34264:9;34260:17;34253:47;34317:131;34443:4;34317:131;:::i;:::-;34309:139;;34207:248;;;:::o;34461:419::-;;34665:2;34654:9;34650:18;34642:26;;34714:9;34708:4;34704:20;34700:1;34689:9;34685:17;34678:47;34742:131;34868:4;34742:131;:::i;:::-;34734:139;;34632:248;;;:::o;34886:419::-;;35090:2;35079:9;35075:18;35067:26;;35139:9;35133:4;35129:20;35125:1;35114:9;35110:17;35103:47;35167:131;35293:4;35167:131;:::i;:::-;35159:139;;35057:248;;;:::o;35311:419::-;;35515:2;35504:9;35500:18;35492:26;;35564:9;35558:4;35554:20;35550:1;35539:9;35535:17;35528:47;35592:131;35718:4;35592:131;:::i;:::-;35584:139;;35482:248;;;:::o;35736:222::-;;35867:2;35856:9;35852:18;35844:26;;35880:71;35948:1;35937:9;35933:17;35924:6;35880:71;:::i;:::-;35834:124;;;;:::o;35964:278::-;;36030:2;36024:9;36014:19;;36072:4;36064:6;36060:17;36179:6;36167:10;36164:22;36143:18;36131:10;36128:34;36125:62;36122:2;;;36190:13;;:::i;:::-;36122:2;36225:10;36221:2;36214:22;36004:238;;;;:::o;36248:326::-;;36399:18;36391:6;36388:30;36385:2;;;36421:13;;:::i;:::-;36385:2;36501:4;36497:9;36490:4;36482:6;36478:17;36474:33;36466:41;;36562:4;36556;36552:15;36544:23;;36314:260;;;:::o;36580:327::-;;36732:18;36724:6;36721:30;36718:2;;;36754:13;;:::i;:::-;36718:2;36834:4;36830:9;36823:4;36815:6;36811:17;36807:33;36799:41;;36895:4;36889;36885:15;36877:23;;36647:260;;;:::o;36913:132::-;;37003:3;36995:11;;37033:4;37028:3;37024:14;37016:22;;36985:60;;;:::o;37051:141::-;;37123:3;37115:11;;37146:3;37143:1;37136:14;37180:4;37177:1;37167:18;37159:26;;37105:87;;;:::o;37198:114::-;;37299:5;37293:12;37283:22;;37272:40;;;:::o;37318:98::-;;37403:5;37397:12;37387:22;;37376:40;;;:::o;37422:99::-;;37508:5;37502:12;37492:22;;37481:40;;;:::o;37527:113::-;;37629:4;37624:3;37620:14;37612:22;;37602:38;;;:::o;37646:184::-;;37779:6;37774:3;37767:19;37819:4;37814:3;37810:14;37795:29;;37757:73;;;;:::o;37836:168::-;;37953:6;37948:3;37941:19;37993:4;37988:3;37984:14;37969:29;;37931:73;;;;:::o;38010:147::-;;38148:3;38133:18;;38123:34;;;;:::o;38163:169::-;;38281:6;38276:3;38269:19;38321:4;38316:3;38312:14;38297:29;;38259:73;;;;:::o;38338:148::-;;38477:3;38462:18;;38452:34;;;;:::o;38492:96::-;;38558:24;38576:5;38558:24;:::i;:::-;38547:35;;38537:51;;;:::o;38594:104::-;;38668:24;38686:5;38668:24;:::i;:::-;38657:35;;38647:51;;;:::o;38704:90::-;;38781:5;38774:13;38767:21;38756:32;;38746:48;;;:::o;38800:149::-;;38876:66;38869:5;38865:78;38854:89;;38844:105;;;:::o;38955:126::-;;39032:42;39025:5;39021:54;39010:65;;39000:81;;;:::o;39087:77::-;;39153:5;39142:16;;39132:32;;;:::o;39170:154::-;39254:6;39249:3;39244;39231:30;39316:1;39307:6;39302:3;39298:16;39291:27;39221:103;;;:::o;39330:307::-;39398:1;39408:113;39422:6;39419:1;39416:13;39408:113;;;39507:1;39502:3;39498:11;39492:18;39488:1;39483:3;39479:11;39472:39;39444:2;39441:1;39437:10;39432:15;;39408:113;;;39539:6;39536:1;39533:13;39530:2;;;39619:1;39610:6;39605:3;39601:16;39594:27;39530:2;39379:258;;;;:::o;39643:48::-;39676:9;39697:102;;39789:2;39785:7;39780:2;39773:5;39769:14;39765:28;39755:38;;39745:54;;;:::o;39805:122::-;39878:24;39896:5;39878:24;:::i;:::-;39871:5;39868:35;39858:2;;39917:1;39914;39907:12;39858:2;39848:79;:::o;39933:116::-;40003:21;40018:5;40003:21;:::i;:::-;39996:5;39993:32;39983:2;;40039:1;40036;40029:12;39983:2;39973:76;:::o;40055:120::-;40127:23;40144:5;40127:23;:::i;:::-;40120:5;40117:34;40107:2;;40165:1;40162;40155:12;40107:2;40097:78;:::o;40181:122::-;40254:24;40272:5;40254:24;:::i;:::-;40247:5;40244:35;40234:2;;40293:1;40290;40283:12;40234:2;40224:79;:::o

Swarm Source

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