ETH Price: $3,111.73 (-2.24%)

Aircraft Insignia (INSIGNIA)
 

Overview

TokenID

78

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
AircraftInsignia

Compiler Version
v0.8.5+commit.a4f2e591

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : AircraftInsignia.sol
/**
 *Submitted for verification at Etherscan.io on 2021-10-12
*/

pragma solidity 0.8.5;

// SPDX-License-Identifier: MIT

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

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

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);
}

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);
}

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);
            }
        }
    }
}

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

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);
    }
}


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

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

interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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);
    }
}

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

abstract contract ContextMixin {
    function msgSender()
        internal
        view
        returns (address payable sender)
    {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}

contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}

contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string constant public ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256(
        bytes(
            "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
        )
    );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contracts that inherits this contract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(
        string memory name
    )
        internal
        initializer
    {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}

contract NativeMetaTransaction is EIP712Base {
    using SafeMath for uint256;
    bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256(
        bytes(
            "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
        )
    );
    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });

        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress] = nonces[userAddress].add(1);

        emit MetaTransactionExecuted(
            userAddress,
            payable(msg.sender),
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}


contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

/**
 * @title ERC721Tradable
 * ERC721Tradable - ERC721 contract that whitelists a trading address, and has minting functionality.
 */
abstract contract ERC721Tradable is ContextMixin, ERC721Enumerable, NativeMetaTransaction, Ownable {
    using SafeMath for uint256;

    address proxyRegistryAddress;
    uint256 public currentTokenId = 0;

    constructor(
        string memory _name,
        string memory _symbol,
        address _proxyRegistryAddress
    ) ERC721(_name, _symbol) {
        proxyRegistryAddress = _proxyRegistryAddress;
        _initializeEIP712(_name);
    }

    /**
     * @dev Mints a token to an address with a tokenURI.
     * @param _to address of the future owner of the token
     */
    function mintTo(address _to) public onlyOwner {
        uint256 newTokenId = _getNextTokenId();
        _mint(_to, newTokenId);
        _incrementTokenId();
    }

    /**
     * @dev calculates the next token ID based on value of currentTokenId
     * @return uint256 for the next token ID
     */
    function _getNextTokenId() internal view returns (uint256) {
        return currentTokenId.add(1);
    }

    /**
     * @dev increments the value of currentTokenId
     */
    function _incrementTokenId() internal {
        currentTokenId++;
    }

    function baseTokenURI() virtual public view returns (string memory);

    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        return string(abi.encodePacked(baseTokenURI(), Strings.toString(_tokenId)));
    }

    /**
     * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator)
        override
        virtual
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    /**
     * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea.
     */
    function _msgSender()
        internal
        override
        virtual
        view
        returns (address sender)
    {
        return ContextMixin.msgSender();
    }
}

