ETH Price: $3,027.74 (+2.31%)
Gas: 2 Gwei

Token

AntiKevinKevinClub (AKKB)
 

Overview

Max Total Supply

454 AKKB

Holders

48

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
canttrustwallet.eth
Balance
1 AKKB
0xd8d85a9091460fc84f6cc54cf65f30012e2b29ec
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:
AntiKevinKevinClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (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 {
        _setApprovalForAll(_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);

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

        _afterTokenTransfer(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 from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: contracts/AntiKevinKevinClub.sol

// contracts/AntiKevinKevinClub.sol

//SPDX-License-Identifier: MIT
/*                            
    
*/
pragma solidity ^0.8.0;





contract AntiKevinKevinClub is ERC721, Ownable {
    using Counters for Counters.Counter;
    using Strings for uint256;

    Counters.Counter private tokenIdCounter;

    string baseURI;
    string public baseExtension = ".json";
    string public preRevealURI;
    uint256 public currentPrice = 0.01 ether;
    uint256 public FREE_MINT_LIMIT_PER_WALLET = 10;
    uint256 public total = 1000;
    uint256 public maxFree = 444;
    bool public revealed = false;
    bool public paused = true;
    mapping(address => uint256) private freeMintCountMap;

    constructor(string memory _initBaseURI, string memory _preRevealURI)
        ERC721("AntiKevinKevinClub", "AKKB")
    {
        setBaseURI(_initBaseURI);
        setPreRevealURI(_preRevealURI);
    }


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

    function freeMintKevin(uint256 mintAmount) public {
        uint256 supply = tokenIdCounter.current();
        uint256 remainingFreeMint = FREE_MINT_LIMIT_PER_WALLET - freeMintCountMap[msg.sender];
        require(!paused, "Sale paused");
        require(mintAmount < 11, "You can only mint 10 Kevins");
        require(supply + mintAmount < maxFree, "No more free Kevins left");
        require(remainingFreeMint > 0, "You can only mint 10 Free Kevins per wallet" );

        updateFreeMintCount(msg.sender, mintAmount);

        mintKevin(msg.sender, mintAmount);
    }

    function mint(uint256 mintAmount) external payable {
        uint256 supply = tokenIdCounter.current();
        require(!paused, "Sale paused");
        require(mintAmount < 21, "You can only mint 10 Kevins at a time");
        require(
            supply + mintAmount < total + 1,
            "Exceeds maximum Kevins supply"
        );
        require(
            msg.value >= currentPrice * mintAmount,
            "Not enough Ether sent"
        );

        mintKevin(msg.sender, mintAmount);
    }

    function mintKevin(address addr, uint256 mintAmount) private {
        for (uint256 i = 0; i < mintAmount; i++) {
            tokenIdCounter.increment();
            _safeMint(addr, tokenIdCounter.current());
        }
    }

    function getCurrentId() external view returns (uint256) {
        return tokenIdCounter.current();
    }

    function totalSupply() public view returns (uint256) {
        return tokenIdCounter.current();
    }

    
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (revealed == false) {
            return preRevealURI;
        }

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

    //----------------Owner functions--------------------

    function ownerMint(uint256 mintAmount) public onlyOwner {
        uint256 supply = tokenIdCounter.current();
        require(supply + mintAmount < total + 1,"Exceeds maximum Kevin supply");
        mintKevin(msg.sender, mintAmount);
    }


    function pause(bool val) public onlyOwner {
        paused = val;
    }

    function setPrice(uint256 _newPrice) public onlyOwner {
        currentPrice = _newPrice;
    }

    function setMaxFree(uint256 _maxFree) public onlyOwner {
        maxFree = _maxFree;
    }


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

    function setFreeMintsPerWallet(uint256 _newMaxFreeMints) public onlyOwner {
        FREE_MINT_LIMIT_PER_WALLET = _newMaxFreeMints;
    }

    function updateFreeMintCount(address minter, uint256 count) private {
        freeMintCountMap[minter] += count;
    }

    function setPreRevealURI(string memory _newPreRevealURI) public onlyOwner {
        preRevealURI = _newPreRevealURI;
    }


    function withdraw() public onlyOwner {
        uint256 amount = address(this).balance;
        (bool success, ) = msg.sender.call{value: amount}("");
        require(success, "Failed to send Ether");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_preRevealURI","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":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":"FREE_MINT_LIMIT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"freeMintKevin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"mint","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":"mintAmount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preRevealURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxFreeMints","type":"uint256"}],"name":"setFreeMintsPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFree","type":"uint256"}],"name":"setMaxFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newPreRevealURI","type":"string"}],"name":"setPreRevealURI","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"total","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060099080519060200190620000519291906200040f565b50662386f26fc10000600b55600a600c556103e8600d556101bc600e556000600f60006101000a81548160ff0219169083151502179055506001600f60016101000a81548160ff021916908315150217905550348015620000b157600080fd5b5060405162004ac938038062004ac98339818101604052810190620000d791906200053d565b6040518060400160405280601281526020017f416e74694b6576696e4b6576696e436c756200000000000000000000000000008152506040518060400160405280600481526020017f414b4b420000000000000000000000000000000000000000000000000000000081525081600090805190602001906200015b9291906200040f565b508060019080519060200190620001749291906200040f565b505050620001976200018b620001c160201b60201c565b620001c960201b60201c565b620001a8826200028f60201b60201c565b620001b9816200033a60201b60201c565b5050620007c9565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200029f620001c160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002c5620003e560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200031e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200031590620005e9565b60405180910390fd5b8060089080519060200190620003369291906200040f565b5050565b6200034a620001c160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000370620003e560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003c9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003c090620005e9565b60405180910390fd5b80600a9080519060200190620003e19291906200040f565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200041d90620006b1565b90600052602060002090601f0160209004810192826200044157600085556200048d565b82601f106200045c57805160ff19168380011785556200048d565b828001600101855582156200048d579182015b828111156200048c5782518255916020019190600101906200046f565b5b5090506200049c9190620004a0565b5090565b5b80821115620004bb576000816000905550600101620004a1565b5090565b6000620004d6620004d08462000634565b6200060b565b905082815260208101848484011115620004f557620004f462000780565b5b620005028482856200067b565b509392505050565b600082601f8301126200052257620005216200077b565b5b815162000534848260208601620004bf565b91505092915050565b600080604083850312156200055757620005566200078a565b5b600083015167ffffffffffffffff81111562000578576200057762000785565b5b62000586858286016200050a565b925050602083015167ffffffffffffffff811115620005aa57620005a962000785565b5b620005b8858286016200050a565b9150509250929050565b6000620005d16020836200066a565b9150620005de82620007a0565b602082019050919050565b600060208201905081810360008301526200060481620005c2565b9050919050565b6000620006176200062a565b9050620006258282620006e7565b919050565b6000604051905090565b600067ffffffffffffffff8211156200065257620006516200074c565b5b6200065d826200078f565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200069b5780820151818401526020810190506200067e565b83811115620006ab576000848401525b50505050565b60006002820490506001821680620006ca57607f821691505b60208210811415620006e157620006e06200071d565b5b50919050565b620006f2826200078f565b810181811067ffffffffffffffff821117156200071457620007136200074c565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6142f080620007d96000396000f3fe60806040526004361061020f5760003560e01c80636c14386211610118578063a22cb465116100a0578063d755bf991161006f578063d755bf9914610758578063e985e9c514610781578063ebdefcc5146107be578063f19e75d4146107e7578063f2fde38b146108105761020f565b8063a22cb4651461069e578063b88d4fde146106c7578063c6682862146106f0578063c87b56dd1461071b5761020f565b80638da5cb5b116100e75780638da5cb5b146105d857806391b7f5ed1461060357806395d89b411461062c5780639d1b464a14610657578063a0712d68146106825761020f565b80636c1438621461052e57806370a0823114610559578063715018a61461059657806379b6ed36146105ad5761020f565b80632ddbd13a1161019b578063485a68a31161016a578063485a68a314610447578063518302271461047257806355f804b31461049d5780635c975abb146104c65780636352211e146104f15761020f565b80632ddbd13a146103b35780633ad5561a146103de5780633ccfd60b1461040757806342842e0e1461041e5761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806310b0c0521461030b57806318160ddd1461033657806323b872dd146103615780632a85db551461038a5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612dd2565b610839565b604051610248919061342c565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190612da5565b61091b565b005b34801561028657600080fd5b5061028f6109b4565b60405161029c9190613447565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c79190612e75565b610a46565b6040516102d991906133c5565b60405180910390f35b3480156102ee57600080fd5b5061030960048036038101906103049190612d65565b610acb565b005b34801561031757600080fd5b50610320610be3565b60405161032d9190613789565b60405180910390f35b34801561034257600080fd5b5061034b610be9565b6040516103589190613789565b60405180910390f35b34801561036d57600080fd5b5061038860048036038101906103839190612c4f565b610bfa565b005b34801561039657600080fd5b506103b160048036038101906103ac9190612e2c565b610c5a565b005b3480156103bf57600080fd5b506103c8610cf0565b6040516103d59190613789565b60405180910390f35b3480156103ea57600080fd5b5061040560048036038101906104009190612e75565b610cf6565b005b34801561041357600080fd5b5061041c610d7c565b005b34801561042a57600080fd5b5061044560048036038101906104409190612c4f565b610ead565b005b34801561045357600080fd5b5061045c610ecd565b6040516104699190613789565b60405180910390f35b34801561047e57600080fd5b50610487610ed3565b604051610494919061342c565b60405180910390f35b3480156104a957600080fd5b506104c460048036038101906104bf9190612e2c565b610ee6565b005b3480156104d257600080fd5b506104db610f7c565b6040516104e8919061342c565b60405180910390f35b3480156104fd57600080fd5b5061051860048036038101906105139190612e75565b610f8f565b60405161052591906133c5565b60405180910390f35b34801561053a57600080fd5b50610543611041565b6040516105509190613789565b60405180910390f35b34801561056557600080fd5b50610580600480360381019061057b9190612be2565b611052565b60405161058d9190613789565b60405180910390f35b3480156105a257600080fd5b506105ab61110a565b005b3480156105b957600080fd5b506105c2611192565b6040516105cf9190613447565b60405180910390f35b3480156105e457600080fd5b506105ed611220565b6040516105fa91906133c5565b60405180910390f35b34801561060f57600080fd5b5061062a60048036038101906106259190612e75565b61124a565b005b34801561063857600080fd5b506106416112d0565b60405161064e9190613447565b60405180910390f35b34801561066357600080fd5b5061066c611362565b6040516106799190613789565b60405180910390f35b61069c60048036038101906106979190612e75565b611368565b005b3480156106aa57600080fd5b506106c560048036038101906106c09190612d25565b6114c2565b005b3480156106d357600080fd5b506106ee60048036038101906106e99190612ca2565b6114d8565b005b3480156106fc57600080fd5b5061070561153a565b6040516107129190613447565b60405180910390f35b34801561072757600080fd5b50610742600480360381019061073d9190612e75565b6115c8565b60405161074f9190613447565b60405180910390f35b34801561076457600080fd5b5061077f600480360381019061077a9190612e75565b611721565b005b34801561078d57600080fd5b506107a860048036038101906107a39190612c0f565b6117a7565b6040516107b5919061342c565b60405180910390f35b3480156107ca57600080fd5b506107e560048036038101906107e09190612e75565b61183b565b005b3480156107f357600080fd5b5061080e60048036038101906108099190612e75565b6119d8565b005b34801561081c57600080fd5b5061083760048036038101906108329190612be2565b611acb565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610914575061091382611bc3565b5b9050919050565b610923611c2d565b73ffffffffffffffffffffffffffffffffffffffff16610941611220565b73ffffffffffffffffffffffffffffffffffffffff1614610997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098e906136a9565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6060600080546109c390613a59565b80601f01602080910402602001604051908101604052809291908181526020018280546109ef90613a59565b8015610a3c5780601f10610a1157610100808354040283529160200191610a3c565b820191906000526020600020905b815481529060010190602001808311610a1f57829003601f168201915b5050505050905090565b6000610a5182611c35565b610a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8790613689565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ad682610f8f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3e906136e9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b66611c2d565b73ffffffffffffffffffffffffffffffffffffffff161480610b955750610b9481610b8f611c2d565b6117a7565b5b610bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcb90613609565b60405180910390fd5b610bde8383611ca1565b505050565b600c5481565b6000610bf56007611d5a565b905090565b610c0b610c05611c2d565b82611d68565b610c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4190613709565b60405180910390fd5b610c55838383611e46565b505050565b610c62611c2d565b73ffffffffffffffffffffffffffffffffffffffff16610c80611220565b73ffffffffffffffffffffffffffffffffffffffff1614610cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccd906136a9565b60405180910390fd5b80600a9080519060200190610cec9291906129f6565b5050565b600d5481565b610cfe611c2d565b73ffffffffffffffffffffffffffffffffffffffff16610d1c611220565b73ffffffffffffffffffffffffffffffffffffffff1614610d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d69906136a9565b60405180910390fd5b80600c8190555050565b610d84611c2d565b73ffffffffffffffffffffffffffffffffffffffff16610da2611220565b73ffffffffffffffffffffffffffffffffffffffff1614610df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610def906136a9565b60405180910390fd5b600047905060003373ffffffffffffffffffffffffffffffffffffffff1682604051610e23906133b0565b60006040518083038185875af1925050503d8060008114610e60576040519150601f19603f3d011682016040523d82523d6000602084013e610e65565b606091505b5050905080610ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea090613549565b60405180910390fd5b5050565b610ec8838383604051806020016040528060008152506114d8565b505050565b600e5481565b600f60009054906101000a900460ff1681565b610eee611c2d565b73ffffffffffffffffffffffffffffffffffffffff16610f0c611220565b73ffffffffffffffffffffffffffffffffffffffff1614610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f59906136a9565b60405180910390fd5b8060089080519060200190610f789291906129f6565b5050565b600f60019054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f90613649565b60405180910390fd5b80915050919050565b600061104d6007611d5a565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ba90613629565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611112611c2d565b73ffffffffffffffffffffffffffffffffffffffff16611130611220565b73ffffffffffffffffffffffffffffffffffffffff1614611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d906136a9565b60405180910390fd5b61119060006120ad565b565b600a805461119f90613a59565b80601f01602080910402602001604051908101604052809291908181526020018280546111cb90613a59565b80156112185780601f106111ed57610100808354040283529160200191611218565b820191906000526020600020905b8154815290600101906020018083116111fb57829003601f168201915b505050505081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611252611c2d565b73ffffffffffffffffffffffffffffffffffffffff16611270611220565b73ffffffffffffffffffffffffffffffffffffffff16146112c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bd906136a9565b60405180910390fd5b80600b8190555050565b6060600180546112df90613a59565b80601f016020809104026020016040519081016040528092919081815260200182805461130b90613a59565b80156113585780601f1061132d57610100808354040283529160200191611358565b820191906000526020600020905b81548152906001019060200180831161133b57829003601f168201915b5050505050905090565b600b5481565b60006113746007611d5a565b9050600f60019054906101000a900460ff16156113c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bd90613469565b60405180910390fd5b60158210611409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140090613769565b60405180910390fd5b6001600d54611418919061388e565b8282611424919061388e565b10611464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145b90613729565b60405180910390fd5b81600b546114729190613915565b3410156114b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ab90613489565b60405180910390fd5b6114be3383612173565b5050565b6114d46114cd611c2d565b83836121b3565b5050565b6114e96114e3611c2d565b83611d68565b611528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151f90613709565b60405180910390fd5b61153484848484612320565b50505050565b6009805461154790613a59565b80601f016020809104026020016040519081016040528092919081815260200182805461157390613a59565b80156115c05780601f10611595576101008083540402835291602001916115c0565b820191906000526020600020905b8154815290600101906020018083116115a357829003601f168201915b505050505081565b60606115d382611c35565b611612576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611609906136c9565b60405180910390fd5b60001515600f60009054906101000a900460ff16151514156116c057600a805461163b90613a59565b80601f016020809104026020016040519081016040528092919081815260200182805461166790613a59565b80156116b45780601f10611689576101008083540402835291602001916116b4565b820191906000526020600020905b81548152906001019060200180831161169757829003601f168201915b5050505050905061171c565b60006116ca61237c565b905060008151116116ea5760405180602001604052806000815250611718565b806116f48461240e565b60096040516020016117089392919061337f565b6040516020818303038152906040525b9150505b919050565b611729611c2d565b73ffffffffffffffffffffffffffffffffffffffff16611747611220565b73ffffffffffffffffffffffffffffffffffffffff161461179d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611794906136a9565b60405180910390fd5b80600e8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60006118476007611d5a565b90506000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c54611898919061396f565b9050600f60019054906101000a900460ff16156118ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e190613469565b60405180910390fd5b600b831061192d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611924906135e9565b60405180910390fd5b600e54838361193c919061388e565b1061197c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611973906134a9565b60405180910390fd5b600081116119bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b6906135a9565b60405180910390fd5b6119c9338461256f565b6119d33384612173565b505050565b6119e0611c2d565b73ffffffffffffffffffffffffffffffffffffffff166119fe611220565b73ffffffffffffffffffffffffffffffffffffffff1614611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b906136a9565b60405180910390fd5b6000611a606007611d5a565b90506001600d54611a71919061388e565b8282611a7d919061388e565b10611abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab490613749565b60405180910390fd5b611ac73383612173565b5050565b611ad3611c2d565b73ffffffffffffffffffffffffffffffffffffffff16611af1611220565b73ffffffffffffffffffffffffffffffffffffffff1614611b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3e906136a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bae906134e9565b60405180910390fd5b611bc0816120ad565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d1483610f8f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611d7382611c35565b611db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da9906135c9565b60405180910390fd5b6000611dbd83610f8f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e2c57508373ffffffffffffffffffffffffffffffffffffffff16611e1484610a46565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e3d5750611e3c81856117a7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e6682610f8f565b73ffffffffffffffffffffffffffffffffffffffff1614611ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb390613509565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2390613569565b60405180910390fd5b611f378383836125c9565b611f42600082611ca1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f92919061396f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fe9919061388e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120a88383836125ce565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b818110156121ae5761218860076125d3565b61219b836121966007611d5a565b6125e9565b80806121a690613abc565b915050612176565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221990613589565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612313919061342c565b60405180910390a3505050565b61232b848484611e46565b61233784848484612607565b612376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236d906134c9565b60405180910390fd5b50505050565b60606008805461238b90613a59565b80601f01602080910402602001604051908101604052809291908181526020018280546123b790613a59565b80156124045780601f106123d957610100808354040283529160200191612404565b820191906000526020600020905b8154815290600101906020018083116123e757829003601f168201915b5050505050905090565b60606000821415612456576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061256a565b600082905060005b6000821461248857808061247190613abc565b915050600a8261248191906138e4565b915061245e565b60008167ffffffffffffffff8111156124a4576124a3613bf2565b5b6040519080825280601f01601f1916602001820160405280156124d65781602001600182028036833780820191505090505b5090505b60008514612563576001826124ef919061396f565b9150600a856124fe9190613b05565b603061250a919061388e565b60f81b8183815181106125205761251f613bc3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561255c91906138e4565b94506124da565b8093505050505b919050565b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125be919061388e565b925050819055505050565b505050565b505050565b6001816000016000828254019250508190555050565b61260382826040518060200160405280600081525061279e565b5050565b60006126288473ffffffffffffffffffffffffffffffffffffffff166127f9565b15612791578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612651611c2d565b8786866040518563ffffffff1660e01b815260040161267394939291906133e0565b602060405180830381600087803b15801561268d57600080fd5b505af19250505080156126be57506040513d601f19601f820116820180604052508101906126bb9190612dff565b60015b612741573d80600081146126ee576040519150601f19603f3d011682016040523d82523d6000602084013e6126f3565b606091505b50600081511415612739576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612730906134c9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612796565b600190505b949350505050565b6127a8838361281c565b6127b56000848484612607565b6127f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127eb906134c9565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561288c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288390613669565b60405180910390fd5b61289581611c35565b156128d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cc90613529565b60405180910390fd5b6128e1600083836125c9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612931919061388e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129f2600083836125ce565b5050565b828054612a0290613a59565b90600052602060002090601f016020900481019282612a245760008555612a6b565b82601f10612a3d57805160ff1916838001178555612a6b565b82800160010185558215612a6b579182015b82811115612a6a578251825591602001919060010190612a4f565b5b509050612a789190612a7c565b5090565b5b80821115612a95576000816000905550600101612a7d565b5090565b6000612aac612aa7846137c9565b6137a4565b905082815260208101848484011115612ac857612ac7613c26565b5b612ad3848285613a17565b509392505050565b6000612aee612ae9846137fa565b6137a4565b905082815260208101848484011115612b0a57612b09613c26565b5b612b15848285613a17565b509392505050565b600081359050612b2c8161425e565b92915050565b600081359050612b4181614275565b92915050565b600081359050612b568161428c565b92915050565b600081519050612b6b8161428c565b92915050565b600082601f830112612b8657612b85613c21565b5b8135612b96848260208601612a99565b91505092915050565b600082601f830112612bb457612bb3613c21565b5b8135612bc4848260208601612adb565b91505092915050565b600081359050612bdc816142a3565b92915050565b600060208284031215612bf857612bf7613c30565b5b6000612c0684828501612b1d565b91505092915050565b60008060408385031215612c2657612c25613c30565b5b6000612c3485828601612b1d565b9250506020612c4585828601612b1d565b9150509250929050565b600080600060608486031215612c6857612c67613c30565b5b6000612c7686828701612b1d565b9350506020612c8786828701612b1d565b9250506040612c9886828701612bcd565b9150509250925092565b60008060008060808587031215612cbc57612cbb613c30565b5b6000612cca87828801612b1d565b9450506020612cdb87828801612b1d565b9350506040612cec87828801612bcd565b925050606085013567ffffffffffffffff811115612d0d57612d0c613c2b565b5b612d1987828801612b71565b91505092959194509250565b60008060408385031215612d3c57612d3b613c30565b5b6000612d4a85828601612b1d565b9250506020612d5b85828601612b32565b9150509250929050565b60008060408385031215612d7c57612d7b613c30565b5b6000612d8a85828601612b1d565b9250506020612d9b85828601612bcd565b9150509250929050565b600060208284031215612dbb57612dba613c30565b5b6000612dc984828501612b32565b91505092915050565b600060208284031215612de857612de7613c30565b5b6000612df684828501612b47565b91505092915050565b600060208284031215612e1557612e14613c30565b5b6000612e2384828501612b5c565b91505092915050565b600060208284031215612e4257612e41613c30565b5b600082013567ffffffffffffffff811115612e6057612e5f613c2b565b5b612e6c84828501612b9f565b91505092915050565b600060208284031215612e8b57612e8a613c30565b5b6000612e9984828501612bcd565b91505092915050565b612eab816139a3565b82525050565b612eba816139b5565b82525050565b6000612ecb82613840565b612ed58185613856565b9350612ee5818560208601613a26565b612eee81613c35565b840191505092915050565b6000612f048261384b565b612f0e8185613872565b9350612f1e818560208601613a26565b612f2781613c35565b840191505092915050565b6000612f3d8261384b565b612f478185613883565b9350612f57818560208601613a26565b80840191505092915050565b60008154612f7081613a59565b612f7a8186613883565b94506001821660008114612f955760018114612fa657612fd9565b60ff19831686528186019350612fd9565b612faf8561382b565b60005b83811015612fd157815481890152600182019150602081019050612fb2565b838801955050505b50505092915050565b6000612fef600b83613872565b9150612ffa82613c46565b602082019050919050565b6000613012601583613872565b915061301d82613c6f565b602082019050919050565b6000613035601883613872565b915061304082613c98565b602082019050919050565b6000613058603283613872565b915061306382613cc1565b604082019050919050565b600061307b602683613872565b915061308682613d10565b604082019050919050565b600061309e602583613872565b91506130a982613d5f565b604082019050919050565b60006130c1601c83613872565b91506130cc82613dae565b602082019050919050565b60006130e4601483613872565b91506130ef82613dd7565b602082019050919050565b6000613107602483613872565b915061311282613e00565b604082019050919050565b600061312a601983613872565b915061313582613e4f565b602082019050919050565b600061314d602b83613872565b915061315882613e78565b604082019050919050565b6000613170602c83613872565b915061317b82613ec7565b604082019050919050565b6000613193601b83613872565b915061319e82613f16565b602082019050919050565b60006131b6603883613872565b91506131c182613f3f565b604082019050919050565b60006131d9602a83613872565b91506131e482613f8e565b604082019050919050565b60006131fc602983613872565b915061320782613fdd565b604082019050919050565b600061321f602083613872565b915061322a8261402c565b602082019050919050565b6000613242602c83613872565b915061324d82614055565b604082019050919050565b6000613265602083613872565b9150613270826140a4565b602082019050919050565b6000613288602f83613872565b9150613293826140cd565b604082019050919050565b60006132ab602183613872565b91506132b68261411c565b604082019050919050565b60006132ce600083613867565b91506132d98261416b565b600082019050919050565b60006132f1603183613872565b91506132fc8261416e565b604082019050919050565b6000613314601d83613872565b915061331f826141bd565b602082019050919050565b6000613337601c83613872565b9150613342826141e6565b602082019050919050565b600061335a602583613872565b91506133658261420f565b604082019050919050565b61337981613a0d565b82525050565b600061338b8286612f32565b91506133978285612f32565b91506133a38284612f63565b9150819050949350505050565b60006133bb826132c1565b9150819050919050565b60006020820190506133da6000830184612ea2565b92915050565b60006080820190506133f56000830187612ea2565b6134026020830186612ea2565b61340f6040830185613370565b81810360608301526134218184612ec0565b905095945050505050565b60006020820190506134416000830184612eb1565b92915050565b600060208201905081810360008301526134618184612ef9565b905092915050565b6000602082019050818103600083015261348281612fe2565b9050919050565b600060208201905081810360008301526134a281613005565b9050919050565b600060208201905081810360008301526134c281613028565b9050919050565b600060208201905081810360008301526134e28161304b565b9050919050565b600060208201905081810360008301526135028161306e565b9050919050565b6000602082019050818103600083015261352281613091565b9050919050565b60006020820190508181036000830152613542816130b4565b9050919050565b60006020820190508181036000830152613562816130d7565b9050919050565b60006020820190508181036000830152613582816130fa565b9050919050565b600060208201905081810360008301526135a28161311d565b9050919050565b600060208201905081810360008301526135c281613140565b9050919050565b600060208201905081810360008301526135e281613163565b9050919050565b6000602082019050818103600083015261360281613186565b9050919050565b60006020820190508181036000830152613622816131a9565b9050919050565b60006020820190508181036000830152613642816131cc565b9050919050565b60006020820190508181036000830152613662816131ef565b9050919050565b6000602082019050818103600083015261368281613212565b9050919050565b600060208201905081810360008301526136a281613235565b9050919050565b600060208201905081810360008301526136c281613258565b9050919050565b600060208201905081810360008301526136e28161327b565b9050919050565b600060208201905081810360008301526137028161329e565b9050919050565b60006020820190508181036000830152613722816132e4565b9050919050565b6000602082019050818103600083015261374281613307565b9050919050565b600060208201905081810360008301526137628161332a565b9050919050565b600060208201905081810360008301526137828161334d565b9050919050565b600060208201905061379e6000830184613370565b92915050565b60006137ae6137bf565b90506137ba8282613a8b565b919050565b6000604051905090565b600067ffffffffffffffff8211156137e4576137e3613bf2565b5b6137ed82613c35565b9050602081019050919050565b600067ffffffffffffffff82111561381557613814613bf2565b5b61381e82613c35565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061389982613a0d565b91506138a483613a0d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138d9576138d8613b36565b5b828201905092915050565b60006138ef82613a0d565b91506138fa83613a0d565b92508261390a57613909613b65565b5b828204905092915050565b600061392082613a0d565b915061392b83613a0d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561396457613963613b36565b5b828202905092915050565b600061397a82613a0d565b915061398583613a0d565b92508282101561399857613997613b36565b5b828203905092915050565b60006139ae826139ed565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a44578082015181840152602081019050613a29565b83811115613a53576000848401525b50505050565b60006002820490506001821680613a7157607f821691505b60208210811415613a8557613a84613b94565b5b50919050565b613a9482613c35565b810181811067ffffffffffffffff82111715613ab357613ab2613bf2565b5b80604052505050565b6000613ac782613a0d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613afa57613af9613b36565b5b600182019050919050565b6000613b1082613a0d565b9150613b1b83613a0d565b925082613b2b57613b2a613b65565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f53616c6520706175736564000000000000000000000000000000000000000000600082015250565b7f4e6f7420656e6f7567682045746865722073656e740000000000000000000000600082015250565b7f4e6f206d6f72652066726565204b6576696e73206c6566740000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f596f752063616e206f6e6c79206d696e742031302046726565204b6576696e7360008201527f207065722077616c6c6574000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f596f752063616e206f6e6c79206d696e74203130204b6576696e730000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d204b6576696e7320737570706c79000000600082015250565b7f45786365656473206d6178696d756d204b6576696e20737570706c7900000000600082015250565b7f596f752063616e206f6e6c79206d696e74203130204b6576696e73206174206160008201527f2074696d65000000000000000000000000000000000000000000000000000000602082015250565b614267816139a3565b811461427257600080fd5b50565b61427e816139b5565b811461428957600080fd5b50565b614295816139c1565b81146142a057600080fd5b50565b6142ac81613a0d565b81146142b757600080fd5b5056fea2646970667358221220744f0f31dc7c5b2b4a938433283ed824613d1805bf4efcbacd6898ee07d65bb664736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d574247734a564c376d64726f33487859635042424b636e4d325531384445417379427948465556536a3841522f00000000000000000000000000000000000000000000000000000000000000000000000000000000002f516d574247734a564c376d64726f33487859635042424b636e4d325531384445417379427948465556536a3841522f0000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80636c14386211610118578063a22cb465116100a0578063d755bf991161006f578063d755bf9914610758578063e985e9c514610781578063ebdefcc5146107be578063f19e75d4146107e7578063f2fde38b146108105761020f565b8063a22cb4651461069e578063b88d4fde146106c7578063c6682862146106f0578063c87b56dd1461071b5761020f565b80638da5cb5b116100e75780638da5cb5b146105d857806391b7f5ed1461060357806395d89b411461062c5780639d1b464a14610657578063a0712d68146106825761020f565b80636c1438621461052e57806370a0823114610559578063715018a61461059657806379b6ed36146105ad5761020f565b80632ddbd13a1161019b578063485a68a31161016a578063485a68a314610447578063518302271461047257806355f804b31461049d5780635c975abb146104c65780636352211e146104f15761020f565b80632ddbd13a146103b35780633ad5561a146103de5780633ccfd60b1461040757806342842e0e1461041e5761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806310b0c0521461030b57806318160ddd1461033657806323b872dd146103615780632a85db551461038a5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612dd2565b610839565b604051610248919061342c565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190612da5565b61091b565b005b34801561028657600080fd5b5061028f6109b4565b60405161029c9190613447565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c79190612e75565b610a46565b6040516102d991906133c5565b60405180910390f35b3480156102ee57600080fd5b5061030960048036038101906103049190612d65565b610acb565b005b34801561031757600080fd5b50610320610be3565b60405161032d9190613789565b60405180910390f35b34801561034257600080fd5b5061034b610be9565b6040516103589190613789565b60405180910390f35b34801561036d57600080fd5b5061038860048036038101906103839190612c4f565b610bfa565b005b34801561039657600080fd5b506103b160048036038101906103ac9190612e2c565b610c5a565b005b3480156103bf57600080fd5b506103c8610cf0565b6040516103d59190613789565b60405180910390f35b3480156103ea57600080fd5b5061040560048036038101906104009190612e75565b610cf6565b005b34801561041357600080fd5b5061041c610d7c565b005b34801561042a57600080fd5b5061044560048036038101906104409190612c4f565b610ead565b005b34801561045357600080fd5b5061045c610ecd565b6040516104699190613789565b60405180910390f35b34801561047e57600080fd5b50610487610ed3565b604051610494919061342c565b60405180910390f35b3480156104a957600080fd5b506104c460048036038101906104bf9190612e2c565b610ee6565b005b3480156104d257600080fd5b506104db610f7c565b6040516104e8919061342c565b60405180910390f35b3480156104fd57600080fd5b5061051860048036038101906105139190612e75565b610f8f565b60405161052591906133c5565b60405180910390f35b34801561053a57600080fd5b50610543611041565b6040516105509190613789565b60405180910390f35b34801561056557600080fd5b50610580600480360381019061057b9190612be2565b611052565b60405161058d9190613789565b60405180910390f35b3480156105a257600080fd5b506105ab61110a565b005b3480156105b957600080fd5b506105c2611192565b6040516105cf9190613447565b60405180910390f35b3480156105e457600080fd5b506105ed611220565b6040516105fa91906133c5565b60405180910390f35b34801561060f57600080fd5b5061062a60048036038101906106259190612e75565b61124a565b005b34801561063857600080fd5b506106416112d0565b60405161064e9190613447565b60405180910390f35b34801561066357600080fd5b5061066c611362565b6040516106799190613789565b60405180910390f35b61069c60048036038101906106979190612e75565b611368565b005b3480156106aa57600080fd5b506106c560048036038101906106c09190612d25565b6114c2565b005b3480156106d357600080fd5b506106ee60048036038101906106e99190612ca2565b6114d8565b005b3480156106fc57600080fd5b5061070561153a565b6040516107129190613447565b60405180910390f35b34801561072757600080fd5b50610742600480360381019061073d9190612e75565b6115c8565b60405161074f9190613447565b60405180910390f35b34801561076457600080fd5b5061077f600480360381019061077a9190612e75565b611721565b005b34801561078d57600080fd5b506107a860048036038101906107a39190612c0f565b6117a7565b6040516107b5919061342c565b60405180910390f35b3480156107ca57600080fd5b506107e560048036038101906107e09190612e75565b61183b565b005b3480156107f357600080fd5b5061080e60048036038101906108099190612e75565b6119d8565b005b34801561081c57600080fd5b5061083760048036038101906108329190612be2565b611acb565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610914575061091382611bc3565b5b9050919050565b610923611c2d565b73ffffffffffffffffffffffffffffffffffffffff16610941611220565b73ffffffffffffffffffffffffffffffffffffffff1614610997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098e906136a9565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6060600080546109c390613a59565b80601f01602080910402602001604051908101604052809291908181526020018280546109ef90613a59565b8015610a3c5780601f10610a1157610100808354040283529160200191610a3c565b820191906000526020600020905b815481529060010190602001808311610a1f57829003601f168201915b5050505050905090565b6000610a5182611c35565b610a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8790613689565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ad682610f8f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3e906136e9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b66611c2d565b73ffffffffffffffffffffffffffffffffffffffff161480610b955750610b9481610b8f611c2d565b6117a7565b5b610bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcb90613609565b60405180910390fd5b610bde8383611ca1565b505050565b600c5481565b6000610bf56007611d5a565b905090565b610c0b610c05611c2d565b82611d68565b610c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4190613709565b60405180910390fd5b610c55838383611e46565b505050565b610c62611c2d565b73ffffffffffffffffffffffffffffffffffffffff16610c80611220565b73ffffffffffffffffffffffffffffffffffffffff1614610cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccd906136a9565b60405180910390fd5b80600a9080519060200190610cec9291906129f6565b5050565b600d5481565b610cfe611c2d565b73ffffffffffffffffffffffffffffffffffffffff16610d1c611220565b73ffffffffffffffffffffffffffffffffffffffff1614610d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d69906136a9565b60405180910390fd5b80600c8190555050565b610d84611c2d565b73ffffffffffffffffffffffffffffffffffffffff16610da2611220565b73ffffffffffffffffffffffffffffffffffffffff1614610df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610def906136a9565b60405180910390fd5b600047905060003373ffffffffffffffffffffffffffffffffffffffff1682604051610e23906133b0565b60006040518083038185875af1925050503d8060008114610e60576040519150601f19603f3d011682016040523d82523d6000602084013e610e65565b606091505b5050905080610ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea090613549565b60405180910390fd5b5050565b610ec8838383604051806020016040528060008152506114d8565b505050565b600e5481565b600f60009054906101000a900460ff1681565b610eee611c2d565b73ffffffffffffffffffffffffffffffffffffffff16610f0c611220565b73ffffffffffffffffffffffffffffffffffffffff1614610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f59906136a9565b60405180910390fd5b8060089080519060200190610f789291906129f6565b5050565b600f60019054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f90613649565b60405180910390fd5b80915050919050565b600061104d6007611d5a565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ba90613629565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611112611c2d565b73ffffffffffffffffffffffffffffffffffffffff16611130611220565b73ffffffffffffffffffffffffffffffffffffffff1614611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d906136a9565b60405180910390fd5b61119060006120ad565b565b600a805461119f90613a59565b80601f01602080910402602001604051908101604052809291908181526020018280546111cb90613a59565b80156112185780601f106111ed57610100808354040283529160200191611218565b820191906000526020600020905b8154815290600101906020018083116111fb57829003601f168201915b505050505081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611252611c2d565b73ffffffffffffffffffffffffffffffffffffffff16611270611220565b73ffffffffffffffffffffffffffffffffffffffff16146112c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bd906136a9565b60405180910390fd5b80600b8190555050565b6060600180546112df90613a59565b80601f016020809104026020016040519081016040528092919081815260200182805461130b90613a59565b80156113585780601f1061132d57610100808354040283529160200191611358565b820191906000526020600020905b81548152906001019060200180831161133b57829003601f168201915b5050505050905090565b600b5481565b60006113746007611d5a565b9050600f60019054906101000a900460ff16156113c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bd90613469565b60405180910390fd5b60158210611409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140090613769565b60405180910390fd5b6001600d54611418919061388e565b8282611424919061388e565b10611464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145b90613729565b60405180910390fd5b81600b546114729190613915565b3410156114b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ab90613489565b60405180910390fd5b6114be3383612173565b5050565b6114d46114cd611c2d565b83836121b3565b5050565b6114e96114e3611c2d565b83611d68565b611528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151f90613709565b60405180910390fd5b61153484848484612320565b50505050565b6009805461154790613a59565b80601f016020809104026020016040519081016040528092919081815260200182805461157390613a59565b80156115c05780601f10611595576101008083540402835291602001916115c0565b820191906000526020600020905b8154815290600101906020018083116115a357829003601f168201915b505050505081565b60606115d382611c35565b611612576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611609906136c9565b60405180910390fd5b60001515600f60009054906101000a900460ff16151514156116c057600a805461163b90613a59565b80601f016020809104026020016040519081016040528092919081815260200182805461166790613a59565b80156116b45780601f10611689576101008083540402835291602001916116b4565b820191906000526020600020905b81548152906001019060200180831161169757829003601f168201915b5050505050905061171c565b60006116ca61237c565b905060008151116116ea5760405180602001604052806000815250611718565b806116f48461240e565b60096040516020016117089392919061337f565b6040516020818303038152906040525b9150505b919050565b611729611c2d565b73ffffffffffffffffffffffffffffffffffffffff16611747611220565b73ffffffffffffffffffffffffffffffffffffffff161461179d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611794906136a9565b60405180910390fd5b80600e8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60006118476007611d5a565b90506000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c54611898919061396f565b9050600f60019054906101000a900460ff16156118ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e190613469565b60405180910390fd5b600b831061192d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611924906135e9565b60405180910390fd5b600e54838361193c919061388e565b1061197c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611973906134a9565b60405180910390fd5b600081116119bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b6906135a9565b60405180910390fd5b6119c9338461256f565b6119d33384612173565b505050565b6119e0611c2d565b73ffffffffffffffffffffffffffffffffffffffff166119fe611220565b73ffffffffffffffffffffffffffffffffffffffff1614611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b906136a9565b60405180910390fd5b6000611a606007611d5a565b90506001600d54611a71919061388e565b8282611a7d919061388e565b10611abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab490613749565b60405180910390fd5b611ac73383612173565b5050565b611ad3611c2d565b73ffffffffffffffffffffffffffffffffffffffff16611af1611220565b73ffffffffffffffffffffffffffffffffffffffff1614611b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3e906136a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bae906134e9565b60405180910390fd5b611bc0816120ad565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d1483610f8f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611d7382611c35565b611db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da9906135c9565b60405180910390fd5b6000611dbd83610f8f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e2c57508373ffffffffffffffffffffffffffffffffffffffff16611e1484610a46565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e3d5750611e3c81856117a7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e6682610f8f565b73ffffffffffffffffffffffffffffffffffffffff1614611ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb390613509565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2390613569565b60405180910390fd5b611f378383836125c9565b611f42600082611ca1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f92919061396f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fe9919061388e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120a88383836125ce565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b818110156121ae5761218860076125d3565b61219b836121966007611d5a565b6125e9565b80806121a690613abc565b915050612176565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221990613589565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612313919061342c565b60405180910390a3505050565b61232b848484611e46565b61233784848484612607565b612376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236d906134c9565b60405180910390fd5b50505050565b60606008805461238b90613a59565b80601f01602080910402602001604051908101604052809291908181526020018280546123b790613a59565b80156124045780601f106123d957610100808354040283529160200191612404565b820191906000526020600020905b8154815290600101906020018083116123e757829003601f168201915b5050505050905090565b60606000821415612456576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061256a565b600082905060005b6000821461248857808061247190613abc565b915050600a8261248191906138e4565b915061245e565b60008167ffffffffffffffff8111156124a4576124a3613bf2565b5b6040519080825280601f01601f1916602001820160405280156124d65781602001600182028036833780820191505090505b5090505b60008514612563576001826124ef919061396f565b9150600a856124fe9190613b05565b603061250a919061388e565b60f81b8183815181106125205761251f613bc3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561255c91906138e4565b94506124da565b8093505050505b919050565b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125be919061388e565b925050819055505050565b505050565b505050565b6001816000016000828254019250508190555050565b61260382826040518060200160405280600081525061279e565b5050565b60006126288473ffffffffffffffffffffffffffffffffffffffff166127f9565b15612791578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612651611c2d565b8786866040518563ffffffff1660e01b815260040161267394939291906133e0565b602060405180830381600087803b15801561268d57600080fd5b505af19250505080156126be57506040513d601f19601f820116820180604052508101906126bb9190612dff565b60015b612741573d80600081146126ee576040519150601f19603f3d011682016040523d82523d6000602084013e6126f3565b606091505b50600081511415612739576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612730906134c9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612796565b600190505b949350505050565b6127a8838361281c565b6127b56000848484612607565b6127f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127eb906134c9565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561288c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288390613669565b60405180910390fd5b61289581611c35565b156128d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cc90613529565b60405180910390fd5b6128e1600083836125c9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612931919061388e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129f2600083836125ce565b5050565b828054612a0290613a59565b90600052602060002090601f016020900481019282612a245760008555612a6b565b82601f10612a3d57805160ff1916838001178555612a6b565b82800160010185558215612a6b579182015b82811115612a6a578251825591602001919060010190612a4f565b5b509050612a789190612a7c565b5090565b5b80821115612a95576000816000905550600101612a7d565b5090565b6000612aac612aa7846137c9565b6137a4565b905082815260208101848484011115612ac857612ac7613c26565b5b612ad3848285613a17565b509392505050565b6000612aee612ae9846137fa565b6137a4565b905082815260208101848484011115612b0a57612b09613c26565b5b612b15848285613a17565b509392505050565b600081359050612b2c8161425e565b92915050565b600081359050612b4181614275565b92915050565b600081359050612b568161428c565b92915050565b600081519050612b6b8161428c565b92915050565b600082601f830112612b8657612b85613c21565b5b8135612b96848260208601612a99565b91505092915050565b600082601f830112612bb457612bb3613c21565b5b8135612bc4848260208601612adb565b91505092915050565b600081359050612bdc816142a3565b92915050565b600060208284031215612bf857612bf7613c30565b5b6000612c0684828501612b1d565b91505092915050565b60008060408385031215612c2657612c25613c30565b5b6000612c3485828601612b1d565b9250506020612c4585828601612b1d565b9150509250929050565b600080600060608486031215612c6857612c67613c30565b5b6000612c7686828701612b1d565b9350506020612c8786828701612b1d565b9250506040612c9886828701612bcd565b9150509250925092565b60008060008060808587031215612cbc57612cbb613c30565b5b6000612cca87828801612b1d565b9450506020612cdb87828801612b1d565b9350506040612cec87828801612bcd565b925050606085013567ffffffffffffffff811115612d0d57612d0c613c2b565b5b612d1987828801612b71565b91505092959194509250565b60008060408385031215612d3c57612d3b613c30565b5b6000612d4a85828601612b1d565b9250506020612d5b85828601612b32565b9150509250929050565b60008060408385031215612d7c57612d7b613c30565b5b6000612d8a85828601612b1d565b9250506020612d9b85828601612bcd565b9150509250929050565b600060208284031215612dbb57612dba613c30565b5b6000612dc984828501612b32565b91505092915050565b600060208284031215612de857612de7613c30565b5b6000612df684828501612b47565b91505092915050565b600060208284031215612e1557612e14613c30565b5b6000612e2384828501612b5c565b91505092915050565b600060208284031215612e4257612e41613c30565b5b600082013567ffffffffffffffff811115612e6057612e5f613c2b565b5b612e6c84828501612b9f565b91505092915050565b600060208284031215612e8b57612e8a613c30565b5b6000612e9984828501612bcd565b91505092915050565b612eab816139a3565b82525050565b612eba816139b5565b82525050565b6000612ecb82613840565b612ed58185613856565b9350612ee5818560208601613a26565b612eee81613c35565b840191505092915050565b6000612f048261384b565b612f0e8185613872565b9350612f1e818560208601613a26565b612f2781613c35565b840191505092915050565b6000612f3d8261384b565b612f478185613883565b9350612f57818560208601613a26565b80840191505092915050565b60008154612f7081613a59565b612f7a8186613883565b94506001821660008114612f955760018114612fa657612fd9565b60ff19831686528186019350612fd9565b612faf8561382b565b60005b83811015612fd157815481890152600182019150602081019050612fb2565b838801955050505b50505092915050565b6000612fef600b83613872565b9150612ffa82613c46565b602082019050919050565b6000613012601583613872565b915061301d82613c6f565b602082019050919050565b6000613035601883613872565b915061304082613c98565b602082019050919050565b6000613058603283613872565b915061306382613cc1565b604082019050919050565b600061307b602683613872565b915061308682613d10565b604082019050919050565b600061309e602583613872565b91506130a982613d5f565b604082019050919050565b60006130c1601c83613872565b91506130cc82613dae565b602082019050919050565b60006130e4601483613872565b91506130ef82613dd7565b602082019050919050565b6000613107602483613872565b915061311282613e00565b604082019050919050565b600061312a601983613872565b915061313582613e4f565b602082019050919050565b600061314d602b83613872565b915061315882613e78565b604082019050919050565b6000613170602c83613872565b915061317b82613ec7565b604082019050919050565b6000613193601b83613872565b915061319e82613f16565b602082019050919050565b60006131b6603883613872565b91506131c182613f3f565b604082019050919050565b60006131d9602a83613872565b91506131e482613f8e565b604082019050919050565b60006131fc602983613872565b915061320782613fdd565b604082019050919050565b600061321f602083613872565b915061322a8261402c565b602082019050919050565b6000613242602c83613872565b915061324d82614055565b604082019050919050565b6000613265602083613872565b9150613270826140a4565b602082019050919050565b6000613288602f83613872565b9150613293826140cd565b604082019050919050565b60006132ab602183613872565b91506132b68261411c565b604082019050919050565b60006132ce600083613867565b91506132d98261416b565b600082019050919050565b60006132f1603183613872565b91506132fc8261416e565b604082019050919050565b6000613314601d83613872565b915061331f826141bd565b602082019050919050565b6000613337601c83613872565b9150613342826141e6565b602082019050919050565b600061335a602583613872565b91506133658261420f565b604082019050919050565b61337981613a0d565b82525050565b600061338b8286612f32565b91506133978285612f32565b91506133a38284612f63565b9150819050949350505050565b60006133bb826132c1565b9150819050919050565b60006020820190506133da6000830184612ea2565b92915050565b60006080820190506133f56000830187612ea2565b6134026020830186612ea2565b61340f6040830185613370565b81810360608301526134218184612ec0565b905095945050505050565b60006020820190506134416000830184612eb1565b92915050565b600060208201905081810360008301526134618184612ef9565b905092915050565b6000602082019050818103600083015261348281612fe2565b9050919050565b600060208201905081810360008301526134a281613005565b9050919050565b600060208201905081810360008301526134c281613028565b9050919050565b600060208201905081810360008301526134e28161304b565b9050919050565b600060208201905081810360008301526135028161306e565b9050919050565b6000602082019050818103600083015261352281613091565b9050919050565b60006020820190508181036000830152613542816130b4565b9050919050565b60006020820190508181036000830152613562816130d7565b9050919050565b60006020820190508181036000830152613582816130fa565b9050919050565b600060208201905081810360008301526135a28161311d565b9050919050565b600060208201905081810360008301526135c281613140565b9050919050565b600060208201905081810360008301526135e281613163565b9050919050565b6000602082019050818103600083015261360281613186565b9050919050565b60006020820190508181036000830152613622816131a9565b9050919050565b60006020820190508181036000830152613642816131cc565b9050919050565b60006020820190508181036000830152613662816131ef565b9050919050565b6000602082019050818103600083015261368281613212565b9050919050565b600060208201905081810360008301526136a281613235565b9050919050565b600060208201905081810360008301526136c281613258565b9050919050565b600060208201905081810360008301526136e28161327b565b9050919050565b600060208201905081810360008301526137028161329e565b9050919050565b60006020820190508181036000830152613722816132e4565b9050919050565b6000602082019050818103600083015261374281613307565b9050919050565b600060208201905081810360008301526137628161332a565b9050919050565b600060208201905081810360008301526137828161334d565b9050919050565b600060208201905061379e6000830184613370565b92915050565b60006137ae6137bf565b90506137ba8282613a8b565b919050565b6000604051905090565b600067ffffffffffffffff8211156137e4576137e3613bf2565b5b6137ed82613c35565b9050602081019050919050565b600067ffffffffffffffff82111561381557613814613bf2565b5b61381e82613c35565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061389982613a0d565b91506138a483613a0d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138d9576138d8613b36565b5b828201905092915050565b60006138ef82613a0d565b91506138fa83613a0d565b92508261390a57613909613b65565b5b828204905092915050565b600061392082613a0d565b915061392b83613a0d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561396457613963613b36565b5b828202905092915050565b600061397a82613a0d565b915061398583613a0d565b92508282101561399857613997613b36565b5b828203905092915050565b60006139ae826139ed565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a44578082015181840152602081019050613a29565b83811115613a53576000848401525b50505050565b60006002820490506001821680613a7157607f821691505b60208210811415613a8557613a84613b94565b5b50919050565b613a9482613c35565b810181811067ffffffffffffffff82111715613ab357613ab2613bf2565b5b80604052505050565b6000613ac782613a0d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613afa57613af9613b36565b5b600182019050919050565b6000613b1082613a0d565b9150613b1b83613a0d565b925082613b2b57613b2a613b65565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f53616c6520706175736564000000000000000000000000000000000000000000600082015250565b7f4e6f7420656e6f7567682045746865722073656e740000000000000000000000600082015250565b7f4e6f206d6f72652066726565204b6576696e73206c6566740000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f596f752063616e206f6e6c79206d696e742031302046726565204b6576696e7360008201527f207065722077616c6c6574000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f596f752063616e206f6e6c79206d696e74203130204b6576696e730000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d204b6576696e7320737570706c79000000600082015250565b7f45786365656473206d6178696d756d204b6576696e20737570706c7900000000600082015250565b7f596f752063616e206f6e6c79206d696e74203130204b6576696e73206174206160008201527f2074696d65000000000000000000000000000000000000000000000000000000602082015250565b614267816139a3565b811461427257600080fd5b50565b61427e816139b5565b811461428957600080fd5b50565b614295816139c1565b81146142a057600080fd5b50565b6142ac81613a0d565b81146142b757600080fd5b5056fea2646970667358221220744f0f31dc7c5b2b4a938433283ed824613d1805bf4efcbacd6898ee07d65bb664736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d574247734a564c376d64726f33487859635042424b636e4d325531384445417379427948465556536a3841522f00000000000000000000000000000000000000000000000000000000000000000000000000000000002f516d574247734a564c376d64726f33487859635042424b636e4d325531384445417379427948465556536a3841522f0000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmWBGsJVL7mdro3HxYcPBBKcnM2U18DEAsyByHFUVSj8AR/
