ETH Price: $3,203.40 (-7.15%)
Gas: 3 Gwei

Token

DontMintThisShit (DMTS)
 

Overview

Max Total Supply

6,969 DMTS

Holders

709

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DMTS
0x271d86da4455176bc588baddcf3a9ba2cdce3cf8
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:
DontMintThisShit

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-11
*/

// SPDX-License-Identifier: MIT


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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (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/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

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


// OpenZeppelin Contracts v4.4.1 (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/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (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;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (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() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File:


pragma solidity ^0.8.0;










/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), "ERC721A: global index out of bounds");
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert("ERC721A: unable to get token of owner by index");
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), "ERC721A: number minted query for the zero address");
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, "ERC721A: approval to current owner");

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), "ERC721A: 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 {
        _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 override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        require(quantity != 0, "ERC721A: quantity must be greater than 0");

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        "ERC721A: transfer to non ERC721Receiver implementer"
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved");

        require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner");
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721A: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

contract DontMintThisShit  is ERC721A, Ownable, ReentrancyGuard {
    string public baseURI           = "ipfs://QmeG99tQpUxrHTHtdq3XJgAuszQdWfcvy7gFgdcKVzbjyA/";
    uint   public price             = 0.0069 ether;
    uint   public maxPerTx          = 10;
    uint   public maxPerFree        = 1;
    uint   public totalFree         = 6969;
    uint   public maxSupply         = 6969;
    bool   public mintEnabled       = false;

    mapping(address => uint256) private _mintedFreeAmount;

    constructor() ERC721A("DontMintThisShit", "DMTS"){}


    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId),"ERC721Metadata: URI query for nonexistent token");
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI,Strings.toString(_tokenId),".json"))
            : "";
    }

    function mint(uint256 count) external payable {
        uint256 cost = price;
        bool isFree = ((totalSupply() + count < totalFree + 1) &&
            (_mintedFreeAmount[msg.sender] + count <= maxPerFree));

        if (isFree) {
            cost = 0;
            _mintedFreeAmount[msg.sender] += count;
        }

        require(msg.value >= count * cost, "Please send the exact amount.");
        require(totalSupply() + count <= maxSupply, "No more");
        require(mintEnabled, "Minting is not live yet..");
        require(count <= maxPerTx, "Max per TX reached.");

        _safeMint(msg.sender, count);
    }

    function toggleMinting() external onlyOwner {
      mintEnabled = !mintEnabled;
    }

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

    function setBaseUri(string memory baseuri_) public onlyOwner {
        baseURI = baseuri_;
    }

    function setPrice(uint256 price_) external onlyOwner {
        price = price_;
    }

    function withdraw() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }


}

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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxPerFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseuri_","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","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":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060600160405280603681526020016200466d6036913960099080519060200190620000359291906200021c565b506618838370f34000600a55600a600b556001600c55611b39600d55611b39600e556000600f60006101000a81548160ff0219169083151502179055503480156200007f57600080fd5b506040518060400160405280601081526020017f446f6e744d696e745468697353686974000000000000000000000000000000008152506040518060400160405280600481526020017f444d5453000000000000000000000000000000000000000000000000000000008152508160019080519060200190620001049291906200021c565b5080600290805190602001906200011d9291906200021c565b50505062000140620001346200014e60201b60201c565b6200015660201b60201c565b600160088190555062000331565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022a90620002cc565b90600052602060002090601f0160209004810192826200024e57600085556200029a565b82601f106200026957805160ff19168380011785556200029a565b828001600101855582156200029a579182015b82811115620002995782518255916020019190600101906200027c565b5b509050620002a99190620002ad565b5090565b5b80821115620002c8576000816000905550600101620002ae565b5090565b60006002820490506001821680620002e557607f821691505b60208210811415620002fc57620002fb62000302565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61432c80620003416000396000f3fe6080604052600436106101d85760003560e01c80637d55094d11610102578063b88d4fde11610095578063d5abeb0111610064578063d5abeb011461068b578063e985e9c5146106b6578063f2fde38b146106f3578063f968adbe1461071c576101d8565b8063b88d4fde146105cf578063c7c39ffc146105f8578063c87b56dd14610623578063d123973014610660576101d8565b8063a035b1fe116100d1578063a035b1fe14610536578063a0712d6814610561578063a0bcfc7f1461057d578063a22cb465146105a6576101d8565b80637d55094d146104a05780638da5cb5b146104b757806391b7f5ed146104e257806395d89b411461050b576101d8565b8063333e44e61161017a5780636352211e116101495780636352211e146103e45780636c0360eb1461042157806370a082311461044c578063715018a614610489576101d8565b8063333e44e61461033c5780633ccfd60b1461036757806342842e0e1461037e5780634f6ccce7146103a7576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d65780632f745c59146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612de6565b610747565b60405161021191906133e2565b60405180910390f35b34801561022657600080fd5b5061022f610891565b60405161023c91906133fd565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612e89565b610923565b604051610279919061337b565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612da6565b6109a8565b005b3480156102b757600080fd5b506102c0610ac1565b6040516102cd919061373f565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612c90565b610aca565b005b34801561030b57600080fd5b5061032660048036038101906103219190612da6565b610ada565b604051610333919061373f565b60405180910390f35b34801561034857600080fd5b50610351610ccc565b60405161035e919061373f565b60405180910390f35b34801561037357600080fd5b5061037c610cd2565b005b34801561038a57600080fd5b506103a560048036038101906103a09190612c90565b610e53565b005b3480156103b357600080fd5b506103ce60048036038101906103c99190612e89565b610e73565b6040516103db919061373f565b60405180910390f35b3480156103f057600080fd5b5061040b60048036038101906104069190612e89565b610ec6565b604051610418919061337b565b60405180910390f35b34801561042d57600080fd5b50610436610edc565b60405161044391906133fd565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e9190612c23565b610f6a565b604051610480919061373f565b60405180910390f35b34801561049557600080fd5b5061049e611053565b005b3480156104ac57600080fd5b506104b56110db565b005b3480156104c357600080fd5b506104cc611183565b6040516104d9919061337b565b60405180910390f35b3480156104ee57600080fd5b5061050960048036038101906105049190612e89565b6111ad565b005b34801561051757600080fd5b50610520611233565b60405161052d91906133fd565b60405180910390f35b34801561054257600080fd5b5061054b6112c5565b604051610558919061373f565b60405180910390f35b61057b60048036038101906105769190612e89565b6112cb565b005b34801561058957600080fd5b506105a4600480360381019061059f9190612e40565b6114fa565b005b3480156105b257600080fd5b506105cd60048036038101906105c89190612d66565b611590565b005b3480156105db57600080fd5b506105f660048036038101906105f19190612ce3565b611711565b005b34801561060457600080fd5b5061060d61176d565b60405161061a919061373f565b60405180910390f35b34801561062f57600080fd5b5061064a60048036038101906106459190612e89565b611773565b60405161065791906133fd565b60405180910390f35b34801561066c57600080fd5b5061067561181a565b60405161068291906133e2565b60405180910390f35b34801561069757600080fd5b506106a061182d565b6040516106ad919061373f565b60405180910390f35b3480156106c257600080fd5b506106dd60048036038101906106d89190612c50565b611833565b6040516106ea91906133e2565b60405180910390f35b3480156106ff57600080fd5b5061071a60048036038101906107159190612c23565b6118c7565b005b34801561072857600080fd5b506107316119bf565b60405161073e919061373f565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061087a57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061088a5750610889826119c5565b5b9050919050565b6060600180546108a0906139fa565b80601f01602080910402602001604051908101604052809291908181526020018280546108cc906139fa565b80156109195780601f106108ee57610100808354040283529160200191610919565b820191906000526020600020905b8154815290600101906020018083116108fc57829003601f168201915b5050505050905090565b600061092e82611a2f565b61096d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109649061371f565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b382610ec6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1b906135df565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a43611a3c565b73ffffffffffffffffffffffffffffffffffffffff161480610a725750610a7181610a6c611a3c565b611833565b5b610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa8906134df565b60405180910390fd5b610abc838383611a44565b505050565b60008054905090565b610ad5838383611af6565b505050565b6000610ae583610f6a565b8210610b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1d9061341f565b60405180910390fd5b6000610b30610ac1565b905060008060005b83811015610c8a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c2a57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c7c5786841415610c73578195505050505050610cc6565b83806001019450505b508080600101915050610b38565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbd9061369f565b60405180910390fd5b92915050565b600d5481565b610cda611a3c565b73ffffffffffffffffffffffffffffffffffffffff16610cf8611183565b73ffffffffffffffffffffffffffffffffffffffff1614610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d459061353f565b60405180910390fd5b60026008541415610d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8b906136bf565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610dc290613366565b60006040518083038185875af1925050503d8060008114610dff576040519150601f19603f3d011682016040523d82523d6000602084013e610e04565b606091505b5050905080610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f906135ff565b60405180910390fd5b506001600881905550565b610e6e83838360405180602001604052806000815250611711565b505050565b6000610e7d610ac1565b8210610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb59061349f565b60405180910390fd5b819050919050565b6000610ed182612036565b600001519050919050565b60098054610ee9906139fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610f15906139fa565b8015610f625780601f10610f3757610100808354040283529160200191610f62565b820191906000526020600020905b815481529060010190602001808311610f4557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd2906134ff565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61105b611a3c565b73ffffffffffffffffffffffffffffffffffffffff16611079611183565b73ffffffffffffffffffffffffffffffffffffffff16146110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c69061353f565b60405180910390fd5b6110d960006121d0565b565b6110e3611a3c565b73ffffffffffffffffffffffffffffffffffffffff16611101611183565b73ffffffffffffffffffffffffffffffffffffffff1614611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e9061353f565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111b5611a3c565b73ffffffffffffffffffffffffffffffffffffffff166111d3611183565b73ffffffffffffffffffffffffffffffffffffffff1614611229576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112209061353f565b60405180910390fd5b80600a8190555050565b606060028054611242906139fa565b80601f016020809104026020016040519081016040528092919081815260200182805461126e906139fa565b80156112bb5780601f10611290576101008083540402835291602001916112bb565b820191906000526020600020905b81548152906001019060200180831161129e57829003601f168201915b5050505050905090565b600a5481565b6000600a54905060006001600d546112e3919061382f565b836112ec610ac1565b6112f6919061382f565b10801561134f5750600c5483601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461134c919061382f565b11155b905080156113b2576000915082601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113aa919061382f565b925050819055505b81836113be91906138b6565b341015611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f7906135bf565b60405180910390fd5b600e548361140c610ac1565b611416919061382f565b1115611457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144e9061343f565b60405180910390fd5b600f60009054906101000a900460ff166114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d906136ff565b60405180910390fd5b600b548311156114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e29061367f565b60405180910390fd5b6114f53384612296565b505050565b611502611a3c565b73ffffffffffffffffffffffffffffffffffffffff16611520611183565b73ffffffffffffffffffffffffffffffffffffffff1614611576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156d9061353f565b60405180910390fd5b806009908051906020019061158c9291906129fd565b5050565b611598611a3c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fd9061357f565b60405180910390fd5b8060066000611613611a3c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116c0611a3c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161170591906133e2565b60405180910390a35050565b61171c848484611af6565b611728848484846122b4565b611767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175e9061361f565b60405180910390fd5b50505050565b600c5481565b606061177e82611a2f565b6117bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b49061355f565b60405180910390fd5b60006117c761244b565b905060008151116117e75760405180602001604052806000815250611812565b806117f1846124dd565b604051602001611802929190613337565b6040516020818303038152906040525b915050919050565b600f60009054906101000a900460ff1681565b600e5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118cf611a3c565b73ffffffffffffffffffffffffffffffffffffffff166118ed611183565b73ffffffffffffffffffffffffffffffffffffffff1614611943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193a9061353f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa9061345f565b60405180910390fd5b6119bc816121d0565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611b0182612036565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b28611a3c565b73ffffffffffffffffffffffffffffffffffffffff161480611b845750611b4d611a3c565b73ffffffffffffffffffffffffffffffffffffffff16611b6c84610923565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ba05750611b9f8260000151611b9a611a3c565b611833565b5b905080611be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd99061359f565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4b9061351f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbb906134bf565b60405180910390fd5b611cd1858585600161263e565b611ce16000848460000151611a44565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611fc657611f2581611a2f565b15611fc55782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461202f8585856001612644565b5050505050565b61203e612a83565b61204782611a2f565b612086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207d9061347f565b60405180910390fd5b60008290505b6000811061218f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121805780925050506121cb565b5080806001900391505061208c565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c2906136df565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122b082826040518060200160405280600081525061264a565b5050565b60006122d58473ffffffffffffffffffffffffffffffffffffffff1661265c565b1561243e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122fe611a3c565b8786866040518563ffffffff1660e01b81526004016123209493929190613396565b602060405180830381600087803b15801561233a57600080fd5b505af192505050801561236b57506040513d601f19601f820116820180604052508101906123689190612e13565b60015b6123ee573d806000811461239b576040519150601f19603f3d011682016040523d82523d6000602084013e6123a0565b606091505b506000815114156123e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123dd9061361f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612443565b600190505b949350505050565b60606009805461245a906139fa565b80601f0160208091040260200160405190810160405280929190818152602001828054612486906139fa565b80156124d35780601f106124a8576101008083540402835291602001916124d3565b820191906000526020600020905b8154815290600101906020018083116124b657829003601f168201915b5050505050905090565b60606000821415612525576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612639565b600082905060005b6000821461255757808061254090613a5d565b915050600a826125509190613885565b915061252d565b60008167ffffffffffffffff81111561257357612572613b93565b5b6040519080825280601f01601f1916602001820160405280156125a55781602001600182028036833780820191505090505b5090505b60008514612632576001826125be9190613910565b9150600a856125cd9190613aa6565b60306125d9919061382f565b60f81b8183815181106125ef576125ee613b64565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561262b9190613885565b94506125a9565b8093505050505b919050565b50505050565b50505050565b612657838383600161267f565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156126f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ec9061363f565b60405180910390fd5b6000841415612739576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127309061365f565b60405180910390fd5b612746600086838761263e565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156129e057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156129cb5761298b60008884886122b4565b6129ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c19061361f565b60405180910390fd5b5b81806001019250508080600101915050612914565b5080600081905550506129f66000868387612644565b5050505050565b828054612a09906139fa565b90600052602060002090601f016020900481019282612a2b5760008555612a72565b82601f10612a4457805160ff1916838001178555612a72565b82800160010185558215612a72579182015b82811115612a71578251825591602001919060010190612a56565b5b509050612a7f9190612abd565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ad6576000816000905550600101612abe565b5090565b6000612aed612ae88461377f565b61375a565b905082815260208101848484011115612b0957612b08613bc7565b5b612b148482856139b8565b509392505050565b6000612b2f612b2a846137b0565b61375a565b905082815260208101848484011115612b4b57612b4a613bc7565b5b612b568482856139b8565b509392505050565b600081359050612b6d8161429a565b92915050565b600081359050612b82816142b1565b92915050565b600081359050612b97816142c8565b92915050565b600081519050612bac816142c8565b92915050565b600082601f830112612bc757612bc6613bc2565b5b8135612bd7848260208601612ada565b91505092915050565b600082601f830112612bf557612bf4613bc2565b5b8135612c05848260208601612b1c565b91505092915050565b600081359050612c1d816142df565b92915050565b600060208284031215612c3957612c38613bd1565b5b6000612c4784828501612b5e565b91505092915050565b60008060408385031215612c6757612c66613bd1565b5b6000612c7585828601612b5e565b9250506020612c8685828601612b5e565b9150509250929050565b600080600060608486031215612ca957612ca8613bd1565b5b6000612cb786828701612b5e565b9350506020612cc886828701612b5e565b9250506040612cd986828701612c0e565b9150509250925092565b60008060008060808587031215612cfd57612cfc613bd1565b5b6000612d0b87828801612b5e565b9450506020612d1c87828801612b5e565b9350506040612d2d87828801612c0e565b925050606085013567ffffffffffffffff811115612d4e57612d4d613bcc565b5b612d5a87828801612bb2565b91505092959194509250565b60008060408385031215612d7d57612d7c613bd1565b5b6000612d8b85828601612b5e565b9250506020612d9c85828601612b73565b9150509250929050565b60008060408385031215612dbd57612dbc613bd1565b5b6000612dcb85828601612b5e565b9250506020612ddc85828601612c0e565b9150509250929050565b600060208284031215612dfc57612dfb613bd1565b5b6000612e0a84828501612b88565b91505092915050565b600060208284031215612e2957612e28613bd1565b5b6000612e3784828501612b9d565b91505092915050565b600060208284031215612e5657612e55613bd1565b5b600082013567ffffffffffffffff811115612e7457612e73613bcc565b5b612e8084828501612be0565b91505092915050565b600060208284031215612e9f57612e9e613bd1565b5b6000612ead84828501612c0e565b91505092915050565b612ebf81613944565b82525050565b612ece81613956565b82525050565b6000612edf826137e1565b612ee981856137f7565b9350612ef98185602086016139c7565b612f0281613bd6565b840191505092915050565b6000612f18826137ec565b612f228185613813565b9350612f328185602086016139c7565b612f3b81613bd6565b840191505092915050565b6000612f51826137ec565b612f5b8185613824565b9350612f6b8185602086016139c7565b80840191505092915050565b6000612f84602283613813565b9150612f8f82613be7565b604082019050919050565b6000612fa7600783613813565b9150612fb282613c36565b602082019050919050565b6000612fca602683613813565b9150612fd582613c5f565b604082019050919050565b6000612fed602a83613813565b9150612ff882613cae565b604082019050919050565b6000613010602383613813565b915061301b82613cfd565b604082019050919050565b6000613033602583613813565b915061303e82613d4c565b604082019050919050565b6000613056603983613813565b915061306182613d9b565b604082019050919050565b6000613079602b83613813565b915061308482613dea565b604082019050919050565b600061309c602683613813565b91506130a782613e39565b604082019050919050565b60006130bf600583613824565b91506130ca82613e88565b600582019050919050565b60006130e2602083613813565b91506130ed82613eb1565b602082019050919050565b6000613105602f83613813565b915061311082613eda565b604082019050919050565b6000613128601a83613813565b915061313382613f29565b602082019050919050565b600061314b603283613813565b915061315682613f52565b604082019050919050565b600061316e601d83613813565b915061317982613fa1565b602082019050919050565b6000613191602283613813565b915061319c82613fca565b604082019050919050565b60006131b4600083613808565b91506131bf82614019565b600082019050919050565b60006131d7601083613813565b91506131e28261401c565b602082019050919050565b60006131fa603383613813565b915061320582614045565b604082019050919050565b600061321d602183613813565b915061322882614094565b604082019050919050565b6000613240602883613813565b915061324b826140e3565b604082019050919050565b6000613263601383613813565b915061326e82614132565b602082019050919050565b6000613286602e83613813565b91506132918261415b565b604082019050919050565b60006132a9601f83613813565b91506132b4826141aa565b602082019050919050565b60006132cc602f83613813565b91506132d7826141d3565b604082019050919050565b60006132ef601983613813565b91506132fa82614222565b602082019050919050565b6000613312602d83613813565b915061331d8261424b565b604082019050919050565b613331816139ae565b82525050565b60006133438285612f46565b915061334f8284612f46565b915061335a826130b2565b91508190509392505050565b6000613371826131a7565b9150819050919050565b60006020820190506133906000830184612eb6565b92915050565b60006080820190506133ab6000830187612eb6565b6133b86020830186612eb6565b6133c56040830185613328565b81810360608301526133d78184612ed4565b905095945050505050565b60006020820190506133f76000830184612ec5565b92915050565b600060208201905081810360008301526134178184612f0d565b905092915050565b6000602082019050818103600083015261343881612f77565b9050919050565b6000602082019050818103600083015261345881612f9a565b9050919050565b6000602082019050818103600083015261347881612fbd565b9050919050565b6000602082019050818103600083015261349881612fe0565b9050919050565b600060208201905081810360008301526134b881613003565b9050919050565b600060208201905081810360008301526134d881613026565b9050919050565b600060208201905081810360008301526134f881613049565b9050919050565b600060208201905081810360008301526135188161306c565b9050919050565b600060208201905081810360008301526135388161308f565b9050919050565b60006020820190508181036000830152613558816130d5565b9050919050565b60006020820190508181036000830152613578816130f8565b9050919050565b600060208201905081810360008301526135988161311b565b9050919050565b600060208201905081810360008301526135b88161313e565b9050919050565b600060208201905081810360008301526135d881613161565b9050919050565b600060208201905081810360008301526135f881613184565b9050919050565b60006020820190508181036000830152613618816131ca565b9050919050565b60006020820190508181036000830152613638816131ed565b9050919050565b6000602082019050818103600083015261365881613210565b9050919050565b6000602082019050818103600083015261367881613233565b9050919050565b6000602082019050818103600083015261369881613256565b9050919050565b600060208201905081810360008301526136b881613279565b9050919050565b600060208201905081810360008301526136d88161329c565b9050919050565b600060208201905081810360008301526136f8816132bf565b9050919050565b60006020820190508181036000830152613718816132e2565b9050919050565b6000602082019050818103600083015261373881613305565b9050919050565b60006020820190506137546000830184613328565b92915050565b6000613764613775565b90506137708282613a2c565b919050565b6000604051905090565b600067ffffffffffffffff82111561379a57613799613b93565b5b6137a382613bd6565b9050602081019050919050565b600067ffffffffffffffff8211156137cb576137ca613b93565b5b6137d482613bd6565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061383a826139ae565b9150613845836139ae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561387a57613879613ad7565b5b828201905092915050565b6000613890826139ae565b915061389b836139ae565b9250826138ab576138aa613b06565b5b828204905092915050565b60006138c1826139ae565b91506138cc836139ae565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561390557613904613ad7565b5b828202905092915050565b600061391b826139ae565b9150613926836139ae565b92508282101561393957613938613ad7565b5b828203905092915050565b600061394f8261398e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156139e55780820151818401526020810190506139ca565b838111156139f4576000848401525b50505050565b60006002820490506001821680613a1257607f821691505b60208210811415613a2657613a25613b35565b5b50919050565b613a3582613bd6565b810181811067ffffffffffffffff82111715613a5457613a53613b93565b5b80604052505050565b6000613a68826139ae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a9b57613a9a613ad7565b5b600182019050919050565b6000613ab1826139ae565b9150613abc836139ae565b925082613acc57613acb613b06565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f4d696e74696e67206973206e6f74206c697665207965742e2e00000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6142a381613944565b81146142ae57600080fd5b50565b6142ba81613956565b81146142c557600080fd5b50565b6142d181613962565b81146142dc57600080fd5b50565b6142e8816139ae565b81146142f357600080fd5b5056fea2646970667358221220d7fb08572656bfdde6a1affe89e7f8747eaf87b5d1ffbe254e0f05b860043ab264736f6c63430008070033697066733a2f2f516d6547393974517055787248544874647133584a674175737a516457666376793767466764634b567a626a79412f

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80637d55094d11610102578063b88d4fde11610095578063d5abeb0111610064578063d5abeb011461068b578063e985e9c5146106b6578063f2fde38b146106f3578063f968adbe1461071c576101d8565b8063b88d4fde146105cf578063c7c39ffc146105f8578063c87b56dd14610623578063d123973014610660576101d8565b8063a035b1fe116100d1578063a035b1fe14610536578063a0712d6814610561578063a0bcfc7f1461057d578063a22cb465146105a6576101d8565b80637d55094d146104a05780638da5cb5b146104b757806391b7f5ed146104e257806395d89b411461050b576101d8565b8063333e44e61161017a5780636352211e116101495780636352211e146103e45780636c0360eb1461042157806370a082311461044c578063715018a614610489576101d8565b8063333e44e61461033c5780633ccfd60b1461036757806342842e0e1461037e5780634f6ccce7146103a7576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d65780632f745c59146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612de6565b610747565b60405161021191906133e2565b60405180910390f35b34801561022657600080fd5b5061022f610891565b60405161023c91906133fd565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612e89565b610923565b604051610279919061337b565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612da6565b6109a8565b005b3480156102b757600080fd5b506102c0610ac1565b6040516102cd919061373f565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612c90565b610aca565b005b34801561030b57600080fd5b5061032660048036038101906103219190612da6565b610ada565b604051610333919061373f565b60405180910390f35b34801561034857600080fd5b50610351610ccc565b60405161035e919061373f565b60405180910390f35b34801561037357600080fd5b5061037c610cd2565b005b34801561038a57600080fd5b506103a560048036038101906103a09190612c90565b610e53565b005b3480156103b357600080fd5b506103ce60048036038101906103c99190612e89565b610e73565b6040516103db919061373f565b60405180910390f35b3480156103f057600080fd5b5061040b60048036038101906104069190612e89565b610ec6565b604051610418919061337b565b60405180910390f35b34801561042d57600080fd5b50610436610edc565b60405161044391906133fd565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e9190612c23565b610f6a565b604051610480919061373f565b60405180910390f35b34801561049557600080fd5b5061049e611053565b005b3480156104ac57600080fd5b506104b56110db565b005b3480156104c357600080fd5b506104cc611183565b6040516104d9919061337b565b60405180910390f35b3480156104ee57600080fd5b5061050960048036038101906105049190612e89565b6111ad565b005b34801561051757600080fd5b50610520611233565b60405161052d91906133fd565b60405180910390f35b34801561054257600080fd5b5061054b6112c5565b604051610558919061373f565b60405180910390f35b61057b60048036038101906105769190612e89565b6112cb565b005b34801561058957600080fd5b506105a4600480360381019061059f9190612e40565b6114fa565b005b3480156105b257600080fd5b506105cd60048036038101906105c89190612d66565b611590565b005b3480156105db57600080fd5b506105f660048036038101906105f19190612ce3565b611711565b005b34801561060457600080fd5b5061060d61176d565b60405161061a919061373f565b60405180910390f35b34801561062f57600080fd5b5061064a60048036038101906106459190612e89565b611773565b60405161065791906133fd565b60405180910390f35b34801561066c57600080fd5b5061067561181a565b60405161068291906133e2565b60405180910390f35b34801561069757600080fd5b506106a061182d565b6040516106ad919061373f565b60405180910390f35b3480156106c257600080fd5b506106dd60048036038101906106d89190612c50565b611833565b6040516106ea91906133e2565b60405180910390f35b3480156106ff57600080fd5b5061071a60048036038101906107159190612c23565b6118c7565b005b34801561072857600080fd5b506107316119bf565b60405161073e919061373f565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061087a57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061088a5750610889826119c5565b5b9050919050565b6060600180546108a0906139fa565b80601f01602080910402602001604051908101604052809291908181526020018280546108cc906139fa565b80156109195780601f106108ee57610100808354040283529160200191610919565b820191906000526020600020905b8154815290600101906020018083116108fc57829003601f168201915b5050505050905090565b600061092e82611a2f565b61096d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109649061371f565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b382610ec6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1b906135df565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a43611a3c565b73ffffffffffffffffffffffffffffffffffffffff161480610a725750610a7181610a6c611a3c565b611833565b5b610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa8906134df565b60405180910390fd5b610abc838383611a44565b505050565b60008054905090565b610ad5838383611af6565b505050565b6000610ae583610f6a565b8210610b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1d9061341f565b60405180910390fd5b6000610b30610ac1565b905060008060005b83811015610c8a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c2a57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c7c5786841415610c73578195505050505050610cc6565b83806001019450505b508080600101915050610b38565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbd9061369f565b60405180910390fd5b92915050565b600d5481565b610cda611a3c565b73ffffffffffffffffffffffffffffffffffffffff16610cf8611183565b73ffffffffffffffffffffffffffffffffffffffff1614610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d459061353f565b60405180910390fd5b60026008541415610d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8b906136bf565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610dc290613366565b60006040518083038185875af1925050503d8060008114610dff576040519150601f19603f3d011682016040523d82523d6000602084013e610e04565b606091505b5050905080610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f906135ff565b60405180910390fd5b506001600881905550565b610e6e83838360405180602001604052806000815250611711565b505050565b6000610e7d610ac1565b8210610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb59061349f565b60405180910390fd5b819050919050565b6000610ed182612036565b600001519050919050565b60098054610ee9906139fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610f15906139fa565b8015610f625780601f10610f3757610100808354040283529160200191610f62565b820191906000526020600020905b815481529060010190602001808311610f4557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd2906134ff565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61105b611a3c565b73ffffffffffffffffffffffffffffffffffffffff16611079611183565b73ffffffffffffffffffffffffffffffffffffffff16146110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c69061353f565b60405180910390fd5b6110d960006121d0565b565b6110e3611a3c565b73ffffffffffffffffffffffffffffffffffffffff16611101611183565b73ffffffffffffffffffffffffffffffffffffffff1614611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e9061353f565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111b5611a3c565b73ffffffffffffffffffffffffffffffffffffffff166111d3611183565b73ffffffffffffffffffffffffffffffffffffffff1614611229576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112209061353f565b60405180910390fd5b80600a8190555050565b606060028054611242906139fa565b80601f016020809104026020016040519081016040528092919081815260200182805461126e906139fa565b80156112bb5780601f10611290576101008083540402835291602001916112bb565b820191906000526020600020905b81548152906001019060200180831161129e57829003601f168201915b5050505050905090565b600a5481565b6000600a54905060006001600d546112e3919061382f565b836112ec610ac1565b6112f6919061382f565b10801561134f5750600c5483601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461134c919061382f565b11155b905080156113b2576000915082601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113aa919061382f565b925050819055505b81836113be91906138b6565b341015611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f7906135bf565b60405180910390fd5b600e548361140c610ac1565b611416919061382f565b1115611457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144e9061343f565b60405180910390fd5b600f60009054906101000a900460ff166114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d906136ff565b60405180910390fd5b600b548311156114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e29061367f565b60405180910390fd5b6114f53384612296565b505050565b611502611a3c565b73ffffffffffffffffffffffffffffffffffffffff16611520611183565b73ffffffffffffffffffffffffffffffffffffffff1614611576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156d9061353f565b60405180910390fd5b806009908051906020019061158c9291906129fd565b5050565b611598611a3c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fd9061357f565b60405180910390fd5b8060066000611613611a3c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116c0611a3c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161170591906133e2565b60405180910390a35050565b61171c848484611af6565b611728848484846122b4565b611767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175e9061361f565b60405180910390fd5b50505050565b600c5481565b606061177e82611a2f565b6117bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b49061355f565b60405180910390fd5b60006117c761244b565b905060008151116117e75760405180602001604052806000815250611812565b806117f1846124dd565b604051602001611802929190613337565b6040516020818303038152906040525b915050919050565b600f60009054906101000a900460ff1681565b600e5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118cf611a3c565b73ffffffffffffffffffffffffffffffffffffffff166118ed611183565b73ffffffffffffffffffffffffffffffffffffffff1614611943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193a9061353f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa9061345f565b60405180910390fd5b6119bc816121d0565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611b0182612036565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b28611a3c565b73ffffffffffffffffffffffffffffffffffffffff161480611b845750611b4d611a3c565b73ffffffffffffffffffffffffffffffffffffffff16611b6c84610923565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ba05750611b9f8260000151611b9a611a3c565b611833565b5b905080611be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd99061359f565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4b9061351f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbb906134bf565b60405180910390fd5b611cd1858585600161263e565b611ce16000848460000151611a44565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611fc657611f2581611a2f565b15611fc55782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461202f8585856001612644565b5050505050565b61203e612a83565b61204782611a2f565b612086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207d9061347f565b60405180910390fd5b60008290505b6000811061218f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121805780925050506121cb565b5080806001900391505061208c565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c2906136df565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122b082826040518060200160405280600081525061264a565b5050565b60006122d58473ffffffffffffffffffffffffffffffffffffffff1661265c565b1561243e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122fe611a3c565b8786866040518563ffffffff1660e01b81526004016123209493929190613396565b602060405180830381600087803b15801561233a57600080fd5b505af192505050801561236b57506040513d601f19601f820116820180604052508101906123689190612e13565b60015b6123ee573d806000811461239b576040519150601f19603f3d011682016040523d82523d6000602084013e6123a0565b606091505b506000815114156123e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123dd9061361f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612443565b600190505b949350505050565b60606009805461245a906139fa565b80601f0160208091040260200160405190810160405280929190818152602001828054612486906139fa565b80156124d35780601f106124a8576101008083540402835291602001916124d3565b820191906000526020600020905b8154815290600101906020018083116124b657829003601f168201915b5050505050905090565b60606000821415612525576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612639565b600082905060005b6000821461255757808061254090613a5d565b915050600a826125509190613885565b915061252d565b60008167ffffffffffffffff81111561257357612572613b93565b5b6040519080825280601f01601f1916602001820160405280156125a55781602001600182028036833780820191505090505b5090505b60008514612632576001826125be9190613910565b9150600a856125cd9190613aa6565b60306125d9919061382f565b60f81b8183815181106125ef576125ee613b64565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561262b9190613885565b94506125a9565b8093505050505b919050565b50505050565b50505050565b612657838383600161267f565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156126f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ec9061363f565b60405180910390fd5b6000841415612739576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127309061365f565b60405180910390fd5b612746600086838761263e565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156129e057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156129cb5761298b60008884886122b4565b6129ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c19061361f565b60405180910390fd5b5b81806001019250508080600101915050612914565b5080600081905550506129f66000868387612644565b5050505050565b828054612a09906139fa565b90600052602060002090601f016020900481019282612a2b5760008555612a72565b82601f10612a4457805160ff1916838001178555612a72565b82800160010185558215612a72579182015b82811115612a71578251825591602001919060010190612a56565b5b509050612a7f9190612abd565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ad6576000816000905550600101612abe565b5090565b6000612aed612ae88461377f565b61375a565b905082815260208101848484011115612b0957612b08613bc7565b5b612b148482856139b8565b509392505050565b6000612b2f612b2a846137b0565b61375a565b905082815260208101848484011115612b4b57612b4a613bc7565b5b612b568482856139b8565b509392505050565b600081359050612b6d8161429a565b92915050565b600081359050612b82816142b1565b92915050565b600081359050612b97816142c8565b92915050565b600081519050612bac816142c8565b92915050565b600082601f830112612bc757612bc6613bc2565b5b8135612bd7848260208601612ada565b91505092915050565b600082601f830112612bf557612bf4613bc2565b5b8135612c05848260208601612b1c565b91505092915050565b600081359050612c1d816142df565b92915050565b600060208284031215612c3957612c38613bd1565b5b6000612c4784828501612b5e565b91505092915050565b60008060408385031215612c6757612c66613bd1565b5b6000612c7585828601612b5e565b9250506020612c8685828601612b5e565b9150509250929050565b600080600060608486031215612ca957612ca8613bd1565b5b6000612cb786828701612b5e565b9350506020612cc886828701612b5e565b9250506040612cd986828701612c0e565b9150509250925092565b60008060008060808587031215612cfd57612cfc613bd1565b5b6000612d0b87828801612b5e565b9450506020612d1c87828801612b5e565b9350506040612d2d87828801612c0e565b925050606085013567ffffffffffffffff811115612d4e57612d4d613bcc565b5b612d5a87828801612bb2565b91505092959194509250565b60008060408385031215612d7d57612d7c613bd1565b5b6000612d8b85828601612b5e565b9250506020612d9c85828601612b73565b9150509250929050565b60008060408385031215612dbd57612dbc613bd1565b5b6000612dcb85828601612b5e565b9250506020612ddc85828601612c0e565b9150509250929050565b600060208284031215612dfc57612dfb613bd1565b5b6000612e0a84828501612b88565b91505092915050565b600060208284031215612e2957612e28613bd1565b5b6000612e3784828501612b9d565b91505092915050565b600060208284031215612e5657612e55613bd1565b5b600082013567ffffffffffffffff811115612e7457612e73613bcc565b5b612e8084828501612be0565b91505092915050565b600060208284031215612e9f57612e9e613bd1565b5b6000612ead84828501612c0e565b91505092915050565b612ebf81613944565b82525050565b612ece81613956565b82525050565b6000612edf826137e1565b612ee981856137f7565b9350612ef98185602086016139c7565b612f0281613bd6565b840191505092915050565b6000612f18826137ec565b612f228185613813565b9350612f328185602086016139c7565b612f3b81613bd6565b840191505092915050565b6000612f51826137ec565b612f5b8185613824565b9350612f6b8185602086016139c7565b80840191505092915050565b6000612f84602283613813565b9150612f8f82613be7565b604082019050919050565b6000612fa7600783613813565b9150612fb282613c36565b602082019050919050565b6000612fca602683613813565b9150612fd582613c5f565b604082019050919050565b6000612fed602a83613813565b9150612ff882613cae565b604082019050919050565b6000613010602383613813565b915061301b82613cfd565b604082019050919050565b6000613033602583613813565b915061303e82613d4c565b604082019050919050565b6000613056603983613813565b915061306182613d9b565b604082019050919050565b6000613079602b83613813565b915061308482613dea565b604082019050919050565b600061309c602683613813565b91506130a782613e39565b604082019050919050565b60006130bf600583613824565b91506130ca82613e88565b600582019050919050565b60006130e2602083613813565b91506130ed82613eb1565b602082019050919050565b6000613105602f83613813565b915061311082613eda565b604082019050919050565b6000613128601a83613813565b915061313382613f29565b602082019050919050565b600061314b603283613813565b915061315682613f52565b604082019050919050565b600061316e601d83613813565b915061317982613fa1565b602082019050919050565b6000613191602283613813565b915061319c82613fca565b604082019050919050565b60006131b4600083613808565b91506131bf82614019565b600082019050919050565b60006131d7601083613813565b91506131e28261401c565b602082019050919050565b60006131fa603383613813565b915061320582614045565b604082019050919050565b600061321d602183613813565b915061322882614094565b604082019050919050565b6000613240602883613813565b915061324b826140e3565b604082019050919050565b6000613263601383613813565b915061326e82614132565b602082019050919050565b6000613286602e83613813565b91506132918261415b565b604082019050919050565b60006132a9601f83613813565b91506132b4826141aa565b602082019050919050565b60006132cc602f83613813565b91506132d7826141d3565b604082019050919050565b60006132ef601983613813565b91506132fa82614222565b602082019050919050565b6000613312602d83613813565b915061331d8261424b565b604082019050919050565b613331816139ae565b82525050565b60006133438285612f46565b915061334f8284612f46565b915061335a826130b2565b91508190509392505050565b6000613371826131a7565b9150819050919050565b60006020820190506133906000830184612eb6565b92915050565b60006080820190506133ab6000830187612eb6565b6133b86020830186612eb6565b6133c56040830185613328565b81810360608301526133d78184612ed4565b905095945050505050565b60006020820190506133f76000830184612ec5565b92915050565b600060208201905081810360008301526134178184612f0d565b905092915050565b6000602082019050818103600083015261343881612f77565b9050919050565b6000602082019050818103600083015261345881612f9a565b9050919050565b6000602082019050818103600083015261347881612fbd565b9050919050565b6000602082019050818103600083015261349881612fe0565b9050919050565b600060208201905081810360008301526134b881613003565b9050919050565b600060208201905081810360008301526134d881613026565b9050919050565b600060208201905081810360008301526134f881613049565b9050919050565b600060208201905081810360008301526135188161306c565b9050919050565b600060208201905081810360008301526135388161308f565b9050919050565b60006020820190508181036000830152613558816130d5565b9050919050565b60006020820190508181036000830152613578816130f8565b9050919050565b600060208201905081810360008301526135988161311b565b9050919050565b600060208201905081810360008301526135b88161313e565b9050919050565b600060208201905081810360008301526135d881613161565b9050919050565b600060208201905081810360008301526135f881613184565b9050919050565b60006020820190508181036000830152613618816131ca565b9050919050565b60006020820190508181036000830152613638816131ed565b9050919050565b6000602082019050818103600083015261365881613210565b9050919050565b6000602082019050818103600083015261367881613233565b9050919050565b6000602082019050818103600083015261369881613256565b9050919050565b600060208201905081810360008301526136b881613279565b9050919050565b600060208201905081810360008301526136d88161329c565b9050919050565b600060208201905081810360008301526136f8816132bf565b9050919050565b60006020820190508181036000830152613718816132e2565b9050919050565b6000602082019050818103600083015261373881613305565b9050919050565b60006020820190506137546000830184613328565b92915050565b6000613764613775565b90506137708282613a2c565b919050565b6000604051905090565b600067ffffffffffffffff82111561379a57613799613b93565b5b6137a382613bd6565b9050602081019050919050565b600067ffffffffffffffff8211156137cb576137ca613b93565b5b6137d482613bd6565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061383a826139ae565b9150613845836139ae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561387a57613879613ad7565b5b828201905092915050565b6000613890826139ae565b915061389b836139ae565b9250826138ab576138aa613b06565b5b828204905092915050565b60006138c1826139ae565b91506138cc836139ae565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561390557613904613ad7565b5b828202905092915050565b600061391b826139ae565b9150613926836139ae565b92508282101561393957613938613ad7565b5b828203905092915050565b600061394f8261398e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156139e55780820151818401526020810190506139ca565b838111156139f4576000848401525b50505050565b60006002820490506001821680613a1257607f821691505b60208210811415613a2657613a25613b35565b5b50919050565b613a3582613bd6565b810181811067ffffffffffffffff82111715613a5457613a53613b93565b5b80604052505050565b6000613a68826139ae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a9b57613a9a613ad7565b5b600182019050919050565b6000613ab1826139ae565b9150613abc836139ae565b925082613acc57613acb613b06565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f4d696e74696e67206973206e6f74206c697665207965742e2e00000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6142a381613944565b81146142ae57600080fd5b50565b6142ba81613956565b81146142c557600080fd5b50565b6142d181613962565b81146142dc57600080fd5b50565b6142e8816139ae565b81146142f357600080fd5b5056fea2646970667358221220d7fb08572656bfdde6a1affe89e7f8747eaf87b5d1ffbe254e0f05b860043ab264736f6c63430008070033