contract AircraftInsignia is ERC721Tradable {
    string baseURI;
    uint256 public MAX_SUPPLY = 380;
    uint256 public basePrice = 19 * 1e16;
    bool public paused;
    
    event Unpause();

    constructor()
        ERC721Tradable("Aircraft Insignia", "INSIGNIA", address(0))
    {
        baseURI = "https://aircraftinsignia.io/json/";
        proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;
        paused = true;
    }

    function mint() external payable {
        require(paused == false, "Mint hasn't started");
        uint256 newTokenId = _getNextTokenId();
        require(msg.value == basePrice, "Incorrect ETH Amount");
        require(newTokenId <= MAX_SUPPLY, "Sold out");
        _incrementTokenId();
        _mint(_msgSender(), newTokenId);
        payable(owner()).transfer(msg.value);
    }

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

        return
            string(abi.encodePacked(baseTokenURI(), Strings.toString(tokenId)));
    }

    function setProxyRegistry(address proxyRegistryAddress_)
        external
        onlyOwner
    {
        proxyRegistryAddress = proxyRegistryAddress_;
    }
    
    function setPrice(uint256 basePrice_) external onlyOwner {
        basePrice = basePrice_;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function unpause() external onlyOwner {
        paused = false;
        emit Unpause();
    }
    
    function baseTokenURI() public view override returns (string memory) {
        return _baseURI();
    }

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

    function _msgSender()
        internal
        view
        virtual
        override
        returns (address sender)
    {
        return ContextMixin.msgSender();
    }

}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

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":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","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"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"inputs":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"basePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"basePrice_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"proxyRegistryAddress_","type":"address"}],"name":"setProxyRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a60006101000a81548160ff0219169083151502179055506000600f5561017c6011556702a303fe4b5300006012553480156200004357600080fd5b506040518060400160405280601181526020017f416972637261667420496e7369676e69610000000000000000000000000000008152506040518060400160405280600881526020017f494e5349474e4941000000000000000000000000000000000000000000000000815250600082828160009080519060200190620000cc929190620004d8565b508060019080519060200190620000e5929190620004d8565b50505062000108620000fc6200020560201b60201c565b6200022160201b60201c565b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200015a83620002e760201b60201c565b5050506040518060600160405280602181526020016200528760219139601090805190602001906200018e929190620004d8565b5073a5409ec958c83c3f309868babaca7c86dcb077c1600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601360006101000a81548160ff0219169083151502179055506200072d565b60006200021c6200036960201b62001b5f1760201c565b905090565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a60009054906101000a900460ff16156200033a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000331906200062e565b60405180910390fd5b6200034b816200041c60201b60201c565b6001600a60006101000a81548160ff02191690831515021790555050565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156200041557600080368080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509050600080369050905073ffffffffffffffffffffffffffffffffffffffff81830151169250505062000419565b3390505b90565b6040518060800160405280604f815260200162005238604f91398051906020012081805190602001206040518060400160405280600181526020017f3100000000000000000000000000000000000000000000000000000000000000815250805190602001203062000493620004cb60201b60201c565b60001b604051602001620004ac959493929190620005d1565b60405160208183030381529060405280519060200120600b8190555050565b6000804690508091505090565b828054620004e6906200069f565b90600052602060002090601f0160209004810192826200050a576000855562000556565b82601f106200052557805160ff191683800117855562000556565b8280016001018555821562000556579182015b828111156200055557825182559160200191906001019062000538565b5b50905062000565919062000569565b5090565b5b80821115620005845760008160009055506001016200056a565b5090565b620005938162000661565b82525050565b620005a48162000675565b82525050565b6000620005b9600e8362000650565b9150620005c68262000704565b602082019050919050565b600060a082019050620005e8600083018862000599565b620005f7602083018762000599565b62000606604083018662000599565b62000615606083018562000588565b62000624608083018462000599565b9695505050505050565b600060208201905081810360008301526200064981620005aa565b9050919050565b600082825260208201905092915050565b60006200066e826200067f565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620006b857607f821691505b60208210811415620006cf57620006ce620006d5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f616c726561647920696e69746564000000000000000000000000000000000000600082015250565b614afb806200073d6000396000f3fe6080604052600436106102035760003560e01c80634f6ccce71161011857806395d89b41116100a0578063c7876ea41161006f578063c7876ea41461073a578063c87b56dd14610765578063d547cfb7146107a2578063e985e9c5146107cd578063f2fde38b1461080a57610203565b806395d89b4114610694578063a22cb465146106bf578063adfdeef9146106e8578063b88d4fde1461071157610203565b806370a08231116100e757806370a08231146105c3578063715018a614610600578063755edd17146106175780638da5cb5b1461064057806391b7f5ed1461066b57610203565b80634f6ccce7146104f557806355f804b3146105325780635c975abb1461055b5780636352211e1461058657610203565b806318160ddd1161019b5780632f745c591161016a5780632f745c591461042257806332cb6b0c1461045f5780633408e4701461048a5780633f4ba83a146104b557806342842e0e146104cc57610203565b806318160ddd1461036657806320379ee51461039157806323b872dd146103bc5780632d0335ab146103e557610203565b8063095ea7b3116101d7578063095ea7b3146102d85780630c53c51c146103015780630f7e5970146103315780631249c58b1461035c57610203565b80629a9b7b1461020857806301ffc9a71461023357806306fdde0314610270578063081812fc1461029b575b600080fd5b34801561021457600080fd5b5061021d610833565b60405161022a9190613e8d565b60405180910390f35b34801561023f57600080fd5b5061025a60048036038101906102559190613386565b610839565b6040516102679190613a89565b60405180910390f35b34801561027c57600080fd5b506102856108b3565b6040516102929190613b6b565b60405180910390f35b3480156102a757600080fd5b506102c260048036038101906102bd9190613456565b610945565b6040516102cf91906139e4565b60405180910390f35b3480156102e457600080fd5b506102ff60048036038101906102fa9190613346565b6109ca565b005b61031b600480360381019061031691906132af565b610ae2565b6040516103289190613b49565b60405180910390f35b34801561033d57600080fd5b50610346610d54565b6040516103539190613b6b565b60405180910390f35b610364610d8d565b005b34801561037257600080fd5b5061037b610ee2565b6040516103889190613e8d565b60405180910390f35b34801561039d57600080fd5b506103a6610eef565b6040516103b39190613aa4565b60405180910390f35b3480156103c857600080fd5b506103e360048036038101906103de9190613199565b610ef9565b005b3480156103f157600080fd5b5061040c6004803603810190610407919061312c565b610f59565b6040516104199190613e8d565b60405180910390f35b34801561042e57600080fd5b5061044960048036038101906104449190613346565b610fa2565b6040516104569190613e8d565b60405180910390f35b34801561046b57600080fd5b50610474611047565b6040516104819190613e8d565b60405180910390f35b34801561049657600080fd5b5061049f61104d565b6040516104ac9190613e8d565b60405180910390f35b3480156104c157600080fd5b506104ca61105a565b005b3480156104d857600080fd5b506104f360048036038101906104ee9190613199565b61111f565b005b34801561050157600080fd5b5061051c60048036038101906105179190613456565b61113f565b6040516105299190613e8d565b60405180910390f35b34801561053e57600080fd5b506105596004803603810190610554919061340d565b6111b0565b005b34801561056757600080fd5b50610570611246565b60405161057d9190613a89565b60405180910390f35b34801561059257600080fd5b506105ad60048036038101906105a89190613456565b611259565b6040516105ba91906139e4565b60405180910390f35b3480156105cf57600080fd5b506105ea60048036038101906105e5919061312c565b61130b565b6040516105f79190613e8d565b60405180910390f35b34801561060c57600080fd5b506106156113c3565b005b34801561062357600080fd5b5061063e6004803603810190610639919061312c565b61144b565b005b34801561064c57600080fd5b506106556114e9565b60405161066291906139e4565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d9190613456565b611513565b005b3480156106a057600080fd5b506106a9611599565b6040516106b69190613b6b565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e1919061326f565b61162b565b005b3480156106f457600080fd5b5061070f600480360381019061070a919061312c565b6117ac565b005b34801561071d57600080fd5b50610738600480360381019061073391906131ec565b61186c565b005b34801561074657600080fd5b5061074f6118ce565b60405161075c9190613e8d565b60405180910390f35b34801561077157600080fd5b5061078c60048036038101906107879190613456565b6118d4565b6040516107999190613b6b565b60405180910390f35b3480156107ae57600080fd5b506107b7611956565b6040516107c49190613b6b565b60405180910390f35b3480156107d957600080fd5b506107f460048036038101906107ef9190613159565b611965565b6040516108019190613a89565b60405180910390f35b34801561081657600080fd5b50610831600480360381019061082c919061312c565b611a67565b005b600f5481565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ac57506108ab82611c10565b5b9050919050565b6060600080546108c290614129565b80601f01602080910402602001604051908101604052809291908181526020018280546108ee90614129565b801561093b5780601f106109105761010080835404028352916020019161093b565b820191906000526020600020905b81548152906001019060200180831161091e57829003601f168201915b5050505050905090565b600061095082611cf2565b61098f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098690613d6d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109d582611259565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3d90613e0d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a65611d5e565b73ffffffffffffffffffffffffffffffffffffffff161480610a945750610a9381610a8e611d5e565b611965565b5b610ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aca90613ced565b60405180910390fd5b610add8383611d6d565b505050565b606060006040518060600160405280600c60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481526020018873ffffffffffffffffffffffffffffffffffffffff168152602001878152509050610b658782878787611e26565b610ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9b90613dcd565b60405180910390fd5b610bf76001600c60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f2f90919063ffffffff16565b600c60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b873388604051610c6d939291906139ff565b60405180910390a16000803073ffffffffffffffffffffffffffffffffffffffff16888a604051602001610ca2929190613961565b604051602081830303815290604052604051610cbe919061394a565b6000604051808303816000865af19150503d8060008114610cfb576040519150601f19603f3d011682016040523d82523d6000602084013e610d00565b606091505b509150915081610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c90613c2d565b60405180910390fd5b80935050505095945050505050565b6040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b60001515601360009054906101000a900460ff16151514610de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dda90613ded565b60405180910390fd5b6000610ded611f45565b90506012543414610e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2a90613b8d565b60405180910390fd5b601154811115610e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6f90613e4d565b60405180910390fd5b610e80611f62565b610e91610e8b611d5e565b82611f7c565b610e996114e9565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610ede573d6000803e3d6000fd5b5050565b6000600880549050905090565b6000600b54905090565b610f0a610f04611d5e565b8261214a565b610f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4090613e2d565b60405180910390fd5b610f54838383612228565b505050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610fad8361130b565b8210610fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe590613bcd565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60115481565b6000804690508091505090565b611062611d5e565b73ffffffffffffffffffffffffffffffffffffffff166110806114e9565b73ffffffffffffffffffffffffffffffffffffffff16146110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90613d8d565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055507f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b61113a8383836040518060200160405280600081525061186c565b505050565b6000611149610ee2565b821061118a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118190613e6d565b60405180910390fd5b6008828154811061119e5761119d6142f0565b5b90600052602060002001549050919050565b6111b8611d5e565b73ffffffffffffffffffffffffffffffffffffffff166111d66114e9565b73ffffffffffffffffffffffffffffffffffffffff161461122c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122390613d8d565b60405180910390fd5b8060109080519060200190611242929190612f01565b5050565b601360009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f990613d2d565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561137c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137390613d0d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113cb611d5e565b73ffffffffffffffffffffffffffffffffffffffff166113e96114e9565b73ffffffffffffffffffffffffffffffffffffffff161461143f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143690613d8d565b60405180910390fd5b6114496000612484565b565b611453611d5e565b73ffffffffffffffffffffffffffffffffffffffff166114716114e9565b73ffffffffffffffffffffffffffffffffffffffff16146114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90613d8d565b60405180910390fd5b60006114d1611f45565b90506114dd8282611f7c565b6114e5611f62565b5050565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61151b611d5e565b73ffffffffffffffffffffffffffffffffffffffff166115396114e9565b73ffffffffffffffffffffffffffffffffffffffff161461158f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158690613d8d565b60405180910390fd5b8060128190555050565b6060600180546115a890614129565b80601f01602080910402602001604051908101604052809291908181526020018280546115d490614129565b80156116215780601f106115f657610100808354040283529160200191611621565b820191906000526020600020905b81548152906001019060200180831161160457829003601f168201915b5050505050905090565b611633611d5e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169890613c8d565b60405180910390fd5b80600560006116ae611d5e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661175b611d5e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117a09190613a89565b60405180910390a35050565b6117b4611d5e565b73ffffffffffffffffffffffffffffffffffffffff166117d26114e9565b73ffffffffffffffffffffffffffffffffffffffff1614611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f90613d8d565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61187d611877611d5e565b8361214a565b6118bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b390613e2d565b60405180910390fd5b6118c88484848461254a565b50505050565b60125481565b60606118df82611cf2565b61191e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191590613bad565b60405180910390fd5b611926611956565b61192f836125a6565b604051602001611940929190613989565b6040516020818303038152906040529050919050565b6060611960612707565b905090565b600080600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016119dd91906139e4565b60206040518083038186803b1580156119f557600080fd5b505afa158015611a09573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a2d91906133e0565b73ffffffffffffffffffffffffffffffffffffffff161415611a53576001915050611a61565b611a5d8484612799565b9150505b92915050565b611a6f611d5e565b73ffffffffffffffffffffffffffffffffffffffff16611a8d6114e9565b73ffffffffffffffffffffffffffffffffffffffff1614611ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ada90613d8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4a90613c0d565b60405180910390fd5b611b5c81612484565b50565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415611c0957600080368080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509050600080369050905073ffffffffffffffffffffffffffffffffffffffff818301511692505050611c0d565b3390505b90565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611cdb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ceb5750611cea8261282d565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6000611d68611b5f565b905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611de083611259565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415611e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8e90613ccd565b60405180910390fd5b6001611eaa611ea587612897565b6128ff565b83868660405160008152602001604052604051611eca9493929190613b04565b6020604051602081039080840390855afa158015611eec573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614905095945050505050565b60008183611f3d9190613f7d565b905092915050565b6000611f5d6001600f54611f2f90919063ffffffff16565b905090565b600f6000815480929190611f759061418c565b9190505550565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe390613d4d565b60405180910390fd5b611ff581611cf2565b15612035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202c90613c4d565b60405180910390fd5b61204160008383612938565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120919190613f7d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061215582611cf2565b612194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218b90613cad565b60405180910390fd5b600061219f83611259565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061220e57508373ffffffffffffffffffffffffffffffffffffffff166121f684610945565b73ffffffffffffffffffffffffffffffffffffffff16145b8061221f575061221e8185611965565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661224882611259565b73ffffffffffffffffffffffffffffffffffffffff161461229e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229590613dad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561230e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230590613c6d565b60405180910390fd5b612319838383612938565b612324600082611d6d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123749190614004565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123cb9190613f7d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612555848484612228565b61256184848484612a4c565b6125a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259790613bed565b60405180910390fd5b50505050565b606060008214156125ee576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612702565b600082905060005b600082146126205780806126099061418c565b915050600a826126199190613fd3565b91506125f6565b60008167ffffffffffffffff81111561263c5761263b61431f565b5b6040519080825280601f01601f19166020018201604052801561266e5781602001600182028036833780820191505090505b5090505b600085146126fb576001826126879190614004565b9150600a856126969190614203565b60306126a29190613f7d565b60f81b8183815181106126b8576126b76142f0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126f49190613fd3565b9450612672565b8093505050505b919050565b60606010805461271690614129565b80601f016020809104026020016040519081016040528092919081815260200182805461274290614129565b801561278f5780601f106127645761010080835404028352916020019161278f565b820191906000526020600020905b81548152906001019060200180831161277257829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000604051806080016040528060438152602001614a836043913980519060200120826000015183602001518460400151805190602001206040516020016128e29493929190613abf565b604051602081830303815290604052805190602001209050919050565b6000612909610eef565b8260405160200161291b9291906139ad565b604051602081830303815290604052805190602001209050919050565b612943838383612be3565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129865761298181612be8565b6129c5565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146129c4576129c38382612c31565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a0857612a0381612d9e565b612a47565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612a4657612a458282612e6f565b5b5b505050565b6000612a6d8473ffffffffffffffffffffffffffffffffffffffff16612eee565b15612bd6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a96611d5e565b8786866040518563ffffffff1660e01b8152600401612ab89493929190613a3d565b602060405180830381600087803b158015612ad257600080fd5b505af1925050508015612b0357506040513d601f19601f82011682018060405250810190612b0091906133b3565b60015b612b86573d8060008114612b33576040519150601f19603f3d011682016040523d82523d6000602084013e612b38565b606091505b50600081511415612b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7590613bed565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bdb565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612c3e8461130b565b612c489190614004565b9050600060076000848152602001908152602001600020549050818114612d2d576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612db29190614004565b9050600060096000848152602001908152602001600020549050600060088381548110612de257612de16142f0565b5b906000526020600020015490508060088381548110612e0457612e036142f0565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612e5357612e526142c1565b5b6001900381819060005260206000200160009055905550505050565b6000612e7a8361130b565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612f0d90614129565b90600052602060002090601f016020900481019282612f2f5760008555612f76565b82601f10612f4857805160ff1916838001178555612f76565b82800160010185558215612f76579182015b82811115612f75578251825591602001919060010190612f5a565b5b509050612f839190612f87565b5090565b5b80821115612fa0576000816000905550600101612f88565b5090565b6000612fb7612fb284613ecd565b613ea8565b905082815260208101848484011115612fd357612fd2614353565b5b612fde8482856140e7565b509392505050565b6000612ff9612ff484613efe565b613ea8565b90508281526020810184848401111561301557613014614353565b5b6130208482856140e7565b509392505050565b600081359050613037816149e1565b92915050565b60008135905061304c816149f8565b92915050565b60008135905061306181614a0f565b92915050565b60008135905061307681614a26565b92915050565b60008151905061308b81614a26565b92915050565b600082601f8301126130a6576130a561434e565b5b81356130b6848260208601612fa4565b91505092915050565b6000815190506130ce81614a3d565b92915050565b600082601f8301126130e9576130e861434e565b5b81356130f9848260208601612fe6565b91505092915050565b60008135905061311181614a54565b92915050565b60008135905061312681614a6b565b92915050565b6000602082840312156131425761314161435d565b5b600061315084828501613028565b91505092915050565b600080604083850312156131705761316f61435d565b5b600061317e85828601613028565b925050602061318f85828601613028565b9150509250929050565b6000806000606084860312156131b2576131b161435d565b5b60006131c086828701613028565b93505060206131d186828701613028565b92505060406131e286828701613102565b9150509250925092565b600080600080608085870312156132065761320561435d565b5b600061321487828801613028565b945050602061322587828801613028565b935050604061323687828801613102565b925050606085013567ffffffffffffffff81111561325757613256614358565b5b61326387828801613091565b91505092959194509250565b600080604083850312156132865761328561435d565b5b600061329485828601613028565b92505060206132a58582860161303d565b9150509250929050565b600080600080600060a086880312156132cb576132ca61435d565b5b60006132d988828901613028565b955050602086013567ffffffffffffffff8111156132fa576132f9614358565b5b61330688828901613091565b945050604061331788828901613052565b935050606061332888828901613052565b925050608061333988828901613117565b9150509295509295909350565b6000806040838503121561335d5761335c61435d565b5b600061336b85828601613028565b925050602061337c85828601613102565b9150509250929050565b60006020828403121561339c5761339b61435d565b5b60006133aa84828501613067565b91505092915050565b6000602082840312156133c9576133c861435d565b5b60006133d78482850161307c565b91505092915050565b6000602082840312156133f6576133f561435d565b5b6000613404848285016130bf565b91505092915050565b6000602082840312156134235761342261435d565b5b600082013567ffffffffffffffff81111561344157613440614358565b5b61344d848285016130d4565b91505092915050565b60006020828403121561346c5761346b61435d565b5b600061347a84828501613102565b91505092915050565b61348c8161404a565b82525050565b61349b81614038565b82525050565b6134b26134ad82614038565b6141d5565b82525050565b6134c18161405c565b82525050565b6134d081614068565b82525050565b6134e76134e282614068565b6141e7565b82525050565b60006134f882613f2f565b6135028185613f45565b93506135128185602086016140f6565b61351b81614362565b840191505092915050565b600061353182613f2f565b61353b8185613f56565b935061354b8185602086016140f6565b80840191505092915050565b600061356282613f3a565b61356c8185613f61565b935061357c8185602086016140f6565b61358581614362565b840191505092915050565b600061359b82613f3a565b6135a58185613f72565b93506135b58185602086016140f6565b80840191505092915050565b60006135ce601483613f61565b91506135d982614380565b602082019050919050565b60006135f1603283613f61565b91506135fc826143a9565b604082019050919050565b6000613614602b83613f61565b915061361f826143f8565b604082019050919050565b6000613637603283613f61565b915061364282614447565b604082019050919050565b600061365a602683613f61565b915061366582614496565b604082019050919050565b600061367d601c83613f61565b9150613688826144e5565b602082019050919050565b60006136a0601c83613f61565b91506136ab8261450e565b602082019050919050565b60006136c3600283613f72565b91506136ce82614537565b600282019050919050565b60006136e6602483613f61565b91506136f182614560565b604082019050919050565b6000613709601983613f61565b9150613714826145af565b602082019050919050565b600061372c602c83613f61565b9150613737826145d8565b604082019050919050565b600061374f602583613f61565b915061375a82614627565b604082019050919050565b6000613772603883613f61565b915061377d82614676565b604082019050919050565b6000613795602a83613f61565b91506137a0826146c5565b604082019050919050565b60006137b8602983613f61565b91506137c382614714565b604082019050919050565b60006137db602083613f61565b91506137e682614763565b602082019050919050565b60006137fe602c83613f61565b91506138098261478c565b604082019050919050565b6000613821602083613f61565b915061382c826147db565b602082019050919050565b6000613844602983613f61565b915061384f82614804565b604082019050919050565b6000613867602183613f61565b915061387282614853565b604082019050919050565b600061388a601383613f61565b9150613895826148a2565b602082019050919050565b60006138ad602183613f61565b91506138b8826148cb565b604082019050919050565b60006138d0603183613f61565b91506138db8261491a565b604082019050919050565b60006138f3600883613f61565b91506138fe82614969565b602082019050919050565b6000613916602c83613f61565b915061392182614992565b604082019050919050565b613935816140d0565b82525050565b613944816140da565b82525050565b60006139568284613526565b915081905092915050565b600061396d8285613526565b915061397982846134a1565b6014820191508190509392505050565b60006139958285613590565b91506139a18284613590565b91508190509392505050565b60006139b8826136b6565b91506139c482856134d6565b6020820191506139d482846134d6565b6020820191508190509392505050565b60006020820190506139f96000830184613492565b92915050565b6000606082019050613a146000830186613492565b613a216020830185613483565b8181036040830152613a3381846134ed565b9050949350505050565b6000608082019050613a526000830187613492565b613a5f6020830186613492565b613a6c604083018561392c565b8181036060830152613a7e81846134ed565b905095945050505050565b6000602082019050613a9e60008301846134b8565b92915050565b6000602082019050613ab960008301846134c7565b92915050565b6000608082019050613ad460008301876134c7565b613ae1602083018661392c565b613aee6040830185613492565b613afb60608301846134c7565b95945050505050565b6000608082019050613b1960008301876134c7565b613b26602083018661393b565b613b3360408301856134c7565b613b4060608301846134c7565b95945050505050565b60006020820190508181036000830152613b6381846134ed565b905092915050565b60006020820190508181036000830152613b858184613557565b905092915050565b60006020820190508181036000830152613ba6816135c1565b9050919050565b60006020820190508181036000830152613bc6816135e4565b9050919050565b60006020820190508181036000830152613be681613607565b9050919050565b60006020820190508181036000830152613c068161362a565b9050919050565b60006020820190508181036000830152613c268161364d565b9050919050565b60006020820190508181036000830152613c4681613670565b9050919050565b60006020820190508181036000830152613c6681613693565b9050919050565b60006020820190508181036000830152613c86816136d9565b9050919050565b60006020820190508181036000830152613ca6816136fc565b9050919050565b60006020820190508181036000830152613cc68161371f565b9050919050565b60006020820190508181036000830152613ce681613742565b9050919050565b60006020820190508181036000830152613d0681613765565b9050919050565b60006020820190508181036000830152613d2681613788565b9050919050565b60006020820190508181036000830152613d46816137ab565b9050919050565b60006020820190508181036000830152613d66816137ce565b9050919050565b60006020820190508181036000830152613d86816137f1565b9050919050565b60006020820190508181036000830152613da681613814565b9050919050565b60006020820190508181036000830152613dc681613837565b9050919050565b60006020820190508181036000830152613de68161385a565b9050919050565b60006020820190508181036000830152613e068161387d565b9050919050565b60006020820190508181036000830152613e26816138a0565b9050919050565b60006020820190508181036000830152613e46816138c3565b9050919050565b60006020820190508181036000830152613e66816138e6565b9050919050565b60006020820190508181036000830152613e8681613909565b9050919050565b6000602082019050613ea2600083018461392c565b92915050565b6000613eb2613ec3565b9050613ebe828261415b565b919050565b6000604051905090565b600067ffffffffffffffff821115613ee857613ee761431f565b5b613ef182614362565b9050602081019050919050565b600067ffffffffffffffff821115613f1957613f1861431f565b5b613f2282614362565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f88826140d0565b9150613f93836140d0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fc857613fc7614234565b5b828201905092915050565b6000613fde826140d0565b9150613fe9836140d0565b925082613ff957613ff8614263565b5b828204905092915050565b600061400f826140d0565b915061401a836140d0565b92508282101561402d5761402c614234565b5b828203905092915050565b6000614043826140b0565b9050919050565b6000614055826140b0565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006140a982614038565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156141145780820151818401526020810190506140f9565b83811115614123576000848401525b50505050565b6000600282049050600182168061414157607f821691505b6020821081141561415557614154614292565b5b50919050565b61416482614362565b810181811067ffffffffffffffff821117156141835761418261431f565b5b80604052505050565b6000614197826140d0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141ca576141c9614234565b5b600182019050919050565b60006141e0826141f1565b9050919050565b6000819050919050565b60006141fc82614373565b9050919050565b600061420e826140d0565b9150614219836140d0565b92508261422957614228614263565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f496e636f72726563742045544820416d6f756e74000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e742061697263726166740000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360008201527f49474e4552000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360008201527f6800000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206861736e2774207374617274656400000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6149ea81614038565b81146149f557600080fd5b50565b614a018161405c565b8114614a0c57600080fd5b50565b614a1881614068565b8114614a2357600080fd5b50565b614a2f81614072565b8114614a3a57600080fd5b50565b614a468161409e565b8114614a5157600080fd5b50565b614a5d816140d0565b8114614a6857600080fd5b50565b614a74816140da565b8114614a7f57600080fd5b5056fe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a26469706673582212203e39a2d0e88da18a1f9a391421178725247959fe9b842bf1e53c3985e0d24d0d64736f6c63430008050033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c742968747470733a2f2f6169726372616674696e7369676e69612e696f2f6a736f6e2f