Arg [1] : _preRevealURI (string): QmWBGsJVL7mdro3HxYcPBBKcnM2U18DEAsyByHFUVSj8AR/

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d574247734a564c376d64726f33487859635042424b636e
Arg [4] : 4d325531384445417379427948465556536a3841522f00000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000002f
Arg [6] : 516d574247734a564c376d64726f33487859635042424b636e4d325531384445
Arg [7] : 417379427948465556536a3841522f0000000000000000000000000000000000


Deployed Bytecode Sourcemap

38881:4544:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25574:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42405:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26519:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28078:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27601:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39204:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41244:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28828:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43079:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39257:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42805:138;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43213:209;;;;;;;;;;;;;:::i;:::-;;29238:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39291:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39326;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42693:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39361:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26213:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41130:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25943:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6195:103;;;;;;;;;;;;;:::i;:::-;;39124:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5544:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42486:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26688:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39157:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40369:516;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28371:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29494:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39080:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41361:723;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42591:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28597:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39779:582;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42153:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6453:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25574:305;25676:4;25728:25;25713:40;;;:11;:40;;;;:105;;;;25785:33;25770:48;;;:11;:48;;;;25713:105;:158;;;;25835:36;25859:11;25835:23;:36::i;:::-;25713:158;25693:178;;25574:305;;;:::o;42405:73::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42467:3:::1;42458:6;;:12;;;;;;;;;;;;;;;;;;42405:73:::0;:::o;26519:100::-;26573:13;26606:5;26599:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26519:100;:::o;28078:221::-;28154:7;28182:16;28190:7;28182;:16::i;:::-;28174:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28267:15;:24;28283:7;28267:24;;;;;;;;;;;;;;;;;;;;;28260:31;;28078:221;;;:::o;27601:411::-;27682:13;27698:23;27713:7;27698:14;:23::i;:::-;27682:39;;27746:5;27740:11;;:2;:11;;;;27732:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27840:5;27824:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27849:37;27866:5;27873:12;:10;:12::i;:::-;27849:16;:37::i;:::-;27824:62;27802:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27983:21;27992:2;27996:7;27983:8;:21::i;:::-;27671:341;27601:411;;:::o;39204:46::-;;;;:::o;41244:103::-;41288:7;41315:24;:14;:22;:24::i;:::-;41308:31;;41244:103;:::o;28828:339::-;29023:41;29042:12;:10;:12::i;:::-;29056:7;29023:18;:41::i;:::-;29015:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29131:28;29141:4;29147:2;29151:7;29131:9;:28::i;:::-;28828:339;;;:::o;43079:124::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43179:16:::1;43164:12;:31;;;;;;;;;;;;:::i;:::-;;43079:124:::0;:::o;39257:27::-;;;;:::o;42805:138::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42919:16:::1;42890:26;:45;;;;42805:138:::0;:::o;43213:209::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43261:14:::1;43278:21;43261:38;;43311:12;43329:10;:15;;43352:6;43329:34;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43310:53;;;43382:7;43374:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;43250:172;;43213:209::o:0;29238:185::-;29376:39;29393:4;29399:2;29403:7;29376:39;;;;;;;;;;;;:16;:39::i;:::-;29238:185;;;:::o;39291:28::-;;;;:::o;39326:::-;;;;;;;;;;;;;:::o;42693:104::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42778:11:::1;42768:7;:21;;;;;;;;;;;;:::i;:::-;;42693:104:::0;:::o;39361:25::-;;;;;;;;;;;;;:::o;26213:239::-;26285:7;26305:13;26321:7;:16;26329:7;26321:16;;;;;;;;;;;;;;;;;;;;;26305:32;;26373:1;26356:19;;:5;:19;;;;26348:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26439:5;26432:12;;;26213:239;;;:::o;41130:106::-;41177:7;41204:24;:14;:22;:24::i;:::-;41197:31;;41130:106;:::o;25943:208::-;26015:7;26060:1;26043:19;;:5;:19;;;;26035:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;26127:9;:16;26137:5;26127:16;;;;;;;;;;;;;;;;26120:23;;25943:208;;;:::o;6195:103::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;39124:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5544:87::-;5590:7;5617:6;;;;;;;;;;;5610:13;;5544:87;:::o;42486:97::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42566:9:::1;42551:12;:24;;;;42486:97:::0;:::o;26688:104::-;26744:13;26777:7;26770:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26688:104;:::o;39157:40::-;;;;:::o;40369:516::-;40431:14;40448:24;:14;:22;:24::i;:::-;40431:41;;40492:6;;;;;;;;;;;40491:7;40483:31;;;;;;;;;;;;:::i;:::-;;;;;;;;;40546:2;40533:10;:15;40525:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;40653:1;40645:5;;:9;;;;:::i;:::-;40632:10;40623:6;:19;;;;:::i;:::-;:31;40601:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;40772:10;40757:12;;:25;;;;:::i;:::-;40744:9;:38;;40722:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;40844:33;40854:10;40866;40844:9;:33::i;:::-;40420:465;40369:516;:::o;28371:155::-;28466:52;28485:12;:10;:12::i;:::-;28499:8;28509;28466:18;:52::i;:::-;28371:155;;:::o;29494:328::-;29669:41;29688:12;:10;:12::i;:::-;29702:7;29669:18;:41::i;:::-;29661:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29775:39;29789:4;29795:2;29799:7;29808:5;29775:13;:39::i;:::-;29494:328;;;;:::o;39080:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41361:723::-;41479:13;41532:16;41540:7;41532;:16::i;:::-;41510:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;41652:5;41640:17;;:8;;;;;;;;;;;:17;;;41636:69;;;41681:12;41674:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41636:69;41717:28;41748:10;:8;:10::i;:::-;41717:41;;41820:1;41795:14;41789:28;:32;:287;;;;;;;;;;;;;;;;;41913:14;41954:18;:7;:16;:18::i;:::-;41999:13;41870:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41789:287;41769:307;;;41361:723;;;;:::o;42591:92::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42667:8:::1;42657:7;:18;;;;42591:92:::0;:::o;28597:164::-;28694:4;28718:18;:25;28737:5;28718:25;;;;;;;;;;;;;;;:35;28744:8;28718:35;;;;;;;;;;;;;;;;;;;;;;;;;28711:42;;28597:164;;;;:::o;39779:582::-;39840:14;39857:24;:14;:22;:24::i;:::-;39840:41;;39892:25;39949:16;:28;39966:10;39949:28;;;;;;;;;;;;;;;;39920:26;;:57;;;;:::i;:::-;39892:85;;39997:6;;;;;;;;;;;39996:7;39988:31;;;;;;;;;;;;:::i;:::-;;;;;;;;;40051:2;40038:10;:15;40030:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;40126:7;;40113:10;40104:6;:19;;;;:::i;:::-;:29;40096:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;40201:1;40181:17;:21;40173:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;40264:43;40284:10;40296;40264:19;:43::i;:::-;40320:33;40330:10;40342;40320:9;:33::i;:::-;39829:532;;39779:582;:::o;42153:242::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42220:14:::1;42237:24;:14;:22;:24::i;:::-;42220:41;;42310:1;42302:5;;:9;;;;:::i;:::-;42289:10;42280:6;:19;;;;:::i;:::-;:31;42272:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;42354:33;42364:10;42376;42354:9;:33::i;:::-;42209:186;42153:242:::0;:::o;6453:201::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6562:1:::1;6542:22;;:8;:22;;;;6534:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6618:28;6637:8;6618:18;:28::i;:::-;6453:201:::0;:::o;18328:157::-;18413:4;18452:25;18437:40;;;:11;:40;;;;18430:47;;18328:157;;;:::o;4268:98::-;4321:7;4348:10;4341:17;;4268:98;:::o;31332:127::-;31397:4;31449:1;31421:30;;:7;:16;31429:7;31421:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31414:37;;31332:127;;;:::o;35478:174::-;35580:2;35553:15;:24;35569:7;35553:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35636:7;35632:2;35598:46;;35607:23;35622:7;35607:14;:23::i;:::-;35598:46;;;;;;;;;;;;35478:174;;:::o;872:114::-;937:7;964;:14;;;957:21;;872:114;;;:::o;31626:348::-;31719:4;31744:16;31752:7;31744;:16::i;:::-;31736:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31820:13;31836:23;31851:7;31836:14;:23::i;:::-;31820:39;;31889:5;31878:16;;:7;:16;;;:51;;;;31922:7;31898:31;;:20;31910:7;31898:11;:20::i;:::-;:31;;;31878:51;:87;;;;31933:32;31950:5;31957:7;31933:16;:32::i;:::-;31878:87;31870:96;;;31626:348;;;;:::o;34735:625::-;34894:4;34867:31;;:23;34882:7;34867:14;:23::i;:::-;:31;;;34859:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;34973:1;34959:16;;:2;:16;;;;34951:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35029:39;35050:4;35056:2;35060:7;35029:20;:39::i;:::-;35133:29;35150:1;35154:7;35133:8;:29::i;:::-;35194:1;35175:9;:15;35185:4;35175:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35223:1;35206:9;:13;35216:2;35206:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35254:2;35235:7;:16;35243:7;35235:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35293:7;35289:2;35274:27;;35283:4;35274:27;;;;;;;;;;;;35314:38;35334:4;35340:2;35344:7;35314:19;:38::i;:::-;34735:625;;;:::o;6814:191::-;6888:16;6907:6;;;;;;;;;;;6888:25;;6933:8;6924:6;;:17;;;;;;;;;;;;;;;;;;6988:8;6957:40;;6978:8;6957:40;;;;;;;;;;;;6877:128;6814:191;:::o;40893:229::-;40970:9;40965:150;40989:10;40985:1;:14;40965:150;;;41021:26;:14;:24;:26::i;:::-;41062:41;41072:4;41078:24;:14;:22;:24::i;:::-;41062:9;:41::i;:::-;41001:3;;;;;:::i;:::-;;;;40965:150;;;;40893:229;;:::o;35794:315::-;35949:8;35940:17;;:5;:17;;;;35932:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36036:8;35998:18;:25;36017:5;35998:25;;;;;;;;;;;;;;;:35;36024:8;35998:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36082:8;36060:41;;36075:5;36060:41;;;36092:8;36060:41;;;;;;:::i;:::-;;;;;;;;35794:315;;;:::o;30704:::-;30861:28;30871:4;30877:2;30881:7;30861:9;:28::i;:::-;30908:48;30931:4;30937:2;30941:7;30950:5;30908:22;:48::i;:::-;30900:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30704:315;;;;:::o;39671:100::-;39723:13;39756:7;39749:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39671:100;:::o;1830:723::-;1886:13;2116:1;2107:5;:10;2103:53;;;2134:10;;;;;;;;;;;;;;;;;;;;;2103:53;2166:12;2181:5;2166:20;;2197:14;2222:78;2237:1;2229:4;:9;2222:78;;2255:8;;;;;:::i;:::-;;;;2286:2;2278:10;;;;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2310:39;;2360:154;2376:1;2367:5;:10;2360:154;;2404:1;2394:11;;;;;:::i;:::-;;;2471:2;2463:5;:10;;;;:::i;:::-;2450:2;:24;;;;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2500:2;2491:11;;;;;:::i;:::-;;;2360:154;;;2538:6;2524:21;;;;;1830:723;;;;:::o;42951:120::-;43058:5;43030:16;:24;43047:6;43030:24;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;42951:120;;:::o;38045:126::-;;;;:::o;38556:125::-;;;;:::o;994:127::-;1101:1;1083:7;:14;;;:19;;;;;;;;;;;994:127;:::o;32316:110::-;32392:26;32402:2;32406:7;32392:26;;;;;;;;;;;;:9;:26::i;:::-;32316:110;;:::o;36674:799::-;36829:4;36850:15;:2;:13;;;:15::i;:::-;36846:620;;;36902:2;36886:36;;;36923:12;:10;:12::i;:::-;36937:4;36943:7;36952:5;36886:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36882:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37145:1;37128:6;:13;:18;37124:272;;;37171:60;;;;;;;;;;:::i;:::-;;;;;;;;37124:272;37346:6;37340:13;37331:6;37327:2;37323:15;37316:38;36882:529;37019:41;;;37009:51;;;:6;:51;;;;37002:58;;;;;36846:620;37450:4;37443:11;;36674:799;;;;;;;:::o;32653:321::-;32783:18;32789:2;32793:7;32783:5;:18::i;:::-;32834:54;32865:1;32869:2;32873:7;32882:5;32834:22;:54::i;:::-;32812:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32653:321;;;:::o;8245:326::-;8305:4;8562:1;8540:7;:19;;;:23;8533:30;;8245:326;;;:::o;33310:439::-;33404:1;33390:16;;:2;:16;;;;33382:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33463:16;33471:7;33463;:16::i;:::-;33462:17;33454:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33525:45;33554:1;33558:2;33562:7;33525:20;:45::i;:::-;33600:1;33583:9;:13;33593:2;33583:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33631:2;33612:7;:16;33620:7;33612:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33676:7;33672:2;33651:33;;33668:1;33651:33;;;;;;;;;;;;33697:44;33725:1;33729:2;33733:7;33697:19;:44::i;:::-;33310:439;;:::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;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8869:845::-;8972:3;9009:5;9003:12;9038:36;9064:9;9038:36;:::i;:::-;9090:89;9172:6;9167:3;9090:89;:::i;:::-;9083:96;;9210:1;9199:9;9195:17;9226:1;9221:137;;;;9372:1;9367:341;;;;9188:520;;9221:137;9305:4;9301:9;9290;9286:25;9281:3;9274:38;9341:6;9336:3;9332:16;9325:23;;9221:137;;9367:341;9434:38;9466:5;9434:38;:::i;:::-;9494:1;9508:154;9522:6;9519:1;9516:13;9508:154;;;9596:7;9590:14;9586:1;9581:3;9577:11;9570:35;9646:1;9637:7;9633:15;9622:26;;9544:4;9541:1;9537:12;9532:17;;9508:154;;;9691:6;9686:3;9682:16;9675:23;;9374:334;;9188:520;;8976:738;;8869:845;;;;:::o;9720:366::-;9862:3;9883:67;9947:2;9942:3;9883:67;:::i;:::-;9876:74;;9959:93;10048:3;9959:93;:::i;:::-;10077:2;10072:3;10068:12;10061:19;;9720:366;;;:::o;10092:::-;10234:3;10255:67;10319:2;10314:3;10255:67;:::i;:::-;10248:74;;10331:93;10420:3;10331:93;:::i;:::-;10449:2;10444:3;10440:12;10433:19;;10092:366;;;:::o;10464:::-;10606:3;10627:67;10691:2;10686:3;10627:67;:::i;:::-;10620:74;;10703:93;10792:3;10703:93;:::i;:::-;10821:2;10816:3;10812:12;10805:19;;10464:366;;;:::o;10836:::-;10978:3;10999:67;11063:2;11058:3;10999:67;:::i;:::-;10992:74;;11075:93;11164:3;11075:93;:::i;:::-;11193:2;11188:3;11184:12;11177:19;;10836:366;;;:::o;11208:::-;11350:3;11371:67;11435:2;11430:3;11371:67;:::i;:::-;11364:74;;11447:93;11536:3;11447:93;:::i;:::-;11565:2;11560:3;11556:12;11549:19;;11208:366;;;:::o;11580:::-;11722:3;11743:67;11807:2;11802:3;11743:67;:::i;:::-;11736:74;;11819:93;11908:3;11819:93;:::i;:::-;11937:2;11932:3;11928:12;11921:19;;11580:366;;;:::o;11952:::-;12094:3;12115:67;12179:2;12174:3;12115:67;:::i;:::-;12108:74;;12191:93;12280:3;12191:93;:::i;:::-;12309:2;12304:3;12300:12;12293:19;;11952:366;;;:::o;12324:::-;12466:3;12487:67;12551:2;12546:3;12487:67;:::i;:::-;12480:74;;12563:93;12652:3;12563:93;:::i;:::-;12681:2;12676:3;12672:12;12665:19;;12324:366;;;:::o;12696:::-;12838:3;12859:67;12923:2;12918:3;12859:67;:::i;:::-;12852:74;;12935:93;13024:3;12935:93;:::i;:::-;13053:2;13048:3;13044:12;13037:19;;12696:366;;;:::o;13068:::-;13210:3;13231:67;13295:2;13290:3;13231:67;:::i;:::-;13224:74;;13307:93;13396:3;13307:93;:::i;:::-;13425:2;13420:3;13416:12;13409:19;;13068:366;;;:::o;13440:::-;13582:3;13603:67;13667:2;13662:3;13603:67;:::i;:::-;13596:74;;13679:93;13768:3;13679:93;:::i;:::-;13797:2;13792:3;13788:12;13781:19;;13440:366;;;:::o;13812:::-;13954:3;13975:67;14039:2;14034:3;13975:67;:::i;:::-;13968:74;;14051:93;14140:3;14051:93;:::i;:::-;14169:2;14164:3;14160:12;14153:19;;13812:366;;;:::o;14184:::-;14326:3;14347:67;14411:2;14406:3;14347:67;:::i;:::-;14340:74;;14423:93;14512:3;14423:93;:::i;:::-;14541:2;14536:3;14532:12;14525:19;;14184:366;;;:::o;14556:::-;14698:3;14719:67;14783:2;14778:3;14719:67;:::i;:::-;14712:74;;14795:93;14884:3;14795:93;:::i;:::-;14913:2;14908:3;14904:12;14897:19;;14556:366;;;:::o;14928:::-;15070:3;15091:67;15155:2;15150:3;15091:67;:::i;:::-;15084:74;;15167:93;15256:3;15167:93;:::i;:::-;15285:2;15280:3;15276:12;15269:19;;14928:366;;;:::o;15300:::-;15442:3;15463:67;15527:2;15522:3;15463:67;:::i;:::-;15456:74;;15539:93;15628:3;15539:93;:::i;:::-;15657:2;15652:3;15648:12;15641:19;;15300:366;;;:::o;15672:::-;15814:3;15835:67;15899:2;15894:3;15835:67;:::i;:::-;15828:74;;15911:93;16000:3;15911:93;:::i;:::-;16029:2;16024:3;16020:12;16013:19;;15672:366;;;:::o;16044:::-;16186:3;16207:67;16271:2;16266:3;16207:67;:::i;:::-;16200:74;;16283:93;16372:3;16283:93;:::i;:::-;16401:2;16396:3;16392:12;16385:19;;16044:366;;;:::o;16416:::-;16558:3;16579:67;16643:2;16638:3;16579:67;:::i;:::-;16572:74;;16655:93;16744:3;16655:93;:::i;:::-;16773:2;16768:3;16764:12;16757:19;;16416:366;;;:::o;16788:::-;16930:3;16951:67;17015:2;17010:3;16951:67;:::i;:::-;16944:74;;17027:93;17116:3;17027:93;:::i;:::-;17145:2;17140:3;17136:12;17129:19;;16788:366;;;:::o;17160:::-;17302:3;17323:67;17387:2;17382:3;17323:67;:::i;:::-;17316:74;;17399:93;17488:3;17399:93;:::i;:::-;17517:2;17512:3;17508:12;17501:19;;17160:366;;;:::o;17532:398::-;17691:3;17712:83;17793:1;17788:3;17712:83;:::i;:::-;17705:90;;17804:93;17893:3;17804:93;:::i;:::-;17922:1;17917:3;17913:11;17906:18;;17532:398;;;:::o;17936:366::-;18078:3;18099:67;18163:2;18158:3;18099:67;:::i;:::-;18092:74;;18175:93;18264:3;18175:93;:::i;:::-;18293:2;18288:3;18284:12;18277:19;;17936:366;;;:::o;18308:::-;18450:3;18471:67;18535:2;18530:3;18471:67;:::i;:::-;18464:74;;18547:93;18636:3;18547:93;:::i;:::-;18665:2;18660:3;18656:12;18649:19;;18308:366;;;:::o;18680:::-;18822:3;18843:67;18907:2;18902:3;18843:67;:::i;:::-;18836:74;;18919:93;19008:3;18919:93;:::i;:::-;19037:2;19032:3;19028:12;19021:19;;18680:366;;;:::o;19052:::-;19194:3;19215:67;19279:2;19274:3;19215:67;:::i;:::-;19208:74;;19291:93;19380:3;19291:93;:::i;:::-;19409:2;19404:3;19400:12;19393:19;;19052:366;;;:::o;19424:118::-;19511:24;19529:5;19511:24;:::i;:::-;19506:3;19499:37;19424:118;;:::o;19548:589::-;19773:3;19795:95;19886:3;19877:6;19795:95;:::i;:::-;19788:102;;19907:95;19998:3;19989:6;19907:95;:::i;:::-;19900:102;;20019:92;20107:3;20098:6;20019:92;:::i;:::-;20012:99;;20128:3;20121:10;;19548:589;;;;;;:::o;20143:379::-;20327:3;20349:147;20492:3;20349:147;:::i;:::-;20342:154;;20513:3;20506:10;;20143:379;;;:::o;20528:222::-;20621:4;20659:2;20648:9;20644:18;20636:26;;20672:71;20740:1;20729:9;20725:17;20716:6;20672:71;:::i;:::-;20528:222;;;;:::o;20756:640::-;20951:4;20989:3;20978:9;20974:19;20966:27;;21003:71;21071:1;21060:9;21056:17;21047:6;21003:71;:::i;:::-;21084:72;21152:2;21141:9;21137:18;21128:6;21084:72;:::i;:::-;21166;21234:2;21223:9;21219:18;21210:6;21166:72;:::i;:::-;21285:9;21279:4;21275:20;21270:2;21259:9;21255:18;21248:48;21313:76;21384:4;21375:6;21313:76;:::i;:::-;21305:84;;20756:640;;;;;;;:::o;21402:210::-;21489:4;21527:2;21516:9;21512:18;21504:26;;21540:65;21602:1;21591:9;21587:17;21578:6;21540:65;:::i;:::-;21402:210;;;;:::o;21618:313::-;21731:4;21769:2;21758:9;21754:18;21746:26;;21818:9;21812:4;21808:20;21804:1;21793:9;21789:17;21782:47;21846:78;21919:4;21910:6;21846:78;:::i;:::-;21838:86;;21618:313;;;;:::o;21937:419::-;22103:4;22141:2;22130:9;22126:18;22118:26;;22190:9;22184:4;22180:20;22176:1;22165:9;22161:17;22154:47;22218:131;22344:4;22218:131;:::i;:::-;22210:139;;21937:419;;;:::o;22362:::-;22528:4;22566:2;22555:9;22551:18;22543:26;;22615:9;22609:4;22605:20;22601:1;22590:9;22586:17;22579:47;22643:131;22769:4;22643:131;:::i;:::-;22635:139;;22362:419;;;:::o;22787:::-;22953:4;22991:2;22980:9;22976:18;22968:26;;23040:9;23034:4;23030:20;23026:1;23015:9;23011:17;23004:47;23068:131;23194:4;23068:131;:::i;:::-;23060:139;;22787:419;;;:::o;23212:::-;23378:4;23416:2;23405:9;23401:18;23393:26;;23465:9;23459:4;23455:20;23451:1;23440:9;23436:17;23429:47;23493:131;23619:4;23493:131;:::i;:::-;23485:139;;23212:419;;;:::o;23637:::-;23803:4;23841:2;23830:9;23826:18;23818:26;;23890:9;23884:4;23880:20;23876:1;23865:9;23861:17;23854:47;23918:131;24044:4;23918:131;:::i;:::-;23910:139;;23637:419;;;:::o;24062:::-;24228:4;24266:2;24255:9;24251:18;24243:26;;24315:9;24309:4;24305:20;24301:1;24290:9;24286:17;24279:47;24343:131;24469:4;24343:131;:::i;:::-;24335:139;;24062:419;;;:::o;24487:::-;24653:4;24691:2;24680:9;24676:18;24668:26;;24740:9;24734:4;24730:20;24726:1;24715:9;24711:17;24704:47;24768:131;24894:4;24768:131;:::i;:::-;24760:139;;24487:419;;;:::o;24912:::-;25078:4;25116:2;25105:9;25101:18;25093:26;;25165:9;25159:4;25155:20;25151:1;25140:9;25136:17;25129:47;25193:131;25319:4;25193:131;:::i;:::-;25185:139;;24912:419;;;:::o;25337:::-;25503:4;25541:2;25530:9;25526:18;25518:26;;25590:9;25584:4;25580:20;25576:1;25565:9;25561:17;25554:47;25618:131;25744:4;25618:131;:::i;:::-;25610:139;;25337:419;;;:::o;25762:::-;25928:4;25966:2;25955:9;25951:18;25943:26;;26015:9;26009:4;26005:20;26001:1;25990:9;25986:17;25979:47;26043:131;26169:4;26043:131;:::i;:::-;26035:139;;25762:419;;;:::o;26187:::-;26353:4;26391:2;26380:9;26376:18;26368:26;;26440:9;26434:4;26430:20;26426:1;26415:9;26411:17;26404:47;26468:131;26594:4;26468:131;:::i;:::-;26460:139;;26187:419;;;:::o;26612:::-;26778:4;26816:2;26805:9;26801:18;26793:26;;26865:9;26859:4;26855:20;26851:1;26840:9;26836:17;26829:47;26893:131;27019:4;26893:131;:::i;:::-;26885:139;;26612:419;;;:::o;27037:::-;27203:4;27241:2;27230:9;27226:18;27218:26;;27290:9;27284:4;27280:20;27276:1;27265:9;27261:17;27254:47;27318:131;27444:4;27318:131;:::i;:::-;27310:139;;27037:419;;;:::o;27462:::-;27628:4;27666:2;27655:9;27651:18;27643:26;;27715:9;27709:4;27705:20;27701:1;27690:9;27686:17;27679:47;27743:131;27869:4;27743:131;:::i;:::-;27735:139;;27462:419;;;:::o;27887:::-;28053:4;28091:2;28080:9;28076:18;28068:26;;28140:9;28134:4;28130:20;28126:1;28115:9;28111:17;28104:47;28168:131;28294:4;28168:131;:::i;:::-;28160:139;;27887:419;;;:::o;28312:::-;28478:4;28516:2;28505:9;28501:18;28493:26;;28565:9;28559:4;28555:20;28551:1;28540:9;28536:17;28529:47;28593:131;28719:4;28593:131;:::i;:::-;28585:139;;28312:419;;;:::o;28737:::-;28903:4;28941:2;28930:9;28926:18;28918:26;;28990:9;28984:4;28980:20;28976:1;28965:9;28961:17;28954:47;29018:131;29144:4;29018:131;:::i;:::-;29010:139;;28737:419;;;:::o;29162:::-;29328:4;29366:2;29355:9;29351:18;29343:26;;29415:9;29409:4;29405:20;29401:1;29390:9;29386:17;29379:47;29443:131;29569:4;29443:131;:::i;:::-;29435:139;;29162:419;;;:::o;29587:::-;29753:4;29791:2;29780:9;29776:18;29768:26;;29840:9;29834:4;29830:20;29826:1;29815:9;29811:17;29804:47;29868:131;29994:4;29868:131;:::i;:::-;29860:139;;29587:419;;;:::o;30012:::-;30178:4;30216:2;30205:9;30201:18;30193:26;;30265:9;30259:4;30255:20;30251:1;30240:9;30236:17;30229:47;30293:131;30419:4;30293:131;:::i;:::-;30285:139;;30012:419;;;:::o;30437:::-;30603:4;30641:2;30630:9;30626:18;30618:26;;30690:9;30684:4;30680:20;30676:1;30665:9;30661:17;30654:47;30718:131;30844:4;30718:131;:::i;:::-;30710:139;;30437:419;;;:::o;30862:::-;31028:4;31066:2;31055:9;31051:18;31043:26;;31115:9;31109:4;31105:20;31101:1;31090:9;31086:17;31079:47;31143:131;31269:4;31143:131;:::i;:::-;31135:139;;30862:419;;;:::o;31287:::-;31453:4;31491:2;31480:9;31476:18;31468:26;;31540:9;31534:4;31530:20;31526:1;31515:9;31511:17;31504:47;31568:131;31694:4;31568:131;:::i;:::-;31560:139;;31287:419;;;:::o;31712:::-;31878:4;31916:2;31905:9;31901:18;31893:26;;31965:9;31959:4;31955:20;31951:1;31940:9;31936:17;31929:47;31993:131;32119:4;31993:131;:::i;:::-;31985:139;;31712:419;;;:::o;32137:::-;32303:4;32341:2;32330:9;32326:18;32318:26;;32390:9;32384:4;32380:20;32376:1;32365:9;32361:17;32354:47;32418:131;32544:4;32418:131;:::i;:::-;32410:139;;32137:419;;;:::o;32562:222::-;32655:4;32693:2;32682:9;32678:18;32670:26;;32706:71;32774:1;32763:9;32759:17;32750:6;32706:71;:::i;:::-;32562:222;;;;:::o;32790:129::-;32824:6;32851:20;;:::i;:::-;32841:30;;32880:33;32908:4;32900:6;32880:33;:::i;:::-;32790:129;;;:::o;32925:75::-;32958:6;32991:2;32985:9;32975:19;;32925:75;:::o;33006:307::-;33067:4;33157:18;33149:6;33146:30;33143:56;;;33179:18;;:::i;:::-;33143:56;33217:29;33239:6;33217:29;:::i;:::-;33209:37;;33301:4;33295;33291:15;33283:23;;33006:307;;;:::o;33319:308::-;33381:4;33471:18;33463:6;33460:30;33457:56;;;33493:18;;:::i;:::-;33457:56;33531:29;33553:6;33531:29;:::i;:::-;33523:37;;33615:4;33609;33605:15;33597:23;;33319:308;;;:::o;33633:141::-;33682:4;33705:3;33697:11;;33728:3;33725:1;33718:14;33762:4;33759:1;33749:18;33741:26;;33633:141;;;:::o;33780:98::-;33831:6;33865:5;33859:12;33849:22;;33780:98;;;:::o;33884:99::-;33936:6;33970:5;33964:12;33954:22;;33884:99;;;:::o;33989:168::-;34072:11;34106:6;34101:3;34094:19;34146:4;34141:3;34137:14;34122:29;;33989:168;;;;:::o;34163:147::-;34264:11;34301:3;34286:18;;34163:147;;;;:::o;34316:169::-;34400:11;34434:6;34429:3;34422:19;34474:4;34469:3;34465:14;34450:29;;34316:169;;;;:::o;34491:148::-;34593:11;34630:3;34615:18;;34491:148;;;;:::o;34645:305::-;34685:3;34704:20;34722:1;34704:20;:::i;:::-;34699:25;;34738:20;34756:1;34738:20;:::i;:::-;34733:25;;34892:1;34824:66;34820:74;34817:1;34814:81;34811:107;;;34898:18;;:::i;:::-;34811:107;34942:1;34939;34935:9;34928:16;;34645:305;;;;:::o;34956:185::-;34996:1;35013:20;35031:1;35013:20;:::i;:::-;35008:25;;35047:20;35065:1;35047:20;:::i;:::-;35042:25;;35086:1;35076:35;;35091:18;;:::i;:::-;35076:35;35133:1;35130;35126:9;35121:14;;34956:185;;;;:::o;35147:348::-;35187:7;35210:20;35228:1;35210:20;:::i;:::-;35205:25;;35244:20;35262:1;35244:20;:::i;:::-;35239:25;;35432:1;35364:66;35360:74;35357:1;35354:81;35349:1;35342:9;35335:17;35331:105;35328:131;;;35439:18;;:::i;:::-;35328:131;35487:1;35484;35480:9;35469:20;;35147:348;;;;:::o;35501:191::-;35541:4;35561:20;35579:1;35561:20;:::i;:::-;35556:25;;35595:20;35613:1;35595:20;:::i;:::-;35590:25;;35634:1;35631;35628:8;35625:34;;;35639:18;;:::i;:::-;35625:34;35684:1;35681;35677:9;35669:17;;35501:191;;;;:::o;35698:96::-;35735:7;35764:24;35782:5;35764:24;:::i;:::-;35753:35;;35698:96;;;:::o;35800:90::-;35834:7;35877:5;35870:13;35863:21;35852:32;;35800:90;;;:::o;35896:149::-;35932:7;35972:66;35965:5;35961:78;35950:89;;35896:149;;;:::o;36051:126::-;36088:7;36128:42;36121:5;36117:54;36106:65;;36051:126;;;:::o;36183:77::-;36220:7;36249:5;36238:16;;36183:77;;;:::o;36266:154::-;36350:6;36345:3;36340;36327:30;36412:1;36403:6;36398:3;36394:16;36387:27;36266:154;;;:::o;36426:307::-;36494:1;36504:113;36518:6;36515:1;36512:13;36504:113;;;36603:1;36598:3;36594:11;36588:18;36584:1;36579:3;36575:11;36568:39;36540:2;36537:1;36533:10;36528:15;;36504:113;;;36635:6;36632:1;36629:13;36626:101;;;36715:1;36706:6;36701:3;36697:16;36690:27;36626:101;36475:258;36426:307;;;:::o;36739:320::-;36783:6;36820:1;36814:4;36810:12;36800:22;;36867:1;36861:4;36857:12;36888:18;36878:81;;36944:4;36936:6;36932:17;36922:27;;36878:81;37006:2;36998:6;36995:14;36975:18;36972:38;36969:84;;;37025:18;;:::i;:::-;36969:84;36790:269;36739:320;;;:::o;37065:281::-;37148:27;37170:4;37148:27;:::i;:::-;37140:6;37136:40;37278:6;37266:10;37263:22;37242:18;37230:10;37227:34;37224:62;37221:88;;;37289:18;;:::i;:::-;37221:88;37329:10;37325:2;37318:22;37108:238;37065:281;;:::o;37352:233::-;37391:3;37414:24;37432:5;37414:24;:::i;:::-;37405:33;;37460:66;37453:5;37450:77;37447:103;;;37530:18;;:::i;:::-;37447:103;37577:1;37570:5;37566:13;37559:20;;37352:233;;;:::o;37591:176::-;37623:1;37640:20;37658:1;37640:20;:::i;:::-;37635:25;;37674:20;37692:1;37674:20;:::i;:::-;37669:25;;37713:1;37703:35;;37718:18;;:::i;:::-;37703:35;37759:1;37756;37752:9;37747:14;;37591:176;;;;:::o;37773:180::-;37821:77;37818:1;37811:88;37918:4;37915:1;37908:15;37942:4;37939:1;37932:15;37959:180;38007:77;38004:1;37997:88;38104:4;38101:1;38094:15;38128:4;38125:1;38118:15;38145:180;38193:77;38190:1;38183:88;38290:4;38287:1;38280:15;38314:4;38311:1;38304:15;38331:180;38379:77;38376:1;38369:88;38476:4;38473:1;38466:15;38500:4;38497:1;38490:15;38517:180;38565:77;38562:1;38555:88;38662:4;38659:1;38652:15;38686:4;38683:1;38676:15;38703:117;38812:1;38809;38802:12;38826:117;38935:1;38932;38925:12;38949:117;39058:1;39055;39048:12;39072:117;39181:1;39178;39171:12;39195:102;39236:6;39287:2;39283:7;39278:2;39271:5;39267:14;39263:28;39253:38;;39195:102;;;:::o;39303:161::-;39443:13;39439:1;39431:6;39427:14;39420:37;39303:161;:::o;39470:171::-;39610:23;39606:1;39598:6;39594:14;39587:47;39470:171;:::o;39647:174::-;39787:26;39783:1;39775:6;39771:14;39764:50;39647:174;:::o;39827:237::-;39967:34;39963:1;39955:6;39951:14;39944:58;40036:20;40031:2;40023:6;40019:15;40012:45;39827:237;:::o;40070:225::-;40210:34;40206:1;40198:6;40194:14;40187:58;40279:8;40274:2;40266:6;40262:15;40255:33;40070:225;:::o;40301:224::-;40441:34;40437:1;40429:6;40425:14;40418:58;40510:7;40505:2;40497:6;40493:15;40486:32;40301:224;:::o;40531:178::-;40671:30;40667:1;40659:6;40655:14;40648:54;40531:178;:::o;40715:170::-;40855:22;40851:1;40843:6;40839:14;40832:46;40715:170;:::o;40891:223::-;41031:34;41027:1;41019:6;41015:14;41008:58;41100:6;41095:2;41087:6;41083:15;41076:31;40891:223;:::o;41120:175::-;41260:27;41256:1;41248:6;41244:14;41237:51;41120:175;:::o;41301:230::-;41441:34;41437:1;41429:6;41425:14;41418:58;41510:13;41505:2;41497:6;41493:15;41486:38;41301:230;:::o;41537:231::-;41677:34;41673:1;41665:6;41661:14;41654:58;41746:14;41741:2;41733:6;41729:15;41722:39;41537:231;:::o;41774:177::-;41914:29;41910:1;41902:6;41898:14;41891:53;41774:177;:::o;41957:243::-;42097:34;42093:1;42085:6;42081:14;42074:58;42166:26;42161:2;42153:6;42149:15;42142:51;41957:243;:::o;42206:229::-;42346:34;42342:1;42334:6;42330:14;42323:58;42415:12;42410:2;42402:6;42398:15;42391:37;42206:229;:::o;42441:228::-;42581:34;42577:1;42569:6;42565:14;42558:58;42650:11;42645:2;42637:6;42633:15;42626:36;42441:228;:::o;42675:182::-;42815:34;42811:1;42803:6;42799:14;42792:58;42675:182;:::o;42863:231::-;43003:34;42999:1;42991:6;42987:14;42980:58;43072:14;43067:2;43059:6;43055:15;43048:39;42863:231;:::o;43100:182::-;43240:34;43236:1;43228:6;43224:14;43217:58;43100:182;:::o;43288:234::-;43428:34;43424:1;43416:6;43412:14;43405:58;43497:17;43492:2;43484:6;43480:15;43473:42;43288:234;:::o;43528:220::-;43668:34;43664:1;43656:6;43652:14;43645:58;43737:3;43732:2;43724:6;43720:15;43713:28;43528:220;:::o;43754:114::-;;:::o;43874:236::-;44014:34;44010:1;44002:6;43998:14;43991:58;44083:19;44078:2;44070:6;44066:15;44059:44;43874:236;:::o;44116:179::-;44256:31;44252:1;44244:6;44240:14;44233:55;44116:179;:::o;44301:178::-;44441:30;44437:1;44429:6;44425:14;44418:54;44301:178;:::o;44485:224::-;44625:34;44621:1;44613:6;44609:14;44602:58;44694:7;44689:2;44681:6;44677:15;44670:32;44485:224;:::o;44715:122::-;44788:24;44806:5;44788:24;:::i;:::-;44781:5;44778:35;44768:63;;44827:1;44824;44817:12;44768:63;44715:122;:::o;44843:116::-;44913:21;44928:5;44913:21;:::i;:::-;44906:5;44903:32;44893:60;;44949:1;44946;44939:12;44893:60;44843:116;:::o;44965:120::-;45037:23;45054:5;45037:23;:::i;:::-;45030:5;45027:34;45017:62;;45075:1;45072;45065:12;45017:62;44965:120;:::o;45091:122::-;45164:24;45182:5;45164:24;:::i;:::-;45157:5;45154:35;45144:63;;45203:1;45200;45193:12;45144:63;45091:122;:::o

Swarm Source

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