ETH Price: $2,336.86 (+1.93%)

Token

FOMOTown (FOMO)
 

Overview

Max Total Supply

0 FOMO

Holders

146

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
mayian.eth
Balance
2 FOMO
0x067753A1d65293af77c0074B2afd535D3cbC21ED
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

You missed FOMOVerse, come on over to FOMOTown. Metaverse plans TBD. Royalties at 10% for minimum FOMO. Secondary sales will go to Susan G Komen Breast Cancer Foundation.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FreeMint

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-15
*/

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



pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



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



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



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



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



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// File: contracts/FreeMint.sol

//"SPDX-License-Identifier: UNLICENSED"
pragma solidity ^0.8.7;




contract FreeMint is ERC721, Ownable {
    uint256 public tokenCounter;

    uint256 private _maxPerTx = 21; // Set to one higher than actual, to save gas on <= checks.

    uint256 public _totalSupply = 1337; 

    string private _baseTokenURI;

    // Faciliating the needed functionality for the presale
    mapping(address => bool) addressToPreSaleEntry;

    constructor () ERC721 ("FOMOTown","FOMO")  {
        tokenCounter = 0;
    }

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


        return getBaseURI();
    }
    function mintCollectibles(uint256 _count) public payable {
        require(_count < _maxPerTx, "Cant mint more than mintMax");
        require((_count + tokenCounter) <= _totalSupply, "Ran out of NFTs for sale! Sry!");

        createCollectibles(_count);
    }

    function createCollectibles(uint256 _count) private {
        for(uint i = 0; i < _count; i++) {
            createCollectible();
        }
    }

    function createCollectible() private {
            _safeMint(msg.sender, tokenCounter);
            tokenCounter = tokenCounter + 1;
    }
    
    function maxMintsPerTransaction() public view returns (uint) {
        return _maxPerTx - 1; //_maxPerTx is off by 1 for require checks in HOF Mint. Allows use of < instead of <=, less gas
    }

    function isSaleOpen() public view returns (bool) {
        return true;
    }

    function isSaleComplete() public view returns (bool) {
        return tokenCounter == _totalSupply;
    }
    
    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    function getBaseURI() public view returns (string memory){
        return _baseTokenURI;
    }
    function withdrawAll() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_totalSupply","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"isSaleComplete","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintCollectibles","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