Deployed Bytecode

0x6080604052600436106102035760003560e01c80634f6ccce71161011857806395d89b41116100a0578063c7876ea41161006f578063c7876ea41461073a578063c87b56dd14610765578063d547cfb7146107a2578063e985e9c5146107cd578063f2fde38b1461080a57610203565b806395d89b4114610694578063a22cb465146106bf578063adfdeef9146106e8578063b88d4fde1461071157610203565b806370a08231116100e757806370a08231146105c3578063715018a614610600578063755edd17146106175780638da5cb5b1461064057806391b7f5ed1461066b57610203565b80634f6ccce7146104f557806355f804b3146105325780635c975abb1461055b5780636352211e1461058657610203565b806318160ddd1161019b5780632f745c591161016a5780632f745c591461042257806332cb6b0c1461045f5780633408e4701461048a5780633f4ba83a146104b557806342842e0e146104cc57610203565b806318160ddd1461036657806320379ee51461039157806323b872dd146103bc5780632d0335ab146103e557610203565b8063095ea7b3116101d7578063095ea7b3146102d85780630c53c51c146103015780630f7e5970146103315780631249c58b1461035c57610203565b80629a9b7b1461020857806301ffc9a71461023357806306fdde0314610270578063081812fc1461029b575b600080fd5b34801561021457600080fd5b5061021d610833565b60405161022a9190613e8d565b60405180910390f35b34801561023f57600080fd5b5061025a60048036038101906102559190613386565b610839565b6040516102679190613a89565b60405180910390f35b34801561027c57600080fd5b506102856108b3565b6040516102929190613b6b565b60405180910390f35b3480156102a757600080fd5b506102c260048036038101906102bd9190613456565b610945565b6040516102cf91906139e4565b60405180910390f35b3480156102e457600080fd5b506102ff60048036038101906102fa9190613346565b6109ca565b005b61031b600480360381019061031691906132af565b610ae2565b6040516103289190613b49565b60405180910390f35b34801561033d57600080fd5b50610346610d54565b6040516103539190613b6b565b60405180910390f35b610364610d8d565b005b34801561037257600080fd5b5061037b610ee2565b6040516103889190613e8d565b60405180910390f35b34801561039d57600080fd5b506103a6610eef565b6040516103b39190613aa4565b60405180910390f35b3480156103c857600080fd5b506103e360048036038101906103de9190613199565b610ef9565b005b3480156103f157600080fd5b5061040c6004803603810190610407919061312c565b610f59565b6040516104199190613e8d565b60405180910390f35b34801561042e57600080fd5b5061044960048036038101906104449190613346565b610fa2565b6040516104569190613e8d565b60405180910390f35b34801561046b57600080fd5b50610474611047565b6040516104819190613e8d565b60405180910390f35b34801561049657600080fd5b5061049f61104d565b6040516104ac9190613e8d565b60405180910390f35b3480156104c157600080fd5b506104ca61105a565b005b3480156104d857600080fd5b506104f360048036038101906104ee9190613199565b61111f565b005b34801561050157600080fd5b5061051c60048036038101906105179190613456565b61113f565b6040516105299190613e8d565b60405180910390f35b34801561053e57600080fd5b506105596004803603810190610554919061340d565b6111b0565b005b34801561056757600080fd5b50610570611246565b60405161057d9190613a89565b60405180910390f35b34801561059257600080fd5b506105ad60048036038101906105a89190613456565b611259565b6040516105ba91906139e4565b60405180910390f35b3480156105cf57600080fd5b506105ea60048036038101906105e5919061312c565b61130b565b6040516105f79190613e8d565b60405180910390f35b34801561060c57600080fd5b506106156113c3565b005b34801561062357600080fd5b5061063e6004803603810190610639919061312c565b61144b565b005b34801561064c57600080fd5b506106556114e9565b60405161066291906139e4565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d9190613456565b611513565b005b3480156106a057600080fd5b506106a9611599565b6040516106b69190613b6b565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e1919061326f565b61162b565b005b3480156106f457600080fd5b5061070f600480360381019061070a919061312c565b6117ac565b005b34801561071d57600080fd5b50610738600480360381019061073391906131ec565b61186c565b005b34801561074657600080fd5b5061074f6118ce565b60405161075c9190613e8d565b60405180910390f35b34801561077157600080fd5b5061078c60048036038101906107879190613456565b6118d4565b6040516107999190613b6b565b60405180910390f35b3480156107ae57600080fd5b506107b7611956565b6040516107c49190613b6b565b60405180910390f35b3480156107d957600080fd5b506107f460048036038101906107ef9190613159565b611965565b6040516108019190613a89565b60405180910390f35b34801561081657600080fd5b50610831600480360381019061082c919061312c565b611a67565b005b600f5481565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ac57506108ab82611c10565b5b9050919050565b6060600080546108c290614129565b80601f01602080910402602001604051908101604052809291908181526020018280546108ee90614129565b801561093b5780601f106109105761010080835404028352916020019161093b565b820191906000526020600020905b81548152906001019060200180831161091e57829003601f168201915b5050505050905090565b600061095082611cf2565b61098f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098690613d6d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109d582611259565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3d90613e0d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a65611d5e565b73ffffffffffffffffffffffffffffffffffffffff161480610a945750610a9381610a8e611d5e565b611965565b5b610ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aca90613ced565b60405180910390fd5b610add8383611d6d565b505050565b606060006040518060600160405280600c60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481526020018873ffffffffffffffffffffffffffffffffffffffff168152602001878152509050610b658782878787611e26565b610ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9b90613dcd565b60405180910390fd5b610bf76001600c60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f2f90919063ffffffff16565b600c60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b873388604051610c6d939291906139ff565b60405180910390a16000803073ffffffffffffffffffffffffffffffffffffffff16888a604051602001610ca2929190613961565b604051602081830303815290604052604051610cbe919061394a565b6000604051808303816000865af19150503d8060008114610cfb576040519150601f19603f3d011682016040523d82523d6000602084013e610d00565b606091505b509150915081610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c90613c2d565b60405180910390fd5b80935050505095945050505050565b6040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b60001515601360009054906101000a900460ff16151514610de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dda90613ded565b60405180910390fd5b6000610ded611f45565b90506012543414610e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2a90613b8d565b60405180910390fd5b601154811115610e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6f90613e4d565b60405180910390fd5b610e80611f62565b610e91610e8b611d5e565b82611f7c565b610e996114e9565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610ede573d6000803e3d6000fd5b5050565b6000600880549050905090565b6000600b54905090565b610f0a610f04611d5e565b8261214a565b610f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4090613e2d565b60405180910390fd5b610f54838383612228565b505050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610fad8361130b565b8210610fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe590613bcd565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60115481565b6000804690508091505090565b611062611d5e565b73ffffffffffffffffffffffffffffffffffffffff166110806114e9565b73ffffffffffffffffffffffffffffffffffffffff16146110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90613d8d565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055507f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b61113a8383836040518060200160405280600081525061186c565b505050565b6000611149610ee2565b821061118a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118190613e6d565b60405180910390fd5b6008828154811061119e5761119d6142f0565b5b90600052602060002001549050919050565b6111b8611d5e565b73ffffffffffffffffffffffffffffffffffffffff166111d66114e9565b73ffffffffffffffffffffffffffffffffffffffff161461122c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122390613d8d565b60405180910390fd5b8060109080519060200190611242929190612f01565b5050565b601360009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f990613d2d565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561137c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137390613d0d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113cb611d5e565b73ffffffffffffffffffffffffffffffffffffffff166113e96114e9565b73ffffffffffffffffffffffffffffffffffffffff161461143f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143690613d8d565b60405180910390fd5b6114496000612484565b565b611453611d5e565b73ffffffffffffffffffffffffffffffffffffffff166114716114e9565b73ffffffffffffffffffffffffffffffffffffffff16146114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90613d8d565b60405180910390fd5b60006114d1611f45565b90506114dd8282611f7c565b6114e5611f62565b5050565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61151b611d5e565b73ffffffffffffffffffffffffffffffffffffffff166115396114e9565b73ffffffffffffffffffffffffffffffffffffffff161461158f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158690613d8d565b60405180910390fd5b8060128190555050565b6060600180546115a890614129565b80601f01602080910402602001604051908101604052809291908181526020018280546115d490614129565b80156116215780601f106115f657610100808354040283529160200191611621565b820191906000526020600020905b81548152906001019060200180831161160457829003601f168201915b5050505050905090565b611633611d5e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169890613c8d565b60405180910390fd5b80600560006116ae611d5e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661175b611d5e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117a09190613a89565b60405180910390a35050565b6117b4611d5e565b73ffffffffffffffffffffffffffffffffffffffff166117d26114e9565b73ffffffffffffffffffffffffffffffffffffffff1614611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f90613d8d565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61187d611877611d5e565b8361214a565b6118bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b390613e2d565b60405180910390fd5b6118c88484848461254a565b50505050565b60125481565b60606118df82611cf2565b61191e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191590613bad565b60405180910390fd5b611926611956565b61192f836125a6565b604051602001611940929190613989565b6040516020818303038152906040529050919050565b6060611960612707565b905090565b600080600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016119dd91906139e4565b60206040518083038186803b1580156119f557600080fd5b505afa158015611a09573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a2d91906133e0565b73ffffffffffffffffffffffffffffffffffffffff161415611a53576001915050611a61565b611a5d8484612799565b9150505b92915050565b611a6f611d5e565b73ffffffffffffffffffffffffffffffffffffffff16611a8d6114e9565b73ffffffffffffffffffffffffffffffffffffffff1614611ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ada90613d8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4a90613c0d565b60405180910390fd5b611b5c81612484565b50565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415611c0957600080368080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509050600080369050905073ffffffffffffffffffffffffffffffffffffffff818301511692505050611c0d565b3390505b90565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611cdb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ceb5750611cea8261282d565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6000611d68611b5f565b905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611de083611259565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415611e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8e90613ccd565b60405180910390fd5b6001611eaa611ea587612897565b6128ff565b83868660405160008152602001604052604051611eca9493929190613b04565b6020604051602081039080840390855afa158015611eec573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614905095945050505050565b60008183611f3d9190613f7d565b905092915050565b6000611f5d6001600f54611f2f90919063ffffffff16565b905090565b600f6000815480929190611f759061418c565b9190505550565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe390613d4d565b60405180910390fd5b611ff581611cf2565b15612035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202c90613c4d565b60405180910390fd5b61204160008383612938565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120919190613f7d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061215582611cf2565b612194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218b90613cad565b60405180910390fd5b600061219f83611259565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061220e57508373ffffffffffffffffffffffffffffffffffffffff166121f684610945565b73ffffffffffffffffffffffffffffffffffffffff16145b8061221f575061221e8185611965565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661224882611259565b73ffffffffffffffffffffffffffffffffffffffff161461229e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229590613dad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561230e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230590613c6d565b60405180910390fd5b612319838383612938565b612324600082611d6d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123749190614004565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123cb9190613f7d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612555848484612228565b61256184848484612a4c565b6125a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259790613bed565b60405180910390fd5b50505050565b606060008214156125ee576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612702565b600082905060005b600082146126205780806126099061418c565b915050600a826126199190613fd3565b91506125f6565b60008167ffffffffffffffff81111561263c5761263b61431f565b5b6040519080825280601f01601f19166020018201604052801561266e5781602001600182028036833780820191505090505b5090505b600085146126fb576001826126879190614004565b9150600a856126969190614203565b60306126a29190613f7d565b60f81b8183815181106126b8576126b76142f0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126f49190613fd3565b9450612672565b8093505050505b919050565b60606010805461271690614129565b80601f016020809104026020016040519081016040528092919081815260200182805461274290614129565b801561278f5780601f106127645761010080835404028352916020019161278f565b820191906000526020600020905b81548152906001019060200180831161277257829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000604051806080016040528060438152602001614a836043913980519060200120826000015183602001518460400151805190602001206040516020016128e29493929190613abf565b604051602081830303815290604052805190602001209050919050565b6000612909610eef565b8260405160200161291b9291906139ad565b604051602081830303815290604052805190602001209050919050565b612943838383612be3565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129865761298181612be8565b6129c5565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146129c4576129c38382612c31565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a0857612a0381612d9e565b612a47565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612a4657612a458282612e6f565b5b5b505050565b6000612a6d8473ffffffffffffffffffffffffffffffffffffffff16612eee565b15612bd6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a96611d5e565b8786866040518563ffffffff1660e01b8152600401612ab89493929190613a3d565b602060405180830381600087803b158015612ad257600080fd5b505af1925050508015612b0357506040513d601f19601f82011682018060405250810190612b0091906133b3565b60015b612b86573d8060008114612b33576040519150601f19603f3d011682016040523d82523d6000602084013e612b38565b606091505b50600081511415612b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7590613bed565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bdb565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612c3e8461130b565b612c489190614004565b9050600060076000848152602001908152602001600020549050818114612d2d576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612db29190614004565b9050600060096000848152602001908152602001600020549050600060088381548110612de257612de16142f0565b5b906000526020600020015490508060088381548110612e0457612e036142f0565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612e5357612e526142c1565b5b6001900381819060005260206000200160009055905550505050565b6000612e7a8361130b565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612f0d90614129565b90600052602060002090601f016020900481019282612f2f5760008555612f76565b82601f10612f4857805160ff1916838001178555612f76565b82800160010185558215612f76579182015b82811115612f75578251825591602001919060010190612f5a565b5b509050612f839190612f87565b5090565b5b80821115612fa0576000816000905550600101612f88565b5090565b6000612fb7612fb284613ecd565b613ea8565b905082815260208101848484011115612fd357612fd2614353565b5b612fde8482856140e7565b509392505050565b6000612ff9612ff484613efe565b613ea8565b90508281526020810184848401111561301557613014614353565b5b6130208482856140e7565b509392505050565b600081359050613037816149e1565b92915050565b60008135905061304c816149f8565b92915050565b60008135905061306181614a0f565b92915050565b60008135905061307681614a26565b92915050565b60008151905061308b81614a26565b92915050565b600082601f8301126130a6576130a561434e565b5b81356130b6848260208601612fa4565b91505092915050565b6000815190506130ce81614a3d565b92915050565b600082601f8301126130e9576130e861434e565b5b81356130f9848260208601612fe6565b91505092915050565b60008135905061311181614a54565b92915050565b60008135905061312681614a6b565b92915050565b6000602082840312156131425761314161435d565b5b600061315084828501613028565b91505092915050565b600080604083850312156131705761316f61435d565b5b600061317e85828601613028565b925050602061318f85828601613028565b9150509250929050565b6000806000606084860312156131b2576131b161435d565b5b60006131c086828701613028565b93505060206131d186828701613028565b92505060406131e286828701613102565b9150509250925092565b600080600080608085870312156132065761320561435d565b5b600061321487828801613028565b945050602061322587828801613028565b935050604061323687828801613102565b925050606085013567ffffffffffffffff81111561325757613256614358565b5b61326387828801613091565b91505092959194509250565b600080604083850312156132865761328561435d565b5b600061329485828601613028565b92505060206132a58582860161303d565b9150509250929050565b600080600080600060a086880312156132cb576132ca61435d565b5b60006132d988828901613028565b955050602086013567ffffffffffffffff8111156132fa576132f9614358565b5b61330688828901613091565b945050604061331788828901613052565b935050606061332888828901613052565b925050608061333988828901613117565b9150509295509295909350565b6000806040838503121561335d5761335c61435d565b5b600061336b85828601613028565b925050602061337c85828601613102565b9150509250929050565b60006020828403121561339c5761339b61435d565b5b60006133aa84828501613067565b91505092915050565b6000602082840312156133c9576133c861435d565b5b60006133d78482850161307c565b91505092915050565b6000602082840312156133f6576133f561435d565b5b6000613404848285016130bf565b91505092915050565b6000602082840312156134235761342261435d565b5b600082013567ffffffffffffffff81111561344157613440614358565b5b61344d848285016130d4565b91505092915050565b60006020828403121561346c5761346b61435d565b5b600061347a84828501613102565b91505092915050565b61348c8161404a565b82525050565b61349b81614038565b82525050565b6134b26134ad82614038565b6141d5565b82525050565b6134c18161405c565b82525050565b6134d081614068565b82525050565b6134e76134e282614068565b6141e7565b82525050565b60006134f882613f2f565b6135028185613f45565b93506135128185602086016140f6565b61351b81614362565b840191505092915050565b600061353182613f2f565b61353b8185613f56565b935061354b8185602086016140f6565b80840191505092915050565b600061356282613f3a565b61356c8185613f61565b935061357c8185602086016140f6565b61358581614362565b840191505092915050565b600061359b82613f3a565b6135a58185613f72565b93506135b58185602086016140f6565b80840191505092915050565b60006135ce601483613f61565b91506135d982614380565b602082019050919050565b60006135f1603283613f61565b91506135fc826143a9565b604082019050919050565b6000613614602b83613f61565b915061361f826143f8565b604082019050919050565b6000613637603283613f61565b915061364282614447565b604082019050919050565b600061365a602683613f61565b915061366582614496565b604082019050919050565b600061367d601c83613f61565b9150613688826144e5565b602082019050919050565b60006136a0601c83613f61565b91506136ab8261450e565b602082019050919050565b60006136c3600283613f72565b91506136ce82614537565b600282019050919050565b60006136e6602483613f61565b91506136f182614560565b604082019050919050565b6000613709601983613f61565b9150613714826145af565b602082019050919050565b600061372c602c83613f61565b9150613737826145d8565b604082019050919050565b600061374f602583613f61565b915061375a82614627565b604082019050919050565b6000613772603883613f61565b915061377d82614676565b604082019050919050565b6000613795602a83613f61565b91506137a0826146c5565b604082019050919050565b60006137b8602983613f61565b91506137c382614714565b604082019050919050565b60006137db602083613f61565b91506137e682614763565b602082019050919050565b60006137fe602c83613f61565b91506138098261478c565b604082019050919050565b6000613821602083613f61565b915061382c826147db565b602082019050919050565b6000613844602983613f61565b915061384f82614804565b604082019050919050565b6000613867602183613f61565b915061387282614853565b604082019050919050565b600061388a601383613f61565b9150613895826148a2565b602082019050919050565b60006138ad602183613f61565b91506138b8826148cb565b604082019050919050565b60006138d0603183613f61565b91506138db8261491a565b604082019050919050565b60006138f3600883613f61565b91506138fe82614969565b602082019050919050565b6000613916602c83613f61565b915061392182614992565b604082019050919050565b613935816140d0565b82525050565b613944816140da565b82525050565b60006139568284613526565b915081905092915050565b600061396d8285613526565b915061397982846134a1565b6014820191508190509392505050565b60006139958285613590565b91506139a18284613590565b91508190509392505050565b60006139b8826136b6565b91506139c482856134d6565b6020820191506139d482846134d6565b6020820191508190509392505050565b60006020820190506139f96000830184613492565b92915050565b6000606082019050613a146000830186613492565b613a216020830185613483565b8181036040830152613a3381846134ed565b9050949350505050565b6000608082019050613a526000830187613492565b613a5f6020830186613492565b613a6c604083018561392c565b8181036060830152613a7e81846134ed565b905095945050505050565b6000602082019050613a9e60008301846134b8565b92915050565b6000602082019050613ab960008301846134c7565b92915050565b6000608082019050613ad460008301876134c7565b613ae1602083018661392c565b613aee6040830185613492565b613afb60608301846134c7565b95945050505050565b6000608082019050613b1960008301876134c7565b613b26602083018661393b565b613b3360408301856134c7565b613b4060608301846134c7565b95945050505050565b60006020820190508181036000830152613b6381846134ed565b905092915050565b60006020820190508181036000830152613b858184613557565b905092915050565b60006020820190508181036000830152613ba6816135c1565b9050919050565b60006020820190508181036000830152613bc6816135e4565b9050919050565b60006020820190508181036000830152613be681613607565b9050919050565b60006020820190508181036000830152613c068161362a565b9050919050565b60006020820190508181036000830152613c268161364d565b9050919050565b60006020820190508181036000830152613c4681613670565b9050919050565b60006020820190508181036000830152613c6681613693565b9050919050565b60006020820190508181036000830152613c86816136d9565b9050919050565b60006020820190508181036000830152613ca6816136fc565b9050919050565b60006020820190508181036000830152613cc68161371f565b9050919050565b60006020820190508181036000830152613ce681613742565b9050919050565b60006020820190508181036000830152613d0681613765565b9050919050565b60006020820190508181036000830152613d2681613788565b9050919050565b60006020820190508181036000830152613d46816137ab565b9050919050565b60006020820190508181036000830152613d66816137ce565b9050919050565b60006020820190508181036000830152613d86816137f1565b9050919050565b60006020820190508181036000830152613da681613814565b9050919050565b60006020820190508181036000830152613dc681613837565b9050919050565b60006020820190508181036000830152613de68161385a565b9050919050565b60006020820190508181036000830152613e068161387d565b9050919050565b60006020820190508181036000830152613e26816138a0565b9050919050565b60006020820190508181036000830152613e46816138c3565b9050919050565b60006020820190508181036000830152613e66816138e6565b9050919050565b60006020820190508181036000830152613e8681613909565b9050919050565b6000602082019050613ea2600083018461392c565b92915050565b6000613eb2613ec3565b9050613ebe828261415b565b919050565b6000604051905090565b600067ffffffffffffffff821115613ee857613ee761431f565b5b613ef182614362565b9050602081019050919050565b600067ffffffffffffffff821115613f1957613f1861431f565b5b613f2282614362565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f88826140d0565b9150613f93836140d0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fc857613fc7614234565b5b828201905092915050565b6000613fde826140d0565b9150613fe9836140d0565b925082613ff957613ff8614263565b5b828204905092915050565b600061400f826140d0565b915061401a836140d0565b92508282101561402d5761402c614234565b5b828203905092915050565b6000614043826140b0565b9050919050565b6000614055826140b0565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006140a982614038565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156141145780820151818401526020810190506140f9565b83811115614123576000848401525b50505050565b6000600282049050600182168061414157607f821691505b6020821081141561415557614154614292565b5b50919050565b61416482614362565b810181811067ffffffffffffffff821117156141835761418261431f565b5b80604052505050565b6000614197826140d0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141ca576141c9614234565b5b600182019050919050565b60006141e0826141f1565b9050919050565b6000819050919050565b60006141fc82614373565b9050919050565b600061420e826140d0565b9150614219836140d0565b92508261422957614228614263565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f496e636f72726563742045544820416d6f756e74000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e742061697263726166740000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360008201527f49474e4552000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360008201527f6800000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206861736e2774207374617274656400000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6149ea81614038565b81146149f557600080fd5b50565b614a018161405c565b8114614a0c57600080fd5b50565b614a1881614068565b8114614a2357600080fd5b50565b614a2f81614072565b8114614a3a57600080fd5b50565b614a468161409e565b8114614a5157600080fd5b50565b614a5d816140d0565b8114614a6857600080fd5b50565b614a74816140da565b8114614a7f57600080fd5b5056fe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a26469706673582212203e39a2d0e88da18a1f9a391421178725247959fe9b842bf1e53c3985e0d24d0d64736f6c63430008050033

Loading...
Loading
Loading...
Loading
[ 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.