ETH Price: $2,273.39 (+0.10%)

Token

The Cheetah Gang (CHEETAHGANG)
 

Overview

Max Total Supply

557 CHEETAHGANG

Holders

232

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
p4p.eth
Balance
1 CHEETAHGANG
0xe7fe672aac0ac7f452e8cffb2774e1bbef7cc97d
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:
TheCheetahGang

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 2021-10-15
*/

/**
 *Submitted for verification at Etherscan.io on 2021-09-08
*/

// SPDX-License-Identifier: MIT
// Author iBlockchainer (Telegram)
// File: @openzeppelin/contracts/utils/Counters.sol

// Author : iblockchainer (Telegram)
pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/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/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/token/ERC721/IERC721.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

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

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

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

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

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

// File: @openzeppelin/contracts/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 tokenId);

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

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

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        string memory baseURI = _baseURI();
        return
            bytes(baseURI).length > 0
                ? string(abi.encodePacked(baseURI, tokenId.toString()))
                : "";
    }

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _balances[owner] -= 1;
        delete _owners[tokenId];

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721.balanceOf(owner),
            "ERC721Enumerable: owner index out of bounds"
        );
        return _ownedTokens[owner][index];
    }

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

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

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId)
        private
    {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: ETHerealsloths.sol

pragma solidity ^0.8.0;

contract TheCheetahGang is ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenId;

    uint256 public MAX_SUPPlY = 10000;
    uint256 public MAX_ALLOWED = 7;
    uint256 public OWNER_RESERVED = 50;
    uint256 public price = 77000000000000000; //0.077 Ether
    string baseTokenURI;
    
    mapping(address => bool) private _presaleEligible;
    
    bool public saleOpen = false;
    bool public presaleOpen = false;

    event NFTMinted(uint256 totalMinted);

    constructor(string memory baseURI) ERC721("The Cheetah Gang", "CHEETAHGANG") {
        setBaseURI(baseURI);
    }

    //Get token Ids of all tokens owned by _owner
    function walletOfOwner(address _owner)
        external
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return tokensId;
    }

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

    function setPrice(uint256 _newPrice) public onlyOwner {
        price = _newPrice;
    }
    
    function setMaxAllowed(uint256 _max_allowed_limit) public onlyOwner {
        MAX_ALLOWED = _max_allowed_limit;
    }
    
    function setOwnerReserved(uint256 _owner_reserved) public onlyOwner {
        OWNER_RESERVED = _owner_reserved;
    }

     //Close PreSale
    function pausePreSale() public onlyOwner {
        presaleOpen = false;
    }
    
    //Open Presale
    function unpausePreSale() public onlyOwner {
        presaleOpen = true;
    }
    
    //Close sale
    function pauseSale() public onlyOwner {
        saleOpen = false;
    }
    
     //Open sale
    function unpauseSale() public onlyOwner {
        saleOpen = true;
    }

    function withdrawAll() public onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }
    
    //mint NFT
    function mintNFT(uint256 _count) public payable {
        if (msg.sender != owner()) {
            require((saleOpen == true || presaleOpen == true), "Presale/Sale is not open please try again later");
            
            if(presaleOpen == true && saleOpen == false){
                require(checkPresaleEligiblity(msg.sender) == true, "You are not eligibale for Presale");
            }
        }
        
        require(
            _count > 0 && _count <= MAX_ALLOWED,
            "Outside NFTs minting minting allowed range"
        );
        
        require(balanceOf(msg.sender) < MAX_ALLOWED, "You already minted max allowed NFTs");
        
        if (msg.sender != owner()) {
            require(
                totalSupply() + _count <= (MAX_SUPPlY - OWNER_RESERVED),
                "All NFTs sold"
            );
        }else{
            require(
                totalSupply() + _count <= (MAX_SUPPlY),
                "All NFTs sold"
            );
        }
        
        require(
            msg.value >= price * _count,
            "Ether sent with this transaction is not correct"
        );

        address _to = msg.sender;

        for (uint256 i = 0; i < _count; i++) {
            _mint(_to);
            if (msg.sender == owner()) {
                OWNER_RESERVED--;
            }
        }
    }
    
    function airdrop(address[] calldata _recipients) external onlyOwner {
        require(
            totalSupply() + _recipients.length <= (MAX_SUPPlY - OWNER_RESERVED),
            "Airdrop minting will exceed maximum supply"
        );
        require(_recipients.length != 0, "Address not found for minting");
        for (uint256 i = 0; i < _recipients.length; i++) {
            require(_recipients[i] != address(0), "Minting to Null address");
            _mint(_recipients[i]);
        }
    }

    function addToPresale(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Cannot add null address");

            _presaleEligible[addresses[i]] = true;
        }
    }
    
    function whitelistPresale() external {
        _presaleEligible[msg.sender] = true;
    }

    function checkPresaleEligiblity(address addr) public view returns (bool) {
        return _presaleEligible[addr];
    }
    
    function _mint(address _to) private {
        _tokenId.increment();
        uint256 tokenId = _tokenId.current();
        _safeMint(_to, tokenId);
        emit NFTMinted(tokenId);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"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":false,"internalType":"uint256","name":"totalMinted","type":"uint256"}],"name":"NFTMinted","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":[],"name":"MAX_ALLOWED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPlY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OWNER_RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_recipients","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"checkPresaleEligiblity","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pausePreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"presaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max_allowed_limit","type":"uint256"}],"name":"setMaxAllowed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_owner_reserved","type":"uint256"}],"name":"setOwnerReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","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":[{"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":"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":"unpausePreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052612710600c556007600d556032600e556701118f178fb48000600f556000601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff0219169083151502179055503480156200006357600080fd5b506040516200576b3803806200576b833981810160405281019062000089919062000432565b6040518060400160405280601081526020017f54686520436865657461682047616e67000000000000000000000000000000008152506040518060400160405280600b81526020017f4348454554414847414e4700000000000000000000000000000000000000000081525081600090805190602001906200010d92919062000304565b5080600190805190602001906200012692919062000304565b505050620001496200013d6200016160201b60201c565b6200016960201b60201c565b6200015a816200022f60201b60201c565b506200068a565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200023f6200016160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000265620002da60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002be576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b590620004aa565b60405180910390fd5b8060109080519060200190620002d692919062000304565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003129062000572565b90600052602060002090601f01602090048101928262000336576000855562000382565b82601f106200035157805160ff191683800117855562000382565b8280016001018555821562000382579182015b828111156200038157825182559160200191906001019062000364565b5b50905062000391919062000395565b5090565b5b80821115620003b057600081600090555060010162000396565b5090565b6000620003cb620003c584620004f5565b620004cc565b905082815260208101848484011115620003ea57620003e962000641565b5b620003f78482856200053c565b509392505050565b600082601f8301126200041757620004166200063c565b5b815162000429848260208601620003b4565b91505092915050565b6000602082840312156200044b576200044a6200064b565b5b600082015167ffffffffffffffff8111156200046c576200046b62000646565b5b6200047a84828501620003ff565b91505092915050565b6000620004926020836200052b565b91506200049f8262000661565b602082019050919050565b60006020820190508181036000830152620004c58162000483565b9050919050565b6000620004d8620004eb565b9050620004e68282620005a8565b919050565b6000604051905090565b600067ffffffffffffffff8211156200051357620005126200060d565b5b6200051e8262000650565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200055c5780820151818401526020810190506200053f565b838111156200056c576000848401525b50505050565b600060028204905060018216806200058b57607f821691505b60208210811415620005a257620005a1620005de565b5b50919050565b620005b38262000650565b810181811067ffffffffffffffff82111715620005d557620005d46200060d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6150d1806200069a6000396000f3fe60806040526004361061023b5760003560e01c8063729ad39e1161012e578063aef6ee1f116100ab578063e0f888ef1161006f578063e0f888ef14610816578063e985e9c514610841578063ec6dd0361461087e578063f2fde38b146108a7578063f46015ed146108d05761023b565b8063aef6ee1f14610745578063b88d4fde1461076e578063bb33d72914610797578063bee6348a146107ae578063c87b56dd146107d95761023b565b806395d89b41116100f257806395d89b411461067057806399288dbb1461069b5780639a6a6237146106c6578063a035b1fe146106f1578063a22cb4651461071c5761023b565b8063729ad39e146105c0578063853828b6146105e95780638da5cb5b1461060057806391b7f5ed1461062b57806392642744146106545761023b565b806342842e0e116101bc57806355367ba91161018057806355367ba9146104ef57806355f804b3146105065780636352211e1461052f57806370a082311461056c578063715018a6146105a95761023b565b806342842e0e1461041e57806342d1e8f9146104475780634357da581461045e578063438b6300146104755780634f6ccce7146104b25761023b565b806318160ddd1161020357806318160ddd14610325578063191f65ac1461035057806323b872dd1461038d5780632f745c59146103b6578063420db8cf146103f35761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806311abe0181461030e575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061387d565b6108f9565b6040516102749190613f7e565b60405180910390f35b34801561028957600080fd5b50610292610973565b60405161029f9190613f99565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613920565b610a05565b6040516102dc9190613ef5565b60405180910390f35b3480156102f157600080fd5b5061030c600480360381019061030791906137f0565b610a8a565b005b34801561031a57600080fd5b50610323610ba2565b005b34801561033157600080fd5b5061033a610bfc565b604051610347919061435b565b60405180910390f35b34801561035c57600080fd5b506103776004803603810190610372919061366d565b610c09565b6040516103849190613f7e565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af91906136da565b610c5f565b005b3480156103c257600080fd5b506103dd60048036038101906103d891906137f0565b610cbf565b6040516103ea919061435b565b60405180910390f35b3480156103ff57600080fd5b50610408610d64565b604051610415919061435b565b60405180910390f35b34801561042a57600080fd5b50610445600480360381019061044091906136da565b610d6a565b005b34801561045357600080fd5b5061045c610d8a565b005b34801561046a57600080fd5b50610473610e23565b005b34801561048157600080fd5b5061049c6004803603810190610497919061366d565b610ebc565b6040516104a99190613f5c565b60405180910390f35b3480156104be57600080fd5b506104d960048036038101906104d49190613920565b610f6a565b6040516104e6919061435b565b60405180910390f35b3480156104fb57600080fd5b50610504610fdb565b005b34801561051257600080fd5b5061052d600480360381019061052891906138d7565b611074565b005b34801561053b57600080fd5b5061055660048036038101906105519190613920565b61110a565b6040516105639190613ef5565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e919061366d565b6111bc565b6040516105a0919061435b565b60405180910390f35b3480156105b557600080fd5b506105be611274565b005b3480156105cc57600080fd5b506105e760048036038101906105e29190613830565b6112fc565b005b3480156105f557600080fd5b506105fe611513565b005b34801561060c57600080fd5b5061061561163e565b6040516106229190613ef5565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d9190613920565b611668565b005b61066e60048036038101906106699190613920565b6116ee565b005b34801561067c57600080fd5b50610685611a95565b6040516106929190613f99565b60405180910390f35b3480156106a757600080fd5b506106b0611b27565b6040516106bd9190613f7e565b60405180910390f35b3480156106d257600080fd5b506106db611b3a565b6040516106e8919061435b565b60405180910390f35b3480156106fd57600080fd5b50610706611b40565b604051610713919061435b565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e91906137b0565b611b46565b005b34801561075157600080fd5b5061076c60048036038101906107679190613830565b611cc7565b005b34801561077a57600080fd5b506107956004803603810190610790919061372d565b611e7f565b005b3480156107a357600080fd5b506107ac611ee1565b005b3480156107ba57600080fd5b506107c3611f7a565b6040516107d09190613f7e565b60405180910390f35b3480156107e557600080fd5b5061080060048036038101906107fb9190613920565b611f8d565b60405161080d9190613f99565b60405180910390f35b34801561082257600080fd5b5061082b612034565b604051610838919061435b565b60405180910390f35b34801561084d57600080fd5b506108686004803603810190610863919061369a565b61203a565b6040516108759190613f7e565b60405180910390f35b34801561088a57600080fd5b506108a560048036038101906108a09190613920565b6120ce565b005b3480156108b357600080fd5b506108ce60048036038101906108c9919061366d565b612154565b005b3480156108dc57600080fd5b506108f760048036038101906108f29190613920565b61224c565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096c575061096b826122d2565b5b9050919050565b60606000805461098290614679565b80601f01602080910402602001604051908101604052809291908181526020018280546109ae90614679565b80156109fb5780601f106109d0576101008083540402835291602001916109fb565b820191906000526020600020905b8154815290600101906020018083116109de57829003601f168201915b5050505050905090565b6000610a10826123b4565b610a4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a46906141fb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a958261110a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afd9061429b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b25612420565b73ffffffffffffffffffffffffffffffffffffffff161480610b545750610b5381610b4e612420565b61203a565b5b610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a9061415b565b60405180910390fd5b610b9d8383612428565b505050565b6001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550565b6000600880549050905090565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610c70610c6a612420565b826124e1565b610caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca69061431b565b60405180910390fd5b610cba8383836125bf565b505050565b6000610cca836111bc565b8210610d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0290613ffb565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600e5481565b610d8583838360405180602001604052806000815250611e7f565b505050565b610d92612420565b73ffffffffffffffffffffffffffffffffffffffff16610db061163e565b73ffffffffffffffffffffffffffffffffffffffff1614610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd9061423b565b60405180910390fd5b6001601260016101000a81548160ff021916908315150217905550565b610e2b612420565b73ffffffffffffffffffffffffffffffffffffffff16610e4961163e565b73ffffffffffffffffffffffffffffffffffffffff1614610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e969061423b565b60405180910390fd5b6000601260016101000a81548160ff021916908315150217905550565b60606000610ec9836111bc565b905060008167ffffffffffffffff811115610ee757610ee6614841565b5b604051908082528060200260200182016040528015610f155781602001602082028036833780820191505090505b50905060005b82811015610f5f57610f2d8582610cbf565b828281518110610f4057610f3f614812565b5b6020026020010181815250508080610f57906146dc565b915050610f1b565b508092505050919050565b6000610f74610bfc565b8210610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac9061433b565b60405180910390fd5b60088281548110610fc957610fc8614812565b5b90600052602060002001549050919050565b610fe3612420565b73ffffffffffffffffffffffffffffffffffffffff1661100161163e565b73ffffffffffffffffffffffffffffffffffffffff1614611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e9061423b565b60405180910390fd5b6000601260006101000a81548160ff021916908315150217905550565b61107c612420565b73ffffffffffffffffffffffffffffffffffffffff1661109a61163e565b73ffffffffffffffffffffffffffffffffffffffff16146110f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e79061423b565b60405180910390fd5b806010908051906020019061110692919061342b565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa906141bb565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561122d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112249061419b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61127c612420565b73ffffffffffffffffffffffffffffffffffffffff1661129a61163e565b73ffffffffffffffffffffffffffffffffffffffff16146112f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e79061423b565b60405180910390fd5b6112fa600061281b565b565b611304612420565b73ffffffffffffffffffffffffffffffffffffffff1661132261163e565b73ffffffffffffffffffffffffffffffffffffffff1614611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f9061423b565b60405180910390fd5b600e54600c546113889190614565565b82829050611394610bfc565b61139e9190614484565b11156113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d69061417b565b60405180910390fd5b6000828290501415611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d90613fbb565b60405180910390fd5b60005b8282905081101561150e57600073ffffffffffffffffffffffffffffffffffffffff1683838381811061145f5761145e614812565b5b9050602002016020810190611474919061366d565b73ffffffffffffffffffffffffffffffffffffffff1614156114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c29061401b565b60405180910390fd5b6114fb8383838181106114e1576114e0614812565b5b90506020020160208101906114f6919061366d565b6128e1565b8080611506906146dc565b915050611429565b505050565b61151b612420565b73ffffffffffffffffffffffffffffffffffffffff1661153961163e565b73ffffffffffffffffffffffffffffffffffffffff161461158f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115869061423b565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516115b590613ee0565b60006040518083038185875af1925050503d80600081146115f2576040519150601f19603f3d011682016040523d82523d6000602084013e6115f7565b606091505b505090508061163b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611632906142db565b60405180910390fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611670612420565b73ffffffffffffffffffffffffffffffffffffffff1661168e61163e565b73ffffffffffffffffffffffffffffffffffffffff16146116e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116db9061423b565b60405180910390fd5b80600f8190555050565b6116f661163e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118285760011515601260009054906101000a900460ff161515148061175d575060011515601260019054906101000a900460ff161515145b61179c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117939061409b565b60405180910390fd5b60011515601260019054906101000a900460ff1615151480156117d2575060001515601260009054906101000a900460ff161515145b1561182757600115156117e433610c09565b151514611826576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181d906142fb565b60405180910390fd5b5b5b60008111801561183a5750600d548111155b611879576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187090613fdb565b60405180910390fd5b600d54611885336111bc565b106118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc906140bb565b60405180910390fd5b6118cd61163e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461196857600e54600c5461190f9190614565565b81611918610bfc565b6119229190614484565b1115611963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195a9061413b565b60405180910390fd5b6119c0565b600c5481611974610bfc565b61197e9190614484565b11156119bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b69061413b565b60405180910390fd5b5b80600f546119ce919061450b565b341015611a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a079061421b565b60405180910390fd5b600033905060005b82811015611a9057611a29826128e1565b611a3161163e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415611a7d57600e6000815480929190611a779061464f565b91905055505b8080611a88906146dc565b915050611a18565b505050565b606060018054611aa490614679565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad090614679565b8015611b1d5780601f10611af257610100808354040283529160200191611b1d565b820191906000526020600020905b815481529060010190602001808311611b0057829003601f168201915b5050505050905090565b601260009054906101000a900460ff1681565b600d5481565b600f5481565b611b4e612420565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb3906140fb565b60405180910390fd5b8060056000611bc9612420565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c76612420565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cbb9190613f7e565b60405180910390a35050565b611ccf612420565b73ffffffffffffffffffffffffffffffffffffffff16611ced61163e565b73ffffffffffffffffffffffffffffffffffffffff1614611d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3a9061423b565b60405180910390fd5b60005b82829050811015611e7a57600073ffffffffffffffffffffffffffffffffffffffff16838383818110611d7c57611d7b614812565b5b9050602002016020810190611d91919061366d565b73ffffffffffffffffffffffffffffffffffffffff161415611de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddf906142bb565b60405180910390fd5b600160116000858585818110611e0157611e00614812565b5b9050602002016020810190611e16919061366d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611e72906146dc565b915050611d46565b505050565b611e90611e8a612420565b836124e1565b611ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec69061431b565b60405180910390fd5b611edb8484848461293e565b50505050565b611ee9612420565b73ffffffffffffffffffffffffffffffffffffffff16611f0761163e565b73ffffffffffffffffffffffffffffffffffffffff1614611f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f549061423b565b60405180910390fd5b6001601260006101000a81548160ff021916908315150217905550565b601260019054906101000a900460ff1681565b6060611f98826123b4565b611fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fce9061427b565b60405180910390fd5b6000611fe161299a565b90506000815111612001576040518060200160405280600081525061202c565b8061200b84612a2c565b60405160200161201c929190613ebc565b6040516020818303038152906040525b915050919050565b600c5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120d6612420565b73ffffffffffffffffffffffffffffffffffffffff166120f461163e565b73ffffffffffffffffffffffffffffffffffffffff161461214a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121419061423b565b60405180910390fd5b80600e8190555050565b61215c612420565b73ffffffffffffffffffffffffffffffffffffffff1661217a61163e565b73ffffffffffffffffffffffffffffffffffffffff16146121d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c79061423b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612240576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122379061405b565b60405180910390fd5b6122498161281b565b50565b612254612420565b73ffffffffffffffffffffffffffffffffffffffff1661227261163e565b73ffffffffffffffffffffffffffffffffffffffff16146122c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bf9061423b565b60405180910390fd5b80600d8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061239d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806123ad57506123ac82612b8d565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661249b8361110a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006124ec826123b4565b61252b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125229061411b565b60405180910390fd5b60006125368361110a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806125a557508373ffffffffffffffffffffffffffffffffffffffff1661258d84610a05565b73ffffffffffffffffffffffffffffffffffffffff16145b806125b657506125b5818561203a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166125df8261110a565b73ffffffffffffffffffffffffffffffffffffffff1614612635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262c9061425b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269c906140db565b60405180910390fd5b6126b0838383612bf7565b6126bb600082612428565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461270b9190614565565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127629190614484565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128eb600b612d0b565b60006128f7600b612d21565b90506129038282612d2f565b7fd9dc24857f317ed9abbbb42e920ede0104231eb1d3d70236a74887ffaf15986881604051612932919061435b565b60405180910390a15050565b6129498484846125bf565b61295584848484612d4d565b612994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298b9061403b565b60405180910390fd5b50505050565b6060601080546129a990614679565b80601f01602080910402602001604051908101604052809291908181526020018280546129d590614679565b8015612a225780601f106129f757610100808354040283529160200191612a22565b820191906000526020600020905b815481529060010190602001808311612a0557829003601f168201915b5050505050905090565b60606000821415612a74576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b88565b600082905060005b60008214612aa6578080612a8f906146dc565b915050600a82612a9f91906144da565b9150612a7c565b60008167ffffffffffffffff811115612ac257612ac1614841565b5b6040519080825280601f01601f191660200182016040528015612af45781602001600182028036833780820191505090505b5090505b60008514612b8157600182612b0d9190614565565b9150600a85612b1c9190614725565b6030612b289190614484565b60f81b818381518110612b3e57612b3d614812565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b7a91906144da565b9450612af8565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612c02838383612ee4565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c4557612c4081612ee9565b612c84565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612c8357612c828382612f32565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cc757612cc28161309f565b612d06565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612d0557612d048282613170565b5b5b505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b612d498282604051806020016040528060008152506131ef565b5050565b6000612d6e8473ffffffffffffffffffffffffffffffffffffffff1661324a565b15612ed7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d97612420565b8786866040518563ffffffff1660e01b8152600401612db99493929190613f10565b602060405180830381600087803b158015612dd357600080fd5b505af1925050508015612e0457506040513d601f19601f82011682018060405250810190612e0191906138aa565b60015b612e87573d8060008114612e34576040519150601f19603f3d011682016040523d82523d6000602084013e612e39565b606091505b50600081511415612e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e769061403b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612edc565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612f3f846111bc565b612f499190614565565b905060006007600084815260200190815260200160002054905081811461302e576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506130b39190614565565b90506000600960008481526020019081526020016000205490506000600883815481106130e3576130e2614812565b5b90600052602060002001549050806008838154811061310557613104614812565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613154576131536147e3565b5b6001900381819060005260206000200160009055905550505050565b600061317b836111bc565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6131f9838361325d565b6132066000848484612d4d565b613245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161323c9061403b565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c4906141db565b60405180910390fd5b6132d6816123b4565b15613316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330d9061407b565b60405180910390fd5b61332260008383612bf7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133729190614484565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461343790614679565b90600052602060002090601f01602090048101928261345957600085556134a0565b82601f1061347257805160ff19168380011785556134a0565b828001600101855582156134a0579182015b8281111561349f578251825591602001919060010190613484565b5b5090506134ad91906134b1565b5090565b5b808211156134ca5760008160009055506001016134b2565b5090565b60006134e16134dc8461439b565b614376565b9050828152602081018484840111156134fd576134fc61487f565b5b61350884828561460d565b509392505050565b600061352361351e846143cc565b614376565b90508281526020810184848401111561353f5761353e61487f565b5b61354a84828561460d565b509392505050565b6000813590506135618161503f565b92915050565b60008083601f84011261357d5761357c614875565b5b8235905067ffffffffffffffff81111561359a57613599614870565b5b6020830191508360208202830111156135b6576135b561487a565b5b9250929050565b6000813590506135cc81615056565b92915050565b6000813590506135e18161506d565b92915050565b6000815190506135f68161506d565b92915050565b600082601f83011261361157613610614875565b5b81356136218482602086016134ce565b91505092915050565b600082601f83011261363f5761363e614875565b5b813561364f848260208601613510565b91505092915050565b60008135905061366781615084565b92915050565b60006020828403121561368357613682614889565b5b600061369184828501613552565b91505092915050565b600080604083850312156136b1576136b0614889565b5b60006136bf85828601613552565b92505060206136d085828601613552565b9150509250929050565b6000806000606084860312156136f3576136f2614889565b5b600061370186828701613552565b935050602061371286828701613552565b925050604061372386828701613658565b9150509250925092565b6000806000806080858703121561374757613746614889565b5b600061375587828801613552565b945050602061376687828801613552565b935050604061377787828801613658565b925050606085013567ffffffffffffffff81111561379857613797614884565b5b6137a4878288016135fc565b91505092959194509250565b600080604083850312156137c7576137c6614889565b5b60006137d585828601613552565b92505060206137e6858286016135bd565b9150509250929050565b6000806040838503121561380757613806614889565b5b600061381585828601613552565b925050602061382685828601613658565b9150509250929050565b6000806020838503121561384757613846614889565b5b600083013567ffffffffffffffff81111561386557613864614884565b5b61387185828601613567565b92509250509250929050565b60006020828403121561389357613892614889565b5b60006138a1848285016135d2565b91505092915050565b6000602082840312156138c0576138bf614889565b5b60006138ce848285016135e7565b91505092915050565b6000602082840312156138ed576138ec614889565b5b600082013567ffffffffffffffff81111561390b5761390a614884565b5b6139178482850161362a565b91505092915050565b60006020828403121561393657613935614889565b5b600061394484828501613658565b91505092915050565b60006139598383613e9e565b60208301905092915050565b61396e81614599565b82525050565b600061397f8261440d565b613989818561443b565b9350613994836143fd565b8060005b838110156139c55781516139ac888261394d565b97506139b78361442e565b925050600181019050613998565b5085935050505092915050565b6139db816145ab565b82525050565b60006139ec82614418565b6139f6818561444c565b9350613a0681856020860161461c565b613a0f8161488e565b840191505092915050565b6000613a2582614423565b613a2f8185614468565b9350613a3f81856020860161461c565b613a488161488e565b840191505092915050565b6000613a5e82614423565b613a688185614479565b9350613a7881856020860161461c565b80840191505092915050565b6000613a91601d83614468565b9150613a9c8261489f565b602082019050919050565b6000613ab4602a83614468565b9150613abf826148c8565b604082019050919050565b6000613ad7602b83614468565b9150613ae282614917565b604082019050919050565b6000613afa601783614468565b9150613b0582614966565b602082019050919050565b6000613b1d603283614468565b9150613b288261498f565b604082019050919050565b6000613b40602683614468565b9150613b4b826149de565b604082019050919050565b6000613b63601c83614468565b9150613b6e82614a2d565b602082019050919050565b6000613b86602f83614468565b9150613b9182614a56565b604082019050919050565b6000613ba9602383614468565b9150613bb482614aa5565b604082019050919050565b6000613bcc602483614468565b9150613bd782614af4565b604082019050919050565b6000613bef601983614468565b9150613bfa82614b43565b602082019050919050565b6000613c12602c83614468565b9150613c1d82614b6c565b604082019050919050565b6000613c35600d83614468565b9150613c4082614bbb565b602082019050919050565b6000613c58603883614468565b9150613c6382614be4565b604082019050919050565b6000613c7b602a83614468565b9150613c8682614c33565b604082019050919050565b6000613c9e602a83614468565b9150613ca982614c82565b604082019050919050565b6000613cc1602983614468565b9150613ccc82614cd1565b604082019050919050565b6000613ce4602083614468565b9150613cef82614d20565b602082019050919050565b6000613d07602c83614468565b9150613d1282614d49565b604082019050919050565b6000613d2a602f83614468565b9150613d3582614d98565b604082019050919050565b6000613d4d602083614468565b9150613d5882614de7565b602082019050919050565b6000613d70602983614468565b9150613d7b82614e10565b604082019050919050565b6000613d93602f83614468565b9150613d9e82614e5f565b604082019050919050565b6000613db6602183614468565b9150613dc182614eae565b604082019050919050565b6000613dd960008361445d565b9150613de482614efd565b600082019050919050565b6000613dfc601783614468565b9150613e0782614f00565b602082019050919050565b6000613e1f601083614468565b9150613e2a82614f29565b602082019050919050565b6000613e42602183614468565b9150613e4d82614f52565b604082019050919050565b6000613e65603183614468565b9150613e7082614fa1565b604082019050919050565b6000613e88602c83614468565b9150613e9382614ff0565b604082019050919050565b613ea781614603565b82525050565b613eb681614603565b82525050565b6000613ec88285613a53565b9150613ed48284613a53565b91508190509392505050565b6000613eeb82613dcc565b9150819050919050565b6000602082019050613f0a6000830184613965565b92915050565b6000608082019050613f256000830187613965565b613f326020830186613965565b613f3f6040830185613ead565b8181036060830152613f5181846139e1565b905095945050505050565b60006020820190508181036000830152613f768184613974565b905092915050565b6000602082019050613f9360008301846139d2565b92915050565b60006020820190508181036000830152613fb38184613a1a565b905092915050565b60006020820190508181036000830152613fd481613a84565b9050919050565b60006020820190508181036000830152613ff481613aa7565b9050919050565b6000602082019050818103600083015261401481613aca565b9050919050565b6000602082019050818103600083015261403481613aed565b9050919050565b6000602082019050818103600083015261405481613b10565b9050919050565b6000602082019050818103600083015261407481613b33565b9050919050565b6000602082019050818103600083015261409481613b56565b9050919050565b600060208201905081810360008301526140b481613b79565b9050919050565b600060208201905081810360008301526140d481613b9c565b9050919050565b600060208201905081810360008301526140f481613bbf565b9050919050565b6000602082019050818103600083015261411481613be2565b9050919050565b6000602082019050818103600083015261413481613c05565b9050919050565b6000602082019050818103600083015261415481613c28565b9050919050565b6000602082019050818103600083015261417481613c4b565b9050919050565b6000602082019050818103600083015261419481613c6e565b9050919050565b600060208201905081810360008301526141b481613c91565b9050919050565b600060208201905081810360008301526141d481613cb4565b9050919050565b600060208201905081810360008301526141f481613cd7565b9050919050565b6000602082019050818103600083015261421481613cfa565b9050919050565b6000602082019050818103600083015261423481613d1d565b9050919050565b6000602082019050818103600083015261425481613d40565b9050919050565b6000602082019050818103600083015261427481613d63565b9050919050565b6000602082019050818103600083015261429481613d86565b9050919050565b600060208201905081810360008301526142b481613da9565b9050919050565b600060208201905081810360008301526142d481613def565b9050919050565b600060208201905081810360008301526142f481613e12565b9050919050565b6000602082019050818103600083015261431481613e35565b9050919050565b6000602082019050818103600083015261433481613e58565b9050919050565b6000602082019050818103600083015261435481613e7b565b9050919050565b60006020820190506143706000830184613ead565b92915050565b6000614380614391565b905061438c82826146ab565b919050565b6000604051905090565b600067ffffffffffffffff8211156143b6576143b5614841565b5b6143bf8261488e565b9050602081019050919050565b600067ffffffffffffffff8211156143e7576143e6614841565b5b6143f08261488e565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061448f82614603565b915061449a83614603565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144cf576144ce614756565b5b828201905092915050565b60006144e582614603565b91506144f083614603565b925082614500576144ff614785565b5b828204905092915050565b600061451682614603565b915061452183614603565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561455a57614559614756565b5b828202905092915050565b600061457082614603565b915061457b83614603565b92508282101561458e5761458d614756565b5b828203905092915050565b60006145a4826145e3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561463a57808201518184015260208101905061461f565b83811115614649576000848401525b50505050565b600061465a82614603565b9150600082141561466e5761466d614756565b5b600182039050919050565b6000600282049050600182168061469157607f821691505b602082108114156146a5576146a46147b4565b5b50919050565b6146b48261488e565b810181811067ffffffffffffffff821117156146d3576146d2614841565b5b80604052505050565b60006146e782614603565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561471a57614719614756565b5b600182019050919050565b600061473082614603565b915061473b83614603565b92508261474b5761474a614785565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f41646472657373206e6f7420666f756e6420666f72206d696e74696e67000000600082015250565b7f4f757473696465204e465473206d696e74696e67206d696e74696e6720616c6c60008201527f6f7765642072616e676500000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4d696e74696e6720746f204e756c6c2061646472657373000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f50726573616c652f53616c65206973206e6f74206f70656e20706c656173652060008201527f74727920616761696e206c617465720000000000000000000000000000000000602082015250565b7f596f7520616c7265616479206d696e746564206d617820616c6c6f776564204e60008201527f4654730000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f416c6c204e46547320736f6c6400000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f41697264726f70206d696e74696e672077696c6c20657863656564206d61786960008201527f6d756d20737570706c7900000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f45746865722073656e7420776974682074686973207472616e73616374696f6e60008201527f206973206e6f7420636f72726563740000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000600082015250565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f596f7520617265206e6f7420656c69676962616c6520666f722050726573616c60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61504881614599565b811461505357600080fd5b50565b61505f816145ab565b811461506a57600080fd5b50565b615076816145b7565b811461508157600080fd5b50565b61508d81614603565b811461509857600080fd5b5056fea264697066735822122060e68090a953ec59659294e9470b8b74c5a0673cbeecdf38a561d6f198b4467064736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d587743624e61796f3241554c454d475766424269634a574157586d313141513931507a714a72665177324e322f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c8063729ad39e1161012e578063aef6ee1f116100ab578063e0f888ef1161006f578063e0f888ef14610816578063e985e9c514610841578063ec6dd0361461087e578063f2fde38b146108a7578063f46015ed146108d05761023b565b8063aef6ee1f14610745578063b88d4fde1461076e578063bb33d72914610797578063bee6348a146107ae578063c87b56dd146107d95761023b565b806395d89b41116100f257806395d89b411461067057806399288dbb1461069b5780639a6a6237146106c6578063a035b1fe146106f1578063a22cb4651461071c5761023b565b8063729ad39e146105c0578063853828b6146105e95780638da5cb5b1461060057806391b7f5ed1461062b57806392642744146106545761023b565b806342842e0e116101bc57806355367ba91161018057806355367ba9146104ef57806355f804b3146105065780636352211e1461052f57806370a082311461056c578063715018a6146105a95761023b565b806342842e0e1461041e57806342d1e8f9146104475780634357da581461045e578063438b6300146104755780634f6ccce7146104b25761023b565b806318160ddd1161020357806318160ddd14610325578063191f65ac1461035057806323b872dd1461038d5780632f745c59146103b6578063420db8cf146103f35761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806311abe0181461030e575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061387d565b6108f9565b6040516102749190613f7e565b60405180910390f35b34801561028957600080fd5b50610292610973565b60405161029f9190613f99565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613920565b610a05565b6040516102dc9190613ef5565b60405180910390f35b3480156102f157600080fd5b5061030c600480360381019061030791906137f0565b610a8a565b005b34801561031a57600080fd5b50610323610ba2565b005b34801561033157600080fd5b5061033a610bfc565b604051610347919061435b565b60405180910390f35b34801561035c57600080fd5b506103776004803603810190610372919061366d565b610c09565b6040516103849190613f7e565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af91906136da565b610c5f565b005b3480156103c257600080fd5b506103dd60048036038101906103d891906137f0565b610cbf565b6040516103ea919061435b565b60405180910390f35b3480156103ff57600080fd5b50610408610d64565b604051610415919061435b565b60405180910390f35b34801561042a57600080fd5b50610445600480360381019061044091906136da565b610d6a565b005b34801561045357600080fd5b5061045c610d8a565b005b34801561046a57600080fd5b50610473610e23565b005b34801561048157600080fd5b5061049c6004803603810190610497919061366d565b610ebc565b6040516104a99190613f5c565b60405180910390f35b3480156104be57600080fd5b506104d960048036038101906104d49190613920565b610f6a565b6040516104e6919061435b565b60405180910390f35b3480156104fb57600080fd5b50610504610fdb565b005b34801561051257600080fd5b5061052d600480360381019061052891906138d7565b611074565b005b34801561053b57600080fd5b5061055660048036038101906105519190613920565b61110a565b6040516105639190613ef5565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e919061366d565b6111bc565b6040516105a0919061435b565b60405180910390f35b3480156105b557600080fd5b506105be611274565b005b3480156105cc57600080fd5b506105e760048036038101906105e29190613830565b6112fc565b005b3480156105f557600080fd5b506105fe611513565b005b34801561060c57600080fd5b5061061561163e565b6040516106229190613ef5565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d9190613920565b611668565b005b61066e60048036038101906106699190613920565b6116ee565b005b34801561067c57600080fd5b50610685611a95565b6040516106929190613f99565b60405180910390f35b3480156106a757600080fd5b506106b0611b27565b6040516106bd9190613f7e565b60405180910390f35b3480156106d257600080fd5b506106db611b3a565b6040516106e8919061435b565b60405180910390f35b3480156106fd57600080fd5b50610706611b40565b604051610713919061435b565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e91906137b0565b611b46565b005b34801561075157600080fd5b5061076c60048036038101906107679190613830565b611cc7565b005b34801561077a57600080fd5b506107956004803603810190610790919061372d565b611e7f565b005b3480156107a357600080fd5b506107ac611ee1565b005b3480156107ba57600080fd5b506107c3611f7a565b6040516107d09190613f7e565b60405180910390f35b3480156107e557600080fd5b5061080060048036038101906107fb9190613920565b611f8d565b60405161080d9190613f99565b60405180910390f35b34801561082257600080fd5b5061082b612034565b604051610838919061435b565b60405180910390f35b34801561084d57600080fd5b506108686004803603810190610863919061369a565b61203a565b6040516108759190613f7e565b60405180910390f35b34801561088a57600080fd5b506108a560048036038101906108a09190613920565b6120ce565b005b3480156108b357600080fd5b506108ce60048036038101906108c9919061366d565b612154565b005b3480156108dc57600080fd5b506108f760048036038101906108f29190613920565b61224c565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096c575061096b826122d2565b5b9050919050565b60606000805461098290614679565b80601f01602080910402602001604051908101604052809291908181526020018280546109ae90614679565b80156109fb5780601f106109d0576101008083540402835291602001916109fb565b820191906000526020600020905b8154815290600101906020018083116109de57829003601f168201915b5050505050905090565b6000610a10826123b4565b610a4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a46906141fb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a958261110a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afd9061429b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b25612420565b73ffffffffffffffffffffffffffffffffffffffff161480610b545750610b5381610b4e612420565b61203a565b5b610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a9061415b565b60405180910390fd5b610b9d8383612428565b505050565b6001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550565b6000600880549050905090565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610c70610c6a612420565b826124e1565b610caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca69061431b565b60405180910390fd5b610cba8383836125bf565b505050565b6000610cca836111bc565b8210610d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0290613ffb565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600e5481565b610d8583838360405180602001604052806000815250611e7f565b505050565b610d92612420565b73ffffffffffffffffffffffffffffffffffffffff16610db061163e565b73ffffffffffffffffffffffffffffffffffffffff1614610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd9061423b565b60405180910390fd5b6001601260016101000a81548160ff021916908315150217905550565b610e2b612420565b73ffffffffffffffffffffffffffffffffffffffff16610e4961163e565b73ffffffffffffffffffffffffffffffffffffffff1614610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e969061423b565b60405180910390fd5b6000601260016101000a81548160ff021916908315150217905550565b60606000610ec9836111bc565b905060008167ffffffffffffffff811115610ee757610ee6614841565b5b604051908082528060200260200182016040528015610f155781602001602082028036833780820191505090505b50905060005b82811015610f5f57610f2d8582610cbf565b828281518110610f4057610f3f614812565b5b6020026020010181815250508080610f57906146dc565b915050610f1b565b508092505050919050565b6000610f74610bfc565b8210610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac9061433b565b60405180910390fd5b60088281548110610fc957610fc8614812565b5b90600052602060002001549050919050565b610fe3612420565b73ffffffffffffffffffffffffffffffffffffffff1661100161163e565b73ffffffffffffffffffffffffffffffffffffffff1614611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e9061423b565b60405180910390fd5b6000601260006101000a81548160ff021916908315150217905550565b61107c612420565b73ffffffffffffffffffffffffffffffffffffffff1661109a61163e565b73ffffffffffffffffffffffffffffffffffffffff16146110f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e79061423b565b60405180910390fd5b806010908051906020019061110692919061342b565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa906141bb565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561122d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112249061419b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61127c612420565b73ffffffffffffffffffffffffffffffffffffffff1661129a61163e565b73ffffffffffffffffffffffffffffffffffffffff16146112f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e79061423b565b60405180910390fd5b6112fa600061281b565b565b611304612420565b73ffffffffffffffffffffffffffffffffffffffff1661132261163e565b73ffffffffffffffffffffffffffffffffffffffff1614611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f9061423b565b60405180910390fd5b600e54600c546113889190614565565b82829050611394610bfc565b61139e9190614484565b11156113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d69061417b565b60405180910390fd5b6000828290501415611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d90613fbb565b60405180910390fd5b60005b8282905081101561150e57600073ffffffffffffffffffffffffffffffffffffffff1683838381811061145f5761145e614812565b5b9050602002016020810190611474919061366d565b73ffffffffffffffffffffffffffffffffffffffff1614156114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c29061401b565b60405180910390fd5b6114fb8383838181106114e1576114e0614812565b5b90506020020160208101906114f6919061366d565b6128e1565b8080611506906146dc565b915050611429565b505050565b61151b612420565b73ffffffffffffffffffffffffffffffffffffffff1661153961163e565b73ffffffffffffffffffffffffffffffffffffffff161461158f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115869061423b565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516115b590613ee0565b60006040518083038185875af1925050503d80600081146115f2576040519150601f19603f3d011682016040523d82523d6000602084013e6115f7565b606091505b505090508061163b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611632906142db565b60405180910390fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611670612420565b73ffffffffffffffffffffffffffffffffffffffff1661168e61163e565b73ffffffffffffffffffffffffffffffffffffffff16146116e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116db9061423b565b60405180910390fd5b80600f8190555050565b6116f661163e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118285760011515601260009054906101000a900460ff161515148061175d575060011515601260019054906101000a900460ff161515145b61179c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117939061409b565b60405180910390fd5b60011515601260019054906101000a900460ff1615151480156117d2575060001515601260009054906101000a900460ff161515145b1561182757600115156117e433610c09565b151514611826576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181d906142fb565b60405180910390fd5b5b5b60008111801561183a5750600d548111155b611879576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187090613fdb565b60405180910390fd5b600d54611885336111bc565b106118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc906140bb565b60405180910390fd5b6118cd61163e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461196857600e54600c5461190f9190614565565b81611918610bfc565b6119229190614484565b1115611963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195a9061413b565b60405180910390fd5b6119c0565b600c5481611974610bfc565b61197e9190614484565b11156119bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b69061413b565b60405180910390fd5b5b80600f546119ce919061450b565b341015611a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a079061421b565b60405180910390fd5b600033905060005b82811015611a9057611a29826128e1565b611a3161163e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415611a7d57600e6000815480929190611a779061464f565b91905055505b8080611a88906146dc565b915050611a18565b505050565b606060018054611aa490614679565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad090614679565b8015611b1d5780601f10611af257610100808354040283529160200191611b1d565b820191906000526020600020905b815481529060010190602001808311611b0057829003601f168201915b5050505050905090565b601260009054906101000a900460ff1681565b600d5481565b600f5481565b611b4e612420565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb3906140fb565b60405180910390fd5b8060056000611bc9612420565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c76612420565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cbb9190613f7e565b60405180910390a35050565b611ccf612420565b73ffffffffffffffffffffffffffffffffffffffff16611ced61163e565b73ffffffffffffffffffffffffffffffffffffffff1614611d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3a9061423b565b60405180910390fd5b60005b82829050811015611e7a57600073ffffffffffffffffffffffffffffffffffffffff16838383818110611d7c57611d7b614812565b5b9050602002016020810190611d91919061366d565b73ffffffffffffffffffffffffffffffffffffffff161415611de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddf906142bb565b60405180910390fd5b600160116000858585818110611e0157611e00614812565b5b9050602002016020810190611e16919061366d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611e72906146dc565b915050611d46565b505050565b611e90611e8a612420565b836124e1565b611ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec69061431b565b60405180910390fd5b611edb8484848461293e565b50505050565b611ee9612420565b73ffffffffffffffffffffffffffffffffffffffff16611f0761163e565b73ffffffffffffffffffffffffffffffffffffffff1614611f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f549061423b565b60405180910390fd5b6001601260006101000a81548160ff021916908315150217905550565b601260019054906101000a900460ff1681565b6060611f98826123b4565b611fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fce9061427b565b60405180910390fd5b6000611fe161299a565b90506000815111612001576040518060200160405280600081525061202c565b8061200b84612a2c565b60405160200161201c929190613ebc565b6040516020818303038152906040525b915050919050565b600c5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120d6612420565b73ffffffffffffffffffffffffffffffffffffffff166120f461163e565b73ffffffffffffffffffffffffffffffffffffffff161461214a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121419061423b565b60405180910390fd5b80600e8190555050565b61215c612420565b73ffffffffffffffffffffffffffffffffffffffff1661217a61163e565b73ffffffffffffffffffffffffffffffffffffffff16146121d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c79061423b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612240576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122379061405b565b60405180910390fd5b6122498161281b565b50565b612254612420565b73ffffffffffffffffffffffffffffffffffffffff1661227261163e565b73ffffffffffffffffffffffffffffffffffffffff16146122c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bf9061423b565b60405180910390fd5b80600d8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061239d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806123ad57506123ac82612b8d565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661249b8361110a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006124ec826123b4565b61252b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125229061411b565b60405180910390fd5b60006125368361110a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806125a557508373ffffffffffffffffffffffffffffffffffffffff1661258d84610a05565b73ffffffffffffffffffffffffffffffffffffffff16145b806125b657506125b5818561203a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166125df8261110a565b73ffffffffffffffffffffffffffffffffffffffff1614612635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262c9061425b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269c906140db565b60405180910390fd5b6126b0838383612bf7565b6126bb600082612428565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461270b9190614565565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127629190614484565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128eb600b612d0b565b60006128f7600b612d21565b90506129038282612d2f565b7fd9dc24857f317ed9abbbb42e920ede0104231eb1d3d70236a74887ffaf15986881604051612932919061435b565b60405180910390a15050565b6129498484846125bf565b61295584848484612d4d565b612994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298b9061403b565b60405180910390fd5b50505050565b6060601080546129a990614679565b80601f01602080910402602001604051908101604052809291908181526020018280546129d590614679565b8015612a225780601f106129f757610100808354040283529160200191612a22565b820191906000526020600020905b815481529060010190602001808311612a0557829003601f168201915b5050505050905090565b60606000821415612a74576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b88565b600082905060005b60008214612aa6578080612a8f906146dc565b915050600a82612a9f91906144da565b9150612a7c565b60008167ffffffffffffffff811115612ac257612ac1614841565b5b6040519080825280601f01601f191660200182016040528015612af45781602001600182028036833780820191505090505b5090505b60008514612b8157600182612b0d9190614565565b9150600a85612b1c9190614725565b6030612b289190614484565b60f81b818381518110612b3e57612b3d614812565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b7a91906144da565b9450612af8565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612c02838383612ee4565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c4557612c4081612ee9565b612c84565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612c8357612c828382612f32565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cc757612cc28161309f565b612d06565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612d0557612d048282613170565b5b5b505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b612d498282604051806020016040528060008152506131ef565b5050565b6000612d6e8473ffffffffffffffffffffffffffffffffffffffff1661324a565b15612ed7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d97612420565b8786866040518563ffffffff1660e01b8152600401612db99493929190613f10565b602060405180830381600087803b158015612dd357600080fd5b505af1925050508015612e0457506040513d601f19601f82011682018060405250810190612e0191906138aa565b60015b612e87573d8060008114612e34576040519150601f19603f3d011682016040523d82523d6000602084013e612e39565b606091505b50600081511415612e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e769061403b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612edc565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612f3f846111bc565b612f499190614565565b905060006007600084815260200190815260200160002054905081811461302e576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506130b39190614565565b90506000600960008481526020019081526020016000205490506000600883815481106130e3576130e2614812565b5b90600052602060002001549050806008838154811061310557613104614812565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613154576131536147e3565b5b6001900381819060005260206000200160009055905550505050565b600061317b836111bc565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6131f9838361325d565b6132066000848484612d4d565b613245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161323c9061403b565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c4906141db565b60405180910390fd5b6132d6816123b4565b15613316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330d9061407b565b60405180910390fd5b61332260008383612bf7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133729190614484565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461343790614679565b90600052602060002090601f01602090048101928261345957600085556134a0565b82601f1061347257805160ff19168380011785556134a0565b828001600101855582156134a0579182015b8281111561349f578251825591602001919060010190613484565b5b5090506134ad91906134b1565b5090565b5b808211156134ca5760008160009055506001016134b2565b5090565b60006134e16134dc8461439b565b614376565b9050828152602081018484840111156134fd576134fc61487f565b5b61350884828561460d565b509392505050565b600061352361351e846143cc565b614376565b90508281526020810184848401111561353f5761353e61487f565b5b61354a84828561460d565b509392505050565b6000813590506135618161503f565b92915050565b60008083601f84011261357d5761357c614875565b5b8235905067ffffffffffffffff81111561359a57613599614870565b5b6020830191508360208202830111156135b6576135b561487a565b5b9250929050565b6000813590506135cc81615056565b92915050565b6000813590506135e18161506d565b92915050565b6000815190506135f68161506d565b92915050565b600082601f83011261361157613610614875565b5b81356136218482602086016134ce565b91505092915050565b600082601f83011261363f5761363e614875565b5b813561364f848260208601613510565b91505092915050565b60008135905061366781615084565b92915050565b60006020828403121561368357613682614889565b5b600061369184828501613552565b91505092915050565b600080604083850312156136b1576136b0614889565b5b60006136bf85828601613552565b92505060206136d085828601613552565b9150509250929050565b6000806000606084860312156136f3576136f2614889565b5b600061370186828701613552565b935050602061371286828701613552565b925050604061372386828701613658565b9150509250925092565b6000806000806080858703121561374757613746614889565b5b600061375587828801613552565b945050602061376687828801613552565b935050604061377787828801613658565b925050606085013567ffffffffffffffff81111561379857613797614884565b5b6137a4878288016135fc565b91505092959194509250565b600080604083850312156137c7576137c6614889565b5b60006137d585828601613552565b92505060206137e6858286016135bd565b9150509250929050565b6000806040838503121561380757613806614889565b5b600061381585828601613552565b925050602061382685828601613658565b9150509250929050565b6000806020838503121561384757613846614889565b5b600083013567ffffffffffffffff81111561386557613864614884565b5b61387185828601613567565b92509250509250929050565b60006020828403121561389357613892614889565b5b60006138a1848285016135d2565b91505092915050565b6000602082840312156138c0576138bf614889565b5b60006138ce848285016135e7565b91505092915050565b6000602082840312156138ed576138ec614889565b5b600082013567ffffffffffffffff81111561390b5761390a614884565b5b6139178482850161362a565b91505092915050565b60006020828403121561393657613935614889565b5b600061394484828501613658565b91505092915050565b60006139598383613e9e565b60208301905092915050565b61396e81614599565b82525050565b600061397f8261440d565b613989818561443b565b9350613994836143fd565b8060005b838110156139c55781516139ac888261394d565b97506139b78361442e565b925050600181019050613998565b5085935050505092915050565b6139db816145ab565b82525050565b60006139ec82614418565b6139f6818561444c565b9350613a0681856020860161461c565b613a0f8161488e565b840191505092915050565b6000613a2582614423565b613a2f8185614468565b9350613a3f81856020860161461c565b613a488161488e565b840191505092915050565b6000613a5e82614423565b613a688185614479565b9350613a7881856020860161461c565b80840191505092915050565b6000613a91601d83614468565b9150613a9c8261489f565b602082019050919050565b6000613ab4602a83614468565b9150613abf826148c8565b604082019050919050565b6000613ad7602b83614468565b9150613ae282614917565b604082019050919050565b6000613afa601783614468565b9150613b0582614966565b602082019050919050565b6000613b1d603283614468565b9150613b288261498f565b604082019050919050565b6000613b40602683614468565b9150613b4b826149de565b604082019050919050565b6000613b63601c83614468565b9150613b6e82614a2d565b602082019050919050565b6000613b86602f83614468565b9150613b9182614a56565b604082019050919050565b6000613ba9602383614468565b9150613bb482614aa5565b604082019050919050565b6000613bcc602483614468565b9150613bd782614af4565b604082019050919050565b6000613bef601983614468565b9150613bfa82614b43565b602082019050919050565b6000613c12602c83614468565b9150613c1d82614b6c565b604082019050919050565b6000613c35600d83614468565b9150613c4082614bbb565b602082019050919050565b6000613c58603883614468565b9150613c6382614be4565b604082019050919050565b6000613c7b602a83614468565b9150613c8682614c33565b604082019050919050565b6000613c9e602a83614468565b9150613ca982614c82565b604082019050919050565b6000613cc1602983614468565b9150613ccc82614cd1565b604082019050919050565b6000613ce4602083614468565b9150613cef82614d20565b602082019050919050565b6000613d07602c83614468565b9150613d1282614d49565b604082019050919050565b6000613d2a602f83614468565b9150613d3582614d98565b604082019050919050565b6000613d4d602083614468565b9150613d5882614de7565b602082019050919050565b6000613d70602983614468565b9150613d7b82614e10565b604082019050919050565b6000613d93602f83614468565b9150613d9e82614e5f565b604082019050919050565b6000613db6602183614468565b9150613dc182614eae565b604082019050919050565b6000613dd960008361445d565b9150613de482614efd565b600082019050919050565b6000613dfc601783614468565b9150613e0782614f00565b602082019050919050565b6000613e1f601083614468565b9150613e2a82614f29565b602082019050919050565b6000613e42602183614468565b9150613e4d82614f52565b604082019050919050565b6000613e65603183614468565b9150613e7082614fa1565b604082019050919050565b6000613e88602c83614468565b9150613e9382614ff0565b604082019050919050565b613ea781614603565b82525050565b613eb681614603565b82525050565b6000613ec88285613a53565b9150613ed48284613a53565b91508190509392505050565b6000613eeb82613dcc565b9150819050919050565b6000602082019050613f0a6000830184613965565b92915050565b6000608082019050613f256000830187613965565b613f326020830186613965565b613f3f6040830185613ead565b8181036060830152613f5181846139e1565b905095945050505050565b60006020820190508181036000830152613f768184613974565b905092915050565b6000602082019050613f9360008301846139d2565b92915050565b60006020820190508181036000830152613fb38184613a1a565b905092915050565b60006020820190508181036000830152613fd481613a84565b9050919050565b60006020820190508181036000830152613ff481613aa7565b9050919050565b6000602082019050818103600083015261401481613aca565b9050919050565b6000602082019050818103600083015261403481613aed565b9050919050565b6000602082019050818103600083015261405481613b10565b9050919050565b6000602082019050818103600083015261407481613b33565b9050919050565b6000602082019050818103600083015261409481613b56565b9050919050565b600060208201905081810360008301526140b481613b79565b9050919050565b600060208201905081810360008301526140d481613b9c565b9050919050565b600060208201905081810360008301526140f481613bbf565b9050919050565b6000602082019050818103600083015261411481613be2565b9050919050565b6000602082019050818103600083015261413481613c05565b9050919050565b6000602082019050818103600083015261415481613c28565b9050919050565b6000602082019050818103600083015261417481613c4b565b9050919050565b6000602082019050818103600083015261419481613c6e565b9050919050565b600060208201905081810360008301526141b481613c91565b9050919050565b600060208201905081810360008301526141d481613cb4565b9050919050565b600060208201905081810360008301526141f481613cd7565b9050919050565b6000602082019050818103600083015261421481613cfa565b9050919050565b6000602082019050818103600083015261423481613d1d565b9050919050565b6000602082019050818103600083015261425481613d40565b9050919050565b6000602082019050818103600083015261427481613d63565b9050919050565b6000602082019050818103600083015261429481613d86565b9050919050565b600060208201905081810360008301526142b481613da9565b9050919050565b600060208201905081810360008301526142d481613def565b9050919050565b600060208201905081810360008301526142f481613e12565b9050919050565b6000602082019050818103600083015261431481613e35565b9050919050565b6000602082019050818103600083015261433481613e58565b9050919050565b6000602082019050818103600083015261435481613e7b565b9050919050565b60006020820190506143706000830184613ead565b92915050565b6000614380614391565b905061438c82826146ab565b919050565b6000604051905090565b600067ffffffffffffffff8211156143b6576143b5614841565b5b6143bf8261488e565b9050602081019050919050565b600067ffffffffffffffff8211156143e7576143e6614841565b5b6143f08261488e565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061448f82614603565b915061449a83614603565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144cf576144ce614756565b5b828201905092915050565b60006144e582614603565b91506144f083614603565b925082614500576144ff614785565b5b828204905092915050565b600061451682614603565b915061452183614603565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561455a57614559614756565b5b828202905092915050565b600061457082614603565b915061457b83614603565b92508282101561458e5761458d614756565b5b828203905092915050565b60006145a4826145e3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561463a57808201518184015260208101905061461f565b83811115614649576000848401525b50505050565b600061465a82614603565b9150600082141561466e5761466d614756565b5b600182039050919050565b6000600282049050600182168061469157607f821691505b602082108114156146a5576146a46147b4565b5b50919050565b6146b48261488e565b810181811067ffffffffffffffff821117156146d3576146d2614841565b5b80604052505050565b60006146e782614603565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561471a57614719614756565b5b600182019050919050565b600061473082614603565b915061473b83614603565b92508261474b5761474a614785565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f41646472657373206e6f7420666f756e6420666f72206d696e74696e67000000600082015250565b7f4f757473696465204e465473206d696e74696e67206d696e74696e6720616c6c60008201527f6f7765642072616e676500000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4d696e74696e6720746f204e756c6c2061646472657373000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f50726573616c652f53616c65206973206e6f74206f70656e20706c656173652060008201527f74727920616761696e206c617465720000000000000000000000000000000000602082015250565b7f596f7520616c7265616479206d696e746564206d617820616c6c6f776564204e60008201527f4654730000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f416c6c204e46547320736f6c6400000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f41697264726f70206d696e74696e672077696c6c20657863656564206d61786960008201527f6d756d20737570706c7900000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f45746865722073656e7420776974682074686973207472616e73616374696f6e60008201527f206973206e6f7420636f72726563740000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000600082015250565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f596f7520617265206e6f7420656c69676962616c6520666f722050726573616c60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61504881614599565b811461505357600080fd5b50565b61505f816145ab565b811461506a57600080fd5b50565b615076816145b7565b811461508157600080fd5b50565b61508d81614603565b811461509857600080fd5b5056fea264697066735822122060e68090a953ec59659294e9470b8b74c5a0673cbeecdf38a561d6f198b4467064736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d587743624e61796f3241554c454d475766424269634a574157586d313141513931507a714a72665177324e322f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://ipfs.io/ipfs/QmXwCbNayo2AULEMGWfBBicJWAWXm11AQ91PzqJrfQw2N2/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [2] : 68747470733a2f2f697066732e696f2f697066732f516d587743624e61796f32
Arg [3] : 41554c454d475766424269634a574157586d313141513931507a714a72665177
Arg [4] : 324e322f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

46485:4944:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40015:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27175:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28868:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28391:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50883:91;;;;;;;;;;;;;:::i;:::-;;40818:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50982:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29927:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40399:343;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46706:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30374:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48191:80;;;;;;;;;;;;;:::i;:::-;;48080:79;;;;;;;;;;;;;:::i;:::-;;47196:385;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41008:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48301:73;;;;;;;;;;;;;:::i;:::-;;47589:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26782:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26425:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9882:94;;;;;;;;;;;;;:::i;:::-;;50076:508;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48486:174;;;;;;;;;;;;;:::i;:::-;;9231:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47698:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48688:1376;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27344:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46902:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46669:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46747:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29248:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50592:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30630:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48404:74;;;;;;;;;;;;;:::i;:::-;;46937:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27519:468;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46629:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29646:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47931:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10131:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47800:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40015:300;40162:4;40219:35;40204:50;;;:11;:50;;;;:103;;;;40271:36;40295:11;40271:23;:36::i;:::-;40204:103;40184:123;;40015:300;;;:::o;27175:100::-;27229:13;27262:5;27255:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27175:100;:::o;28868:308::-;28989:7;29036:16;29044:7;29036;:16::i;:::-;29014:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;29144:15;:24;29160:7;29144:24;;;;;;;;;;;;;;;;;;;;;29137:31;;28868:308;;;:::o;28391:411::-;28472:13;28488:23;28503:7;28488:14;:23::i;:::-;28472:39;;28536:5;28530:11;;:2;:11;;;;28522:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;28630:5;28614:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28639:37;28656:5;28663:12;:10;:12::i;:::-;28639:16;:37::i;:::-;28614:62;28592:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;28773:21;28782:2;28786:7;28773:8;:21::i;:::-;28461:341;28391:411;;:::o;50883:91::-;50962:4;50931:16;:28;50948:10;50931:28;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;50883:91::o;40818:113::-;40879:7;40906:10;:17;;;;40899:24;;40818:113;:::o;50982:121::-;51049:4;51073:16;:22;51090:4;51073:22;;;;;;;;;;;;;;;;;;;;;;;;;51066:29;;50982:121;;;:::o;29927:376::-;30136:41;30155:12;:10;:12::i;:::-;30169:7;30136:18;:41::i;:::-;30114:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;30267:28;30277:4;30283:2;30287:7;30267:9;:28::i;:::-;29927:376;;;:::o;40399:343::-;40541:7;40596:23;40613:5;40596:16;:23::i;:::-;40588:5;:31;40566:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;40708:12;:19;40721:5;40708:19;;;;;;;;;;;;;;;:26;40728:5;40708:26;;;;;;;;;;;;40701:33;;40399:343;;;;:::o;46706:34::-;;;;:::o;30374:185::-;30512:39;30529:4;30535:2;30539:7;30512:39;;;;;;;;;;;;:16;:39::i;:::-;30374:185;;;:::o;48191:80::-;9462:12;:10;:12::i;:::-;9451:23;;:7;:5;:7::i;:::-;:23;;;9443:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48259:4:::1;48245:11;;:18;;;;;;;;;;;;;;;;;;48191:80::o:0;48080:79::-;9462:12;:10;:12::i;:::-;9451:23;;:7;:5;:7::i;:::-;:23;;;9443:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48146:5:::1;48132:11;;:19;;;;;;;;;;;;;;;;;;48080:79::o:0;47196:385::-;47285:16;47319:18;47340:17;47350:6;47340:9;:17::i;:::-;47319:38;;47370:25;47412:10;47398:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47370:53;;47439:9;47434:112;47458:10;47454:1;:14;47434:112;;;47504:30;47524:6;47532:1;47504:19;:30::i;:::-;47490:8;47499:1;47490:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;47470:3;;;;;:::i;:::-;;;;47434:112;;;;47565:8;47558:15;;;;47196:385;;;:::o;41008:320::-;41128:7;41183:30;:28;:30::i;:::-;41175:5;:38;41153:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;41303:10;41314:5;41303:17;;;;;;;;:::i;:::-;;;;;;;;;;41296:24;;41008:320;;;:::o;48301:73::-;9462:12;:10;:12::i;:::-;9451:23;;:7;:5;:7::i;:::-;:23;;;9443:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48361:5:::1;48350:8;;:16;;;;;;;;;;;;;;;;;;48301:73::o:0;47589:101::-;9462:12;:10;:12::i;:::-;9451:23;;:7;:5;:7::i;:::-;:23;;;9443:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47675:7:::1;47660:12;:22;;;;;;;;;;;;:::i;:::-;;47589:101:::0;:::o;26782:326::-;26899:7;26924:13;26940:7;:16;26948:7;26940:16;;;;;;;;;;;;;;;;;;;;;26924:32;;27006:1;26989:19;;:5;:19;;;;26967:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;27095:5;27088:12;;;26782:326;;;:::o;26425:295::-;26542:7;26606:1;26589:19;;:5;:19;;;;26567:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26696:9;:16;26706:5;26696:16;;;;;;;;;;;;;;;;26689:23;;26425:295;;;:::o;9882:94::-;9462:12;:10;:12::i;:::-;9451:23;;:7;:5;:7::i;:::-;:23;;;9443:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9947:21:::1;9965:1;9947:9;:21::i;:::-;9882:94::o:0;50076:508::-;9462:12;:10;:12::i;:::-;9451:23;;:7;:5;:7::i;:::-;:23;;;9443:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50229:14:::1;;50216:10;;:27;;;;:::i;:::-;50193:11;;:18;;50177:13;:11;:13::i;:::-;:34;;;;:::i;:::-;:67;;50155:159;;;;;;;;;;;;:::i;:::-;;;;;;;;;50355:1;50333:11;;:18;;:23;;50325:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;50406:9;50401:176;50425:11;;:18;;50421:1;:22;50401:176;;;50499:1;50473:28;;:11;;50485:1;50473:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;:28;;;;50465:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;50544:21;50550:11;;50562:1;50550:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;50544:5;:21::i;:::-;50445:3;;;;;:::i;:::-;;;;50401:176;;;;50076:508:::0;;:::o;48486:174::-;9462:12;:10;:12::i;:::-;9451:23;;:7;:5;:7::i;:::-;:23;;;9443:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48538:12:::1;48556:10;:15;;48579:21;48556:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48537:68;;;48624:7;48616:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;48526:134;48486:174::o:0;9231:87::-;9277:7;9304:6;;;;;;;;;;;9297:13;;9231:87;:::o;47698:90::-;9462:12;:10;:12::i;:::-;9451:23;;:7;:5;:7::i;:::-;:23;;;9443:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47771:9:::1;47763:5;:17;;;;47698:90:::0;:::o;48688:1376::-;48765:7;:5;:7::i;:::-;48751:21;;:10;:21;;;48747:350;;48810:4;48798:16;;:8;;;;;;;;;;;:16;;;:39;;;;48833:4;48818:19;;:11;;;;;;;;;;;:19;;;48798:39;48789:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;48937:4;48922:19;;:11;;;;;;;;;;;:19;;;:40;;;;;48957:5;48945:17;;:8;;;;;;;;;;;:17;;;48922:40;48919:167;;;49028:4;48990:42;;:34;49013:10;48990:22;:34::i;:::-;:42;;;48982:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;48919:167;48747:350;49148:1;49139:6;:10;:35;;;;;49163:11;;49153:6;:21;;49139:35;49117:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;49297:11;;49273:21;49283:10;49273:9;:21::i;:::-;:35;49265:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;49387:7;:5;:7::i;:::-;49373:21;;:10;:21;;;49369:328;;49477:14;;49464:10;;:27;;;;:::i;:::-;49453:6;49437:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:55;;49411:130;;;;;;;;;;;;:::i;:::-;;;;;;;;;49369:328;;;49625:10;;49614:6;49598:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:38;;49572:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;49369:328;49760:6;49752:5;;:14;;;;:::i;:::-;49739:9;:27;;49717:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;49854:11;49868:10;49854:24;;49896:9;49891:166;49915:6;49911:1;:10;49891:166;;;49943:10;49949:3;49943:5;:10::i;:::-;49986:7;:5;:7::i;:::-;49972:21;;:10;:21;;;49968:78;;;50014:14;;:16;;;;;;;;;:::i;:::-;;;;;;49968:78;49923:3;;;;;:::i;:::-;;;;49891:166;;;;48736:1328;48688:1376;:::o;27344:104::-;27400:13;27433:7;27426:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27344:104;:::o;46902:28::-;;;;;;;;;;;;;:::o;46669:30::-;;;;:::o;46747:40::-;;;;:::o;29248:327::-;29395:12;:10;:12::i;:::-;29383:24;;:8;:24;;;;29375:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;29495:8;29450:18;:32;29469:12;:10;:12::i;:::-;29450:32;;;;;;;;;;;;;;;:42;29483:8;29450:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29548:8;29519:48;;29534:12;:10;:12::i;:::-;29519:48;;;29558:8;29519:48;;;;;;:::i;:::-;;;;;;;;29248:327;;:::o;50592:279::-;9462:12;:10;:12::i;:::-;9451:23;;:7;:5;:7::i;:::-;:23;;;9443:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50679:9:::1;50674:190;50698:9;;:16;;50694:1;:20;50674:190;;;50768:1;50744:26;;:9;;50754:1;50744:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;:26;;;;50736:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;50848:4;50815:16;:30;50832:9;;50842:1;50832:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;50815:30;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;50716:3;;;;;:::i;:::-;;;;50674:190;;;;50592:279:::0;;:::o;30630:365::-;30819:41;30838:12;:10;:12::i;:::-;30852:7;30819:18;:41::i;:::-;30797:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;30948:39;30962:4;30968:2;30972:7;30981:5;30948:13;:39::i;:::-;30630:365;;;;:::o;48404:74::-;9462:12;:10;:12::i;:::-;9451:23;;:7;:5;:7::i;:::-;:23;;;9443:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48466:4:::1;48455:8;;:15;;;;;;;;;;;;;;;;;;48404:74::o:0;46937:31::-;;;;;;;;;;;;;:::o;27519:468::-;27637:13;27690:16;27698:7;27690;:16::i;:::-;27668:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;27794:21;27818:10;:8;:10::i;:::-;27794:34;;27883:1;27865:7;27859:21;:25;:120;;;;;;;;;;;;;;;;;27928:7;27937:18;:7;:16;:18::i;:::-;27911:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27859:120;27839:140;;;27519:468;;;:::o;46629:33::-;;;;:::o;29646:214::-;29788:4;29817:18;:25;29836:5;29817:25;;;;;;;;;;;;;;;:35;29843:8;29817:35;;;;;;;;;;;;;;;;;;;;;;;;;29810:42;;29646:214;;;;:::o;47931:119::-;9462:12;:10;:12::i;:::-;9451:23;;:7;:5;:7::i;:::-;:23;;;9443:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48027:15:::1;48010:14;:32;;;;47931:119:::0;:::o;10131:229::-;9462:12;:10;:12::i;:::-;9451:23;;:7;:5;:7::i;:::-;:23;;;9443:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10254:1:::1;10234:22;;:8;:22;;;;10212:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;10333:19;10343:8;10333:9;:19::i;:::-;10131:229:::0;:::o;47800:119::-;9462:12;:10;:12::i;:::-;9451:23;;:7;:5;:7::i;:::-;:23;;;9443:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47893:18:::1;47879:11;:32;;;;47800:119:::0;:::o;26006:355::-;26153:4;26210:25;26195:40;;;:11;:40;;;;:105;;;;26267:33;26252:48;;;:11;:48;;;;26195:105;:158;;;;26317:36;26341:11;26317:23;:36::i;:::-;26195:158;26175:178;;26006:355;;;:::o;32542:127::-;32607:4;32659:1;32631:30;;:7;:16;32639:7;32631:16;;;;;;;;;;;;;;;;;;;;;:30;;;;32624:37;;32542:127;;;:::o;2204:98::-;2257:7;2284:10;2277:17;;2204:98;:::o;36665:174::-;36767:2;36740:15;:24;36756:7;36740:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36823:7;36819:2;36785:46;;36794:23;36809:7;36794:14;:23::i;:::-;36785:46;;;;;;;;;;;;36665:174;;:::o;32836:452::-;32965:4;33009:16;33017:7;33009;:16::i;:::-;32987:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;33108:13;33124:23;33139:7;33124:14;:23::i;:::-;33108:39;;33177:5;33166:16;;:7;:16;;;:64;;;;33223:7;33199:31;;:20;33211:7;33199:11;:20::i;:::-;:31;;;33166:64;:113;;;;33247:32;33264:5;33271:7;33247:16;:32::i;:::-;33166:113;33158:122;;;32836:452;;;;:::o;35932:615::-;36105:4;36078:31;;:23;36093:7;36078:14;:23::i;:::-;:31;;;36056:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;36211:1;36197:16;;:2;:16;;;;36189:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;36267:39;36288:4;36294:2;36298:7;36267:20;:39::i;:::-;36371:29;36388:1;36392:7;36371:8;:29::i;:::-;36432:1;36413:9;:15;36423:4;36413:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;36461:1;36444:9;:13;36454:2;36444:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36492:2;36473:7;:16;36481:7;36473:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36531:7;36527:2;36512:27;;36521:4;36512:27;;;;;;;;;;;;35932:615;;;:::o;10368:173::-;10424:16;10443:6;;;;;;;;;;;10424:25;;10469:8;10460:6;;:17;;;;;;;;;;;;;;;;;;10524:8;10493:40;;10514:8;10493:40;;;;;;;;;;;;10413:128;10368:173;:::o;51115:190::-;51162:20;:8;:18;:20::i;:::-;51193:15;51211:18;:8;:16;:18::i;:::-;51193:36;;51240:23;51250:3;51255:7;51240:9;:23::i;:::-;51279:18;51289:7;51279:18;;;;;;:::i;:::-;;;;;;;;51151:154;51115:190;:::o;31877:352::-;32034:28;32044:4;32050:2;32054:7;32034:9;:28::i;:::-;32095:48;32118:4;32124:2;32128:7;32137:5;32095:22;:48::i;:::-;32073:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;31877:352;;;;:::o;51313:113::-;51373:13;51406:12;51399:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51313:113;:::o;12873:723::-;12929:13;13159:1;13150:5;:10;13146:53;;;13177:10;;;;;;;;;;;;;;;;;;;;;13146:53;13209:12;13224:5;13209:20;;13240:14;13265:78;13280:1;13272:4;:9;13265:78;;13298:8;;;;;:::i;:::-;;;;13329:2;13321:10;;;;;:::i;:::-;;;13265:78;;;13353:19;13385:6;13375:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13353:39;;13403:154;13419:1;13410:5;:10;13403:154;;13447:1;13437:11;;;;;:::i;:::-;;;13514:2;13506:5;:10;;;;:::i;:::-;13493:2;:24;;;;:::i;:::-;13480:39;;13463:6;13470;13463:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;13543:2;13534:11;;;;;:::i;:::-;;;13403:154;;;13581:6;13567:21;;;;;12873:723;;;;:::o;12352:207::-;12482:4;12526:25;12511:40;;;:11;:40;;;;12504:47;;12352:207;;;:::o;41941:589::-;42085:45;42112:4;42118:2;42122:7;42085:26;:45::i;:::-;42163:1;42147:18;;:4;:18;;;42143:187;;;42182:40;42214:7;42182:31;:40::i;:::-;42143:187;;;42252:2;42244:10;;:4;:10;;;42240:90;;42271:47;42304:4;42310:7;42271:32;:47::i;:::-;42240:90;42143:187;42358:1;42344:16;;:2;:16;;;42340:183;;;42377:45;42414:7;42377:36;:45::i;:::-;42340:183;;;42450:4;42444:10;;:2;:10;;;42440:83;;42471:40;42499:2;42503:7;42471:27;:40::i;:::-;42440:83;42340:183;41941:589;;;:::o;1113:127::-;1220:1;1202:7;:14;;;:19;;;;;;;;;;;1113:127;:::o;991:114::-;1056:7;1083;:14;;;1076:21;;991:114;;;:::o;33630:110::-;33706:26;33716:2;33720:7;33706:26;;;;;;;;;;;;:9;:26::i;:::-;33630:110;;:::o;37404:984::-;37559:4;37580:15;:2;:13;;;:15::i;:::-;37576:805;;;37649:2;37633:36;;;37692:12;:10;:12::i;:::-;37727:4;37754:7;37784:5;37633:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37612:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38012:1;37995:6;:13;:18;37991:320;;;38038:108;;;;;;;;;;:::i;:::-;;;;;;;;37991:320;38261:6;38255:13;38246:6;38242:2;38238:15;38231:38;37612:714;37882:45;;;37872:55;;;:6;:55;;;;37865:62;;;;;37576:805;38365:4;38358:11;;37404:984;;;;;;;:::o;38960:126::-;;;;:::o;43253:164::-;43357:10;:17;;;;43330:15;:24;43346:7;43330:24;;;;;;;;;;;:44;;;;43385:10;43401:7;43385:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43253:164;:::o;44044:1002::-;44324:22;44374:1;44349:22;44366:4;44349:16;:22::i;:::-;:26;;;;:::i;:::-;44324:51;;44386:18;44407:17;:26;44425:7;44407:26;;;;;;;;;;;;44386:47;;44554:14;44540:10;:28;44536:328;;44585:19;44607:12;:18;44620:4;44607:18;;;;;;;;;;;;;;;:34;44626:14;44607:34;;;;;;;;;;;;44585:56;;44691:11;44658:12;:18;44671:4;44658:18;;;;;;;;;;;;;;;:30;44677:10;44658:30;;;;;;;;;;;:44;;;;44808:10;44775:17;:30;44793:11;44775:30;;;;;;;;;;;:43;;;;44570:294;44536:328;44960:17;:26;44978:7;44960:26;;;;;;;;;;;44953:33;;;45004:12;:18;45017:4;45004:18;;;;;;;;;;;;;;;:34;45023:14;45004:34;;;;;;;;;;;44997:41;;;44139:907;;44044:1002;;:::o;45341:1079::-;45594:22;45639:1;45619:10;:17;;;;:21;;;;:::i;:::-;45594:46;;45651:18;45672:15;:24;45688:7;45672:24;;;;;;;;;;;;45651:45;;46023:19;46045:10;46056:14;46045:26;;;;;;;;:::i;:::-;;;;;;;;;;46023:48;;46109:11;46084:10;46095;46084:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;46220:10;46189:15;:28;46205:11;46189:28;;;;;;;;;;;:41;;;;46361:15;:24;46377:7;46361:24;;;;;;;;;;;46354:31;;;46396:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45412:1008;;;45341:1079;:::o;42831:221::-;42916:14;42933:20;42950:2;42933:16;:20::i;:::-;42916:37;;42991:7;42964:12;:16;42977:2;42964:16;;;;;;;;;;;;;;;:24;42981:6;42964:24;;;;;;;;;;;:34;;;;43038:6;43009:17;:26;43027:7;43009:26;;;;;;;;;;;:35;;;;42905:147;42831:221;;:::o;33967:321::-;34097:18;34103:2;34107:7;34097:5;:18::i;:::-;34148:54;34179:1;34183:2;34187:7;34196:5;34148:22;:54::i;:::-;34126:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;33967:321;;;:::o;15426:387::-;15486:4;15694:12;15761:7;15749:20;15741:28;;15804:1;15797:4;:8;15790:15;;;15426:387;;;:::o;34624:382::-;34718:1;34704:16;;:2;:16;;;;34696:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;34777:16;34785:7;34777;:16::i;:::-;34776:17;34768:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;34839:45;34868:1;34872:2;34876:7;34839:20;:45::i;:::-;34914:1;34897:9;:13;34907:2;34897:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34945:2;34926:7;:16;34934:7;34926:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34990:7;34986:2;34965:33;;34982:1;34965:33;;;;;;;;;;;;34624:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423: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;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:559::-;6297:6;6305;6354:2;6342:9;6333:7;6329:23;6325:32;6322:119;;;6360:79;;:::i;:::-;6322:119;6508:1;6497:9;6493:17;6480:31;6538:18;6530:6;6527:30;6524:117;;;6560:79;;:::i;:::-;6524:117;6673:80;6745:7;6736:6;6725:9;6721:22;6673:80;:::i;:::-;6655:98;;;;6451:312;6211:559;;;;;:::o;6776:327::-;6834:6;6883:2;6871:9;6862:7;6858:23;6854:32;6851:119;;;6889:79;;:::i;:::-;6851:119;7009:1;7034:52;7078:7;7069:6;7058:9;7054:22;7034:52;:::i;:::-;7024:62;;6980:116;6776:327;;;;:::o;7109:349::-;7178:6;7227:2;7215:9;7206:7;7202:23;7198:32;7195:119;;;7233:79;;:::i;:::-;7195:119;7353:1;7378:63;7433:7;7424:6;7413:9;7409:22;7378:63;:::i;:::-;7368:73;;7324:127;7109:349;;;;:::o;7464:509::-;7533:6;7582:2;7570:9;7561:7;7557:23;7553:32;7550:119;;;7588:79;;:::i;:::-;7550:119;7736:1;7725:9;7721:17;7708:31;7766:18;7758:6;7755:30;7752:117;;;7788:79;;:::i;:::-;7752:117;7893:63;7948:7;7939:6;7928:9;7924:22;7893:63;:::i;:::-;7883:73;;7679:287;7464:509;;;;:::o;7979:329::-;8038:6;8087:2;8075:9;8066:7;8062:23;8058:32;8055:119;;;8093:79;;:::i;:::-;8055:119;8213:1;8238:53;8283:7;8274:6;8263:9;8259:22;8238:53;:::i;:::-;8228:63;;8184:117;7979:329;;;;:::o;8314:179::-;8383:10;8404:46;8446:3;8438:6;8404:46;:::i;:::-;8482:4;8477:3;8473:14;8459:28;;8314:179;;;;:::o;8499:118::-;8586:24;8604:5;8586:24;:::i;:::-;8581:3;8574:37;8499:118;;:::o;8653:732::-;8772:3;8801:54;8849:5;8801:54;:::i;:::-;8871:86;8950:6;8945:3;8871:86;:::i;:::-;8864:93;;8981:56;9031:5;8981:56;:::i;:::-;9060:7;9091:1;9076:284;9101:6;9098:1;9095:13;9076:284;;;9177:6;9171:13;9204:63;9263:3;9248:13;9204:63;:::i;:::-;9197:70;;9290:60;9343:6;9290:60;:::i;:::-;9280:70;;9136:224;9123:1;9120;9116:9;9111:14;;9076:284;;;9080:14;9376:3;9369:10;;8777:608;;;8653:732;;;;:::o;9391:109::-;9472:21;9487:5;9472:21;:::i;:::-;9467:3;9460:34;9391:109;;:::o;9506:360::-;9592:3;9620:38;9652:5;9620:38;:::i;:::-;9674:70;9737:6;9732:3;9674:70;:::i;:::-;9667:77;;9753:52;9798:6;9793:3;9786:4;9779:5;9775:16;9753:52;:::i;:::-;9830:29;9852:6;9830:29;:::i;:::-;9825:3;9821:39;9814:46;;9596:270;9506:360;;;;:::o;9872:364::-;9960:3;9988:39;10021:5;9988:39;:::i;:::-;10043:71;10107:6;10102:3;10043:71;:::i;:::-;10036:78;;10123:52;10168:6;10163:3;10156:4;10149:5;10145:16;10123:52;:::i;:::-;10200:29;10222:6;10200:29;:::i;:::-;10195:3;10191:39;10184:46;;9964:272;9872:364;;;;:::o;10242:377::-;10348:3;10376:39;10409:5;10376:39;:::i;:::-;10431:89;10513:6;10508:3;10431:89;:::i;:::-;10424:96;;10529:52;10574:6;10569:3;10562:4;10555:5;10551:16;10529:52;:::i;:::-;10606:6;10601:3;10597:16;10590:23;;10352:267;10242:377;;;;:::o;10625:366::-;10767:3;10788:67;10852:2;10847:3;10788:67;:::i;:::-;10781:74;;10864:93;10953:3;10864:93;:::i;:::-;10982:2;10977:3;10973:12;10966:19;;10625:366;;;:::o;10997:::-;11139:3;11160:67;11224:2;11219:3;11160:67;:::i;:::-;11153:74;;11236:93;11325:3;11236:93;:::i;:::-;11354:2;11349:3;11345:12;11338:19;;10997:366;;;:::o;11369:::-;11511:3;11532:67;11596:2;11591:3;11532:67;:::i;:::-;11525:74;;11608:93;11697:3;11608:93;:::i;:::-;11726:2;11721:3;11717:12;11710:19;;11369:366;;;:::o;11741:::-;11883:3;11904:67;11968:2;11963:3;11904:67;:::i;:::-;11897:74;;11980:93;12069:3;11980:93;:::i;:::-;12098:2;12093:3;12089:12;12082:19;;11741:366;;;:::o;12113:::-;12255:3;12276:67;12340:2;12335:3;12276:67;:::i;:::-;12269:74;;12352:93;12441:3;12352:93;:::i;:::-;12470:2;12465:3;12461:12;12454:19;;12113:366;;;:::o;12485:::-;12627:3;12648:67;12712:2;12707:3;12648:67;:::i;:::-;12641:74;;12724:93;12813:3;12724:93;:::i;:::-;12842:2;12837:3;12833:12;12826:19;;12485:366;;;:::o;12857:::-;12999:3;13020:67;13084:2;13079:3;13020:67;:::i;:::-;13013:74;;13096:93;13185:3;13096:93;:::i;:::-;13214:2;13209:3;13205:12;13198:19;;12857:366;;;:::o;13229:::-;13371:3;13392:67;13456:2;13451:3;13392:67;:::i;:::-;13385:74;;13468:93;13557:3;13468:93;:::i;:::-;13586:2;13581:3;13577:12;13570:19;;13229:366;;;:::o;13601:::-;13743:3;13764:67;13828:2;13823:3;13764:67;:::i;:::-;13757:74;;13840:93;13929:3;13840:93;:::i;:::-;13958:2;13953:3;13949:12;13942:19;;13601:366;;;:::o;13973:::-;14115:3;14136:67;14200:2;14195:3;14136:67;:::i;:::-;14129:74;;14212:93;14301:3;14212:93;:::i;:::-;14330:2;14325:3;14321:12;14314:19;;13973:366;;;:::o;14345:::-;14487:3;14508:67;14572:2;14567:3;14508:67;:::i;:::-;14501:74;;14584:93;14673:3;14584:93;:::i;:::-;14702:2;14697:3;14693:12;14686:19;;14345:366;;;:::o;14717:::-;14859:3;14880:67;14944:2;14939:3;14880:67;:::i;:::-;14873:74;;14956:93;15045:3;14956:93;:::i;:::-;15074:2;15069:3;15065:12;15058:19;;14717:366;;;:::o;15089:::-;15231:3;15252:67;15316:2;15311:3;15252:67;:::i;:::-;15245:74;;15328:93;15417:3;15328:93;:::i;:::-;15446:2;15441:3;15437:12;15430:19;;15089:366;;;:::o;15461:::-;15603:3;15624:67;15688:2;15683:3;15624:67;:::i;:::-;15617:74;;15700:93;15789:3;15700:93;:::i;:::-;15818:2;15813:3;15809:12;15802:19;;15461:366;;;:::o;15833:::-;15975:3;15996:67;16060:2;16055:3;15996:67;:::i;:::-;15989:74;;16072:93;16161:3;16072:93;:::i;:::-;16190:2;16185:3;16181:12;16174:19;;15833:366;;;:::o;16205:::-;16347:3;16368:67;16432:2;16427:3;16368:67;:::i;:::-;16361:74;;16444:93;16533:3;16444:93;:::i;:::-;16562:2;16557:3;16553:12;16546:19;;16205:366;;;:::o;16577:::-;16719:3;16740:67;16804:2;16799:3;16740:67;:::i;:::-;16733:74;;16816:93;16905:3;16816:93;:::i;:::-;16934:2;16929:3;16925:12;16918:19;;16577:366;;;:::o;16949:::-;17091:3;17112:67;17176:2;17171:3;17112:67;:::i;:::-;17105:74;;17188:93;17277:3;17188:93;:::i;:::-;17306:2;17301:3;17297:12;17290:19;;16949:366;;;:::o;17321:::-;17463:3;17484:67;17548:2;17543:3;17484:67;:::i;:::-;17477:74;;17560:93;17649:3;17560:93;:::i;:::-;17678:2;17673:3;17669:12;17662:19;;17321:366;;;:::o;17693:::-;17835:3;17856:67;17920:2;17915:3;17856:67;:::i;:::-;17849:74;;17932:93;18021:3;17932:93;:::i;:::-;18050:2;18045:3;18041:12;18034:19;;17693:366;;;:::o;18065:::-;18207:3;18228:67;18292:2;18287:3;18228:67;:::i;:::-;18221:74;;18304:93;18393:3;18304:93;:::i;:::-;18422:2;18417:3;18413:12;18406:19;;18065:366;;;:::o;18437:::-;18579:3;18600:67;18664:2;18659:3;18600:67;:::i;:::-;18593:74;;18676:93;18765:3;18676:93;:::i;:::-;18794:2;18789:3;18785:12;18778:19;;18437:366;;;:::o;18809:::-;18951:3;18972:67;19036:2;19031:3;18972:67;:::i;:::-;18965:74;;19048:93;19137:3;19048:93;:::i;:::-;19166:2;19161:3;19157:12;19150:19;;18809:366;;;:::o;19181:::-;19323:3;19344:67;19408:2;19403:3;19344:67;:::i;:::-;19337:74;;19420:93;19509:3;19420:93;:::i;:::-;19538:2;19533:3;19529:12;19522:19;;19181:366;;;:::o;19553:398::-;19712:3;19733:83;19814:1;19809:3;19733:83;:::i;:::-;19726:90;;19825:93;19914:3;19825:93;:::i;:::-;19943:1;19938:3;19934:11;19927:18;;19553:398;;;:::o;19957:366::-;20099:3;20120:67;20184:2;20179:3;20120:67;:::i;:::-;20113:74;;20196:93;20285:3;20196:93;:::i;:::-;20314:2;20309:3;20305:12;20298:19;;19957:366;;;:::o;20329:::-;20471:3;20492:67;20556:2;20551:3;20492:67;:::i;:::-;20485:74;;20568:93;20657:3;20568:93;:::i;:::-;20686:2;20681:3;20677:12;20670:19;;20329:366;;;:::o;20701:::-;20843:3;20864:67;20928:2;20923:3;20864:67;:::i;:::-;20857:74;;20940:93;21029:3;20940:93;:::i;:::-;21058:2;21053:3;21049:12;21042:19;;20701:366;;;:::o;21073:::-;21215:3;21236:67;21300:2;21295:3;21236:67;:::i;:::-;21229:74;;21312:93;21401:3;21312:93;:::i;:::-;21430:2;21425:3;21421:12;21414:19;;21073:366;;;:::o;21445:::-;21587:3;21608:67;21672:2;21667:3;21608:67;:::i;:::-;21601:74;;21684:93;21773:3;21684:93;:::i;:::-;21802:2;21797:3;21793:12;21786:19;;21445:366;;;:::o;21817:108::-;21894:24;21912:5;21894:24;:::i;:::-;21889:3;21882:37;21817:108;;:::o;21931:118::-;22018:24;22036:5;22018:24;:::i;:::-;22013:3;22006:37;21931:118;;:::o;22055:435::-;22235:3;22257:95;22348:3;22339:6;22257:95;:::i;:::-;22250:102;;22369:95;22460:3;22451:6;22369:95;:::i;:::-;22362:102;;22481:3;22474:10;;22055:435;;;;;:::o;22496:379::-;22680:3;22702:147;22845:3;22702:147;:::i;:::-;22695:154;;22866:3;22859:10;;22496:379;;;:::o;22881:222::-;22974:4;23012:2;23001:9;22997:18;22989:26;;23025:71;23093:1;23082:9;23078:17;23069:6;23025:71;:::i;:::-;22881:222;;;;:::o;23109:640::-;23304:4;23342:3;23331:9;23327:19;23319:27;;23356:71;23424:1;23413:9;23409:17;23400:6;23356:71;:::i;:::-;23437:72;23505:2;23494:9;23490:18;23481:6;23437:72;:::i;:::-;23519;23587:2;23576:9;23572:18;23563:6;23519:72;:::i;:::-;23638:9;23632:4;23628:20;23623:2;23612:9;23608:18;23601:48;23666:76;23737:4;23728:6;23666:76;:::i;:::-;23658:84;;23109:640;;;;;;;:::o;23755:373::-;23898:4;23936:2;23925:9;23921:18;23913:26;;23985:9;23979:4;23975:20;23971:1;23960:9;23956:17;23949:47;24013:108;24116:4;24107:6;24013:108;:::i;:::-;24005:116;;23755:373;;;;:::o;24134:210::-;24221:4;24259:2;24248:9;24244:18;24236:26;;24272:65;24334:1;24323:9;24319:17;24310:6;24272:65;:::i;:::-;24134:210;;;;:::o;24350:313::-;24463:4;24501:2;24490:9;24486:18;24478:26;;24550:9;24544:4;24540:20;24536:1;24525:9;24521:17;24514:47;24578:78;24651:4;24642:6;24578:78;:::i;:::-;24570:86;;24350:313;;;;:::o;24669:419::-;24835:4;24873:2;24862:9;24858:18;24850:26;;24922:9;24916:4;24912:20;24908:1;24897:9;24893:17;24886:47;24950:131;25076:4;24950:131;:::i;:::-;24942:139;;24669:419;;;:::o;25094:::-;25260:4;25298:2;25287:9;25283:18;25275:26;;25347:9;25341:4;25337:20;25333:1;25322:9;25318:17;25311:47;25375:131;25501:4;25375:131;:::i;:::-;25367:139;;25094:419;;;:::o;25519:::-;25685:4;25723:2;25712:9;25708:18;25700:26;;25772:9;25766:4;25762:20;25758:1;25747:9;25743:17;25736:47;25800:131;25926:4;25800:131;:::i;:::-;25792:139;;25519:419;;;:::o;25944:::-;26110:4;26148:2;26137:9;26133:18;26125:26;;26197:9;26191:4;26187:20;26183:1;26172:9;26168:17;26161:47;26225:131;26351:4;26225:131;:::i;:::-;26217:139;;25944:419;;;:::o;26369:::-;26535:4;26573:2;26562:9;26558:18;26550:26;;26622:9;26616:4;26612:20;26608:1;26597:9;26593:17;26586:47;26650:131;26776:4;26650:131;:::i;:::-;26642:139;;26369:419;;;:::o;26794:::-;26960:4;26998:2;26987:9;26983:18;26975:26;;27047:9;27041:4;27037:20;27033:1;27022:9;27018:17;27011:47;27075:131;27201:4;27075:131;:::i;:::-;27067:139;;26794:419;;;:::o;27219:::-;27385:4;27423:2;27412:9;27408:18;27400:26;;27472:9;27466:4;27462:20;27458:1;27447:9;27443:17;27436:47;27500:131;27626:4;27500:131;:::i;:::-;27492:139;;27219:419;;;:::o;27644:::-;27810:4;27848:2;27837:9;27833:18;27825:26;;27897:9;27891:4;27887:20;27883:1;27872:9;27868:17;27861:47;27925:131;28051:4;27925:131;:::i;:::-;27917:139;;27644:419;;;:::o;28069:::-;28235:4;28273:2;28262:9;28258:18;28250:26;;28322:9;28316:4;28312:20;28308:1;28297:9;28293:17;28286:47;28350:131;28476:4;28350:131;:::i;:::-;28342:139;;28069:419;;;:::o;28494:::-;28660:4;28698:2;28687:9;28683:18;28675:26;;28747:9;28741:4;28737:20;28733:1;28722:9;28718:17;28711:47;28775:131;28901:4;28775:131;:::i;:::-;28767:139;;28494:419;;;:::o;28919:::-;29085:4;29123:2;29112:9;29108:18;29100:26;;29172:9;29166:4;29162:20;29158:1;29147:9;29143:17;29136:47;29200:131;29326:4;29200:131;:::i;:::-;29192:139;;28919:419;;;:::o;29344:::-;29510:4;29548:2;29537:9;29533:18;29525:26;;29597:9;29591:4;29587:20;29583:1;29572:9;29568:17;29561:47;29625:131;29751:4;29625:131;:::i;:::-;29617:139;;29344:419;;;:::o;29769:::-;29935:4;29973:2;29962:9;29958:18;29950:26;;30022:9;30016:4;30012:20;30008:1;29997:9;29993:17;29986:47;30050:131;30176:4;30050:131;:::i;:::-;30042:139;;29769:419;;;:::o;30194:::-;30360:4;30398:2;30387:9;30383:18;30375:26;;30447:9;30441:4;30437:20;30433:1;30422:9;30418:17;30411:47;30475:131;30601:4;30475:131;:::i;:::-;30467:139;;30194:419;;;:::o;30619:::-;30785:4;30823:2;30812:9;30808:18;30800:26;;30872:9;30866:4;30862:20;30858:1;30847:9;30843:17;30836:47;30900:131;31026:4;30900:131;:::i;:::-;30892:139;;30619:419;;;:::o;31044:::-;31210:4;31248:2;31237:9;31233:18;31225:26;;31297:9;31291:4;31287:20;31283:1;31272:9;31268:17;31261:47;31325:131;31451:4;31325:131;:::i;:::-;31317:139;;31044:419;;;:::o;31469:::-;31635:4;31673:2;31662:9;31658:18;31650:26;;31722:9;31716:4;31712:20;31708:1;31697:9;31693:17;31686:47;31750:131;31876:4;31750:131;:::i;:::-;31742:139;;31469:419;;;:::o;31894:::-;32060:4;32098:2;32087:9;32083:18;32075:26;;32147:9;32141:4;32137:20;32133:1;32122:9;32118:17;32111:47;32175:131;32301:4;32175:131;:::i;:::-;32167:139;;31894:419;;;:::o;32319:::-;32485:4;32523:2;32512:9;32508:18;32500:26;;32572:9;32566:4;32562:20;32558:1;32547:9;32543:17;32536:47;32600:131;32726:4;32600:131;:::i;:::-;32592:139;;32319:419;;;:::o;32744:::-;32910:4;32948:2;32937:9;32933:18;32925:26;;32997:9;32991:4;32987:20;32983:1;32972:9;32968:17;32961:47;33025:131;33151:4;33025:131;:::i;:::-;33017:139;;32744:419;;;:::o;33169:::-;33335:4;33373:2;33362:9;33358:18;33350:26;;33422:9;33416:4;33412:20;33408:1;33397:9;33393:17;33386:47;33450:131;33576:4;33450:131;:::i;:::-;33442:139;;33169:419;;;:::o;33594:::-;33760:4;33798:2;33787:9;33783:18;33775:26;;33847:9;33841:4;33837:20;33833:1;33822:9;33818:17;33811:47;33875:131;34001:4;33875:131;:::i;:::-;33867:139;;33594:419;;;:::o;34019:::-;34185:4;34223:2;34212:9;34208:18;34200:26;;34272:9;34266:4;34262:20;34258:1;34247:9;34243:17;34236:47;34300:131;34426:4;34300:131;:::i;:::-;34292:139;;34019:419;;;:::o;34444:::-;34610:4;34648:2;34637:9;34633:18;34625:26;;34697:9;34691:4;34687:20;34683:1;34672:9;34668:17;34661:47;34725:131;34851:4;34725:131;:::i;:::-;34717:139;;34444:419;;;:::o;34869:::-;35035:4;35073:2;35062:9;35058:18;35050:26;;35122:9;35116:4;35112:20;35108:1;35097:9;35093:17;35086:47;35150:131;35276:4;35150:131;:::i;:::-;35142:139;;34869:419;;;:::o;35294:::-;35460:4;35498:2;35487:9;35483:18;35475:26;;35547:9;35541:4;35537:20;35533:1;35522:9;35518:17;35511:47;35575:131;35701:4;35575:131;:::i;:::-;35567:139;;35294:419;;;:::o;35719:::-;35885:4;35923:2;35912:9;35908:18;35900:26;;35972:9;35966:4;35962:20;35958:1;35947:9;35943:17;35936:47;36000:131;36126:4;36000:131;:::i;:::-;35992:139;;35719:419;;;:::o;36144:::-;36310:4;36348:2;36337:9;36333:18;36325:26;;36397:9;36391:4;36387:20;36383:1;36372:9;36368:17;36361:47;36425:131;36551:4;36425:131;:::i;:::-;36417:139;;36144:419;;;:::o;36569:::-;36735:4;36773:2;36762:9;36758:18;36750:26;;36822:9;36816:4;36812:20;36808:1;36797:9;36793:17;36786:47;36850:131;36976:4;36850:131;:::i;:::-;36842:139;;36569:419;;;:::o;36994:222::-;37087:4;37125:2;37114:9;37110:18;37102:26;;37138:71;37206:1;37195:9;37191:17;37182:6;37138:71;:::i;:::-;36994:222;;;;:::o;37222:129::-;37256:6;37283:20;;:::i;:::-;37273:30;;37312:33;37340:4;37332:6;37312:33;:::i;:::-;37222:129;;;:::o;37357:75::-;37390:6;37423:2;37417:9;37407:19;;37357:75;:::o;37438:307::-;37499:4;37589:18;37581:6;37578:30;37575:56;;;37611:18;;:::i;:::-;37575:56;37649:29;37671:6;37649:29;:::i;:::-;37641:37;;37733:4;37727;37723:15;37715:23;;37438:307;;;:::o;37751:308::-;37813:4;37903:18;37895:6;37892:30;37889:56;;;37925:18;;:::i;:::-;37889:56;37963:29;37985:6;37963:29;:::i;:::-;37955:37;;38047:4;38041;38037:15;38029:23;;37751:308;;;:::o;38065:132::-;38132:4;38155:3;38147:11;;38185:4;38180:3;38176:14;38168:22;;38065:132;;;:::o;38203:114::-;38270:6;38304:5;38298:12;38288:22;;38203:114;;;:::o;38323:98::-;38374:6;38408:5;38402:12;38392:22;;38323:98;;;:::o;38427:99::-;38479:6;38513:5;38507:12;38497:22;;38427:99;;;:::o;38532:113::-;38602:4;38634;38629:3;38625:14;38617:22;;38532:113;;;:::o;38651:184::-;38750:11;38784:6;38779:3;38772:19;38824:4;38819:3;38815:14;38800:29;;38651:184;;;;:::o;38841:168::-;38924:11;38958:6;38953:3;38946:19;38998:4;38993:3;38989:14;38974:29;;38841:168;;;;:::o;39015:147::-;39116:11;39153:3;39138:18;;39015:147;;;;:::o;39168:169::-;39252:11;39286:6;39281:3;39274:19;39326:4;39321:3;39317:14;39302:29;;39168:169;;;;:::o;39343:148::-;39445:11;39482:3;39467:18;;39343:148;;;;:::o;39497:305::-;39537:3;39556:20;39574:1;39556:20;:::i;:::-;39551:25;;39590:20;39608:1;39590:20;:::i;:::-;39585:25;;39744:1;39676:66;39672:74;39669:1;39666:81;39663:107;;;39750:18;;:::i;:::-;39663:107;39794:1;39791;39787:9;39780:16;;39497:305;;;;:::o;39808:185::-;39848:1;39865:20;39883:1;39865:20;:::i;:::-;39860:25;;39899:20;39917:1;39899:20;:::i;:::-;39894:25;;39938:1;39928:35;;39943:18;;:::i;:::-;39928:35;39985:1;39982;39978:9;39973:14;;39808:185;;;;:::o;39999:348::-;40039:7;40062:20;40080:1;40062:20;:::i;:::-;40057:25;;40096:20;40114:1;40096:20;:::i;:::-;40091:25;;40284:1;40216:66;40212:74;40209:1;40206:81;40201:1;40194:9;40187:17;40183:105;40180:131;;;40291:18;;:::i;:::-;40180:131;40339:1;40336;40332:9;40321:20;;39999:348;;;;:::o;40353:191::-;40393:4;40413:20;40431:1;40413:20;:::i;:::-;40408:25;;40447:20;40465:1;40447:20;:::i;:::-;40442:25;;40486:1;40483;40480:8;40477:34;;;40491:18;;:::i;:::-;40477:34;40536:1;40533;40529:9;40521:17;;40353:191;;;;:::o;40550:96::-;40587:7;40616:24;40634:5;40616:24;:::i;:::-;40605:35;;40550:96;;;:::o;40652:90::-;40686:7;40729:5;40722:13;40715:21;40704:32;;40652:90;;;:::o;40748:149::-;40784:7;40824:66;40817:5;40813:78;40802:89;;40748:149;;;:::o;40903:126::-;40940:7;40980:42;40973:5;40969:54;40958:65;;40903:126;;;:::o;41035:77::-;41072:7;41101:5;41090:16;;41035:77;;;:::o;41118:154::-;41202:6;41197:3;41192;41179:30;41264:1;41255:6;41250:3;41246:16;41239:27;41118:154;;;:::o;41278:307::-;41346:1;41356:113;41370:6;41367:1;41364:13;41356:113;;;41455:1;41450:3;41446:11;41440:18;41436:1;41431:3;41427:11;41420:39;41392:2;41389:1;41385:10;41380:15;;41356:113;;;41487:6;41484:1;41481:13;41478:101;;;41567:1;41558:6;41553:3;41549:16;41542:27;41478:101;41327:258;41278:307;;;:::o;41591:171::-;41630:3;41653:24;41671:5;41653:24;:::i;:::-;41644:33;;41699:4;41692:5;41689:15;41686:41;;;41707:18;;:::i;:::-;41686:41;41754:1;41747:5;41743:13;41736:20;;41591:171;;;:::o;41768:320::-;41812:6;41849:1;41843:4;41839:12;41829:22;;41896:1;41890:4;41886:12;41917:18;41907:81;;41973:4;41965:6;41961:17;41951:27;;41907:81;42035:2;42027:6;42024:14;42004:18;42001:38;41998:84;;;42054:18;;:::i;:::-;41998:84;41819:269;41768:320;;;:::o;42094:281::-;42177:27;42199:4;42177:27;:::i;:::-;42169:6;42165:40;42307:6;42295:10;42292:22;42271:18;42259:10;42256:34;42253:62;42250:88;;;42318:18;;:::i;:::-;42250:88;42358:10;42354:2;42347:22;42137:238;42094:281;;:::o;42381:233::-;42420:3;42443:24;42461:5;42443:24;:::i;:::-;42434:33;;42489:66;42482:5;42479:77;42476:103;;;42559:18;;:::i;:::-;42476:103;42606:1;42599:5;42595:13;42588:20;;42381:233;;;:::o;42620:176::-;42652:1;42669:20;42687:1;42669:20;:::i;:::-;42664:25;;42703:20;42721:1;42703:20;:::i;:::-;42698:25;;42742:1;42732:35;;42747:18;;:::i;:::-;42732:35;42788:1;42785;42781:9;42776:14;;42620:176;;;;:::o;42802:180::-;42850:77;42847:1;42840:88;42947:4;42944:1;42937:15;42971:4;42968:1;42961:15;42988:180;43036:77;43033:1;43026:88;43133:4;43130:1;43123:15;43157:4;43154:1;43147:15;43174:180;43222:77;43219:1;43212:88;43319:4;43316:1;43309:15;43343:4;43340:1;43333:15;43360:180;43408:77;43405:1;43398:88;43505:4;43502:1;43495:15;43529:4;43526:1;43519:15;43546:180;43594:77;43591:1;43584:88;43691:4;43688:1;43681:15;43715:4;43712:1;43705:15;43732:180;43780:77;43777:1;43770:88;43877:4;43874:1;43867:15;43901:4;43898:1;43891:15;43918:117;44027:1;44024;44017:12;44041:117;44150:1;44147;44140:12;44164:117;44273:1;44270;44263:12;44287:117;44396:1;44393;44386:12;44410:117;44519:1;44516;44509:12;44533:117;44642:1;44639;44632:12;44656:102;44697:6;44748:2;44744:7;44739:2;44732:5;44728:14;44724:28;44714:38;;44656:102;;;:::o;44764:179::-;44904:31;44900:1;44892:6;44888:14;44881:55;44764:179;:::o;44949:229::-;45089:34;45085:1;45077:6;45073:14;45066:58;45158:12;45153:2;45145:6;45141:15;45134:37;44949:229;:::o;45184:230::-;45324:34;45320:1;45312:6;45308:14;45301:58;45393:13;45388:2;45380:6;45376:15;45369:38;45184:230;:::o;45420:173::-;45560:25;45556:1;45548:6;45544:14;45537:49;45420:173;:::o;45599:237::-;45739:34;45735:1;45727:6;45723:14;45716:58;45808:20;45803:2;45795:6;45791:15;45784:45;45599:237;:::o;45842:225::-;45982:34;45978:1;45970:6;45966:14;45959:58;46051:8;46046:2;46038:6;46034:15;46027:33;45842:225;:::o;46073:178::-;46213:30;46209:1;46201:6;46197:14;46190:54;46073:178;:::o;46257:234::-;46397:34;46393:1;46385:6;46381:14;46374:58;46466:17;46461:2;46453:6;46449:15;46442:42;46257:234;:::o;46497:222::-;46637:34;46633:1;46625:6;46621:14;46614:58;46706:5;46701:2;46693:6;46689:15;46682:30;46497:222;:::o;46725:223::-;46865:34;46861:1;46853:6;46849:14;46842:58;46934:6;46929:2;46921:6;46917:15;46910:31;46725:223;:::o;46954:175::-;47094:27;47090:1;47082:6;47078:14;47071:51;46954:175;:::o;47135:231::-;47275:34;47271:1;47263:6;47259:14;47252:58;47344:14;47339:2;47331:6;47327:15;47320:39;47135:231;:::o;47372:163::-;47512:15;47508:1;47500:6;47496:14;47489:39;47372:163;:::o;47541:243::-;47681:34;47677:1;47669:6;47665:14;47658:58;47750:26;47745:2;47737:6;47733:15;47726:51;47541:243;:::o;47790:229::-;47930:34;47926:1;47918:6;47914:14;47907:58;47999:12;47994:2;47986:6;47982:15;47975:37;47790:229;:::o;48025:::-;48165:34;48161:1;48153:6;48149:14;48142:58;48234:12;48229:2;48221:6;48217:15;48210:37;48025:229;:::o;48260:228::-;48400:34;48396:1;48388:6;48384:14;48377:58;48469:11;48464:2;48456:6;48452:15;48445:36;48260:228;:::o;48494:182::-;48634:34;48630:1;48622:6;48618:14;48611:58;48494:182;:::o;48682:231::-;48822:34;48818:1;48810:6;48806:14;48799:58;48891:14;48886:2;48878:6;48874:15;48867:39;48682:231;:::o;48919:234::-;49059:34;49055:1;49047:6;49043:14;49036:58;49128:17;49123:2;49115:6;49111:15;49104:42;48919:234;:::o;49159:182::-;49299:34;49295:1;49287:6;49283:14;49276:58;49159:182;:::o;49347:228::-;49487:34;49483:1;49475:6;49471:14;49464:58;49556:11;49551:2;49543:6;49539:15;49532:36;49347:228;:::o;49581:234::-;49721:34;49717:1;49709:6;49705:14;49698:58;49790:17;49785:2;49777:6;49773:15;49766:42;49581:234;:::o;49821:220::-;49961:34;49957:1;49949:6;49945:14;49938:58;50030:3;50025:2;50017:6;50013:15;50006:28;49821:220;:::o;50047:114::-;;:::o;50167:173::-;50307:25;50303:1;50295:6;50291:14;50284:49;50167:173;:::o;50346:166::-;50486:18;50482:1;50474:6;50470:14;50463:42;50346:166;:::o;50518:220::-;50658:34;50654:1;50646:6;50642:14;50635:58;50727:3;50722:2;50714:6;50710:15;50703:28;50518:220;:::o;50744:236::-;50884:34;50880:1;50872:6;50868:14;50861:58;50953:19;50948:2;50940:6;50936:15;50929:44;50744:236;:::o;50986:231::-;51126:34;51122:1;51114:6;51110:14;51103:58;51195:14;51190:2;51182:6;51178:15;51171:39;50986:231;:::o;51223:122::-;51296:24;51314:5;51296:24;:::i;:::-;51289:5;51286:35;51276:63;;51335:1;51332;51325:12;51276:63;51223:122;:::o;51351:116::-;51421:21;51436:5;51421:21;:::i;:::-;51414:5;51411:32;51401:60;;51457:1;51454;51447:12;51401:60;51351:116;:::o;51473:120::-;51545:23;51562:5;51545:23;:::i;:::-;51538:5;51535:34;51525:62;;51583:1;51580;51573:12;51525:62;51473:120;:::o;51599:122::-;51672:24;51690:5;51672:24;:::i;:::-;51665:5;51662:35;51652:63;;51711:1;51708;51701:12;51652:63;51599:122;:::o

Swarm Source

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