Deployed Bytecode Sourcemap

43266:2221:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30126:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32012:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33574:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33095:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28383:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34450:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29047:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43572:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45294:186;;;;;;;;;;;;;:::i;:::-;;34691:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28560:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31821:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43337:90;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30562:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25799:103;;;;;;;;;;;;;:::i;:::-;;44883:87;;;;;;;;;;;;;:::i;:::-;;25148;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45200:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32181:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43434:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44236:639;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45094:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33860:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34947:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43530:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43833:395;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43662:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43617:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34219:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26057:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43487:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30126:372;30228:4;30280:25;30265:40;;;:11;:40;;;;:105;;;;30337:33;30322:48;;;:11;:48;;;;30265:105;:172;;;;30402:35;30387:50;;;:11;:50;;;;30265:172;:225;;;;30454:36;30478:11;30454:23;:36::i;:::-;30265:225;30245:245;;30126:372;;;:::o;32012:100::-;32066:13;32099:5;32092:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32012:100;:::o;33574:214::-;33642:7;33670:16;33678:7;33670;:16::i;:::-;33662:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;33756:15;:24;33772:7;33756:24;;;;;;;;;;;;;;;;;;;;;33749:31;;33574:214;;;:::o;33095:413::-;33168:13;33184:24;33200:7;33184:15;:24::i;:::-;33168:40;;33233:5;33227:11;;:2;:11;;;;33219:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33328:5;33312:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;33337:37;33354:5;33361:12;:10;:12::i;:::-;33337:16;:37::i;:::-;33312:62;33290:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;33472:28;33481:2;33485:7;33494:5;33472:8;:28::i;:::-;33157:351;33095:413;;:::o;28383:100::-;28436:7;28463:12;;28456:19;;28383:100;:::o;34450:170::-;34584:28;34594:4;34600:2;34604:7;34584:9;:28::i;:::-;34450:170;;;:::o;29047:1007::-;29136:7;29172:16;29182:5;29172:9;:16::i;:::-;29164:5;:24;29156:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;29238:22;29263:13;:11;:13::i;:::-;29238:38;;29287:19;29317:25;29506:9;29501:466;29521:14;29517:1;:18;29501:466;;;29561:31;29595:11;:14;29607:1;29595:14;;;;;;;;;;;29561:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29658:1;29632:28;;:9;:14;;;:28;;;29628:111;;29705:9;:14;;;29685:34;;29628:111;29782:5;29761:26;;:17;:26;;;29757:195;;;29831:5;29816:11;:20;29812:85;;;29872:1;29865:8;;;;;;;;;29812:85;29919:13;;;;;;;29757:195;29542:425;29537:3;;;;;;;29501:466;;;;29990:56;;;;;;;;;;:::i;:::-;;;;;;;;29047:1007;;;;;:::o;43572:38::-;;;;:::o;45294:186::-;25379:12;:10;:12::i;:::-;25368:23;;:7;:5;:7::i;:::-;:23;;;25360:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22246:1:::1;22844:7;;:19;;22836:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22246:1;22977:7;:18;;;;45358:12:::2;45376:10;:15;;45399:21;45376:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45357:68;;;45444:7;45436:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;45346:134;22202:1:::1;23156:7;:22;;;;45294:186::o:0;34691:185::-;34829:39;34846:4;34852:2;34856:7;34829:39;;;;;;;;;;;;:16;:39::i;:::-;34691:185;;;:::o;28560:187::-;28627:7;28663:13;:11;:13::i;:::-;28655:5;:21;28647:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;28734:5;28727:12;;28560:187;;;:::o;31821:124::-;31885:7;31912:20;31924:7;31912:11;:20::i;:::-;:25;;;31905:32;;31821:124;;;:::o;43337:90::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30562:221::-;30626:7;30671:1;30654:19;;:5;:19;;;;30646:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;30747:12;:19;30760:5;30747:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30739:36;;30732:43;;30562:221;;;:::o;25799:103::-;25379:12;:10;:12::i;:::-;25368:23;;:7;:5;:7::i;:::-;:23;;;25360:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25864:30:::1;25891:1;25864:18;:30::i;:::-;25799:103::o:0;44883:87::-;25379:12;:10;:12::i;:::-;25368:23;;:7;:5;:7::i;:::-;:23;;;25360:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44951:11:::1;;;;;;;;;;;44950:12;44936:11;;:26;;;;;;;;;;;;;;;;;;44883:87::o:0;25148:::-;25194:7;25221:6;;;;;;;;;;;25214:13;;25148:87;:::o;45200:86::-;25379:12;:10;:12::i;:::-;25368:23;;:7;:5;:7::i;:::-;:23;;;25360:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45272:6:::1;45264:5;:14;;;;45200:86:::0;:::o;32181:104::-;32237:13;32270:7;32263:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32181:104;:::o;43434:46::-;;;;:::o;44236:639::-;44293:12;44308:5;;44293:20;;44324:11;44376:1;44364:9;;:13;;;;:::i;:::-;44356:5;44340:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;44339:109;;;;;44437:10;;44428:5;44396:17;:29;44414:10;44396:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:51;;44339:109;44324:125;;44466:6;44462:100;;;44496:1;44489:8;;44545:5;44512:17;:29;44530:10;44512:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;44462:100;44603:4;44595:5;:12;;;;:::i;:::-;44582:9;:25;;44574:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;44685:9;;44676:5;44660:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;44652:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;44725:11;;;;;;;;;;;44717:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;44794:8;;44785:5;:17;;44777:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;44839:28;44849:10;44861:5;44839:9;:28::i;:::-;44282:593;;44236:639;:::o;45094:98::-;25379:12;:10;:12::i;:::-;25368:23;;:7;:5;:7::i;:::-;:23;;;25360:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45176:8:::1;45166:7;:18;;;;;;;;;;;;:::i;:::-;;45094:98:::0;:::o;33860:288::-;33967:12;:10;:12::i;:::-;33955:24;;:8;:24;;;;33947:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;34068:8;34023:18;:32;34042:12;:10;:12::i;:::-;34023:32;;;;;;;;;;;;;;;:42;34056:8;34023:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34121:8;34092:48;;34107:12;:10;:12::i;:::-;34092:48;;;34131:8;34092:48;;;;;;:::i;:::-;;;;;;;;33860:288;;:::o;34947:355::-;35106:28;35116:4;35122:2;35126:7;35106:9;:28::i;:::-;35167:48;35190:4;35196:2;35200:7;35209:5;35167:22;:48::i;:::-;35145:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;34947:355;;;;:::o;43530:35::-;;;;:::o;43833:395::-;43907:13;43941:17;43949:8;43941:7;:17::i;:::-;43933:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;44020:28;44051:10;:8;:10::i;:::-;44020:41;;44110:1;44085:14;44079:28;:32;:141;;;;;;;;;;;;;;;;;44151:14;44166:26;44183:8;44166:16;:26::i;:::-;44134:67;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44079:141;44072:148;;;43833:395;;;:::o;43662:39::-;;;;;;;;;;;;;:::o;43617:38::-;;;;:::o;34219:164::-;34316:4;34340:18;:25;34359:5;34340:25;;;;;;;;;;;;;;;:35;34366:8;34340:35;;;;;;;;;;;;;;;;;;;;;;;;;34333:42;;34219:164;;;;:::o;26057:201::-;25379:12;:10;:12::i;:::-;25368:23;;:7;:5;:7::i;:::-;:23;;;25360:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26166:1:::1;26146:22;;:8;:22;;;;26138:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26222:28;26241:8;26222:18;:28::i;:::-;26057:201:::0;:::o;43487:36::-;;;;:::o;13500:157::-;13585:4;13624:25;13609:40;;;:11;:40;;;;13602:47;;13500:157;;;:::o;35557:111::-;35614:4;35648:12;;35638:7;:22;35631:29;;35557:111;;;:::o;23872:98::-;23925:7;23952:10;23945:17;;23872:98;:::o;40477:196::-;40619:2;40592:15;:24;40608:7;40592:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40657:7;40653:2;40637:28;;40646:5;40637:28;;;;;;;;;;;;40477:196;;;:::o;38357:2002::-;38472:35;38510:20;38522:7;38510:11;:20::i;:::-;38472:58;;38543:22;38585:13;:18;;;38569:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;38644:12;:10;:12::i;:::-;38620:36;;:20;38632:7;38620:11;:20::i;:::-;:36;;;38569:87;:154;;;;38673:50;38690:13;:18;;;38710:12;:10;:12::i;:::-;38673:16;:50::i;:::-;38569:154;38543:181;;38745:17;38737:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;38860:4;38838:26;;:13;:18;;;:26;;;38830:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;38940:1;38926:16;;:2;:16;;;;38918:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;38997:43;39019:4;39025:2;39029:7;39038:1;38997:21;:43::i;:::-;39105:49;39122:1;39126:7;39135:13;:18;;;39105:8;:49::i;:::-;39480:1;39450:12;:18;39463:4;39450:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39524:1;39496:12;:16;39509:2;39496:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39570:2;39542:11;:20;39554:7;39542:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39632:15;39587:11;:20;39599:7;39587:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;39900:19;39932:1;39922:7;:11;39900:33;;39993:1;39952:43;;:11;:24;39964:11;39952:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;39948:295;;;40020:20;40028:11;40020:7;:20::i;:::-;40016:212;;;40097:13;:18;;;40065:11;:24;40077:11;40065:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40180:13;:28;;;40138:11;:24;40150:11;40138:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40016:212;39948:295;39425:829;40290:7;40286:2;40271:27;;40280:4;40271:27;;;;;;;;;;;;40309:42;40330:4;40336:2;40340:7;40349:1;40309:20;:42::i;:::-;38461:1898;;38357:2002;;;:::o;31222:537::-;31283:21;;:::i;:::-;31325:16;31333:7;31325;:16::i;:::-;31317:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;31431:12;31446:7;31431:22;;31426:245;31463:1;31455:4;:9;31426:245;;31493:31;31527:11;:17;31539:4;31527:17;;;;;;;;;;;31493:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31593:1;31567:28;;:9;:14;;;:28;;;31563:93;;31627:9;31620:16;;;;;;31563:93;31474:197;31466:6;;;;;;;;31426:245;;;;31694:57;;;;;;;;;;:::i;:::-;;;;;;;;31222:537;;;;:::o;26418:191::-;26492:16;26511:6;;;;;;;;;;;26492:25;;26537:8;26528:6;;:17;;;;;;;;;;;;;;;;;;26592:8;26561:40;;26582:8;26561:40;;;;;;;;;;;;26481:128;26418:191;:::o;35676:104::-;35745:27;35755:2;35759:8;35745:27;;;;;;;;;;;;:9;:27::i;:::-;35676:104;;:::o;41238:804::-;41393:4;41414:15;:2;:13;;;:15::i;:::-;41410:625;;;41466:2;41450:36;;;41487:12;:10;:12::i;:::-;41501:4;41507:7;41516:5;41450:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41446:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41713:1;41696:6;:13;:18;41692:273;;;41739:61;;;;;;;;;;:::i;:::-;;;;;;;;41692:273;41915:6;41909:13;41900:6;41896:2;41892:15;41885:38;41446:534;41583:45;;;41573:55;;;:6;:55;;;;41566:62;;;;;41410:625;42019:4;42012:11;;41238:804;;;;;;;:::o;44978:108::-;45038:13;45071:7;45064:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44978:108;:::o;402:723::-;458:13;688:1;679:5;:10;675:53;;;706:10;;;;;;;;;;;;;;;;;;;;;675:53;738:12;753:5;738:20;;769:14;794:78;809:1;801:4;:9;794:78;;827:8;;;;;:::i;:::-;;;;858:2;850:10;;;;;:::i;:::-;;;794:78;;;882:19;914:6;904:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;882:39;;932:154;948:1;939:5;:10;932:154;;976:1;966:11;;;;;:::i;:::-;;;1043:2;1035:5;:10;;;;:::i;:::-;1022:2;:24;;;;:::i;:::-;1009:39;;992:6;999;992:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1072:2;1063:11;;;;;:::i;:::-;;;932:154;;;1110:6;1096:21;;;;;402:723;;;;:::o;42530:159::-;;;;;:::o;43101:158::-;;;;;:::o;36143:163::-;36266:32;36272:2;36276:8;36286:5;36293:4;36266:5;:32::i;:::-;36143:163;;;:::o;3394:326::-;3454:4;3711:1;3689:7;:19;;;:23;3682:30;;3394:326;;;:::o;36565:1538::-;36704:20;36727:12;;36704:35;;36772:1;36758:16;;:2;:16;;;;36750:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;36843:1;36831:8;:13;;36823:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;36902:61;36932:1;36936:2;36940:12;36954:8;36902:21;:61::i;:::-;37277:8;37241:12;:16;37254:2;37241:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37342:8;37301:12;:16;37314:2;37301:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37401:2;37368:11;:25;37380:12;37368:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37468:15;37418:11;:25;37430:12;37418:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37501:20;37524:12;37501:35;;37558:9;37553:415;37573:8;37569:1;:12;37553:415;;;37637:12;37633:2;37612:38;;37629:1;37612:38;;;;;;;;;;;;37673:4;37669:249;;;37736:59;37767:1;37771:2;37775:12;37789:5;37736:22;:59::i;:::-;37702:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;37669:249;37938:14;;;;;;;37583:3;;;;;;;37553:415;;;;37999:12;37984;:27;;;;37216:807;38035:60;38064:1;38068:2;38072:12;38086:8;38035:20;:60::i;:::-;36693:1410;36565:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::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:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:365::-;9030:3;9051:66;9115:1;9110:3;9051:66;:::i;:::-;9044:73;;9126:93;9215:3;9126:93;:::i;:::-;9244:2;9239:3;9235:12;9228:19;;8888:365;;;:::o;9259:366::-;9401:3;9422:67;9486:2;9481:3;9422:67;:::i;:::-;9415:74;;9498:93;9587:3;9498:93;:::i;:::-;9616:2;9611:3;9607:12;9600:19;;9259:366;;;:::o;9631:::-;9773:3;9794:67;9858:2;9853:3;9794:67;:::i;:::-;9787:74;;9870:93;9959:3;9870:93;:::i;:::-;9988:2;9983:3;9979:12;9972:19;;9631:366;;;:::o;10003:::-;10145:3;10166:67;10230:2;10225:3;10166:67;:::i;:::-;10159:74;;10242:93;10331:3;10242:93;:::i;:::-;10360:2;10355:3;10351:12;10344:19;;10003:366;;;:::o;10375:::-;10517:3;10538:67;10602:2;10597:3;10538:67;:::i;:::-;10531:74;;10614:93;10703:3;10614:93;:::i;:::-;10732:2;10727:3;10723:12;10716:19;;10375:366;;;:::o;10747:::-;10889:3;10910:67;10974:2;10969:3;10910:67;:::i;:::-;10903:74;;10986:93;11075:3;10986:93;:::i;:::-;11104:2;11099:3;11095:12;11088:19;;10747:366;;;:::o;11119:::-;11261:3;11282:67;11346:2;11341:3;11282:67;:::i;:::-;11275:74;;11358:93;11447:3;11358:93;:::i;:::-;11476:2;11471:3;11467:12;11460:19;;11119:366;;;:::o;11491:::-;11633:3;11654:67;11718:2;11713:3;11654:67;:::i;:::-;11647:74;;11730:93;11819:3;11730:93;:::i;:::-;11848:2;11843:3;11839:12;11832:19;;11491:366;;;:::o;11863:400::-;12023:3;12044:84;12126:1;12121:3;12044:84;:::i;:::-;12037:91;;12137:93;12226:3;12137:93;:::i;:::-;12255:1;12250:3;12246:11;12239:18;;11863:400;;;:::o;12269:366::-;12411:3;12432:67;12496:2;12491:3;12432:67;:::i;:::-;12425:74;;12508:93;12597:3;12508:93;:::i;:::-;12626:2;12621:3;12617:12;12610:19;;12269:366;;;:::o;12641:::-;12783:3;12804:67;12868:2;12863:3;12804:67;:::i;:::-;12797:74;;12880:93;12969:3;12880:93;:::i;:::-;12998:2;12993:3;12989:12;12982:19;;12641:366;;;:::o;13013:::-;13155:3;13176:67;13240:2;13235:3;13176:67;:::i;:::-;13169:74;;13252:93;13341:3;13252:93;:::i;:::-;13370:2;13365:3;13361:12;13354:19;;13013:366;;;:::o;13385:::-;13527:3;13548:67;13612:2;13607:3;13548:67;:::i;:::-;13541:74;;13624:93;13713:3;13624:93;:::i;:::-;13742:2;13737:3;13733:12;13726:19;;13385:366;;;:::o;13757:::-;13899:3;13920:67;13984:2;13979:3;13920:67;:::i;:::-;13913:74;;13996:93;14085:3;13996:93;:::i;:::-;14114:2;14109:3;14105:12;14098:19;;13757:366;;;:::o;14129:::-;14271:3;14292:67;14356:2;14351:3;14292:67;:::i;:::-;14285:74;;14368:93;14457:3;14368:93;:::i;:::-;14486:2;14481:3;14477:12;14470:19;;14129:366;;;:::o;14501:398::-;14660:3;14681:83;14762:1;14757:3;14681:83;:::i;:::-;14674:90;;14773:93;14862:3;14773:93;:::i;:::-;14891:1;14886:3;14882:11;14875:18;;14501:398;;;:::o;14905:366::-;15047:3;15068:67;15132:2;15127:3;15068:67;:::i;:::-;15061:74;;15144:93;15233:3;15144:93;:::i;:::-;15262:2;15257:3;15253:12;15246:19;;14905:366;;;:::o;15277:::-;15419:3;15440:67;15504:2;15499:3;15440:67;:::i;:::-;15433:74;;15516:93;15605:3;15516:93;:::i;:::-;15634:2;15629:3;15625:12;15618:19;;15277:366;;;:::o;15649:::-;15791:3;15812:67;15876:2;15871:3;15812:67;:::i;:::-;15805:74;;15888:93;15977:3;15888:93;:::i;:::-;16006:2;16001:3;15997:12;15990:19;;15649:366;;;:::o;16021:::-;16163:3;16184:67;16248:2;16243:3;16184:67;:::i;:::-;16177:74;;16260:93;16349:3;16260:93;:::i;:::-;16378:2;16373:3;16369:12;16362:19;;16021:366;;;:::o;16393:::-;16535:3;16556:67;16620:2;16615:3;16556:67;:::i;:::-;16549:74;;16632:93;16721:3;16632:93;:::i;:::-;16750:2;16745:3;16741:12;16734:19;;16393:366;;;:::o;16765:::-;16907:3;16928:67;16992:2;16987:3;16928:67;:::i;:::-;16921:74;;17004:93;17093:3;17004:93;:::i;:::-;17122:2;17117:3;17113:12;17106:19;;16765:366;;;:::o;17137:::-;17279:3;17300:67;17364:2;17359:3;17300:67;:::i;:::-;17293:74;;17376:93;17465:3;17376:93;:::i;:::-;17494:2;17489:3;17485:12;17478:19;;17137:366;;;:::o;17509:::-;17651:3;17672:67;17736:2;17731:3;17672:67;:::i;:::-;17665:74;;17748:93;17837:3;17748:93;:::i;:::-;17866:2;17861:3;17857:12;17850:19;;17509:366;;;:::o;17881:::-;18023:3;18044:67;18108:2;18103:3;18044:67;:::i;:::-;18037:74;;18120:93;18209:3;18120:93;:::i;:::-;18238:2;18233:3;18229:12;18222:19;;17881:366;;;:::o;18253:::-;18395:3;18416:67;18480:2;18475:3;18416:67;:::i;:::-;18409:74;;18492:93;18581:3;18492:93;:::i;:::-;18610:2;18605:3;18601:12;18594:19;;18253:366;;;:::o;18625:118::-;18712:24;18730:5;18712:24;:::i;:::-;18707:3;18700:37;18625:118;;:::o;18749:701::-;19030:3;19052:95;19143:3;19134:6;19052:95;:::i;:::-;19045:102;;19164:95;19255:3;19246:6;19164:95;:::i;:::-;19157:102;;19276:148;19420:3;19276:148;:::i;:::-;19269:155;;19441:3;19434:10;;18749:701;;;;;:::o;19456:379::-;19640:3;19662:147;19805:3;19662:147;:::i;:::-;19655:154;;19826:3;19819:10;;19456:379;;;:::o;19841:222::-;19934:4;19972:2;19961:9;19957:18;19949:26;;19985:71;20053:1;20042:9;20038:17;20029:6;19985:71;:::i;:::-;19841:222;;;;:::o;20069:640::-;20264:4;20302:3;20291:9;20287:19;20279:27;;20316:71;20384:1;20373:9;20369:17;20360:6;20316:71;:::i;:::-;20397:72;20465:2;20454:9;20450:18;20441:6;20397:72;:::i;:::-;20479;20547:2;20536:9;20532:18;20523:6;20479:72;:::i;:::-;20598:9;20592:4;20588:20;20583:2;20572:9;20568:18;20561:48;20626:76;20697:4;20688:6;20626:76;:::i;:::-;20618:84;;20069:640;;;;;;;:::o;20715:210::-;20802:4;20840:2;20829:9;20825:18;20817:26;;20853:65;20915:1;20904:9;20900:17;20891:6;20853:65;:::i;:::-;20715:210;;;;:::o;20931:313::-;21044:4;21082:2;21071:9;21067:18;21059:26;;21131:9;21125:4;21121:20;21117:1;21106:9;21102:17;21095:47;21159:78;21232:4;21223:6;21159:78;:::i;:::-;21151:86;;20931:313;;;;:::o;21250:419::-;21416:4;21454:2;21443:9;21439:18;21431:26;;21503:9;21497:4;21493:20;21489:1;21478:9;21474:17;21467:47;21531:131;21657:4;21531:131;:::i;:::-;21523:139;;21250:419;;;:::o;21675:::-;21841:4;21879:2;21868:9;21864:18;21856:26;;21928:9;21922:4;21918:20;21914:1;21903:9;21899:17;21892:47;21956:131;22082:4;21956:131;:::i;:::-;21948:139;;21675:419;;;:::o;22100:::-;22266:4;22304:2;22293:9;22289:18;22281:26;;22353:9;22347:4;22343:20;22339:1;22328:9;22324:17;22317:47;22381:131;22507:4;22381:131;:::i;:::-;22373:139;;22100:419;;;:::o;22525:::-;22691:4;22729:2;22718:9;22714:18;22706:26;;22778:9;22772:4;22768:20;22764:1;22753:9;22749:17;22742:47;22806:131;22932:4;22806:131;:::i;:::-;22798:139;;22525:419;;;:::o;22950:::-;23116:4;23154:2;23143:9;23139:18;23131:26;;23203:9;23197:4;23193:20;23189:1;23178:9;23174:17;23167:47;23231:131;23357:4;23231:131;:::i;:::-;23223:139;;22950:419;;;:::o;23375:::-;23541:4;23579:2;23568:9;23564:18;23556:26;;23628:9;23622:4;23618:20;23614:1;23603:9;23599:17;23592:47;23656:131;23782:4;23656:131;:::i;:::-;23648:139;;23375:419;;;:::o;23800:::-;23966:4;24004:2;23993:9;23989:18;23981:26;;24053:9;24047:4;24043:20;24039:1;24028:9;24024:17;24017:47;24081:131;24207:4;24081:131;:::i;:::-;24073:139;;23800:419;;;:::o;24225:::-;24391:4;24429:2;24418:9;24414:18;24406:26;;24478:9;24472:4;24468:20;24464:1;24453:9;24449:17;24442:47;24506:131;24632:4;24506:131;:::i;:::-;24498:139;;24225:419;;;:::o;24650:::-;24816:4;24854:2;24843:9;24839:18;24831:26;;24903:9;24897:4;24893:20;24889:1;24878:9;24874:17;24867:47;24931:131;25057:4;24931:131;:::i;:::-;24923:139;;24650:419;;;:::o;25075:::-;25241:4;25279:2;25268:9;25264:18;25256:26;;25328:9;25322:4;25318:20;25314:1;25303:9;25299:17;25292:47;25356:131;25482:4;25356:131;:::i;:::-;25348:139;;25075:419;;;:::o;25500:::-;25666:4;25704:2;25693:9;25689:18;25681:26;;25753:9;25747:4;25743:20;25739:1;25728:9;25724:17;25717:47;25781:131;25907:4;25781:131;:::i;:::-;25773:139;;25500:419;;;:::o;25925:::-;26091:4;26129:2;26118:9;26114:18;26106:26;;26178:9;26172:4;26168:20;26164:1;26153:9;26149:17;26142:47;26206:131;26332:4;26206:131;:::i;:::-;26198:139;;25925:419;;;:::o;26350:::-;26516:4;26554:2;26543:9;26539:18;26531:26;;26603:9;26597:4;26593:20;26589:1;26578:9;26574:17;26567:47;26631:131;26757:4;26631:131;:::i;:::-;26623:139;;26350:419;;;:::o;26775:::-;26941:4;26979:2;26968:9;26964:18;26956:26;;27028:9;27022:4;27018:20;27014:1;27003:9;26999:17;26992:47;27056:131;27182:4;27056:131;:::i;:::-;27048:139;;26775:419;;;:::o;27200:::-;27366:4;27404:2;27393:9;27389:18;27381:26;;27453:9;27447:4;27443:20;27439:1;27428:9;27424:17;27417:47;27481:131;27607:4;27481:131;:::i;:::-;27473:139;;27200:419;;;:::o;27625:::-;27791:4;27829:2;27818:9;27814:18;27806:26;;27878:9;27872:4;27868:20;27864:1;27853:9;27849:17;27842:47;27906:131;28032:4;27906:131;:::i;:::-;27898:139;;27625:419;;;:::o;28050:::-;28216:4;28254:2;28243:9;28239:18;28231:26;;28303:9;28297:4;28293:20;28289:1;28278:9;28274:17;28267:47;28331:131;28457:4;28331:131;:::i;:::-;28323:139;;28050:419;;;:::o;28475:::-;28641:4;28679:2;28668:9;28664:18;28656:26;;28728:9;28722:4;28718:20;28714:1;28703:9;28699:17;28692:47;28756:131;28882:4;28756:131;:::i;:::-;28748:139;;28475:419;;;:::o;28900:::-;29066:4;29104:2;29093:9;29089:18;29081:26;;29153:9;29147:4;29143:20;29139:1;29128:9;29124:17;29117:47;29181:131;29307:4;29181:131;:::i;:::-;29173:139;;28900:419;;;:::o;29325:::-;29491:4;29529:2;29518:9;29514:18;29506:26;;29578:9;29572:4;29568:20;29564:1;29553:9;29549:17;29542:47;29606:131;29732:4;29606:131;:::i;:::-;29598:139;;29325:419;;;:::o;29750:::-;29916:4;29954:2;29943:9;29939:18;29931:26;;30003:9;29997:4;29993:20;29989:1;29978:9;29974:17;29967:47;30031:131;30157:4;30031:131;:::i;:::-;30023:139;;29750:419;;;:::o;30175:::-;30341:4;30379:2;30368:9;30364:18;30356:26;;30428:9;30422:4;30418:20;30414:1;30403:9;30399:17;30392:47;30456:131;30582:4;30456:131;:::i;:::-;30448:139;;30175:419;;;:::o;30600:::-;30766:4;30804:2;30793:9;30789:18;30781:26;;30853:9;30847:4;30843:20;30839:1;30828:9;30824:17;30817:47;30881:131;31007:4;30881:131;:::i;:::-;30873:139;;30600:419;;;:::o;31025:::-;31191:4;31229:2;31218:9;31214:18;31206:26;;31278:9;31272:4;31268:20;31264:1;31253:9;31249:17;31242:47;31306:131;31432:4;31306:131;:::i;:::-;31298:139;;31025:419;;;:::o;31450:::-;31616:4;31654:2;31643:9;31639:18;31631:26;;31703:9;31697:4;31693:20;31689:1;31678:9;31674:17;31667:47;31731:131;31857:4;31731:131;:::i;:::-;31723:139;;31450:419;;;:::o;31875:222::-;31968:4;32006:2;31995:9;31991:18;31983:26;;32019:71;32087:1;32076:9;32072:17;32063:6;32019:71;:::i;:::-;31875:222;;;;:::o;32103:129::-;32137:6;32164:20;;:::i;:::-;32154:30;;32193:33;32221:4;32213:6;32193:33;:::i;:::-;32103:129;;;:::o;32238:75::-;32271:6;32304:2;32298:9;32288:19;;32238:75;:::o;32319:307::-;32380:4;32470:18;32462:6;32459:30;32456:56;;;32492:18;;:::i;:::-;32456:56;32530:29;32552:6;32530:29;:::i;:::-;32522:37;;32614:4;32608;32604:15;32596:23;;32319:307;;;:::o;32632:308::-;32694:4;32784:18;32776:6;32773:30;32770:56;;;32806:18;;:::i;:::-;32770:56;32844:29;32866:6;32844:29;:::i;:::-;32836:37;;32928:4;32922;32918:15;32910:23;;32632:308;;;:::o;32946:98::-;32997:6;33031:5;33025:12;33015:22;;32946:98;;;:::o;33050:99::-;33102:6;33136:5;33130:12;33120:22;;33050:99;;;:::o;33155:168::-;33238:11;33272:6;33267:3;33260:19;33312:4;33307:3;33303:14;33288:29;;33155:168;;;;:::o;33329:147::-;33430:11;33467:3;33452:18;;33329:147;;;;:::o;33482:169::-;33566:11;33600:6;33595:3;33588:19;33640:4;33635:3;33631:14;33616:29;;33482:169;;;;:::o;33657:148::-;33759:11;33796:3;33781:18;;33657:148;;;;:::o;33811:305::-;33851:3;33870:20;33888:1;33870:20;:::i;:::-;33865:25;;33904:20;33922:1;33904:20;:::i;:::-;33899:25;;34058:1;33990:66;33986:74;33983:1;33980:81;33977:107;;;34064:18;;:::i;:::-;33977:107;34108:1;34105;34101:9;34094:16;;33811:305;;;;:::o;34122:185::-;34162:1;34179:20;34197:1;34179:20;:::i;:::-;34174:25;;34213:20;34231:1;34213:20;:::i;:::-;34208:25;;34252:1;34242:35;;34257:18;;:::i;:::-;34242:35;34299:1;34296;34292:9;34287:14;;34122:185;;;;:::o;34313:348::-;34353:7;34376:20;34394:1;34376:20;:::i;:::-;34371:25;;34410:20;34428:1;34410:20;:::i;:::-;34405:25;;34598:1;34530:66;34526:74;34523:1;34520:81;34515:1;34508:9;34501:17;34497:105;34494:131;;;34605:18;;:::i;:::-;34494:131;34653:1;34650;34646:9;34635:20;;34313:348;;;;:::o;34667:191::-;34707:4;34727:20;34745:1;34727:20;:::i;:::-;34722:25;;34761:20;34779:1;34761:20;:::i;:::-;34756:25;;34800:1;34797;34794:8;34791:34;;;34805:18;;:::i;:::-;34791:34;34850:1;34847;34843:9;34835:17;;34667:191;;;;:::o;34864:96::-;34901:7;34930:24;34948:5;34930:24;:::i;:::-;34919:35;;34864:96;;;:::o;34966:90::-;35000:7;35043:5;35036:13;35029:21;35018:32;;34966:90;;;:::o;35062:149::-;35098:7;35138:66;35131:5;35127:78;35116:89;;35062:149;;;:::o;35217:126::-;35254:7;35294:42;35287:5;35283:54;35272:65;;35217:126;;;:::o;35349:77::-;35386:7;35415:5;35404:16;;35349:77;;;:::o;35432:154::-;35516:6;35511:3;35506;35493:30;35578:1;35569:6;35564:3;35560:16;35553:27;35432:154;;;:::o;35592:307::-;35660:1;35670:113;35684:6;35681:1;35678:13;35670:113;;;35769:1;35764:3;35760:11;35754:18;35750:1;35745:3;35741:11;35734:39;35706:2;35703:1;35699:10;35694:15;;35670:113;;;35801:6;35798:1;35795:13;35792:101;;;35881:1;35872:6;35867:3;35863:16;35856:27;35792:101;35641:258;35592:307;;;:::o;35905:320::-;35949:6;35986:1;35980:4;35976:12;35966:22;;36033:1;36027:4;36023:12;36054:18;36044:81;;36110:4;36102:6;36098:17;36088:27;;36044:81;36172:2;36164:6;36161:14;36141:18;36138:38;36135:84;;;36191:18;;:::i;:::-;36135:84;35956:269;35905:320;;;:::o;36231:281::-;36314:27;36336:4;36314:27;:::i;:::-;36306:6;36302:40;36444:6;36432:10;36429:22;36408:18;36396:10;36393:34;36390:62;36387:88;;;36455:18;;:::i;:::-;36387:88;36495:10;36491:2;36484:22;36274:238;36231:281;;:::o;36518:233::-;36557:3;36580:24;36598:5;36580:24;:::i;:::-;36571:33;;36626:66;36619:5;36616:77;36613:103;;;36696:18;;:::i;:::-;36613:103;36743:1;36736:5;36732:13;36725:20;;36518:233;;;:::o;36757:176::-;36789:1;36806:20;36824:1;36806:20;:::i;:::-;36801:25;;36840:20;36858:1;36840:20;:::i;:::-;36835:25;;36879:1;36869:35;;36884:18;;:::i;:::-;36869:35;36925:1;36922;36918:9;36913:14;;36757:176;;;;:::o;36939:180::-;36987:77;36984:1;36977:88;37084:4;37081:1;37074:15;37108:4;37105:1;37098:15;37125:180;37173:77;37170:1;37163:88;37270:4;37267:1;37260:15;37294:4;37291:1;37284:15;37311:180;37359:77;37356:1;37349:88;37456:4;37453:1;37446:15;37480:4;37477:1;37470:15;37497:180;37545:77;37542:1;37535:88;37642:4;37639:1;37632:15;37666:4;37663:1;37656:15;37683:180;37731:77;37728:1;37721:88;37828:4;37825:1;37818:15;37852:4;37849:1;37842:15;37869:117;37978:1;37975;37968:12;37992:117;38101:1;38098;38091:12;38115:117;38224:1;38221;38214:12;38238:117;38347:1;38344;38337:12;38361:102;38402:6;38453:2;38449:7;38444:2;38437:5;38433:14;38429:28;38419:38;;38361:102;;;:::o;38469:221::-;38609:34;38605:1;38597:6;38593:14;38586:58;38678:4;38673:2;38665:6;38661:15;38654:29;38469:221;:::o;38696:157::-;38836:9;38832:1;38824:6;38820:14;38813:33;38696:157;:::o;38859:225::-;38999:34;38995:1;38987:6;38983:14;38976:58;39068:8;39063:2;39055:6;39051:15;39044:33;38859:225;:::o;39090:229::-;39230:34;39226:1;39218:6;39214:14;39207:58;39299:12;39294:2;39286:6;39282:15;39275:37;39090:229;:::o;39325:222::-;39465:34;39461:1;39453:6;39449:14;39442:58;39534:5;39529:2;39521:6;39517:15;39510:30;39325:222;:::o;39553:224::-;39693:34;39689:1;39681:6;39677:14;39670:58;39762:7;39757:2;39749:6;39745:15;39738:32;39553:224;:::o;39783:244::-;39923:34;39919:1;39911:6;39907:14;39900:58;39992:27;39987:2;39979:6;39975:15;39968:52;39783:244;:::o;40033:230::-;40173:34;40169:1;40161:6;40157:14;40150:58;40242:13;40237:2;40229:6;40225:15;40218:38;40033:230;:::o;40269:225::-;40409:34;40405:1;40397:6;40393:14;40386:58;40478:8;40473:2;40465:6;40461:15;40454:33;40269:225;:::o;40500:155::-;40640:7;40636:1;40628:6;40624:14;40617:31;40500:155;:::o;40661:182::-;40801:34;40797:1;40789:6;40785:14;40778:58;40661:182;:::o;40849:234::-;40989:34;40985:1;40977:6;40973:14;40966:58;41058:17;41053:2;41045:6;41041:15;41034:42;40849:234;:::o;41089:176::-;41229:28;41225:1;41217:6;41213:14;41206:52;41089:176;:::o;41271:237::-;41411:34;41407:1;41399:6;41395:14;41388:58;41480:20;41475:2;41467:6;41463:15;41456:45;41271:237;:::o;41514:179::-;41654:31;41650:1;41642:6;41638:14;41631:55;41514:179;:::o;41699:221::-;41839:34;41835:1;41827:6;41823:14;41816:58;41908:4;41903:2;41895:6;41891:15;41884:29;41699:221;:::o;41926:114::-;;:::o;42046:166::-;42186:18;42182:1;42174:6;42170:14;42163:42;42046:166;:::o;42218:238::-;42358:34;42354:1;42346:6;42342:14;42335:58;42427:21;42422:2;42414:6;42410:15;42403:46;42218:238;:::o;42462:220::-;42602:34;42598:1;42590:6;42586:14;42579:58;42671:3;42666:2;42658:6;42654:15;42647:28;42462:220;:::o;42688:227::-;42828:34;42824:1;42816:6;42812:14;42805:58;42897:10;42892:2;42884:6;42880:15;42873:35;42688:227;:::o;42921:169::-;43061:21;43057:1;43049:6;43045:14;43038:45;42921:169;:::o;43096:233::-;43236:34;43232:1;43224:6;43220:14;43213:58;43305:16;43300:2;43292:6;43288:15;43281:41;43096:233;:::o;43335:181::-;43475:33;43471:1;43463:6;43459:14;43452:57;43335:181;:::o;43522:234::-;43662:34;43658:1;43650:6;43646:14;43639:58;43731:17;43726:2;43718:6;43714:15;43707:42;43522:234;:::o;43762:175::-;43902:27;43898:1;43890:6;43886:14;43879:51;43762:175;:::o;43943:232::-;44083:34;44079:1;44071:6;44067:14;44060:58;44152:15;44147:2;44139:6;44135:15;44128:40;43943:232;:::o;44181:122::-;44254:24;44272:5;44254:24;:::i;:::-;44247:5;44244:35;44234:63;;44293:1;44290;44283:12;44234:63;44181:122;:::o;44309:116::-;44379:21;44394:5;44379:21;:::i;:::-;44372:5;44369:32;44359:60;;44415:1;44412;44405:12;44359:60;44309:116;:::o;44431:120::-;44503:23;44520:5;44503:23;:::i;:::-;44496:5;44493:34;44483:62;;44541:1;44538;44531:12;44483:62;44431:120;:::o;44557:122::-;44630:24;44648:5;44630:24;:::i;:::-;44623:5;44620:35;44610:63;;44669:1;44666;44659:12;44610:63;44557:122;:::o

Swarm Source

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