608060405260156008556105396009553480156200001c57600080fd5b506040518060400160405280600881526020017f464f4d4f546f776e0000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f464f4d4f000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000a1929190620001b9565b508060019080519060200190620000ba929190620001b9565b505050620000dd620000d1620000eb60201b60201c565b620000f360201b60201c565b6000600781905550620002ce565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001c79062000269565b90600052602060002090601f016020900481019282620001eb576000855562000237565b82601f106200020657805160ff191683800117855562000237565b8280016001018555821562000237579182015b828111156200023657825182559160200191906001019062000219565b5b5090506200024691906200024a565b5090565b5b80821115620002655760008160009055506001016200024b565b5090565b600060028204905060018216806200028257607f821691505b602082108114156200029957620002986200029f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612fe080620002de6000396000f3fe6080604052600436106101665760003560e01c806370a08231116100d1578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd146104ea578063d082e38114610527578063e985e9c514610552578063f2fde38b1461058f57610166565b8063a22cb4651461046d578063b88d4fde14610496578063c31c0b62146104bf57610166565b806370a082311461038e578063714c5398146103cb578063715018a6146103f6578063853828b61461040d5780638da5cb5b1461041757806395d89b411461044257610166565b806323b872dd1161012357806323b872dd146102805780633eaaf86b146102a957806342842e0e146102d457806355f804b3146102fd5780636352211e1461032657806364aa0c791461036357610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b314610210578063178a8569146102395780631a08133014610255575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612063565b6105b8565b60405161019f91906124af565b60405180910390f35b3480156101b457600080fd5b506101bd61069a565b6040516101ca91906124ca565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f59190612106565b61072c565b6040516102079190612448565b60405180910390f35b34801561021c57600080fd5b5061023760048036038101906102329190612023565b6107b1565b005b610253600480360381019061024e9190612106565b6108c9565b005b34801561026157600080fd5b5061026a61096b565b60405161027791906124af565b60405180910390f35b34801561028c57600080fd5b506102a760048036038101906102a29190611f0d565b610974565b005b3480156102b557600080fd5b506102be6109d4565b6040516102cb919061272c565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190611f0d565b6109da565b005b34801561030957600080fd5b50610324600480360381019061031f91906120bd565b6109fa565b005b34801561033257600080fd5b5061034d60048036038101906103489190612106565b610a90565b60405161035a9190612448565b60405180910390f35b34801561036f57600080fd5b50610378610b42565b604051610385919061272c565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b09190611ea0565b610b58565b6040516103c2919061272c565b60405180910390f35b3480156103d757600080fd5b506103e0610c10565b6040516103ed91906124ca565b60405180910390f35b34801561040257600080fd5b5061040b610ca2565b005b610415610d2a565b005b34801561042357600080fd5b5061042c610de6565b6040516104399190612448565b60405180910390f35b34801561044e57600080fd5b50610457610e10565b60405161046491906124ca565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f9190611fe3565b610ea2565b005b3480156104a257600080fd5b506104bd60048036038101906104b89190611f60565b611023565b005b3480156104cb57600080fd5b506104d4611085565b6040516104e191906124af565b60405180910390f35b3480156104f657600080fd5b50610511600480360381019061050c9190612106565b611093565b60405161051e91906124ca565b60405180910390f35b34801561053357600080fd5b5061053c6110ec565b604051610549919061272c565b60405180910390f35b34801561055e57600080fd5b5061057960048036038101906105749190611ecd565b6110f2565b60405161058691906124af565b60405180910390f35b34801561059b57600080fd5b506105b660048036038101906105b19190611ea0565b611186565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061068357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061069357506106928261127e565b5b9050919050565b6060600080546106a990612946565b80601f01602080910402602001604051908101604052809291908181526020018280546106d590612946565b80156107225780601f106106f757610100808354040283529160200191610722565b820191906000526020600020905b81548152906001019060200180831161070557829003601f168201915b5050505050905090565b6000610737826112e8565b610776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076d9061266c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107bc82610a90565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561082d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610824906126ec565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661084c611354565b73ffffffffffffffffffffffffffffffffffffffff16148061087b575061087a81610875611354565b6110f2565b5b6108ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b1906125ac565b60405180910390fd5b6108c4838361135c565b505050565b600854811061090d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109049061262c565b60405180910390fd5b6009546007548261091e9190612806565b111561095f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109569061264c565b60405180910390fd5b61096881611415565b50565b60006001905090565b61098561097f611354565b8261143f565b6109c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bb9061270c565b60405180910390fd5b6109cf83838361151d565b505050565b60095481565b6109f583838360405180602001604052806000815250611023565b505050565b610a02611354565b73ffffffffffffffffffffffffffffffffffffffff16610a20610de6565b73ffffffffffffffffffffffffffffffffffffffff1614610a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6d9061268c565b60405180910390fd5b80600a9080519060200190610a8c929190611cb4565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b30906125ec565b60405180910390fd5b80915050919050565b60006001600854610b53919061285c565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc0906125cc565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600a8054610c1f90612946565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4b90612946565b8015610c985780601f10610c6d57610100808354040283529160200191610c98565b820191906000526020600020905b815481529060010190602001808311610c7b57829003601f168201915b5050505050905090565b610caa611354565b73ffffffffffffffffffffffffffffffffffffffff16610cc8610de6565b73ffffffffffffffffffffffffffffffffffffffff1614610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d159061268c565b60405180910390fd5b610d286000611779565b565b610d32611354565b73ffffffffffffffffffffffffffffffffffffffff16610d50610de6565b73ffffffffffffffffffffffffffffffffffffffff1614610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d9061268c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610de457600080fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610e1f90612946565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4b90612946565b8015610e985780601f10610e6d57610100808354040283529160200191610e98565b820191906000526020600020905b815481529060010190602001808311610e7b57829003601f168201915b5050505050905090565b610eaa611354565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f9061256c565b60405180910390fd5b8060056000610f25611354565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610fd2611354565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161101791906124af565b60405180910390a35050565b61103461102e611354565b8361143f565b611073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106a9061270c565b60405180910390fd5b61107f8484848461183f565b50505050565b600060095460075414905090565b606061109e826112e8565b6110dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d4906126cc565b60405180910390fd5b6110e5610c10565b9050919050565b60075481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61118e611354565b73ffffffffffffffffffffffffffffffffffffffff166111ac610de6565b73ffffffffffffffffffffffffffffffffffffffff1614611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f99061268c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611272576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112699061250c565b60405180910390fd5b61127b81611779565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166113cf83610a90565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60005b8181101561143b5761142861189b565b8080611433906129a9565b915050611418565b5050565b600061144a826112e8565b611489576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114809061258c565b60405180910390fd5b600061149483610a90565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061150357508373ffffffffffffffffffffffffffffffffffffffff166114eb8461072c565b73ffffffffffffffffffffffffffffffffffffffff16145b80611514575061151381856110f2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661153d82610a90565b73ffffffffffffffffffffffffffffffffffffffff1614611593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158a906126ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa9061254c565b60405180910390fd5b61160e8383836118be565b61161960008261135c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611669919061285c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116c09190612806565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61184a84848461151d565b611856848484846118c3565b611895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188c906124ec565b60405180910390fd5b50505050565b6118a733600754611a5a565b60016007546118b69190612806565b600781905550565b505050565b60006118e48473ffffffffffffffffffffffffffffffffffffffff16611a78565b15611a4d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261190d611354565b8786866040518563ffffffff1660e01b815260040161192f9493929190612463565b602060405180830381600087803b15801561194957600080fd5b505af192505050801561197a57506040513d601f19601f820116820180604052508101906119779190612090565b60015b6119fd573d80600081146119aa576040519150601f19603f3d011682016040523d82523d6000602084013e6119af565b606091505b506000815114156119f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ec906124ec565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611a52565b600190505b949350505050565b611a74828260405180602001604052806000815250611a8b565b5050565b600080823b905060008111915050919050565b611a958383611ae6565b611aa260008484846118c3565b611ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad8906124ec565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4d9061260c565b60405180910390fd5b611b5f816112e8565b15611b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b969061252c565b60405180910390fd5b611bab600083836118be565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bfb9190612806565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054611cc090612946565b90600052602060002090601f016020900481019282611ce25760008555611d29565b82601f10611cfb57805160ff1916838001178555611d29565b82800160010185558215611d29579182015b82811115611d28578251825591602001919060010190611d0d565b5b509050611d369190611d3a565b5090565b5b80821115611d53576000816000905550600101611d3b565b5090565b6000611d6a611d658461276c565b612747565b905082815260208101848484011115611d8657611d85612a84565b5b611d91848285612904565b509392505050565b6000611dac611da78461279d565b612747565b905082815260208101848484011115611dc857611dc7612a84565b5b611dd3848285612904565b509392505050565b600081359050611dea81612f4e565b92915050565b600081359050611dff81612f65565b92915050565b600081359050611e1481612f7c565b92915050565b600081519050611e2981612f7c565b92915050565b600082601f830112611e4457611e43612a7f565b5b8135611e54848260208601611d57565b91505092915050565b600082601f830112611e7257611e71612a7f565b5b8135611e82848260208601611d99565b91505092915050565b600081359050611e9a81612f93565b92915050565b600060208284031215611eb657611eb5612a8e565b5b6000611ec484828501611ddb565b91505092915050565b60008060408385031215611ee457611ee3612a8e565b5b6000611ef285828601611ddb565b9250506020611f0385828601611ddb565b9150509250929050565b600080600060608486031215611f2657611f25612a8e565b5b6000611f3486828701611ddb565b9350506020611f4586828701611ddb565b9250506040611f5686828701611e8b565b9150509250925092565b60008060008060808587031215611f7a57611f79612a8e565b5b6000611f8887828801611ddb565b9450506020611f9987828801611ddb565b9350506040611faa87828801611e8b565b925050606085013567ffffffffffffffff811115611fcb57611fca612a89565b5b611fd787828801611e2f565b91505092959194509250565b60008060408385031215611ffa57611ff9612a8e565b5b600061200885828601611ddb565b925050602061201985828601611df0565b9150509250929050565b6000806040838503121561203a57612039612a8e565b5b600061204885828601611ddb565b925050602061205985828601611e8b565b9150509250929050565b60006020828403121561207957612078612a8e565b5b600061208784828501611e05565b91505092915050565b6000602082840312156120a6576120a5612a8e565b5b60006120b484828501611e1a565b91505092915050565b6000602082840312156120d3576120d2612a8e565b5b600082013567ffffffffffffffff8111156120f1576120f0612a89565b5b6120fd84828501611e5d565b91505092915050565b60006020828403121561211c5761211b612a8e565b5b600061212a84828501611e8b565b91505092915050565b61213c81612890565b82525050565b61214b816128a2565b82525050565b600061215c826127ce565b61216681856127e4565b9350612176818560208601612913565b61217f81612a93565b840191505092915050565b6000612195826127d9565b61219f81856127f5565b93506121af818560208601612913565b6121b881612a93565b840191505092915050565b60006121d06032836127f5565b91506121db82612aa4565b604082019050919050565b60006121f36026836127f5565b91506121fe82612af3565b604082019050919050565b6000612216601c836127f5565b915061222182612b42565b602082019050919050565b60006122396024836127f5565b915061224482612b6b565b604082019050919050565b600061225c6019836127f5565b915061226782612bba565b602082019050919050565b600061227f602c836127f5565b915061228a82612be3565b604082019050919050565b60006122a26038836127f5565b91506122ad82612c32565b604082019050919050565b60006122c5602a836127f5565b91506122d082612c81565b604082019050919050565b60006122e86029836127f5565b91506122f382612cd0565b604082019050919050565b600061230b6020836127f5565b915061231682612d1f565b602082019050919050565b600061232e601b836127f5565b915061233982612d48565b602082019050919050565b6000612351601e836127f5565b915061235c82612d71565b602082019050919050565b6000612374602c836127f5565b915061237f82612d9a565b604082019050919050565b60006123976020836127f5565b91506123a282612de9565b602082019050919050565b60006123ba6029836127f5565b91506123c582612e12565b604082019050919050565b60006123dd602f836127f5565b91506123e882612e61565b604082019050919050565b60006124006021836127f5565b915061240b82612eb0565b604082019050919050565b60006124236031836127f5565b915061242e82612eff565b604082019050919050565b612442816128fa565b82525050565b600060208201905061245d6000830184612133565b92915050565b60006080820190506124786000830187612133565b6124856020830186612133565b6124926040830185612439565b81810360608301526124a48184612151565b905095945050505050565b60006020820190506124c46000830184612142565b92915050565b600060208201905081810360008301526124e4818461218a565b905092915050565b60006020820190508181036000830152612505816121c3565b9050919050565b60006020820190508181036000830152612525816121e6565b9050919050565b6000602082019050818103600083015261254581612209565b9050919050565b600060208201905081810360008301526125658161222c565b9050919050565b600060208201905081810360008301526125858161224f565b9050919050565b600060208201905081810360008301526125a581612272565b9050919050565b600060208201905081810360008301526125c581612295565b9050919050565b600060208201905081810360008301526125e5816122b8565b9050919050565b60006020820190508181036000830152612605816122db565b9050919050565b60006020820190508181036000830152612625816122fe565b9050919050565b6000602082019050818103600083015261264581612321565b9050919050565b6000602082019050818103600083015261266581612344565b9050919050565b6000602082019050818103600083015261268581612367565b9050919050565b600060208201905081810360008301526126a58161238a565b9050919050565b600060208201905081810360008301526126c5816123ad565b9050919050565b600060208201905081810360008301526126e5816123d0565b9050919050565b60006020820190508181036000830152612705816123f3565b9050919050565b6000602082019050818103600083015261272581612416565b9050919050565b60006020820190506127416000830184612439565b92915050565b6000612751612762565b905061275d8282612978565b919050565b6000604051905090565b600067ffffffffffffffff82111561278757612786612a50565b5b61279082612a93565b9050602081019050919050565b600067ffffffffffffffff8211156127b8576127b7612a50565b5b6127c182612a93565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000612811826128fa565b915061281c836128fa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612851576128506129f2565b5b828201905092915050565b6000612867826128fa565b9150612872836128fa565b925082821015612885576128846129f2565b5b828203905092915050565b600061289b826128da565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612931578082015181840152602081019050612916565b83811115612940576000848401525b50505050565b6000600282049050600182168061295e57607f821691505b6020821081141561297257612971612a21565b5b50919050565b61298182612a93565b810181811067ffffffffffffffff821117156129a05761299f612a50565b5b80604052505050565b60006129b4826128fa565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156129e7576129e66129f2565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f43616e74206d696e74206d6f7265207468616e206d696e744d61780000000000600082015250565b7f52616e206f7574206f66204e46547320666f722073616c652120537279210000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b612f5781612890565b8114612f6257600080fd5b50565b612f6e816128a2565b8114612f7957600080fd5b50565b612f85816128ae565b8114612f9057600080fd5b50565b612f9c816128fa565b8114612fa757600080fd5b5056fea2646970667358221220c62caef926c561d54bcfc56c793ec8713b5db7288f582eef794baa7d18e7040f64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101665760003560e01c806370a08231116100d1578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd146104ea578063d082e38114610527578063e985e9c514610552578063f2fde38b1461058f57610166565b8063a22cb4651461046d578063b88d4fde14610496578063c31c0b62146104bf57610166565b806370a082311461038e578063714c5398146103cb578063715018a6146103f6578063853828b61461040d5780638da5cb5b1461041757806395d89b411461044257610166565b806323b872dd1161012357806323b872dd146102805780633eaaf86b146102a957806342842e0e146102d457806355f804b3146102fd5780636352211e1461032657806364aa0c791461036357610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b314610210578063178a8569146102395780631a08133014610255575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612063565b6105b8565b60405161019f91906124af565b60405180910390f35b3480156101b457600080fd5b506101bd61069a565b6040516101ca91906124ca565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f59190612106565b61072c565b6040516102079190612448565b60405180910390f35b34801561021c57600080fd5b5061023760048036038101906102329190612023565b6107b1565b005b610253600480360381019061024e9190612106565b6108c9565b005b34801561026157600080fd5b5061026a61096b565b60405161027791906124af565b60405180910390f35b34801561028c57600080fd5b506102a760048036038101906102a29190611f0d565b610974565b005b3480156102b557600080fd5b506102be6109d4565b6040516102cb919061272c565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190611f0d565b6109da565b005b34801561030957600080fd5b50610324600480360381019061031f91906120bd565b6109fa565b005b34801561033257600080fd5b5061034d60048036038101906103489190612106565b610a90565b60405161035a9190612448565b60405180910390f35b34801561036f57600080fd5b50610378610b42565b604051610385919061272c565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b09190611ea0565b610b58565b6040516103c2919061272c565b60405180910390f35b3480156103d757600080fd5b506103e0610c10565b6040516103ed91906124ca565b60405180910390f35b34801561040257600080fd5b5061040b610ca2565b005b610415610d2a565b005b34801561042357600080fd5b5061042c610de6565b6040516104399190612448565b60405180910390f35b34801561044e57600080fd5b50610457610e10565b60405161046491906124ca565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f9190611fe3565b610ea2565b005b3480156104a257600080fd5b506104bd60048036038101906104b89190611f60565b611023565b005b3480156104cb57600080fd5b506104d4611085565b6040516104e191906124af565b60405180910390f35b3480156104f657600080fd5b50610511600480360381019061050c9190612106565b611093565b60405161051e91906124ca565b60405180910390f35b34801561053357600080fd5b5061053c6110ec565b604051610549919061272c565b60405180910390f35b34801561055e57600080fd5b5061057960048036038101906105749190611ecd565b6110f2565b60405161058691906124af565b60405180910390f35b34801561059b57600080fd5b506105b660048036038101906105b19190611ea0565b611186565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061068357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061069357506106928261127e565b5b9050919050565b6060600080546106a990612946565b80601f01602080910402602001604051908101604052809291908181526020018280546106d590612946565b80156107225780601f106106f757610100808354040283529160200191610722565b820191906000526020600020905b81548152906001019060200180831161070557829003601f168201915b5050505050905090565b6000610737826112e8565b610776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076d9061266c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107bc82610a90565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561082d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610824906126ec565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661084c611354565b73ffffffffffffffffffffffffffffffffffffffff16148061087b575061087a81610875611354565b6110f2565b5b6108ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b1906125ac565b60405180910390fd5b6108c4838361135c565b505050565b600854811061090d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109049061262c565b60405180910390fd5b6009546007548261091e9190612806565b111561095f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109569061264c565b60405180910390fd5b61096881611415565b50565b60006001905090565b61098561097f611354565b8261143f565b6109c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bb9061270c565b60405180910390fd5b6109cf83838361151d565b505050565b60095481565b6109f583838360405180602001604052806000815250611023565b505050565b610a02611354565b73ffffffffffffffffffffffffffffffffffffffff16610a20610de6565b73ffffffffffffffffffffffffffffffffffffffff1614610a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6d9061268c565b60405180910390fd5b80600a9080519060200190610a8c929190611cb4565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b30906125ec565b60405180910390fd5b80915050919050565b60006001600854610b53919061285c565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc0906125cc565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600a8054610c1f90612946565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4b90612946565b8015610c985780601f10610c6d57610100808354040283529160200191610c98565b820191906000526020600020905b815481529060010190602001808311610c7b57829003601f168201915b5050505050905090565b610caa611354565b73ffffffffffffffffffffffffffffffffffffffff16610cc8610de6565b73ffffffffffffffffffffffffffffffffffffffff1614610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d159061268c565b60405180910390fd5b610d286000611779565b565b610d32611354565b73ffffffffffffffffffffffffffffffffffffffff16610d50610de6565b73ffffffffffffffffffffffffffffffffffffffff1614610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d9061268c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610de457600080fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610e1f90612946565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4b90612946565b8015610e985780601f10610e6d57610100808354040283529160200191610e98565b820191906000526020600020905b815481529060010190602001808311610e7b57829003601f168201915b5050505050905090565b610eaa611354565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f9061256c565b60405180910390fd5b8060056000610f25611354565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610fd2611354565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161101791906124af565b60405180910390a35050565b61103461102e611354565b8361143f565b611073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106a9061270c565b60405180910390fd5b61107f8484848461183f565b50505050565b600060095460075414905090565b606061109e826112e8565b6110dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d4906126cc565b60405180910390fd5b6110e5610c10565b9050919050565b60075481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61118e611354565b73ffffffffffffffffffffffffffffffffffffffff166111ac610de6565b73ffffffffffffffffffffffffffffffffffffffff1614611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f99061268c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611272576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112699061250c565b60405180910390fd5b61127b81611779565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166113cf83610a90565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60005b8181101561143b5761142861189b565b8080611433906129a9565b915050611418565b5050565b600061144a826112e8565b611489576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114809061258c565b60405180910390fd5b600061149483610a90565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061150357508373ffffffffffffffffffffffffffffffffffffffff166114eb8461072c565b73ffffffffffffffffffffffffffffffffffffffff16145b80611514575061151381856110f2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661153d82610a90565b73ffffffffffffffffffffffffffffffffffffffff1614611593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158a906126ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa9061254c565b60405180910390fd5b61160e8383836118be565b61161960008261135c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611669919061285c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116c09190612806565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61184a84848461151d565b611856848484846118c3565b611895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188c906124ec565b60405180910390fd5b50505050565b6118a733600754611a5a565b60016007546118b69190612806565b600781905550565b505050565b60006118e48473ffffffffffffffffffffffffffffffffffffffff16611a78565b15611a4d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261190d611354565b8786866040518563ffffffff1660e01b815260040161192f9493929190612463565b602060405180830381600087803b15801561194957600080fd5b505af192505050801561197a57506040513d601f19601f820116820180604052508101906119779190612090565b60015b6119fd573d80600081146119aa576040519150601f19603f3d011682016040523d82523d6000602084013e6119af565b606091505b506000815114156119f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ec906124ec565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611a52565b600190505b949350505050565b611a74828260405180602001604052806000815250611a8b565b5050565b600080823b905060008111915050919050565b611a958383611ae6565b611aa260008484846118c3565b611ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad8906124ec565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4d9061260c565b60405180910390fd5b611b5f816112e8565b15611b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b969061252c565b60405180910390fd5b611bab600083836118be565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bfb9190612806565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054611cc090612946565b90600052602060002090601f016020900481019282611ce25760008555611d29565b82601f10611cfb57805160ff1916838001178555611d29565b82800160010185558215611d29579182015b82811115611d28578251825591602001919060010190611d0d565b5b509050611d369190611d3a565b5090565b5b80821115611d53576000816000905550600101611d3b565b5090565b6000611d6a611d658461276c565b612747565b905082815260208101848484011115611d8657611d85612a84565b5b611d91848285612904565b509392505050565b6000611dac611da78461279d565b612747565b905082815260208101848484011115611dc857611dc7612a84565b5b611dd3848285612904565b509392505050565b600081359050611dea81612f4e565b92915050565b600081359050611dff81612f65565b92915050565b600081359050611e1481612f7c565b92915050565b600081519050611e2981612f7c565b92915050565b600082601f830112611e4457611e43612a7f565b5b8135611e54848260208601611d57565b91505092915050565b600082601f830112611e7257611e71612a7f565b5b8135611e82848260208601611d99565b91505092915050565b600081359050611e9a81612f93565b92915050565b600060208284031215611eb657611eb5612a8e565b5b6000611ec484828501611ddb565b91505092915050565b60008060408385031215611ee457611ee3612a8e565b5b6000611ef285828601611ddb565b9250506020611f0385828601611ddb565b9150509250929050565b600080600060608486031215611f2657611f25612a8e565b5b6000611f3486828701611ddb565b9350506020611f4586828701611ddb565b9250506040611f5686828701611e8b565b9150509250925092565b60008060008060808587031215611f7a57611f79612a8e565b5b6000611f8887828801611ddb565b9450506020611f9987828801611ddb565b9350506040611faa87828801611e8b565b925050606085013567ffffffffffffffff811115611fcb57611fca612a89565b5b611fd787828801611e2f565b91505092959194509250565b60008060408385031215611ffa57611ff9612a8e565b5b600061200885828601611ddb565b925050602061201985828601611df0565b9150509250929050565b6000806040838503121561203a57612039612a8e565b5b600061204885828601611ddb565b925050602061205985828601611e8b565b9150509250929050565b60006020828403121561207957612078612a8e565b5b600061208784828501611e05565b91505092915050565b6000602082840312156120a6576120a5612a8e565b5b60006120b484828501611e1a565b91505092915050565b6000602082840312156120d3576120d2612a8e565b5b600082013567ffffffffffffffff8111156120f1576120f0612a89565b5b6120fd84828501611e5d565b91505092915050565b60006020828403121561211c5761211b612a8e565b5b600061212a84828501611e8b565b91505092915050565b61213c81612890565b82525050565b61214b816128a2565b82525050565b600061215c826127ce565b61216681856127e4565b9350612176818560208601612913565b61217f81612a93565b840191505092915050565b6000612195826127d9565b61219f81856127f5565b93506121af818560208601612913565b6121b881612a93565b840191505092915050565b60006121d06032836127f5565b91506121db82612aa4565b604082019050919050565b60006121f36026836127f5565b91506121fe82612af3565b604082019050919050565b6000612216601c836127f5565b915061222182612b42565b602082019050919050565b60006122396024836127f5565b915061224482612b6b565b604082019050919050565b600061225c6019836127f5565b915061226782612bba565b602082019050919050565b600061227f602c836127f5565b915061228a82612be3565b604082019050919050565b60006122a26038836127f5565b91506122ad82612c32565b604082019050919050565b60006122c5602a836127f5565b91506122d082612c81565b604082019050919050565b60006122e86029836127f5565b91506122f382612cd0565b604082019050919050565b600061230b6020836127f5565b915061231682612d1f565b602082019050919050565b600061232e601b836127f5565b915061233982612d48565b602082019050919050565b6000612351601e836127f5565b915061235c82612d71565b602082019050919050565b6000612374602c836127f5565b915061237f82612d9a565b604082019050919050565b60006123976020836127f5565b91506123a282612de9565b602082019050919050565b60006123ba6029836127f5565b91506123c582612e12565b604082019050919050565b60006123dd602f836127f5565b91506123e882612e61565b604082019050919050565b60006124006021836127f5565b915061240b82612eb0565b604082019050919050565b60006124236031836127f5565b915061242e82612eff565b604082019050919050565b612442816128fa565b82525050565b600060208201905061245d6000830184612133565b92915050565b60006080820190506124786000830187612133565b6124856020830186612133565b6124926040830185612439565b81810360608301526124a48184612151565b905095945050505050565b60006020820190506124c46000830184612142565b92915050565b600060208201905081810360008301526124e4818461218a565b905092915050565b60006020820190508181036000830152612505816121c3565b9050919050565b60006020820190508181036000830152612525816121e6565b9050919050565b6000602082019050818103600083015261254581612209565b9050919050565b600060208201905081810360008301526125658161222c565b9050919050565b600060208201905081810360008301526125858161224f565b9050919050565b600060208201905081810360008301526125a581612272565b9050919050565b600060208201905081810360008301526125c581612295565b9050919050565b600060208201905081810360008301526125e5816122b8565b9050919050565b60006020820190508181036000830152612605816122db565b9050919050565b60006020820190508181036000830152612625816122fe565b9050919050565b6000602082019050818103600083015261264581612321565b9050919050565b6000602082019050818103600083015261266581612344565b9050919050565b6000602082019050818103600083015261268581612367565b9050919050565b600060208201905081810360008301526126a58161238a565b9050919050565b600060208201905081810360008301526126c5816123ad565b9050919050565b600060208201905081810360008301526126e5816123d0565b9050919050565b60006020820190508181036000830152612705816123f3565b9050919050565b6000602082019050818103600083015261272581612416565b9050919050565b60006020820190506127416000830184612439565b92915050565b6000612751612762565b905061275d8282612978565b919050565b6000604051905090565b600067ffffffffffffffff82111561278757612786612a50565b5b61279082612a93565b9050602081019050919050565b600067ffffffffffffffff8211156127b8576127b7612a50565b5b6127c182612a93565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000612811826128fa565b915061281c836128fa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612851576128506129f2565b5b828201905092915050565b6000612867826128fa565b9150612872836128fa565b925082821015612885576128846129f2565b5b828203905092915050565b600061289b826128da565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612931578082015181840152602081019050612916565b83811115612940576000848401525b50505050565b6000600282049050600182168061295e57607f821691505b6020821081141561297257612971612a21565b5b50919050565b61298182612a93565b810181811067ffffffffffffffff821117156129a05761299f612a50565b5b80604052505050565b60006129b4826128fa565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156129e7576129e66129f2565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f43616e74206d696e74206d6f7265207468616e206d696e744d61780000000000600082015250565b7f52616e206f7574206f66204e46547320666f722073616c652120537279210000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b612f5781612890565b8114612f6257600080fd5b50565b612f6e816128a2565b8114612f7957600080fd5b50565b612f85816128ae565b8114612f9057600080fd5b50565b612f9c816128fa565b8114612fa757600080fd5b5056fea2646970667358221220c62caef926c561d54bcfc56c793ec8713b5db7288f582eef794baa7d18e7040f64736f6c63430008070033

