ETH Price: $3,064.33 (+1.33%)
Gas: 3 Gwei

Token

Larva Doodles (LDOODLE)
 

Overview

Max Total Supply

2,348 LDOODLE

Holders

517

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
3 LDOODLE
0xa42c6d3e654b128be015a081e04f305b15e15465
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
LarvaDoodles

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-05
*/

/**
 *Submitted for verification at Etherscan.io on 2022-01-03
*/

interface IERC165 {
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^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/utils/introspection/ERC165.sol
pragma solidity ^0.8.0;
/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal 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);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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



pragma solidity ^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;
        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");

        (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");

        (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");

        (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");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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



pragma solidity ^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/IERC721Receiver.sol



pragma solidity ^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/utils/Context.sol
pragma solidity ^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 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) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
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) {
        unchecked {
            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) {
        unchecked {
            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) {
        unchecked {
            // 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) {
        unchecked {
            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) {
        unchecked {
            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) {
        return a + b;
    }

    /**
     * @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) {
        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) {
        return a * b;
    }

    /**
     * @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.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        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) {
        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) {
        unchecked {
            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.
     *
     * 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) {
        unchecked {
            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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @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 _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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 baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @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 || 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 _owners[tokenId] != address(0);
    }

    /**
     * @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 || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `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);

        _balances[to] += 1;
        _owners[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);

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

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

        _balances[owner] -= 1;
        delete _owners[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");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @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()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @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` and `to` are never both zero.
     *
     * 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.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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

pragma solidity ^0.8.0;

contract LarvaDoodles is Ownable, ERC721 {
  
  using SafeMath for uint256;
  using Counters for Counters.Counter;
  Counters.Counter private _tokenIdCounter;
  
  uint256 public mintPrice = .016 ether;
  uint256 public maxSupply = 3333;
  uint256 public freeMintAmount =1000;
  uint256 private mintLimit = 10;
  string private baseURI = "ipfs://QmaR3mSaWu86pcZ1bbcFdanga5DhkL9JZaPLrPze1ouHCC/";
  bool public publicSaleState = true;
  bool public revealed = true;
  string private base_URI_tail = ".json";
  string private hiddenURI = "";

  constructor() ERC721("Larva Doodles", "LDOODLE") { 
  }

  function _hiddenURI() internal view returns (string memory) {
    return hiddenURI;
  }
  
  function _baseURI() internal view override returns (string memory) {
    return baseURI;
  }

  function setBaseURI(string calldata newBaseURI) external onlyOwner {
      baseURI = newBaseURI;
  }

  function tokenURI(uint256 _tokenId) public view override returns (string memory) {
    require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
    if(revealed == false) {
        return hiddenURI; 
    }
  string memory currentBaseURI = _baseURI();
  return string(abi.encodePacked(currentBaseURI, Strings.toString(_tokenId), base_URI_tail));
  }  

  function reveal() public onlyOwner returns(bool) {
    revealed = !revealed;
    return revealed;
  }
      
  function changeStatePublicSale() public onlyOwner returns(bool) {
    publicSaleState = !publicSaleState;
    return publicSaleState;
  }

  function mint(uint numberOfTokens) external payable {
    require(publicSaleState, "Sale is not active");
    require(_tokenIdCounter.current() <= maxSupply, "Not enough tokens left");
    require(numberOfTokens <= mintLimit, "Too many tokens for one transaction");
    if(_tokenIdCounter.current() >= freeMintAmount){
        require(msg.value >= mintPrice.mul(numberOfTokens), "Insufficient payment");
    }
    mintInternal(msg.sender, numberOfTokens);
  }
 
  function mintInternal(address wallet, uint amount) internal {
    uint currentTokenSupply = _tokenIdCounter.current();
    require(currentTokenSupply.add(amount) <= maxSupply, "Not enough tokens left");
        for(uint i = 0; i< amount; i++){
        currentTokenSupply++;
        _safeMint(wallet, currentTokenSupply);
        _tokenIdCounter.increment();
    }
  }
  
  function reserve(uint256 numberOfTokens) external onlyOwner {
    mintInternal(msg.sender, numberOfTokens);
  }
  function setfreeAmount(uint16 _newFreeMints) public onlyOwner() {
    freeMintAmount = _newFreeMints;
  }

  function totalSupply() public view returns (uint){
    return _tokenIdCounter.current();
  }

  function withdraw() public onlyOwner {
    require(address(this).balance > 0, "No balance to withdraw");
    payable(owner()).transfer(address(this).balance); 
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"changeStatePublicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"publicSaleState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_newFreeMints","type":"uint16"}],"name":"setfreeAmount","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":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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"}]

60806040526638d7ea4c680000600855610d056009556103e8600a55600a600b5560405180606001604052806036815260200162003ef360369139600c9080519060200190620000519291906200029e565b506001600d60006101000a81548160ff0219169083151502179055506001600d60016101000a81548160ff0219169083151502179055506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600e9080519060200190620000d59291906200029e565b5060405180602001604052806000815250600f9080519060200190620000fd9291906200029e565b503480156200010b57600080fd5b506040518060400160405280600d81526020017f4c6172766120446f6f646c6573000000000000000000000000000000000000008152506040518060400160405280600781526020017f4c444f4f444c4500000000000000000000000000000000000000000000000000815250620001986200018c620001d260201b60201c565b620001da60201b60201c565b8160019080519060200190620001b09291906200029e565b508060029080519060200190620001c99291906200029e565b505050620003b3565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002ac906200034e565b90600052602060002090601f016020900481019282620002d057600085556200031c565b82601f10620002eb57805160ff19168380011785556200031c565b828001600101855582156200031c579182015b828111156200031b578251825591602001919060010190620002fe565b5b5090506200032b91906200032f565b5090565b5b808211156200034a57600081600090555060010162000330565b5090565b600060028204905060018216806200036757607f821691505b602082108114156200037e576200037d62000384565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613b3080620003c36000396000f3fe6080604052600436106101c25760003560e01c806370a08231116100f7578063a22cb46511610095578063d1cbf17d11610064578063d1cbf17d1461060d578063d5abeb0114610638578063e985e9c514610663578063f2fde38b146106a0576101c2565b8063a22cb46514610553578063a475b5dd1461057c578063b88d4fde146105a7578063c87b56dd146105d0576101c2565b8063819b25ba116100d1578063819b25ba146104b85780638da5cb5b146104e157806395d89b411461050c578063a0712d6814610537576101c2565b806370a0823114610439578063715018a61461047657806371adc02a1461048d576101c2565b80633a467e3d11610164578063518302271161013e578063518302271461037d57806355f804b3146103a85780636352211e146103d15780636817c76c1461040e576101c2565b80633a467e3d146103125780633ccfd60b1461033d57806342842e0e14610354576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c05780632d46d6ff146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e991906127ff565b6106c9565b6040516101fb9190612dc6565b60405180910390f35b34801561021057600080fd5b506102196107ab565b6040516102269190612de1565b60405180910390f35b34801561023b57600080fd5b50610256600480360381019061025191906128d3565b61083d565b6040516102639190612d5f565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e91906127bf565b6108c2565b005b3480156102a157600080fd5b506102aa6109da565b6040516102b791906130a3565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e291906126a9565b6109eb565b005b3480156102f557600080fd5b50610310600480360381019061030b91906128a6565b610a4b565b005b34801561031e57600080fd5b50610327610ad5565b60405161033491906130a3565b60405180910390f35b34801561034957600080fd5b50610352610adb565b005b34801561036057600080fd5b5061037b600480360381019061037691906126a9565b610bea565b005b34801561038957600080fd5b50610392610c0a565b60405161039f9190612dc6565b60405180910390f35b3480156103b457600080fd5b506103cf60048036038101906103ca9190612859565b610c1d565b005b3480156103dd57600080fd5b506103f860048036038101906103f391906128d3565b610caf565b6040516104059190612d5f565b60405180910390f35b34801561041a57600080fd5b50610423610d61565b60405161043091906130a3565b60405180910390f35b34801561044557600080fd5b50610460600480360381019061045b919061263c565b610d67565b60405161046d91906130a3565b60405180910390f35b34801561048257600080fd5b5061048b610e1f565b005b34801561049957600080fd5b506104a2610ea7565b6040516104af9190612dc6565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da91906128d3565b610eba565b005b3480156104ed57600080fd5b506104f6610f43565b6040516105039190612d5f565b60405180910390f35b34801561051857600080fd5b50610521610f6c565b60405161052e9190612de1565b60405180910390f35b610551600480360381019061054c91906128d3565b610ffe565b005b34801561055f57600080fd5b5061057a6004803603810190610575919061277f565b611157565b005b34801561058857600080fd5b506105916112d8565b60405161059e9190612dc6565b60405180910390f35b3480156105b357600080fd5b506105ce60048036038101906105c991906126fc565b611395565b005b3480156105dc57600080fd5b506105f760048036038101906105f291906128d3565b6113f7565b6040516106049190612de1565b60405180910390f35b34801561061957600080fd5b50610622611531565b60405161062f9190612dc6565b60405180910390f35b34801561064457600080fd5b5061064d6115ee565b60405161065a91906130a3565b60405180910390f35b34801561066f57600080fd5b5061068a60048036038101906106859190612669565b6115f4565b6040516106979190612dc6565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c2919061263c565b611688565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061079457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a457506107a382611780565b5b9050919050565b6060600180546107ba90613345565b80601f01602080910402602001604051908101604052809291908181526020018280546107e690613345565b80156108335780601f1061080857610100808354040283529160200191610833565b820191906000526020600020905b81548152906001019060200180831161081657829003601f168201915b5050505050905090565b6000610848826117ea565b610887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087e90612fc3565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108cd82610caf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561093e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093590613063565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661095d611856565b73ffffffffffffffffffffffffffffffffffffffff16148061098c575061098b81610986611856565b6115f4565b5b6109cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c290612f03565b60405180910390fd5b6109d5838361185e565b505050565b60006109e66007611917565b905090565b6109fc6109f6611856565b82611925565b610a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3290613083565b60405180910390fd5b610a46838383611a03565b505050565b610a53611856565b73ffffffffffffffffffffffffffffffffffffffff16610a71610f43565b73ffffffffffffffffffffffffffffffffffffffff1614610ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abe90612fe3565b60405180910390fd5b8061ffff16600a8190555050565b600a5481565b610ae3611856565b73ffffffffffffffffffffffffffffffffffffffff16610b01610f43565b73ffffffffffffffffffffffffffffffffffffffff1614610b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4e90612fe3565b60405180910390fd5b60004711610b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9190613043565b60405180910390fd5b610ba2610f43565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610be7573d6000803e3d6000fd5b50565b610c0583838360405180602001604052806000815250611395565b505050565b600d60019054906101000a900460ff1681565b610c25611856565b73ffffffffffffffffffffffffffffffffffffffff16610c43610f43565b73ffffffffffffffffffffffffffffffffffffffff1614610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9090612fe3565b60405180910390fd5b8181600c9190610caa929190612455565b505050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4f90612f43565b60405180910390fd5b80915050919050565b60085481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf90612f23565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e27611856565b73ffffffffffffffffffffffffffffffffffffffff16610e45610f43565b73ffffffffffffffffffffffffffffffffffffffff1614610e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9290612fe3565b60405180910390fd5b610ea56000611c5f565b565b600d60009054906101000a900460ff1681565b610ec2611856565b73ffffffffffffffffffffffffffffffffffffffff16610ee0610f43565b73ffffffffffffffffffffffffffffffffffffffff1614610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d90612fe3565b60405180910390fd5b610f403382611d23565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054610f7b90613345565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa790613345565b8015610ff45780601f10610fc957610100808354040283529160200191610ff4565b820191906000526020600020905b815481529060010190602001808311610fd757829003601f168201915b5050505050905090565b600d60009054906101000a900460ff1661104d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104490612ec3565b60405180910390fd5b60095461105a6007611917565b111561109b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109290612f63565b60405180910390fd5b600b548111156110e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d790612e03565b60405180910390fd5b600a546110ed6007611917565b1061114a5761110781600854611dce90919063ffffffff16565b341015611149576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114090612fa3565b60405180910390fd5b5b6111543382611d23565b50565b61115f611856565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c490612ea3565b60405180910390fd5b80600660006111da611856565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611287611856565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112cc9190612dc6565b60405180910390a35050565b60006112e2611856565b73ffffffffffffffffffffffffffffffffffffffff16611300610f43565b73ffffffffffffffffffffffffffffffffffffffff1614611356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134d90612fe3565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550600d60019054906101000a900460ff16905090565b6113a66113a0611856565b83611925565b6113e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dc90613083565b60405180910390fd5b6113f184848484611de4565b50505050565b6060611402826117ea565b611441576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143890613023565b60405180910390fd5b60001515600d60019054906101000a900460ff16151514156114ef57600f805461146a90613345565b80601f016020809104026020016040519081016040528092919081815260200182805461149690613345565b80156114e35780601f106114b8576101008083540402835291602001916114e3565b820191906000526020600020905b8154815290600101906020018083116114c657829003601f168201915b5050505050905061152c565b60006114f9611e40565b90508061150584611ed2565b600e60405160200161151993929190612d2e565b6040516020818303038152906040529150505b919050565b600061153b611856565b73ffffffffffffffffffffffffffffffffffffffff16611559610f43565b73ffffffffffffffffffffffffffffffffffffffff16146115af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a690612fe3565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550600d60009054906101000a900460ff16905090565b60095481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611690611856565b73ffffffffffffffffffffffffffffffffffffffff166116ae610f43565b73ffffffffffffffffffffffffffffffffffffffff1614611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb90612fe3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176b90612e43565b60405180910390fd5b61177d81611c5f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166118d183610caf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611930826117ea565b61196f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196690612ee3565b60405180910390fd5b600061197a83610caf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806119e957508373ffffffffffffffffffffffffffffffffffffffff166119d18461083d565b73ffffffffffffffffffffffffffffffffffffffff16145b806119fa57506119f981856115f4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a2382610caf565b73ffffffffffffffffffffffffffffffffffffffff1614611a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7090613003565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae090612e83565b60405180910390fd5b611af4838383612033565b611aff60008261185e565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b4f919061324d565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ba6919061316c565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611d2f6007611917565b9050600954611d47838361203890919063ffffffff16565b1115611d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7f90612f63565b60405180910390fd5b60005b82811015611dc8578180611d9e906133a8565b925050611dab848361204e565b611db5600761206c565b8080611dc0906133a8565b915050611d8b565b50505050565b60008183611ddc91906131f3565b905092915050565b611def848484611a03565b611dfb84848484612082565b611e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3190612e23565b60405180910390fd5b50505050565b6060600c8054611e4f90613345565b80601f0160208091040260200160405190810160405280929190818152602001828054611e7b90613345565b8015611ec85780601f10611e9d57610100808354040283529160200191611ec8565b820191906000526020600020905b815481529060010190602001808311611eab57829003601f168201915b5050505050905090565b60606000821415611f1a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061202e565b600082905060005b60008214611f4c578080611f35906133a8565b915050600a82611f4591906131c2565b9150611f22565b60008167ffffffffffffffff811115611f6857611f676134de565b5b6040519080825280601f01601f191660200182016040528015611f9a5781602001600182028036833780820191505090505b5090505b6000851461202757600182611fb3919061324d565b9150600a85611fc291906133f1565b6030611fce919061316c565b60f81b818381518110611fe457611fe36134af565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561202091906131c2565b9450611f9e565b8093505050505b919050565b505050565b60008183612046919061316c565b905092915050565b612068828260405180602001604052806000815250612219565b5050565b6001816000016000828254019250508190555050565b60006120a38473ffffffffffffffffffffffffffffffffffffffff16612274565b1561220c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120cc611856565b8786866040518563ffffffff1660e01b81526004016120ee9493929190612d7a565b602060405180830381600087803b15801561210857600080fd5b505af192505050801561213957506040513d601f19601f82011682018060405250810190612136919061282c565b60015b6121bc573d8060008114612169576040519150601f19603f3d011682016040523d82523d6000602084013e61216e565b606091505b506000815114156121b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ab90612e23565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612211565b600190505b949350505050565b6122238383612287565b6122306000848484612082565b61226f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226690612e23565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ee90612f83565b60405180910390fd5b612300816117ea565b15612340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233790612e63565b60405180910390fd5b61234c60008383612033565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461239c919061316c565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461246190613345565b90600052602060002090601f01602090048101928261248357600085556124ca565b82601f1061249c57803560ff19168380011785556124ca565b828001600101855582156124ca579182015b828111156124c95782358255916020019190600101906124ae565b5b5090506124d791906124db565b5090565b5b808211156124f45760008160009055506001016124dc565b5090565b600061250b612506846130e3565b6130be565b9050828152602081018484840111156125275761252661351c565b5b612532848285613303565b509392505050565b60008135905061254981613a87565b92915050565b60008135905061255e81613a9e565b92915050565b60008135905061257381613ab5565b92915050565b60008151905061258881613ab5565b92915050565b600082601f8301126125a3576125a2613512565b5b81356125b38482602086016124f8565b91505092915050565b60008083601f8401126125d2576125d1613512565b5b8235905067ffffffffffffffff8111156125ef576125ee61350d565b5b60208301915083600182028301111561260b5761260a613517565b5b9250929050565b60008135905061262181613acc565b92915050565b60008135905061263681613ae3565b92915050565b60006020828403121561265257612651613526565b5b60006126608482850161253a565b91505092915050565b600080604083850312156126805761267f613526565b5b600061268e8582860161253a565b925050602061269f8582860161253a565b9150509250929050565b6000806000606084860312156126c2576126c1613526565b5b60006126d08682870161253a565b93505060206126e18682870161253a565b92505060406126f286828701612627565b9150509250925092565b6000806000806080858703121561271657612715613526565b5b60006127248782880161253a565b94505060206127358782880161253a565b935050604061274687828801612627565b925050606085013567ffffffffffffffff81111561276757612766613521565b5b6127738782880161258e565b91505092959194509250565b6000806040838503121561279657612795613526565b5b60006127a48582860161253a565b92505060206127b58582860161254f565b9150509250929050565b600080604083850312156127d6576127d5613526565b5b60006127e48582860161253a565b92505060206127f585828601612627565b9150509250929050565b60006020828403121561281557612814613526565b5b600061282384828501612564565b91505092915050565b60006020828403121561284257612841613526565b5b600061285084828501612579565b91505092915050565b600080602083850312156128705761286f613526565b5b600083013567ffffffffffffffff81111561288e5761288d613521565b5b61289a858286016125bc565b92509250509250929050565b6000602082840312156128bc576128bb613526565b5b60006128ca84828501612612565b91505092915050565b6000602082840312156128e9576128e8613526565b5b60006128f784828501612627565b91505092915050565b61290981613281565b82525050565b61291881613293565b82525050565b600061292982613129565b612933818561313f565b9350612943818560208601613312565b61294c8161352b565b840191505092915050565b600061296282613134565b61296c8185613150565b935061297c818560208601613312565b6129858161352b565b840191505092915050565b600061299b82613134565b6129a58185613161565b93506129b5818560208601613312565b80840191505092915050565b600081546129ce81613345565b6129d88186613161565b945060018216600081146129f35760018114612a0457612a37565b60ff19831686528186019350612a37565b612a0d85613114565b60005b83811015612a2f57815481890152600182019150602081019050612a10565b838801955050505b50505092915050565b6000612a4d602383613150565b9150612a588261353c565b604082019050919050565b6000612a70603283613150565b9150612a7b8261358b565b604082019050919050565b6000612a93602683613150565b9150612a9e826135da565b604082019050919050565b6000612ab6601c83613150565b9150612ac182613629565b602082019050919050565b6000612ad9602483613150565b9150612ae482613652565b604082019050919050565b6000612afc601983613150565b9150612b07826136a1565b602082019050919050565b6000612b1f601283613150565b9150612b2a826136ca565b602082019050919050565b6000612b42602c83613150565b9150612b4d826136f3565b604082019050919050565b6000612b65603883613150565b9150612b7082613742565b604082019050919050565b6000612b88602a83613150565b9150612b9382613791565b604082019050919050565b6000612bab602983613150565b9150612bb6826137e0565b604082019050919050565b6000612bce601683613150565b9150612bd98261382f565b602082019050919050565b6000612bf1602083613150565b9150612bfc82613858565b602082019050919050565b6000612c14601483613150565b9150612c1f82613881565b602082019050919050565b6000612c37602c83613150565b9150612c42826138aa565b604082019050919050565b6000612c5a602083613150565b9150612c65826138f9565b602082019050919050565b6000612c7d602983613150565b9150612c8882613922565b604082019050919050565b6000612ca0602f83613150565b9150612cab82613971565b604082019050919050565b6000612cc3601683613150565b9150612cce826139c0565b602082019050919050565b6000612ce6602183613150565b9150612cf1826139e9565b604082019050919050565b6000612d09603183613150565b9150612d1482613a38565b604082019050919050565b612d28816132f9565b82525050565b6000612d3a8286612990565b9150612d468285612990565b9150612d5282846129c1565b9150819050949350505050565b6000602082019050612d746000830184612900565b92915050565b6000608082019050612d8f6000830187612900565b612d9c6020830186612900565b612da96040830185612d1f565b8181036060830152612dbb818461291e565b905095945050505050565b6000602082019050612ddb600083018461290f565b92915050565b60006020820190508181036000830152612dfb8184612957565b905092915050565b60006020820190508181036000830152612e1c81612a40565b9050919050565b60006020820190508181036000830152612e3c81612a63565b9050919050565b60006020820190508181036000830152612e5c81612a86565b9050919050565b60006020820190508181036000830152612e7c81612aa9565b9050919050565b60006020820190508181036000830152612e9c81612acc565b9050919050565b60006020820190508181036000830152612ebc81612aef565b9050919050565b60006020820190508181036000830152612edc81612b12565b9050919050565b60006020820190508181036000830152612efc81612b35565b9050919050565b60006020820190508181036000830152612f1c81612b58565b9050919050565b60006020820190508181036000830152612f3c81612b7b565b9050919050565b60006020820190508181036000830152612f5c81612b9e565b9050919050565b60006020820190508181036000830152612f7c81612bc1565b9050919050565b60006020820190508181036000830152612f9c81612be4565b9050919050565b60006020820190508181036000830152612fbc81612c07565b9050919050565b60006020820190508181036000830152612fdc81612c2a565b9050919050565b60006020820190508181036000830152612ffc81612c4d565b9050919050565b6000602082019050818103600083015261301c81612c70565b9050919050565b6000602082019050818103600083015261303c81612c93565b9050919050565b6000602082019050818103600083015261305c81612cb6565b9050919050565b6000602082019050818103600083015261307c81612cd9565b9050919050565b6000602082019050818103600083015261309c81612cfc565b9050919050565b60006020820190506130b86000830184612d1f565b92915050565b60006130c86130d9565b90506130d48282613377565b919050565b6000604051905090565b600067ffffffffffffffff8211156130fe576130fd6134de565b5b6131078261352b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613177826132f9565b9150613182836132f9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131b7576131b6613422565b5b828201905092915050565b60006131cd826132f9565b91506131d8836132f9565b9250826131e8576131e7613451565b5b828204905092915050565b60006131fe826132f9565b9150613209836132f9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561324257613241613422565b5b828202905092915050565b6000613258826132f9565b9150613263836132f9565b92508282101561327657613275613422565b5b828203905092915050565b600061328c826132d9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613330578082015181840152602081019050613315565b8381111561333f576000848401525b50505050565b6000600282049050600182168061335d57607f821691505b6020821081141561337157613370613480565b5b50919050565b6133808261352b565b810181811067ffffffffffffffff8211171561339f5761339e6134de565b5b80604052505050565b60006133b3826132f9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133e6576133e5613422565b5b600182019050919050565b60006133fc826132f9565b9150613407836132f9565b92508261341757613416613451565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f546f6f206d616e7920746f6b656e7320666f72206f6e65207472616e7361637460008201527f696f6e0000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f496e73756666696369656e74207061796d656e74000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f2062616c616e636520746f20776974686472617700000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b613a9081613281565b8114613a9b57600080fd5b50565b613aa781613293565b8114613ab257600080fd5b50565b613abe8161329f565b8114613ac957600080fd5b50565b613ad5816132cb565b8114613ae057600080fd5b50565b613aec816132f9565b8114613af757600080fd5b5056fea26469706673582212208990326d053436849e7b1607bae8485baa3f53d2f6b5a4e7902a46d83c6ab5a164736f6c63430008070033697066733a2f2f516d6152336d53615775383670635a316262634664616e67613544686b4c394a5a61504c72507a65316f754843432f

Deployed Bytecode

0x6080604052600436106101c25760003560e01c806370a08231116100f7578063a22cb46511610095578063d1cbf17d11610064578063d1cbf17d1461060d578063d5abeb0114610638578063e985e9c514610663578063f2fde38b146106a0576101c2565b8063a22cb46514610553578063a475b5dd1461057c578063b88d4fde146105a7578063c87b56dd146105d0576101c2565b8063819b25ba116100d1578063819b25ba146104b85780638da5cb5b146104e157806395d89b411461050c578063a0712d6814610537576101c2565b806370a0823114610439578063715018a61461047657806371adc02a1461048d576101c2565b80633a467e3d11610164578063518302271161013e578063518302271461037d57806355f804b3146103a85780636352211e146103d15780636817c76c1461040e576101c2565b80633a467e3d146103125780633ccfd60b1461033d57806342842e0e14610354576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c05780632d46d6ff146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e991906127ff565b6106c9565b6040516101fb9190612dc6565b60405180910390f35b34801561021057600080fd5b506102196107ab565b6040516102269190612de1565b60405180910390f35b34801561023b57600080fd5b50610256600480360381019061025191906128d3565b61083d565b6040516102639190612d5f565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e91906127bf565b6108c2565b005b3480156102a157600080fd5b506102aa6109da565b6040516102b791906130a3565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e291906126a9565b6109eb565b005b3480156102f557600080fd5b50610310600480360381019061030b91906128a6565b610a4b565b005b34801561031e57600080fd5b50610327610ad5565b60405161033491906130a3565b60405180910390f35b34801561034957600080fd5b50610352610adb565b005b34801561036057600080fd5b5061037b600480360381019061037691906126a9565b610bea565b005b34801561038957600080fd5b50610392610c0a565b60405161039f9190612dc6565b60405180910390f35b3480156103b457600080fd5b506103cf60048036038101906103ca9190612859565b610c1d565b005b3480156103dd57600080fd5b506103f860048036038101906103f391906128d3565b610caf565b6040516104059190612d5f565b60405180910390f35b34801561041a57600080fd5b50610423610d61565b60405161043091906130a3565b60405180910390f35b34801561044557600080fd5b50610460600480360381019061045b919061263c565b610d67565b60405161046d91906130a3565b60405180910390f35b34801561048257600080fd5b5061048b610e1f565b005b34801561049957600080fd5b506104a2610ea7565b6040516104af9190612dc6565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da91906128d3565b610eba565b005b3480156104ed57600080fd5b506104f6610f43565b6040516105039190612d5f565b60405180910390f35b34801561051857600080fd5b50610521610f6c565b60405161052e9190612de1565b60405180910390f35b610551600480360381019061054c91906128d3565b610ffe565b005b34801561055f57600080fd5b5061057a6004803603810190610575919061277f565b611157565b005b34801561058857600080fd5b506105916112d8565b60405161059e9190612dc6565b60405180910390f35b3480156105b357600080fd5b506105ce60048036038101906105c991906126fc565b611395565b005b3480156105dc57600080fd5b506105f760048036038101906105f291906128d3565b6113f7565b6040516106049190612de1565b60405180910390f35b34801561061957600080fd5b50610622611531565b60405161062f9190612dc6565b60405180910390f35b34801561064457600080fd5b5061064d6115ee565b60405161065a91906130a3565b60405180910390f35b34801561066f57600080fd5b5061068a60048036038101906106859190612669565b6115f4565b6040516106979190612dc6565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c2919061263c565b611688565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061079457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a457506107a382611780565b5b9050919050565b6060600180546107ba90613345565b80601f01602080910402602001604051908101604052809291908181526020018280546107e690613345565b80156108335780601f1061080857610100808354040283529160200191610833565b820191906000526020600020905b81548152906001019060200180831161081657829003601f168201915b5050505050905090565b6000610848826117ea565b610887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087e90612fc3565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108cd82610caf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561093e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093590613063565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661095d611856565b73ffffffffffffffffffffffffffffffffffffffff16148061098c575061098b81610986611856565b6115f4565b5b6109cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c290612f03565b60405180910390fd5b6109d5838361185e565b505050565b60006109e66007611917565b905090565b6109fc6109f6611856565b82611925565b610a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3290613083565b60405180910390fd5b610a46838383611a03565b505050565b610a53611856565b73ffffffffffffffffffffffffffffffffffffffff16610a71610f43565b73ffffffffffffffffffffffffffffffffffffffff1614610ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abe90612fe3565b60405180910390fd5b8061ffff16600a8190555050565b600a5481565b610ae3611856565b73ffffffffffffffffffffffffffffffffffffffff16610b01610f43565b73ffffffffffffffffffffffffffffffffffffffff1614610b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4e90612fe3565b60405180910390fd5b60004711610b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9190613043565b60405180910390fd5b610ba2610f43565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610be7573d6000803e3d6000fd5b50565b610c0583838360405180602001604052806000815250611395565b505050565b600d60019054906101000a900460ff1681565b610c25611856565b73ffffffffffffffffffffffffffffffffffffffff16610c43610f43565b73ffffffffffffffffffffffffffffffffffffffff1614610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9090612fe3565b60405180910390fd5b8181600c9190610caa929190612455565b505050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4f90612f43565b60405180910390fd5b80915050919050565b60085481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf90612f23565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e27611856565b73ffffffffffffffffffffffffffffffffffffffff16610e45610f43565b73ffffffffffffffffffffffffffffffffffffffff1614610e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9290612fe3565b60405180910390fd5b610ea56000611c5f565b565b600d60009054906101000a900460ff1681565b610ec2611856565b73ffffffffffffffffffffffffffffffffffffffff16610ee0610f43565b73ffffffffffffffffffffffffffffffffffffffff1614610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d90612fe3565b60405180910390fd5b610f403382611d23565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054610f7b90613345565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa790613345565b8015610ff45780601f10610fc957610100808354040283529160200191610ff4565b820191906000526020600020905b815481529060010190602001808311610fd757829003601f168201915b5050505050905090565b600d60009054906101000a900460ff1661104d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104490612ec3565b60405180910390fd5b60095461105a6007611917565b111561109b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109290612f63565b60405180910390fd5b600b548111156110e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d790612e03565b60405180910390fd5b600a546110ed6007611917565b1061114a5761110781600854611dce90919063ffffffff16565b341015611149576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114090612fa3565b60405180910390fd5b5b6111543382611d23565b50565b61115f611856565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c490612ea3565b60405180910390fd5b80600660006111da611856565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611287611856565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112cc9190612dc6565b60405180910390a35050565b60006112e2611856565b73ffffffffffffffffffffffffffffffffffffffff16611300610f43565b73ffffffffffffffffffffffffffffffffffffffff1614611356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134d90612fe3565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550600d60019054906101000a900460ff16905090565b6113a66113a0611856565b83611925565b6113e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dc90613083565b60405180910390fd5b6113f184848484611de4565b50505050565b6060611402826117ea565b611441576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143890613023565b60405180910390fd5b60001515600d60019054906101000a900460ff16151514156114ef57600f805461146a90613345565b80601f016020809104026020016040519081016040528092919081815260200182805461149690613345565b80156114e35780601f106114b8576101008083540402835291602001916114e3565b820191906000526020600020905b8154815290600101906020018083116114c657829003601f168201915b5050505050905061152c565b60006114f9611e40565b90508061150584611ed2565b600e60405160200161151993929190612d2e565b6040516020818303038152906040529150505b919050565b600061153b611856565b73ffffffffffffffffffffffffffffffffffffffff16611559610f43565b73ffffffffffffffffffffffffffffffffffffffff16146115af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a690612fe3565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550600d60009054906101000a900460ff16905090565b60095481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611690611856565b73ffffffffffffffffffffffffffffffffffffffff166116ae610f43565b73ffffffffffffffffffffffffffffffffffffffff1614611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb90612fe3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176b90612e43565b60405180910390fd5b61177d81611c5f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166118d183610caf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611930826117ea565b61196f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196690612ee3565b60405180910390fd5b600061197a83610caf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806119e957508373ffffffffffffffffffffffffffffffffffffffff166119d18461083d565b73ffffffffffffffffffffffffffffffffffffffff16145b806119fa57506119f981856115f4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a2382610caf565b73ffffffffffffffffffffffffffffffffffffffff1614611a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7090613003565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae090612e83565b60405180910390fd5b611af4838383612033565b611aff60008261185e565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b4f919061324d565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ba6919061316c565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611d2f6007611917565b9050600954611d47838361203890919063ffffffff16565b1115611d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7f90612f63565b60405180910390fd5b60005b82811015611dc8578180611d9e906133a8565b925050611dab848361204e565b611db5600761206c565b8080611dc0906133a8565b915050611d8b565b50505050565b60008183611ddc91906131f3565b905092915050565b611def848484611a03565b611dfb84848484612082565b611e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3190612e23565b60405180910390fd5b50505050565b6060600c8054611e4f90613345565b80601f0160208091040260200160405190810160405280929190818152602001828054611e7b90613345565b8015611ec85780601f10611e9d57610100808354040283529160200191611ec8565b820191906000526020600020905b815481529060010190602001808311611eab57829003601f168201915b5050505050905090565b60606000821415611f1a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061202e565b600082905060005b60008214611f4c578080611f35906133a8565b915050600a82611f4591906131c2565b9150611f22565b60008167ffffffffffffffff811115611f6857611f676134de565b5b6040519080825280601f01601f191660200182016040528015611f9a5781602001600182028036833780820191505090505b5090505b6000851461202757600182611fb3919061324d565b9150600a85611fc291906133f1565b6030611fce919061316c565b60f81b818381518110611fe457611fe36134af565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561202091906131c2565b9450611f9e565b8093505050505b919050565b505050565b60008183612046919061316c565b905092915050565b612068828260405180602001604052806000815250612219565b5050565b6001816000016000828254019250508190555050565b60006120a38473ffffffffffffffffffffffffffffffffffffffff16612274565b1561220c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120cc611856565b8786866040518563ffffffff1660e01b81526004016120ee9493929190612d7a565b602060405180830381600087803b15801561210857600080fd5b505af192505050801561213957506040513d601f19601f82011682018060405250810190612136919061282c565b60015b6121bc573d8060008114612169576040519150601f19603f3d011682016040523d82523d6000602084013e61216e565b606091505b506000815114156121b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ab90612e23565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612211565b600190505b949350505050565b6122238383612287565b6122306000848484612082565b61226f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226690612e23565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ee90612f83565b60405180910390fd5b612300816117ea565b15612340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233790612e63565b60405180910390fd5b61234c60008383612033565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461239c919061316c565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461246190613345565b90600052602060002090601f01602090048101928261248357600085556124ca565b82601f1061249c57803560ff19168380011785556124ca565b828001600101855582156124ca579182015b828111156124c95782358255916020019190600101906124ae565b5b5090506124d791906124db565b5090565b5b808211156124f45760008160009055506001016124dc565b5090565b600061250b612506846130e3565b6130be565b9050828152602081018484840111156125275761252661351c565b5b612532848285613303565b509392505050565b60008135905061254981613a87565b92915050565b60008135905061255e81613a9e565b92915050565b60008135905061257381613ab5565b92915050565b60008151905061258881613ab5565b92915050565b600082601f8301126125a3576125a2613512565b5b81356125b38482602086016124f8565b91505092915050565b60008083601f8401126125d2576125d1613512565b5b8235905067ffffffffffffffff8111156125ef576125ee61350d565b5b60208301915083600182028301111561260b5761260a613517565b5b9250929050565b60008135905061262181613acc565b92915050565b60008135905061263681613ae3565b92915050565b60006020828403121561265257612651613526565b5b60006126608482850161253a565b91505092915050565b600080604083850312156126805761267f613526565b5b600061268e8582860161253a565b925050602061269f8582860161253a565b9150509250929050565b6000806000606084860312156126c2576126c1613526565b5b60006126d08682870161253a565b93505060206126e18682870161253a565b92505060406126f286828701612627565b9150509250925092565b6000806000806080858703121561271657612715613526565b5b60006127248782880161253a565b94505060206127358782880161253a565b935050604061274687828801612627565b925050606085013567ffffffffffffffff81111561276757612766613521565b5b6127738782880161258e565b91505092959194509250565b6000806040838503121561279657612795613526565b5b60006127a48582860161253a565b92505060206127b58582860161254f565b9150509250929050565b600080604083850312156127d6576127d5613526565b5b60006127e48582860161253a565b92505060206127f585828601612627565b9150509250929050565b60006020828403121561281557612814613526565b5b600061282384828501612564565b91505092915050565b60006020828403121561284257612841613526565b5b600061285084828501612579565b91505092915050565b600080602083850312156128705761286f613526565b5b600083013567ffffffffffffffff81111561288e5761288d613521565b5b61289a858286016125bc565b92509250509250929050565b6000602082840312156128bc576128bb613526565b5b60006128ca84828501612612565b91505092915050565b6000602082840312156128e9576128e8613526565b5b60006128f784828501612627565b91505092915050565b61290981613281565b82525050565b61291881613293565b82525050565b600061292982613129565b612933818561313f565b9350612943818560208601613312565b61294c8161352b565b840191505092915050565b600061296282613134565b61296c8185613150565b935061297c818560208601613312565b6129858161352b565b840191505092915050565b600061299b82613134565b6129a58185613161565b93506129b5818560208601613312565b80840191505092915050565b600081546129ce81613345565b6129d88186613161565b945060018216600081146129f35760018114612a0457612a37565b60ff19831686528186019350612a37565b612a0d85613114565b60005b83811015612a2f57815481890152600182019150602081019050612a10565b838801955050505b50505092915050565b6000612a4d602383613150565b9150612a588261353c565b604082019050919050565b6000612a70603283613150565b9150612a7b8261358b565b604082019050919050565b6000612a93602683613150565b9150612a9e826135da565b604082019050919050565b6000612ab6601c83613150565b9150612ac182613629565b602082019050919050565b6000612ad9602483613150565b9150612ae482613652565b604082019050919050565b6000612afc601983613150565b9150612b07826136a1565b602082019050919050565b6000612b1f601283613150565b9150612b2a826136ca565b602082019050919050565b6000612b42602c83613150565b9150612b4d826136f3565b604082019050919050565b6000612b65603883613150565b9150612b7082613742565b604082019050919050565b6000612b88602a83613150565b9150612b9382613791565b604082019050919050565b6000612bab602983613150565b9150612bb6826137e0565b604082019050919050565b6000612bce601683613150565b9150612bd98261382f565b602082019050919050565b6000612bf1602083613150565b9150612bfc82613858565b602082019050919050565b6000612c14601483613150565b9150612c1f82613881565b602082019050919050565b6000612c37602c83613150565b9150612c42826138aa565b604082019050919050565b6000612c5a602083613150565b9150612c65826138f9565b602082019050919050565b6000612c7d602983613150565b9150612c8882613922565b604082019050919050565b6000612ca0602f83613150565b9150612cab82613971565b604082019050919050565b6000612cc3601683613150565b9150612cce826139c0565b602082019050919050565b6000612ce6602183613150565b9150612cf1826139e9565b604082019050919050565b6000612d09603183613150565b9150612d1482613a38565b604082019050919050565b612d28816132f9565b82525050565b6000612d3a8286612990565b9150612d468285612990565b9150612d5282846129c1565b9150819050949350505050565b6000602082019050612d746000830184612900565b92915050565b6000608082019050612d8f6000830187612900565b612d9c6020830186612900565b612da96040830185612d1f565b8181036060830152612dbb818461291e565b905095945050505050565b6000602082019050612ddb600083018461290f565b92915050565b60006020820190508181036000830152612dfb8184612957565b905092915050565b60006020820190508181036000830152612e1c81612a40565b9050919050565b60006020820190508181036000830152612e3c81612a63565b9050919050565b60006020820190508181036000830152612e5c81612a86565b9050919050565b60006020820190508181036000830152612e7c81612aa9565b9050919050565b60006020820190508181036000830152612e9c81612acc565b9050919050565b60006020820190508181036000830152612ebc81612aef565b9050919050565b60006020820190508181036000830152612edc81612b12565b9050919050565b60006020820190508181036000830152612efc81612b35565b9050919050565b60006020820190508181036000830152612f1c81612b58565b9050919050565b60006020820190508181036000830152612f3c81612b7b565b9050919050565b60006020820190508181036000830152612f5c81612b9e565b9050919050565b60006020820190508181036000830152612f7c81612bc1565b9050919050565b60006020820190508181036000830152612f9c81612be4565b9050919050565b60006020820190508181036000830152612fbc81612c07565b9050919050565b60006020820190508181036000830152612fdc81612c2a565b9050919050565b60006020820190508181036000830152612ffc81612c4d565b9050919050565b6000602082019050818103600083015261301c81612c70565b9050919050565b6000602082019050818103600083015261303c81612c93565b9050919050565b6000602082019050818103600083015261305c81612cb6565b9050919050565b6000602082019050818103600083015261307c81612cd9565b9050919050565b6000602082019050818103600083015261309c81612cfc565b9050919050565b60006020820190506130b86000830184612d1f565b92915050565b60006130c86130d9565b90506130d48282613377565b919050565b6000604051905090565b600067ffffffffffffffff8211156130fe576130fd6134de565b5b6131078261352b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613177826132f9565b9150613182836132f9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131b7576131b6613422565b5b828201905092915050565b60006131cd826132f9565b91506131d8836132f9565b9250826131e8576131e7613451565b5b828204905092915050565b60006131fe826132f9565b9150613209836132f9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561324257613241613422565b5b828202905092915050565b6000613258826132f9565b9150613263836132f9565b92508282101561327657613275613422565b5b828203905092915050565b600061328c826132d9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613330578082015181840152602081019050613315565b8381111561333f576000848401525b50505050565b6000600282049050600182168061335d57607f821691505b6020821081141561337157613370613480565b5b50919050565b6133808261352b565b810181811067ffffffffffffffff8211171561339f5761339e6134de565b5b80604052505050565b60006133b3826132f9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133e6576133e5613422565b5b600182019050919050565b60006133fc826132f9565b9150613407836132f9565b92508261341757613416613451565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f546f6f206d616e7920746f6b656e7320666f72206f6e65207472616e7361637460008201527f696f6e0000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f496e73756666696369656e74207061796d656e74000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f2062616c616e636520746f20776974686472617700000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b613a9081613281565b8114613a9b57600080fd5b50565b613aa781613293565b8114613ab257600080fd5b50565b613abe8161329f565b8114613ac957600080fd5b50565b613ad5816132cb565b8114613ae057600080fd5b50565b613aec816132f9565b8114613af757600080fd5b5056fea26469706673582212208990326d053436849e7b1607bae8485baa3f53d2f6b5a4e7902a46d83c6ab5a164736f6c63430008070033

Deployed Bytecode Sourcemap

42716:2930:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28294:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29239:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30798:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30321:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45375:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31688:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45262:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42964:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45475:168;;;;;;;;;;;;;:::i;:::-;;32098:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43164:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43534:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28933:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42886:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28663:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42060:94;;;;;;;;;;;;;:::i;:::-;;43125:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45145:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41409:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29408:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44288:467;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31091:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44026:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32354:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43642:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44142:140;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42928:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31457:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42309:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28294:305;28396:4;28448:25;28433:40;;;:11;:40;;;;:105;;;;28505:33;28490:48;;;:11;:48;;;;28433:105;:158;;;;28555:36;28579:11;28555:23;:36::i;:::-;28433:158;28413:178;;28294:305;;;:::o;29239:100::-;29293:13;29326:5;29319:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29239:100;:::o;30798:221::-;30874:7;30902:16;30910:7;30902;:16::i;:::-;30894:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30987:15;:24;31003:7;30987:24;;;;;;;;;;;;;;;;;;;;;30980:31;;30798:221;;;:::o;30321:411::-;30402:13;30418:23;30433:7;30418:14;:23::i;:::-;30402:39;;30466:5;30460:11;;:2;:11;;;;30452:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;30560:5;30544:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;30569:37;30586:5;30593:12;:10;:12::i;:::-;30569:16;:37::i;:::-;30544:62;30522:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;30703:21;30712:2;30716:7;30703:8;:21::i;:::-;30391:341;30321:411;;:::o;45375:94::-;45419:4;45438:25;:15;:23;:25::i;:::-;45431:32;;45375:94;:::o;31688:339::-;31883:41;31902:12;:10;:12::i;:::-;31916:7;31883:18;:41::i;:::-;31875:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;31991:28;32001:4;32007:2;32011:7;31991:9;:28::i;:::-;31688:339;;;:::o;45262:107::-;41640:12;:10;:12::i;:::-;41629:23;;:7;:5;:7::i;:::-;:23;;;41621:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45350:13:::1;45333:30;;:14;:30;;;;45262:107:::0;:::o;42964:35::-;;;;:::o;45475:168::-;41640:12;:10;:12::i;:::-;41629:23;;:7;:5;:7::i;:::-;:23;;;41621:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45551:1:::1;45527:21;:25;45519:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;45594:7;:5;:7::i;:::-;45586:25;;:48;45612:21;45586:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;45475:168::o:0;32098:185::-;32236:39;32253:4;32259:2;32263:7;32236:39;;;;;;;;;;;;:16;:39::i;:::-;32098:185;;;:::o;43164:27::-;;;;;;;;;;;;;:::o;43534:102::-;41640:12;:10;:12::i;:::-;41629:23;;:7;:5;:7::i;:::-;:23;;;41621:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43620:10:::1;;43610:7;:20;;;;;;;:::i;:::-;;43534:102:::0;;:::o;28933:239::-;29005:7;29025:13;29041:7;:16;29049:7;29041:16;;;;;;;;;;;;;;;;;;;;;29025:32;;29093:1;29076:19;;:5;:19;;;;29068:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29159:5;29152:12;;;28933:239;;;:::o;42886:37::-;;;;:::o;28663:208::-;28735:7;28780:1;28763:19;;:5;:19;;;;28755:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;28847:9;:16;28857:5;28847:16;;;;;;;;;;;;;;;;28840:23;;28663:208;;;:::o;42060:94::-;41640:12;:10;:12::i;:::-;41629:23;;:7;:5;:7::i;:::-;:23;;;41621:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42125:21:::1;42143:1;42125:9;:21::i;:::-;42060:94::o:0;43125:34::-;;;;;;;;;;;;;:::o;45145:113::-;41640:12;:10;:12::i;:::-;41629:23;;:7;:5;:7::i;:::-;:23;;;41621:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45212:40:::1;45225:10;45237:14;45212:12;:40::i;:::-;45145:113:::0;:::o;41409:87::-;41455:7;41482:6;;;;;;;;;;;41475:13;;41409:87;:::o;29408:104::-;29464:13;29497:7;29490:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29408:104;:::o;44288:467::-;44355:15;;;;;;;;;;;44347:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;44437:9;;44408:25;:15;:23;:25::i;:::-;:38;;44400:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44506:9;;44488:14;:27;;44480:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;44594:14;;44565:25;:15;:23;:25::i;:::-;:43;44562:141;;44641:29;44655:14;44641:9;;:13;;:29;;;;:::i;:::-;44628:9;:42;;44620:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;44562:141;44709:40;44722:10;44734:14;44709:12;:40::i;:::-;44288:467;:::o;31091:295::-;31206:12;:10;:12::i;:::-;31194:24;;:8;:24;;;;31186:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;31306:8;31261:18;:32;31280:12;:10;:12::i;:::-;31261:32;;;;;;;;;;;;;;;:42;31294:8;31261:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31359:8;31330:48;;31345:12;:10;:12::i;:::-;31330:48;;;31369:8;31330:48;;;;;;:::i;:::-;;;;;;;;31091:295;;:::o;44026:104::-;44069:4;41640:12;:10;:12::i;:::-;41629:23;;:7;:5;:7::i;:::-;:23;;;41621:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44094:8:::1;;;;;;;;;;;44093:9;44082:8;;:20;;;;;;;;;;;;;;;;;;44116:8;;;;;;;;;;;44109:15;;44026:104:::0;:::o;32354:328::-;32529:41;32548:12;:10;:12::i;:::-;32562:7;32529:18;:41::i;:::-;32521:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;32635:39;32649:4;32655:2;32659:7;32668:5;32635:13;:39::i;:::-;32354:328;;;;:::o;43642:376::-;43708:13;43738:17;43746:8;43738:7;:17::i;:::-;43730:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;43829:5;43817:17;;:8;;;;;;;;;;;:17;;;43814:58;;;43854:9;43847:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43814:58;43876:28;43907:10;:8;:10::i;:::-;43876:41;;43953:14;43969:26;43986:8;43969:16;:26::i;:::-;43997:13;43936:75;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43922:90;;;43642:376;;;;:::o;44142:140::-;44200:4;41640:12;:10;:12::i;:::-;41629:23;;:7;:5;:7::i;:::-;:23;;;41621:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44232:15:::1;;;;;;;;;;;44231:16;44213:15;;:34;;;;;;;;;;;;;;;;;;44261:15;;;;;;;;;;;44254:22;;44142:140:::0;:::o;42928:31::-;;;;:::o;31457:164::-;31554:4;31578:18;:25;31597:5;31578:25;;;;;;;;;;;;;;;:35;31604:8;31578:35;;;;;;;;;;;;;;;;;;;;;;;;;31571:42;;31457:164;;;;:::o;42309:192::-;41640:12;:10;:12::i;:::-;41629:23;;:7;:5;:7::i;:::-;:23;;;41621:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42418:1:::1;42398:22;;:8;:22;;;;42390:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42474:19;42484:8;42474:9;:19::i;:::-;42309:192:::0;:::o;5754:157::-;5839:4;5878:25;5863:40;;;:11;:40;;;;5856:47;;5754:157;;;:::o;34192:127::-;34257:4;34309:1;34281:30;;:7;:16;34289:7;34281:16;;;;;;;;;;;;;;;;;;;;;:30;;;;34274:37;;34192:127;;;:::o;18397:98::-;18450:7;18477:10;18470:17;;18397:98;:::o;38174:174::-;38276:2;38249:15;:24;38265:7;38249:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;38332:7;38328:2;38294:46;;38303:23;38318:7;38303:14;:23::i;:::-;38294:46;;;;;;;;;;;;38174:174;;:::o;26391:114::-;26456:7;26483;:14;;;26476:21;;26391:114;;;:::o;34486:348::-;34579:4;34604:16;34612:7;34604;:16::i;:::-;34596:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;34680:13;34696:23;34711:7;34696:14;:23::i;:::-;34680:39;;34749:5;34738:16;;:7;:16;;;:51;;;;34782:7;34758:31;;:20;34770:7;34758:11;:20::i;:::-;:31;;;34738:51;:87;;;;34793:32;34810:5;34817:7;34793:16;:32::i;:::-;34738:87;34730:96;;;34486:348;;;;:::o;37478:578::-;37637:4;37610:31;;:23;37625:7;37610:14;:23::i;:::-;:31;;;37602:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;37720:1;37706:16;;:2;:16;;;;37698:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;37776:39;37797:4;37803:2;37807:7;37776:20;:39::i;:::-;37880:29;37897:1;37901:7;37880:8;:29::i;:::-;37941:1;37922:9;:15;37932:4;37922:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;37970:1;37953:9;:13;37963:2;37953:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;38001:2;37982:7;:16;37990:7;37982:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;38040:7;38036:2;38021:27;;38030:4;38021:27;;;;;;;;;;;;37478:578;;;:::o;42509:173::-;42565:16;42584:6;;;;;;;;;;;42565:25;;42610:8;42601:6;;:17;;;;;;;;;;;;;;;;;;42665:8;42634:40;;42655:8;42634:40;;;;;;;;;;;;42554:128;42509:173;:::o;44762:375::-;44829:23;44855:25;:15;:23;:25::i;:::-;44829:51;;44929:9;;44895:30;44918:6;44895:18;:22;;:30;;;;:::i;:::-;:43;;44887:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;44980:6;44976:156;44995:6;44992:1;:9;44976:156;;;45018:20;;;;;:::i;:::-;;;;45049:37;45059:6;45067:18;45049:9;:37::i;:::-;45097:27;:15;:25;:27::i;:::-;45003:3;;;;;:::i;:::-;;;;44976:156;;;;44822:315;44762:375;;:::o;22149:98::-;22207:7;22238:1;22234;:5;;;;:::i;:::-;22227:12;;22149:98;;;;:::o;33564:315::-;33721:28;33731:4;33737:2;33741:7;33721:9;:28::i;:::-;33768:48;33791:4;33797:2;33801:7;33810:5;33768:22;:48::i;:::-;33760:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;33564:315;;;;:::o;43434:94::-;43486:13;43515:7;43508:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43434:94;:::o;6229:723::-;6285:13;6515:1;6506:5;:10;6502:53;;;6533:10;;;;;;;;;;;;;;;;;;;;;6502:53;6565:12;6580:5;6565:20;;6596:14;6621:78;6636:1;6628:4;:9;6621:78;;6654:8;;;;;:::i;:::-;;;;6685:2;6677:10;;;;;:::i;:::-;;;6621:78;;;6709:19;6741:6;6731:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6709:39;;6759:154;6775:1;6766:5;:10;6759:154;;6803:1;6793:11;;;;;:::i;:::-;;;6870:2;6862:5;:10;;;;:::i;:::-;6849:2;:24;;;;:::i;:::-;6836:39;;6819:6;6826;6819:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6899:2;6890:11;;;;;:::i;:::-;;;6759:154;;;6937:6;6923:21;;;;;6229:723;;;;:::o;40284:126::-;;;;:::o;21411:98::-;21469:7;21500:1;21496;:5;;;;:::i;:::-;21489:12;;21411:98;;;;:::o;35176:110::-;35252:26;35262:2;35266:7;35252:26;;;;;;;;;;;;:9;:26::i;:::-;35176:110;;:::o;26513:127::-;26620:1;26602:7;:14;;;:19;;;;;;;;;;;26513:127;:::o;38913:799::-;39068:4;39089:15;:2;:13;;;:15::i;:::-;39085:620;;;39141:2;39125:36;;;39162:12;:10;:12::i;:::-;39176:4;39182:7;39191:5;39125:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39121:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39384:1;39367:6;:13;:18;39363:272;;;39410:60;;;;;;;;;;:::i;:::-;;;;;;;;39363:272;39585:6;39579:13;39570:6;39566:2;39562:15;39555:38;39121:529;39258:41;;;39248:51;;;:6;:51;;;;39241:58;;;;;39085:620;39689:4;39682:11;;38913:799;;;;;;;:::o;35513:321::-;35643:18;35649:2;35653:7;35643:5;:18::i;:::-;35694:54;35725:1;35729:2;35733:7;35742:5;35694:22;:54::i;:::-;35672:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;35513:321;;;:::o;8754:387::-;8814:4;9022:12;9089:7;9077:20;9069:28;;9132:1;9125:4;:8;9118:15;;;8754:387;;;:::o;36170:382::-;36264:1;36250:16;;:2;:16;;;;36242:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;36323:16;36331:7;36323;:16::i;:::-;36322:17;36314:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;36385:45;36414:1;36418:2;36422:7;36385:20;:45::i;:::-;36460:1;36443:9;:13;36453:2;36443:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36491:2;36472:7;:16;36480:7;36472:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36536:7;36532:2;36511:33;;36528:1;36511:33;;;;;;;;;;;;36170:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:137::-;1972:5;2010:6;1997:20;1988:29;;2026:32;2052:5;2026:32;:::i;:::-;1927:137;;;;:::o;2070:139::-;2116:5;2154:6;2141:20;2132:29;;2170:33;2197:5;2170:33;:::i;:::-;2070:139;;;;:::o;2215:329::-;2274:6;2323:2;2311:9;2302:7;2298:23;2294:32;2291:119;;;2329:79;;:::i;:::-;2291:119;2449:1;2474:53;2519:7;2510:6;2499:9;2495:22;2474:53;:::i;:::-;2464:63;;2420:117;2215:329;;;;:::o;2550:474::-;2618:6;2626;2675:2;2663:9;2654:7;2650:23;2646:32;2643:119;;;2681:79;;:::i;:::-;2643:119;2801:1;2826:53;2871:7;2862:6;2851:9;2847:22;2826:53;:::i;:::-;2816:63;;2772:117;2928:2;2954:53;2999:7;2990:6;2979:9;2975:22;2954:53;:::i;:::-;2944:63;;2899:118;2550:474;;;;;:::o;3030:619::-;3107:6;3115;3123;3172:2;3160:9;3151:7;3147:23;3143:32;3140:119;;;3178:79;;:::i;:::-;3140:119;3298:1;3323:53;3368:7;3359:6;3348:9;3344:22;3323:53;:::i;:::-;3313:63;;3269:117;3425:2;3451:53;3496:7;3487:6;3476:9;3472:22;3451:53;:::i;:::-;3441:63;;3396:118;3553:2;3579:53;3624:7;3615:6;3604:9;3600:22;3579:53;:::i;:::-;3569:63;;3524:118;3030:619;;;;;:::o;3655:943::-;3750:6;3758;3766;3774;3823:3;3811:9;3802:7;3798:23;3794:33;3791:120;;;3830:79;;:::i;:::-;3791:120;3950:1;3975:53;4020:7;4011:6;4000:9;3996:22;3975:53;:::i;:::-;3965:63;;3921:117;4077:2;4103:53;4148:7;4139:6;4128:9;4124:22;4103:53;:::i;:::-;4093:63;;4048:118;4205:2;4231:53;4276:7;4267:6;4256:9;4252:22;4231:53;:::i;:::-;4221:63;;4176:118;4361:2;4350:9;4346:18;4333:32;4392:18;4384:6;4381:30;4378:117;;;4414:79;;:::i;:::-;4378:117;4519:62;4573:7;4564:6;4553:9;4549:22;4519:62;:::i;:::-;4509:72;;4304:287;3655:943;;;;;;;:::o;4604:468::-;4669:6;4677;4726:2;4714:9;4705:7;4701:23;4697:32;4694:119;;;4732:79;;:::i;:::-;4694:119;4852:1;4877:53;4922:7;4913:6;4902:9;4898:22;4877:53;:::i;:::-;4867:63;;4823:117;4979:2;5005:50;5047:7;5038:6;5027:9;5023:22;5005:50;:::i;:::-;4995:60;;4950:115;4604:468;;;;;:::o;5078:474::-;5146:6;5154;5203:2;5191:9;5182:7;5178:23;5174:32;5171:119;;;5209:79;;:::i;:::-;5171:119;5329:1;5354:53;5399:7;5390:6;5379:9;5375:22;5354:53;:::i;:::-;5344:63;;5300:117;5456:2;5482:53;5527:7;5518:6;5507:9;5503:22;5482:53;:::i;:::-;5472:63;;5427:118;5078:474;;;;;:::o;5558:327::-;5616:6;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:52;5860:7;5851:6;5840:9;5836:22;5816:52;:::i;:::-;5806:62;;5762:116;5558:327;;;;:::o;5891:349::-;5960:6;6009:2;5997:9;5988:7;5984:23;5980:32;5977:119;;;6015:79;;:::i;:::-;5977:119;6135:1;6160:63;6215:7;6206:6;6195:9;6191:22;6160:63;:::i;:::-;6150:73;;6106:127;5891:349;;;;:::o;6246:529::-;6317:6;6325;6374:2;6362:9;6353:7;6349:23;6345:32;6342:119;;;6380:79;;:::i;:::-;6342:119;6528:1;6517:9;6513:17;6500:31;6558:18;6550:6;6547:30;6544:117;;;6580:79;;:::i;:::-;6544:117;6693:65;6750:7;6741:6;6730:9;6726:22;6693:65;:::i;:::-;6675:83;;;;6471:297;6246:529;;;;;:::o;6781:327::-;6839:6;6888:2;6876:9;6867:7;6863:23;6859:32;6856:119;;;6894:79;;:::i;:::-;6856:119;7014:1;7039:52;7083:7;7074:6;7063:9;7059:22;7039:52;:::i;:::-;7029:62;;6985:116;6781:327;;;;:::o;7114:329::-;7173:6;7222:2;7210:9;7201:7;7197:23;7193:32;7190:119;;;7228:79;;:::i;:::-;7190:119;7348:1;7373:53;7418:7;7409:6;7398:9;7394:22;7373:53;:::i;:::-;7363:63;;7319:117;7114:329;;;;:::o;7449:118::-;7536:24;7554:5;7536:24;:::i;:::-;7531:3;7524:37;7449:118;;:::o;7573:109::-;7654:21;7669:5;7654:21;:::i;:::-;7649:3;7642:34;7573:109;;:::o;7688:360::-;7774:3;7802:38;7834:5;7802:38;:::i;:::-;7856:70;7919:6;7914:3;7856:70;:::i;:::-;7849:77;;7935:52;7980:6;7975:3;7968:4;7961:5;7957:16;7935:52;:::i;:::-;8012:29;8034:6;8012:29;:::i;:::-;8007:3;8003:39;7996:46;;7778:270;7688:360;;;;:::o;8054:364::-;8142:3;8170:39;8203:5;8170:39;:::i;:::-;8225:71;8289:6;8284:3;8225:71;:::i;:::-;8218:78;;8305:52;8350:6;8345:3;8338:4;8331:5;8327:16;8305:52;:::i;:::-;8382:29;8404:6;8382:29;:::i;:::-;8377:3;8373:39;8366:46;;8146:272;8054:364;;;;:::o;8424:377::-;8530:3;8558:39;8591:5;8558:39;:::i;:::-;8613:89;8695:6;8690:3;8613:89;:::i;:::-;8606:96;;8711:52;8756:6;8751:3;8744:4;8737:5;8733:16;8711:52;:::i;:::-;8788:6;8783:3;8779:16;8772:23;;8534:267;8424:377;;;;:::o;8831:845::-;8934:3;8971:5;8965:12;9000:36;9026:9;9000:36;:::i;:::-;9052:89;9134:6;9129:3;9052:89;:::i;:::-;9045:96;;9172:1;9161:9;9157:17;9188:1;9183:137;;;;9334:1;9329:341;;;;9150:520;;9183:137;9267:4;9263:9;9252;9248:25;9243:3;9236:38;9303:6;9298:3;9294:16;9287:23;;9183:137;;9329:341;9396:38;9428:5;9396:38;:::i;:::-;9456:1;9470:154;9484:6;9481:1;9478:13;9470:154;;;9558:7;9552:14;9548:1;9543:3;9539:11;9532:35;9608:1;9599:7;9595:15;9584:26;;9506:4;9503:1;9499:12;9494:17;;9470:154;;;9653:6;9648:3;9644:16;9637:23;;9336:334;;9150:520;;8938:738;;8831:845;;;;:::o;9682:366::-;9824:3;9845:67;9909:2;9904:3;9845:67;:::i;:::-;9838:74;;9921:93;10010:3;9921:93;:::i;:::-;10039:2;10034:3;10030:12;10023:19;;9682:366;;;:::o;10054:::-;10196:3;10217:67;10281:2;10276:3;10217:67;:::i;:::-;10210:74;;10293:93;10382:3;10293:93;:::i;:::-;10411:2;10406:3;10402:12;10395:19;;10054:366;;;:::o;10426:::-;10568:3;10589:67;10653:2;10648:3;10589:67;:::i;:::-;10582:74;;10665:93;10754:3;10665:93;:::i;:::-;10783:2;10778:3;10774:12;10767:19;;10426:366;;;:::o;10798:::-;10940:3;10961:67;11025:2;11020:3;10961:67;:::i;:::-;10954:74;;11037:93;11126:3;11037:93;:::i;:::-;11155:2;11150:3;11146:12;11139:19;;10798:366;;;:::o;11170:::-;11312:3;11333:67;11397:2;11392:3;11333:67;:::i;:::-;11326:74;;11409:93;11498:3;11409:93;:::i;:::-;11527:2;11522:3;11518:12;11511:19;;11170:366;;;:::o;11542:::-;11684:3;11705:67;11769:2;11764:3;11705:67;:::i;:::-;11698:74;;11781:93;11870:3;11781:93;:::i;:::-;11899:2;11894:3;11890:12;11883:19;;11542:366;;;:::o;11914:::-;12056:3;12077:67;12141:2;12136:3;12077:67;:::i;:::-;12070:74;;12153:93;12242:3;12153:93;:::i;:::-;12271:2;12266:3;12262:12;12255:19;;11914:366;;;:::o;12286:::-;12428:3;12449:67;12513:2;12508:3;12449:67;:::i;:::-;12442:74;;12525:93;12614:3;12525:93;:::i;:::-;12643:2;12638:3;12634:12;12627:19;;12286:366;;;:::o;12658:::-;12800:3;12821:67;12885:2;12880:3;12821:67;:::i;:::-;12814:74;;12897:93;12986:3;12897:93;:::i;:::-;13015:2;13010:3;13006:12;12999:19;;12658:366;;;:::o;13030:::-;13172:3;13193:67;13257:2;13252:3;13193:67;:::i;:::-;13186:74;;13269:93;13358:3;13269:93;:::i;:::-;13387:2;13382:3;13378:12;13371:19;;13030:366;;;:::o;13402:::-;13544:3;13565:67;13629:2;13624:3;13565:67;:::i;:::-;13558:74;;13641:93;13730:3;13641:93;:::i;:::-;13759:2;13754:3;13750:12;13743:19;;13402:366;;;:::o;13774:::-;13916:3;13937:67;14001:2;13996:3;13937:67;:::i;:::-;13930:74;;14013:93;14102:3;14013:93;:::i;:::-;14131:2;14126:3;14122:12;14115:19;;13774:366;;;:::o;14146:::-;14288:3;14309:67;14373:2;14368:3;14309:67;:::i;:::-;14302:74;;14385:93;14474:3;14385:93;:::i;:::-;14503:2;14498:3;14494:12;14487:19;;14146:366;;;:::o;14518:::-;14660:3;14681:67;14745:2;14740:3;14681:67;:::i;:::-;14674:74;;14757:93;14846:3;14757:93;:::i;:::-;14875:2;14870:3;14866:12;14859:19;;14518:366;;;:::o;14890:::-;15032:3;15053:67;15117:2;15112:3;15053:67;:::i;:::-;15046:74;;15129:93;15218:3;15129:93;:::i;:::-;15247:2;15242:3;15238:12;15231:19;;14890:366;;;:::o;15262:::-;15404:3;15425:67;15489:2;15484:3;15425:67;:::i;:::-;15418:74;;15501:93;15590:3;15501:93;:::i;:::-;15619:2;15614:3;15610:12;15603:19;;15262:366;;;:::o;15634:::-;15776:3;15797:67;15861:2;15856:3;15797:67;:::i;:::-;15790:74;;15873:93;15962:3;15873:93;:::i;:::-;15991:2;15986:3;15982:12;15975:19;;15634:366;;;:::o;16006:::-;16148:3;16169:67;16233:2;16228:3;16169:67;:::i;:::-;16162:74;;16245:93;16334:3;16245:93;:::i;:::-;16363:2;16358:3;16354:12;16347:19;;16006:366;;;:::o;16378:::-;16520:3;16541:67;16605:2;16600:3;16541:67;:::i;:::-;16534:74;;16617:93;16706:3;16617:93;:::i;:::-;16735:2;16730:3;16726:12;16719:19;;16378:366;;;:::o;16750:::-;16892:3;16913:67;16977:2;16972:3;16913:67;:::i;:::-;16906:74;;16989:93;17078:3;16989:93;:::i;:::-;17107:2;17102:3;17098:12;17091:19;;16750:366;;;:::o;17122:::-;17264:3;17285:67;17349:2;17344:3;17285:67;:::i;:::-;17278:74;;17361:93;17450:3;17361:93;:::i;:::-;17479:2;17474:3;17470:12;17463:19;;17122:366;;;:::o;17494:118::-;17581:24;17599:5;17581:24;:::i;:::-;17576:3;17569:37;17494:118;;:::o;17618:589::-;17843:3;17865:95;17956:3;17947:6;17865:95;:::i;:::-;17858:102;;17977:95;18068:3;18059:6;17977:95;:::i;:::-;17970:102;;18089:92;18177:3;18168:6;18089:92;:::i;:::-;18082:99;;18198:3;18191:10;;17618:589;;;;;;:::o;18213:222::-;18306:4;18344:2;18333:9;18329:18;18321:26;;18357:71;18425:1;18414:9;18410:17;18401:6;18357:71;:::i;:::-;18213:222;;;;:::o;18441:640::-;18636:4;18674:3;18663:9;18659:19;18651:27;;18688:71;18756:1;18745:9;18741:17;18732:6;18688:71;:::i;:::-;18769:72;18837:2;18826:9;18822:18;18813:6;18769:72;:::i;:::-;18851;18919:2;18908:9;18904:18;18895:6;18851:72;:::i;:::-;18970:9;18964:4;18960:20;18955:2;18944:9;18940:18;18933:48;18998:76;19069:4;19060:6;18998:76;:::i;:::-;18990:84;;18441:640;;;;;;;:::o;19087:210::-;19174:4;19212:2;19201:9;19197:18;19189:26;;19225:65;19287:1;19276:9;19272:17;19263:6;19225:65;:::i;:::-;19087:210;;;;:::o;19303:313::-;19416:4;19454:2;19443:9;19439:18;19431:26;;19503:9;19497:4;19493:20;19489:1;19478:9;19474:17;19467:47;19531:78;19604:4;19595:6;19531:78;:::i;:::-;19523:86;;19303:313;;;;:::o;19622:419::-;19788:4;19826:2;19815:9;19811:18;19803:26;;19875:9;19869:4;19865:20;19861:1;19850:9;19846:17;19839:47;19903:131;20029:4;19903:131;:::i;:::-;19895:139;;19622:419;;;:::o;20047:::-;20213:4;20251:2;20240:9;20236:18;20228:26;;20300:9;20294:4;20290:20;20286:1;20275:9;20271:17;20264:47;20328:131;20454:4;20328:131;:::i;:::-;20320:139;;20047:419;;;:::o;20472:::-;20638:4;20676:2;20665:9;20661:18;20653:26;;20725:9;20719:4;20715:20;20711:1;20700:9;20696:17;20689:47;20753:131;20879:4;20753:131;:::i;:::-;20745:139;;20472:419;;;:::o;20897:::-;21063:4;21101:2;21090:9;21086:18;21078:26;;21150:9;21144:4;21140:20;21136:1;21125:9;21121:17;21114:47;21178:131;21304:4;21178:131;:::i;:::-;21170:139;;20897:419;;;:::o;21322:::-;21488:4;21526:2;21515:9;21511:18;21503:26;;21575:9;21569:4;21565:20;21561:1;21550:9;21546:17;21539:47;21603:131;21729:4;21603:131;:::i;:::-;21595:139;;21322:419;;;:::o;21747:::-;21913:4;21951:2;21940:9;21936:18;21928:26;;22000:9;21994:4;21990:20;21986:1;21975:9;21971:17;21964:47;22028:131;22154:4;22028:131;:::i;:::-;22020:139;;21747:419;;;:::o;22172:::-;22338:4;22376:2;22365:9;22361:18;22353:26;;22425:9;22419:4;22415:20;22411:1;22400:9;22396:17;22389:47;22453:131;22579:4;22453:131;:::i;:::-;22445:139;;22172:419;;;:::o;22597:::-;22763:4;22801:2;22790:9;22786:18;22778:26;;22850:9;22844:4;22840:20;22836:1;22825:9;22821:17;22814:47;22878:131;23004:4;22878:131;:::i;:::-;22870:139;;22597:419;;;:::o;23022:::-;23188:4;23226:2;23215:9;23211:18;23203:26;;23275:9;23269:4;23265:20;23261:1;23250:9;23246:17;23239:47;23303:131;23429:4;23303:131;:::i;:::-;23295:139;;23022:419;;;:::o;23447:::-;23613:4;23651:2;23640:9;23636:18;23628:26;;23700:9;23694:4;23690:20;23686:1;23675:9;23671:17;23664:47;23728:131;23854:4;23728:131;:::i;:::-;23720:139;;23447:419;;;:::o;23872:::-;24038:4;24076:2;24065:9;24061:18;24053:26;;24125:9;24119:4;24115:20;24111:1;24100:9;24096:17;24089:47;24153:131;24279:4;24153:131;:::i;:::-;24145:139;;23872:419;;;:::o;24297:::-;24463:4;24501:2;24490:9;24486:18;24478:26;;24550:9;24544:4;24540:20;24536:1;24525:9;24521:17;24514:47;24578:131;24704:4;24578:131;:::i;:::-;24570:139;;24297:419;;;:::o;24722:::-;24888:4;24926:2;24915:9;24911:18;24903:26;;24975:9;24969:4;24965:20;24961:1;24950:9;24946:17;24939:47;25003:131;25129:4;25003:131;:::i;:::-;24995:139;;24722:419;;;:::o;25147:::-;25313:4;25351:2;25340:9;25336:18;25328:26;;25400:9;25394:4;25390:20;25386:1;25375:9;25371:17;25364:47;25428:131;25554:4;25428:131;:::i;:::-;25420:139;;25147:419;;;:::o;25572:::-;25738:4;25776:2;25765:9;25761:18;25753:26;;25825:9;25819:4;25815:20;25811:1;25800:9;25796:17;25789:47;25853:131;25979:4;25853:131;:::i;:::-;25845:139;;25572:419;;;:::o;25997:::-;26163:4;26201:2;26190:9;26186:18;26178:26;;26250:9;26244:4;26240:20;26236:1;26225:9;26221:17;26214:47;26278:131;26404:4;26278:131;:::i;:::-;26270:139;;25997:419;;;:::o;26422:::-;26588:4;26626:2;26615:9;26611:18;26603:26;;26675:9;26669:4;26665:20;26661:1;26650:9;26646:17;26639:47;26703:131;26829:4;26703:131;:::i;:::-;26695:139;;26422:419;;;:::o;26847:::-;27013:4;27051:2;27040:9;27036:18;27028:26;;27100:9;27094:4;27090:20;27086:1;27075:9;27071:17;27064:47;27128:131;27254:4;27128:131;:::i;:::-;27120:139;;26847:419;;;:::o;27272:::-;27438:4;27476:2;27465:9;27461:18;27453:26;;27525:9;27519:4;27515:20;27511:1;27500:9;27496:17;27489:47;27553:131;27679:4;27553:131;:::i;:::-;27545:139;;27272:419;;;:::o;27697:::-;27863:4;27901:2;27890:9;27886:18;27878:26;;27950:9;27944:4;27940:20;27936:1;27925:9;27921:17;27914:47;27978:131;28104:4;27978:131;:::i;:::-;27970:139;;27697:419;;;:::o;28122:::-;28288:4;28326:2;28315:9;28311:18;28303:26;;28375:9;28369:4;28365:20;28361:1;28350:9;28346:17;28339:47;28403:131;28529:4;28403:131;:::i;:::-;28395:139;;28122:419;;;:::o;28547:222::-;28640:4;28678:2;28667:9;28663:18;28655:26;;28691:71;28759:1;28748:9;28744:17;28735:6;28691:71;:::i;:::-;28547:222;;;;:::o;28775:129::-;28809:6;28836:20;;:::i;:::-;28826:30;;28865:33;28893:4;28885:6;28865:33;:::i;:::-;28775:129;;;:::o;28910:75::-;28943:6;28976:2;28970:9;28960:19;;28910:75;:::o;28991:307::-;29052:4;29142:18;29134:6;29131:30;29128:56;;;29164:18;;:::i;:::-;29128:56;29202:29;29224:6;29202:29;:::i;:::-;29194:37;;29286:4;29280;29276:15;29268:23;;28991:307;;;:::o;29304:141::-;29353:4;29376:3;29368:11;;29399:3;29396:1;29389:14;29433:4;29430:1;29420:18;29412:26;;29304:141;;;:::o;29451:98::-;29502:6;29536:5;29530:12;29520:22;;29451:98;;;:::o;29555:99::-;29607:6;29641:5;29635:12;29625:22;;29555:99;;;:::o;29660:168::-;29743:11;29777:6;29772:3;29765:19;29817:4;29812:3;29808:14;29793:29;;29660:168;;;;:::o;29834:169::-;29918:11;29952:6;29947:3;29940:19;29992:4;29987:3;29983:14;29968:29;;29834:169;;;;:::o;30009:148::-;30111:11;30148:3;30133:18;;30009:148;;;;:::o;30163:305::-;30203:3;30222:20;30240:1;30222:20;:::i;:::-;30217:25;;30256:20;30274:1;30256:20;:::i;:::-;30251:25;;30410:1;30342:66;30338:74;30335:1;30332:81;30329:107;;;30416:18;;:::i;:::-;30329:107;30460:1;30457;30453:9;30446:16;;30163:305;;;;:::o;30474:185::-;30514:1;30531:20;30549:1;30531:20;:::i;:::-;30526:25;;30565:20;30583:1;30565:20;:::i;:::-;30560:25;;30604:1;30594:35;;30609:18;;:::i;:::-;30594:35;30651:1;30648;30644:9;30639:14;;30474:185;;;;:::o;30665:348::-;30705:7;30728:20;30746:1;30728:20;:::i;:::-;30723:25;;30762:20;30780:1;30762:20;:::i;:::-;30757:25;;30950:1;30882:66;30878:74;30875:1;30872:81;30867:1;30860:9;30853:17;30849:105;30846:131;;;30957:18;;:::i;:::-;30846:131;31005:1;31002;30998:9;30987:20;;30665:348;;;;:::o;31019:191::-;31059:4;31079:20;31097:1;31079:20;:::i;:::-;31074:25;;31113:20;31131:1;31113:20;:::i;:::-;31108:25;;31152:1;31149;31146:8;31143:34;;;31157:18;;:::i;:::-;31143:34;31202:1;31199;31195:9;31187:17;;31019:191;;;;:::o;31216:96::-;31253:7;31282:24;31300:5;31282:24;:::i;:::-;31271:35;;31216:96;;;:::o;31318:90::-;31352:7;31395:5;31388:13;31381:21;31370:32;;31318:90;;;:::o;31414:149::-;31450:7;31490:66;31483:5;31479:78;31468:89;;31414:149;;;:::o;31569:89::-;31605:7;31645:6;31638:5;31634:18;31623:29;;31569:89;;;:::o;31664:126::-;31701:7;31741:42;31734:5;31730:54;31719:65;;31664:126;;;:::o;31796:77::-;31833:7;31862:5;31851:16;;31796:77;;;:::o;31879:154::-;31963:6;31958:3;31953;31940:30;32025:1;32016:6;32011:3;32007:16;32000:27;31879:154;;;:::o;32039:307::-;32107:1;32117:113;32131:6;32128:1;32125:13;32117:113;;;32216:1;32211:3;32207:11;32201:18;32197:1;32192:3;32188:11;32181:39;32153:2;32150:1;32146:10;32141:15;;32117:113;;;32248:6;32245:1;32242:13;32239:101;;;32328:1;32319:6;32314:3;32310:16;32303:27;32239:101;32088:258;32039:307;;;:::o;32352:320::-;32396:6;32433:1;32427:4;32423:12;32413:22;;32480:1;32474:4;32470:12;32501:18;32491:81;;32557:4;32549:6;32545:17;32535:27;;32491:81;32619:2;32611:6;32608:14;32588:18;32585:38;32582:84;;;32638:18;;:::i;:::-;32582:84;32403:269;32352:320;;;:::o;32678:281::-;32761:27;32783:4;32761:27;:::i;:::-;32753:6;32749:40;32891:6;32879:10;32876:22;32855:18;32843:10;32840:34;32837:62;32834:88;;;32902:18;;:::i;:::-;32834:88;32942:10;32938:2;32931:22;32721:238;32678:281;;:::o;32965:233::-;33004:3;33027:24;33045:5;33027:24;:::i;:::-;33018:33;;33073:66;33066:5;33063:77;33060:103;;;33143:18;;:::i;:::-;33060:103;33190:1;33183:5;33179:13;33172:20;;32965:233;;;:::o;33204:176::-;33236:1;33253:20;33271:1;33253:20;:::i;:::-;33248:25;;33287:20;33305:1;33287:20;:::i;:::-;33282:25;;33326:1;33316:35;;33331:18;;:::i;:::-;33316:35;33372:1;33369;33365:9;33360:14;;33204:176;;;;:::o;33386:180::-;33434:77;33431:1;33424:88;33531:4;33528:1;33521:15;33555:4;33552:1;33545:15;33572:180;33620:77;33617:1;33610:88;33717:4;33714:1;33707:15;33741:4;33738:1;33731:15;33758:180;33806:77;33803:1;33796:88;33903:4;33900:1;33893:15;33927:4;33924:1;33917:15;33944:180;33992:77;33989:1;33982:88;34089:4;34086:1;34079:15;34113:4;34110:1;34103:15;34130:180;34178:77;34175:1;34168:88;34275:4;34272:1;34265:15;34299:4;34296:1;34289:15;34316:117;34425:1;34422;34415:12;34439:117;34548:1;34545;34538:12;34562:117;34671:1;34668;34661:12;34685:117;34794:1;34791;34784:12;34808:117;34917:1;34914;34907:12;34931:117;35040:1;35037;35030:12;35054:102;35095:6;35146:2;35142:7;35137:2;35130:5;35126:14;35122:28;35112:38;;35054:102;;;:::o;35162:222::-;35302:34;35298:1;35290:6;35286:14;35279:58;35371:5;35366:2;35358:6;35354:15;35347:30;35162:222;:::o;35390:237::-;35530:34;35526:1;35518:6;35514:14;35507:58;35599:20;35594:2;35586:6;35582:15;35575:45;35390:237;:::o;35633:225::-;35773:34;35769:1;35761:6;35757:14;35750:58;35842:8;35837:2;35829:6;35825:15;35818:33;35633:225;:::o;35864:178::-;36004:30;36000:1;35992:6;35988:14;35981:54;35864:178;:::o;36048:223::-;36188:34;36184:1;36176:6;36172:14;36165:58;36257:6;36252:2;36244:6;36240:15;36233:31;36048:223;:::o;36277:175::-;36417:27;36413:1;36405:6;36401:14;36394:51;36277:175;:::o;36458:168::-;36598:20;36594:1;36586:6;36582:14;36575:44;36458:168;:::o;36632:231::-;36772:34;36768:1;36760:6;36756:14;36749:58;36841:14;36836:2;36828:6;36824:15;36817:39;36632:231;:::o;36869:243::-;37009:34;37005:1;36997:6;36993:14;36986:58;37078:26;37073:2;37065:6;37061:15;37054:51;36869:243;:::o;37118:229::-;37258:34;37254:1;37246:6;37242:14;37235:58;37327:12;37322:2;37314:6;37310:15;37303:37;37118:229;:::o;37353:228::-;37493:34;37489:1;37481:6;37477:14;37470:58;37562:11;37557:2;37549:6;37545:15;37538:36;37353:228;:::o;37587:172::-;37727:24;37723:1;37715:6;37711:14;37704:48;37587:172;:::o;37765:182::-;37905:34;37901:1;37893:6;37889:14;37882:58;37765:182;:::o;37953:170::-;38093:22;38089:1;38081:6;38077:14;38070:46;37953:170;:::o;38129:231::-;38269:34;38265:1;38257:6;38253:14;38246:58;38338:14;38333:2;38325:6;38321:15;38314:39;38129:231;:::o;38366:182::-;38506:34;38502:1;38494:6;38490:14;38483:58;38366:182;:::o;38554:228::-;38694:34;38690:1;38682:6;38678:14;38671:58;38763:11;38758:2;38750:6;38746:15;38739:36;38554:228;:::o;38788:234::-;38928:34;38924:1;38916:6;38912:14;38905:58;38997:17;38992:2;38984:6;38980:15;38973:42;38788:234;:::o;39028:172::-;39168:24;39164:1;39156:6;39152:14;39145:48;39028:172;:::o;39206:220::-;39346:34;39342:1;39334:6;39330:14;39323:58;39415:3;39410:2;39402:6;39398:15;39391:28;39206:220;:::o;39432:236::-;39572:34;39568:1;39560:6;39556:14;39549:58;39641:19;39636:2;39628:6;39624:15;39617:44;39432:236;:::o;39674:122::-;39747:24;39765:5;39747:24;:::i;:::-;39740:5;39737:35;39727:63;;39786:1;39783;39776:12;39727:63;39674:122;:::o;39802:116::-;39872:21;39887:5;39872:21;:::i;:::-;39865:5;39862:32;39852:60;;39908:1;39905;39898:12;39852:60;39802:116;:::o;39924:120::-;39996:23;40013:5;39996:23;:::i;:::-;39989:5;39986:34;39976:62;;40034:1;40031;40024:12;39976:62;39924:120;:::o;40050:::-;40122:23;40139:5;40122:23;:::i;:::-;40115:5;40112:34;40102:62;;40160:1;40157;40150:12;40102:62;40050:120;:::o;40176:122::-;40249:24;40267:5;40249:24;:::i;:::-;40242:5;40239:35;40229:63;;40288:1;40285;40278:12;40229:63;40176:122;:::o

Swarm Source

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