Deployed Bytecode Sourcemap

35155:2017:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22923:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23868:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25427:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24950:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35840:266;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36628:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26317:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35334:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26727:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36834:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23562:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36424:196;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23292:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36944:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4558:94;;;;;;;;;;;;;:::i;:::-;;37046:123;;;:::i;:::-;;3907:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24037:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25720:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26983:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36715:107;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35617:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35199:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26086:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4807:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22923:305;23025:4;23077:25;23062:40;;;:11;:40;;;;:105;;;;23134:33;23119:48;;;:11;:48;;;;23062:105;:158;;;;23184:36;23208:11;23184:23;:36::i;:::-;23062:158;23042:178;;22923:305;;;:::o;23868:100::-;23922:13;23955:5;23948:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23868:100;:::o;25427:221::-;25503:7;25531:16;25539:7;25531;:16::i;:::-;25523:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25616:15;:24;25632:7;25616:24;;;;;;;;;;;;;;;;;;;;;25609:31;;25427:221;;;:::o;24950:411::-;25031:13;25047:23;25062:7;25047:14;:23::i;:::-;25031:39;;25095:5;25089:11;;:2;:11;;;;25081:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;25189:5;25173:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;25198:37;25215:5;25222:12;:10;:12::i;:::-;25198:16;:37::i;:::-;25173:62;25151:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;25332:21;25341:2;25345:7;25332:8;:21::i;:::-;25020:341;24950:411;;:::o;35840:266::-;35925:9;;35916:6;:18;35908:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;36012:12;;35995;;35986:6;:21;;;;:::i;:::-;35985:39;;35977:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;36072:26;36091:6;36072:18;:26::i;:::-;35840:266;:::o;36628:79::-;36671:4;36695;36688:11;;36628:79;:::o;26317:339::-;26512:41;26531:12;:10;:12::i;:::-;26545:7;26512:18;:41::i;:::-;26504:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;26620:28;26630:4;26636:2;26640:7;26620:9;:28::i;:::-;26317:339;;;:::o;35334:34::-;;;;:::o;26727:185::-;26865:39;26882:4;26888:2;26892:7;26865:39;;;;;;;;;;;;:16;:39::i;:::-;26727:185;;;:::o;36834:102::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36921:7:::1;36905:13;:23;;;;;;;;;;;;:::i;:::-;;36834:102:::0;:::o;23562:239::-;23634:7;23654:13;23670:7;:16;23678:7;23670:16;;;;;;;;;;;;;;;;;;;;;23654:32;;23722:1;23705:19;;:5;:19;;;;23697:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23788:5;23781:12;;;23562:239;;;:::o;36424:196::-;36479:4;36515:1;36503:9;;:13;;;;:::i;:::-;36496:20;;36424:196;:::o;23292:208::-;23364:7;23409:1;23392:19;;:5;:19;;;;23384:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;23476:9;:16;23486:5;23476:16;;;;;;;;;;;;;;;;23469:23;;23292:208;;;:::o;36944:96::-;36987:13;37019;37012:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36944:96;:::o;4558:94::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4623:21:::1;4641:1;4623:9;:21::i;:::-;4558:94::o:0;37046:123::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37121:10:::1;37113:24;;:47;37138:21;37113:47;;;;;;;;;;;;;;;;;;;;;;;37105:56;;;::::0;::::1;;37046:123::o:0;3907:87::-;3953:7;3980:6;;;;;;;;;;;3973:13;;3907:87;:::o;24037:104::-;24093:13;24126:7;24119:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24037:104;:::o;25720:295::-;25835:12;:10;:12::i;:::-;25823:24;;:8;:24;;;;25815:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;25935:8;25890:18;:32;25909:12;:10;:12::i;:::-;25890:32;;;;;;;;;;;;;;;:42;25923:8;25890:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;25988:8;25959:48;;25974:12;:10;:12::i;:::-;25959:48;;;25998:8;25959:48;;;;;;:::i;:::-;;;;;;;;25720:295;;:::o;26983:328::-;27158:41;27177:12;:10;:12::i;:::-;27191:7;27158:18;:41::i;:::-;27150:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27264:39;27278:4;27284:2;27288:7;27297:5;27264:13;:39::i;:::-;26983:328;;;;:::o;36715:107::-;36762:4;36802:12;;36786;;:28;36779:35;;36715:107;:::o;35617:217::-;35690:13;35724:16;35732:7;35724;:16::i;:::-;35716:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;35814:12;:10;:12::i;:::-;35807:19;;35617:217;;;:::o;35199:27::-;;;;:::o;26086:164::-;26183:4;26207:18;:25;26226:5;26207:25;;;;;;;;;;;;;;;:35;26233:8;26207:35;;;;;;;;;;;;;;;;;;;;;;;;;26200:42;;26086:164;;;;:::o;4807:192::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4916:1:::1;4896:22;;:8;:22;;;;4888:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4972:19;4982:8;4972:9;:19::i;:::-;4807:192:::0;:::o;15893:157::-;15978:4;16017:25;16002:40;;;:11;:40;;;;15995:47;;15893:157;;;:::o;28821:127::-;28886:4;28938:1;28910:30;;:7;:16;28918:7;28910:16;;;;;;;;;;;;;;;;;;;;;:30;;;;28903:37;;28821:127;;;:::o;2695:98::-;2748:7;2775:10;2768:17;;2695:98;:::o;32803:174::-;32905:2;32878:15;:24;32894:7;32878:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;32961:7;32957:2;32923:46;;32932:23;32947:7;32932:14;:23::i;:::-;32923:46;;;;;;;;;;;;32803:174;;:::o;36114:149::-;36181:6;36177:79;36197:6;36193:1;:10;36177:79;;;36225:19;:17;:19::i;:::-;36205:3;;;;;:::i;:::-;;;;36177:79;;;;36114:149;:::o;29115:348::-;29208:4;29233:16;29241:7;29233;:16::i;:::-;29225:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29309:13;29325:23;29340:7;29325:14;:23::i;:::-;29309:39;;29378:5;29367:16;;:7;:16;;;:51;;;;29411:7;29387:31;;:20;29399:7;29387:11;:20::i;:::-;:31;;;29367:51;:87;;;;29422:32;29439:5;29446:7;29422:16;:32::i;:::-;29367:87;29359:96;;;29115:348;;;;:::o;32107:578::-;32266:4;32239:31;;:23;32254:7;32239:14;:23::i;:::-;:31;;;32231:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;32349:1;32335:16;;:2;:16;;;;32327:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;32405:39;32426:4;32432:2;32436:7;32405:20;:39::i;:::-;32509:29;32526:1;32530:7;32509:8;:29::i;:::-;32570:1;32551:9;:15;32561:4;32551:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;32599:1;32582:9;:13;32592:2;32582:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32630:2;32611:7;:16;32619:7;32611:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32669:7;32665:2;32650:27;;32659:4;32650:27;;;;;;;;;;;;32107:578;;;:::o;5007:173::-;5063:16;5082:6;;;;;;;;;;;5063:25;;5108:8;5099:6;;:17;;;;;;;;;;;;;;;;;;5163:8;5132:40;;5153:8;5132:40;;;;;;;;;;;;5052:128;5007:173;:::o;28193:315::-;28350:28;28360:4;28366:2;28370:7;28350:9;:28::i;:::-;28397:48;28420:4;28426:2;28430:7;28439:5;28397:22;:48::i;:::-;28389:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;28193:315;;;;:::o;36271:141::-;36323:35;36333:10;36345:12;;36323:9;:35::i;:::-;36403:1;36388:12;;:16;;;;:::i;:::-;36373:12;:31;;;;36271:141::o;34913:126::-;;;;:::o;33542:799::-;33697:4;33718:15;:2;:13;;;:15::i;:::-;33714:620;;;33770:2;33754:36;;;33791:12;:10;:12::i;:::-;33805:4;33811:7;33820:5;33754:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33750:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34013:1;33996:6;:13;:18;33992:272;;;34039:60;;;;;;;;;;:::i;:::-;;;;;;;;33992:272;34214:6;34208:13;34199:6;34195:2;34191:15;34184:38;33750:529;33887:41;;;33877:51;;;:6;:51;;;;33870:58;;;;;33714:620;34318:4;34311:11;;33542:799;;;;;;;:::o;29805:110::-;29881:26;29891:2;29895:7;29881:26;;;;;;;;;;;;:9;:26::i;:::-;29805:110;;:::o;5953:387::-;6013:4;6221:12;6288:7;6276:20;6268:28;;6331:1;6324:4;:8;6317:15;;;5953:387;;;:::o;30142:321::-;30272:18;30278:2;30282:7;30272:5;:18::i;:::-;30323:54;30354:1;30358:2;30362:7;30371:5;30323:22;:54::i;:::-;30301:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;30142:321;;;:::o;30799:382::-;30893:1;30879:16;;:2;:16;;;;30871:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;30952:16;30960:7;30952;:16::i;:::-;30951:17;30943:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;31014:45;31043:1;31047:2;31051:7;31014:20;:45::i;:::-;31089:1;31072:9;:13;31082:2;31072:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31120:2;31101:7;:16;31109:7;31101:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31165:7;31161:2;31140:33;;31157:1;31140:33;;;;;;;;;;;;30799:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:366::-;8275:3;8296:67;8360:2;8355:3;8296:67;:::i;:::-;8289:74;;8372:93;8461:3;8372:93;:::i;:::-;8490:2;8485:3;8481:12;8474:19;;8133:366;;;:::o;8505:::-;8647:3;8668:67;8732:2;8727:3;8668:67;:::i;:::-;8661:74;;8744:93;8833:3;8744:93;:::i;:::-;8862:2;8857:3;8853:12;8846:19;;8505:366;;;:::o;8877:::-;9019:3;9040:67;9104:2;9099:3;9040:67;:::i;:::-;9033:74;;9116:93;9205:3;9116:93;:::i;:::-;9234:2;9229:3;9225:12;9218:19;;8877:366;;;:::o;9249:::-;9391:3;9412:67;9476:2;9471:3;9412:67;:::i;:::-;9405:74;;9488:93;9577:3;9488:93;:::i;:::-;9606:2;9601:3;9597:12;9590:19;;9249:366;;;:::o;9621:::-;9763:3;9784:67;9848:2;9843:3;9784:67;:::i;:::-;9777:74;;9860:93;9949:3;9860:93;:::i;:::-;9978:2;9973:3;9969:12;9962:19;;9621:366;;;:::o;9993:::-;10135:3;10156:67;10220:2;10215:3;10156:67;:::i;:::-;10149:74;;10232:93;10321:3;10232:93;:::i;:::-;10350:2;10345:3;10341:12;10334:19;;9993:366;;;:::o;10365:::-;10507:3;10528:67;10592:2;10587:3;10528:67;:::i;:::-;10521:74;;10604:93;10693:3;10604:93;:::i;:::-;10722:2;10717:3;10713:12;10706:19;;10365:366;;;:::o;10737:::-;10879:3;10900:67;10964:2;10959:3;10900:67;:::i;:::-;10893:74;;10976:93;11065:3;10976:93;:::i;:::-;11094:2;11089:3;11085:12;11078:19;;10737:366;;;:::o;11109:::-;11251:3;11272:67;11336:2;11331:3;11272:67;:::i;:::-;11265:74;;11348:93;11437:3;11348:93;:::i;:::-;11466:2;11461:3;11457:12;11450:19;;11109:366;;;:::o;11481:::-;11623:3;11644:67;11708:2;11703:3;11644:67;:::i;:::-;11637:74;;11720:93;11809:3;11720:93;:::i;:::-;11838:2;11833:3;11829:12;11822:19;;11481:366;;;:::o;11853:::-;11995:3;12016:67;12080:2;12075:3;12016:67;:::i;:::-;12009:74;;12092:93;12181:3;12092:93;:::i;:::-;12210:2;12205:3;12201:12;12194:19;;11853:366;;;:::o;12225:::-;12367:3;12388:67;12452:2;12447:3;12388:67;:::i;:::-;12381:74;;12464:93;12553:3;12464:93;:::i;:::-;12582:2;12577:3;12573:12;12566:19;;12225:366;;;:::o;12597:::-;12739:3;12760:67;12824:2;12819:3;12760:67;:::i;:::-;12753:74;;12836:93;12925:3;12836:93;:::i;:::-;12954:2;12949:3;12945:12;12938:19;;12597:366;;;:::o;12969:::-;13111:3;13132:67;13196:2;13191:3;13132:67;:::i;:::-;13125:74;;13208:93;13297:3;13208:93;:::i;:::-;13326:2;13321:3;13317:12;13310:19;;12969:366;;;:::o;13341:::-;13483:3;13504:67;13568:2;13563:3;13504:67;:::i;:::-;13497:74;;13580:93;13669:3;13580:93;:::i;:::-;13698:2;13693:3;13689:12;13682:19;;13341:366;;;:::o;13713:::-;13855:3;13876:67;13940:2;13935:3;13876:67;:::i;:::-;13869:74;;13952:93;14041:3;13952:93;:::i;:::-;14070:2;14065:3;14061:12;14054:19;;13713:366;;;:::o;14085:::-;14227:3;14248:67;14312:2;14307:3;14248:67;:::i;:::-;14241:74;;14324:93;14413:3;14324:93;:::i;:::-;14442:2;14437:3;14433:12;14426:19;;14085:366;;;:::o;14457:::-;14599:3;14620:67;14684:2;14679:3;14620:67;:::i;:::-;14613:74;;14696:93;14785:3;14696:93;:::i;:::-;14814:2;14809:3;14805:12;14798:19;;14457:366;;;:::o;14829:118::-;14916:24;14934:5;14916:24;:::i;:::-;14911:3;14904:37;14829:118;;:::o;14953:222::-;15046:4;15084:2;15073:9;15069:18;15061:26;;15097:71;15165:1;15154:9;15150:17;15141:6;15097:71;:::i;:::-;14953:222;;;;:::o;15181:640::-;15376:4;15414:3;15403:9;15399:19;15391:27;;15428:71;15496:1;15485:9;15481:17;15472:6;15428:71;:::i;:::-;15509:72;15577:2;15566:9;15562:18;15553:6;15509:72;:::i;:::-;15591;15659:2;15648:9;15644:18;15635:6;15591:72;:::i;:::-;15710:9;15704:4;15700:20;15695:2;15684:9;15680:18;15673:48;15738:76;15809:4;15800:6;15738:76;:::i;:::-;15730:84;;15181:640;;;;;;;:::o;15827:210::-;15914:4;15952:2;15941:9;15937:18;15929:26;;15965:65;16027:1;16016:9;16012:17;16003:6;15965:65;:::i;:::-;15827:210;;;;:::o;16043:313::-;16156:4;16194:2;16183:9;16179:18;16171:26;;16243:9;16237:4;16233:20;16229:1;16218:9;16214:17;16207:47;16271:78;16344:4;16335:6;16271:78;:::i;:::-;16263:86;;16043:313;;;;:::o;16362:419::-;16528:4;16566:2;16555:9;16551:18;16543:26;;16615:9;16609:4;16605:20;16601:1;16590:9;16586:17;16579:47;16643:131;16769:4;16643:131;:::i;:::-;16635:139;;16362:419;;;:::o;16787:::-;16953:4;16991:2;16980:9;16976:18;16968:26;;17040:9;17034:4;17030:20;17026:1;17015:9;17011:17;17004:47;17068:131;17194:4;17068:131;:::i;:::-;17060:139;;16787:419;;;:::o;17212:::-;17378:4;17416:2;17405:9;17401:18;17393:26;;17465:9;17459:4;17455:20;17451:1;17440:9;17436:17;17429:47;17493:131;17619:4;17493:131;:::i;:::-;17485:139;;17212:419;;;:::o;17637:::-;17803:4;17841:2;17830:9;17826:18;17818:26;;17890:9;17884:4;17880:20;17876:1;17865:9;17861:17;17854:47;17918:131;18044:4;17918:131;:::i;:::-;17910:139;;17637:419;;;:::o;18062:::-;18228:4;18266:2;18255:9;18251:18;18243:26;;18315:9;18309:4;18305:20;18301:1;18290:9;18286:17;18279:47;18343:131;18469:4;18343:131;:::i;:::-;18335:139;;18062:419;;;:::o;18487:::-;18653:4;18691:2;18680:9;18676:18;18668:26;;18740:9;18734:4;18730:20;18726:1;18715:9;18711:17;18704:47;18768:131;18894:4;18768:131;:::i;:::-;18760:139;;18487:419;;;:::o;18912:::-;19078:4;19116:2;19105:9;19101:18;19093:26;;19165:9;19159:4;19155:20;19151:1;19140:9;19136:17;19129:47;19193:131;19319:4;19193:131;:::i;:::-;19185:139;;18912:419;;;:::o;19337:::-;19503:4;19541:2;19530:9;19526:18;19518:26;;19590:9;19584:4;19580:20;19576:1;19565:9;19561:17;19554:47;19618:131;19744:4;19618:131;:::i;:::-;19610:139;;19337:419;;;:::o;19762:::-;19928:4;19966:2;19955:9;19951:18;19943:26;;20015:9;20009:4;20005:20;20001:1;19990:9;19986:17;19979:47;20043:131;20169:4;20043:131;:::i;:::-;20035:139;;19762:419;;;:::o;20187:::-;20353:4;20391:2;20380:9;20376:18;20368:26;;20440:9;20434:4;20430:20;20426:1;20415:9;20411:17;20404:47;20468:131;20594:4;20468:131;:::i;:::-;20460:139;;20187:419;;;:::o;20612:::-;20778:4;20816:2;20805:9;20801:18;20793:26;;20865:9;20859:4;20855:20;20851:1;20840:9;20836:17;20829:47;20893:131;21019:4;20893:131;:::i;:::-;20885:139;;20612:419;;;:::o;21037:::-;21203:4;21241:2;21230:9;21226:18;21218:26;;21290:9;21284:4;21280:20;21276:1;21265:9;21261:17;21254:47;21318:131;21444:4;21318:131;:::i;:::-;21310:139;;21037:419;;;:::o;21462:::-;21628:4;21666:2;21655:9;21651:18;21643:26;;21715:9;21709:4;21705:20;21701:1;21690:9;21686:17;21679:47;21743:131;21869:4;21743:131;:::i;:::-;21735:139;;21462:419;;;:::o;21887:::-;22053:4;22091:2;22080:9;22076:18;22068:26;;22140:9;22134:4;22130:20;22126:1;22115:9;22111:17;22104:47;22168:131;22294:4;22168:131;:::i;:::-;22160:139;;21887:419;;;:::o;22312:::-;22478:4;22516:2;22505:9;22501:18;22493:26;;22565:9;22559:4;22555:20;22551:1;22540:9;22536:17;22529:47;22593:131;22719:4;22593:131;:::i;:::-;22585:139;;22312:419;;;:::o;22737:::-;22903:4;22941:2;22930:9;22926:18;22918:26;;22990:9;22984:4;22980:20;22976:1;22965:9;22961:17;22954:47;23018:131;23144:4;23018:131;:::i;:::-;23010:139;;22737:419;;;:::o;23162:::-;23328:4;23366:2;23355:9;23351:18;23343:26;;23415:9;23409:4;23405:20;23401:1;23390:9;23386:17;23379:47;23443:131;23569:4;23443:131;:::i;:::-;23435:139;;23162:419;;;:::o;23587:::-;23753:4;23791:2;23780:9;23776:18;23768:26;;23840:9;23834:4;23830:20;23826:1;23815:9;23811:17;23804:47;23868:131;23994:4;23868:131;:::i;:::-;23860:139;;23587:419;;;:::o;24012:222::-;24105:4;24143:2;24132:9;24128:18;24120:26;;24156:71;24224:1;24213:9;24209:17;24200:6;24156:71;:::i;:::-;24012:222;;;;:::o;24240:129::-;24274:6;24301:20;;:::i;:::-;24291:30;;24330:33;24358:4;24350:6;24330:33;:::i;:::-;24240:129;;;:::o;24375:75::-;24408:6;24441:2;24435:9;24425:19;;24375:75;:::o;24456:307::-;24517:4;24607:18;24599:6;24596:30;24593:56;;;24629:18;;:::i;:::-;24593:56;24667:29;24689:6;24667:29;:::i;:::-;24659:37;;24751:4;24745;24741:15;24733:23;;24456:307;;;:::o;24769:308::-;24831:4;24921:18;24913:6;24910:30;24907:56;;;24943:18;;:::i;:::-;24907:56;24981:29;25003:6;24981:29;:::i;:::-;24973:37;;25065:4;25059;25055:15;25047:23;;24769:308;;;:::o;25083:98::-;25134:6;25168:5;25162:12;25152:22;;25083:98;;;:::o;25187:99::-;25239:6;25273:5;25267:12;25257:22;;25187:99;;;:::o;25292:168::-;25375:11;25409:6;25404:3;25397:19;25449:4;25444:3;25440:14;25425:29;;25292:168;;;;:::o;25466:169::-;25550:11;25584:6;25579:3;25572:19;25624:4;25619:3;25615:14;25600:29;;25466:169;;;;:::o;25641:305::-;25681:3;25700:20;25718:1;25700:20;:::i;:::-;25695:25;;25734:20;25752:1;25734:20;:::i;:::-;25729:25;;25888:1;25820:66;25816:74;25813:1;25810:81;25807:107;;;25894:18;;:::i;:::-;25807:107;25938:1;25935;25931:9;25924:16;;25641:305;;;;:::o;25952:191::-;25992:4;26012:20;26030:1;26012:20;:::i;:::-;26007:25;;26046:20;26064:1;26046:20;:::i;:::-;26041:25;;26085:1;26082;26079:8;26076:34;;;26090:18;;:::i;:::-;26076:34;26135:1;26132;26128:9;26120:17;;25952:191;;;;:::o;26149:96::-;26186:7;26215:24;26233:5;26215:24;:::i;:::-;26204:35;;26149:96;;;:::o;26251:90::-;26285:7;26328:5;26321:13;26314:21;26303:32;;26251:90;;;:::o;26347:149::-;26383:7;26423:66;26416:5;26412:78;26401:89;;26347:149;;;:::o;26502:126::-;26539:7;26579:42;26572:5;26568:54;26557:65;;26502:126;;;:::o;26634:77::-;26671:7;26700:5;26689:16;;26634:77;;;:::o;26717:154::-;26801:6;26796:3;26791;26778:30;26863:1;26854:6;26849:3;26845:16;26838:27;26717:154;;;:::o;26877:307::-;26945:1;26955:113;26969:6;26966:1;26963:13;26955:113;;;27054:1;27049:3;27045:11;27039:18;27035:1;27030:3;27026:11;27019:39;26991:2;26988:1;26984:10;26979:15;;26955:113;;;27086:6;27083:1;27080:13;27077:101;;;27166:1;27157:6;27152:3;27148:16;27141:27;27077:101;26926:258;26877:307;;;:::o;27190:320::-;27234:6;27271:1;27265:4;27261:12;27251:22;;27318:1;27312:4;27308:12;27339:18;27329:81;;27395:4;27387:6;27383:17;27373:27;;27329:81;27457:2;27449:6;27446:14;27426:18;27423:38;27420:84;;;27476:18;;:::i;:::-;27420:84;27241:269;27190:320;;;:::o;27516:281::-;27599:27;27621:4;27599:27;:::i;:::-;27591:6;27587:40;27729:6;27717:10;27714:22;27693:18;27681:10;27678:34;27675:62;27672:88;;;27740:18;;:::i;:::-;27672:88;27780:10;27776:2;27769:22;27559:238;27516:281;;:::o;27803:233::-;27842:3;27865:24;27883:5;27865:24;:::i;:::-;27856:33;;27911:66;27904:5;27901:77;27898:103;;;27981:18;;:::i;:::-;27898:103;28028:1;28021:5;28017:13;28010:20;;27803:233;;;:::o;28042:180::-;28090:77;28087:1;28080:88;28187:4;28184:1;28177:15;28211:4;28208:1;28201:15;28228:180;28276:77;28273:1;28266:88;28373:4;28370:1;28363:15;28397:4;28394:1;28387:15;28414:180;28462:77;28459:1;28452:88;28559:4;28556:1;28549:15;28583:4;28580:1;28573:15;28600:117;28709:1;28706;28699:12;28723:117;28832:1;28829;28822:12;28846:117;28955:1;28952;28945:12;28969:117;29078:1;29075;29068:12;29092:102;29133:6;29184:2;29180:7;29175:2;29168:5;29164:14;29160:28;29150:38;;29092:102;;;:::o;29200:237::-;29340:34;29336:1;29328:6;29324:14;29317:58;29409:20;29404:2;29396:6;29392:15;29385:45;29200:237;:::o;29443:225::-;29583:34;29579:1;29571:6;29567:14;29560:58;29652:8;29647:2;29639:6;29635:15;29628:33;29443:225;:::o;29674:178::-;29814:30;29810:1;29802:6;29798:14;29791:54;29674:178;:::o;29858:223::-;29998:34;29994:1;29986:6;29982:14;29975:58;30067:6;30062:2;30054:6;30050:15;30043:31;29858:223;:::o;30087:175::-;30227:27;30223:1;30215:6;30211:14;30204:51;30087:175;:::o;30268:231::-;30408:34;30404:1;30396:6;30392:14;30385:58;30477:14;30472:2;30464:6;30460:15;30453:39;30268:231;:::o;30505:243::-;30645:34;30641:1;30633:6;30629:14;30622:58;30714:26;30709:2;30701:6;30697:15;30690:51;30505:243;:::o;30754:229::-;30894:34;30890:1;30882:6;30878:14;30871:58;30963:12;30958:2;30950:6;30946:15;30939:37;30754:229;:::o;30989:228::-;31129:34;31125:1;31117:6;31113:14;31106:58;31198:11;31193:2;31185:6;31181:15;31174:36;30989:228;:::o;31223:182::-;31363:34;31359:1;31351:6;31347:14;31340:58;31223:182;:::o;31411:177::-;31551:29;31547:1;31539:6;31535:14;31528:53;31411:177;:::o;31594:180::-;31734:32;31730:1;31722:6;31718:14;31711:56;31594:180;:::o;31780:231::-;31920:34;31916:1;31908:6;31904:14;31897:58;31989:14;31984:2;31976:6;31972:15;31965:39;31780:231;:::o;32017:182::-;32157:34;32153:1;32145:6;32141:14;32134:58;32017:182;:::o;32205:228::-;32345:34;32341:1;32333:6;32329:14;32322:58;32414:11;32409:2;32401:6;32397:15;32390:36;32205:228;:::o;32439:234::-;32579:34;32575:1;32567:6;32563:14;32556:58;32648:17;32643:2;32635:6;32631:15;32624:42;32439:234;:::o;32679:220::-;32819:34;32815:1;32807:6;32803:14;32796:58;32888:3;32883:2;32875:6;32871:15;32864:28;32679:220;:::o;32905:236::-;33045:34;33041:1;33033:6;33029:14;33022:58;33114:19;33109:2;33101:6;33097:15;33090:44;32905:236;:::o;33147:122::-;33220:24;33238:5;33220:24;:::i;:::-;33213:5;33210:35;33200:63;;33259:1;33256;33249:12;33200:63;33147:122;:::o;33275:116::-;33345:21;33360:5;33345:21;:::i;:::-;33338:5;33335:32;33325:60;;33381:1;33378;33371:12;33325:60;33275:116;:::o;33397:120::-;33469:23;33486:5;33469:23;:::i;:::-;33462:5;33459:34;33449:62;;33507:1;33504;33497:12;33449:62;33397:120;:::o;33523:122::-;33596:24;33614:5;33596:24;:::i;:::-;33589:5;33586:35;33576:63;;33635:1;33632;33625:12;33576:63;33523:122;:::o

Swarm Source

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