ETH Price: $3,392.29 (-1.44%)
Gas: 2 Gwei

Queens+KingsAvatars (Q+KA)
 

Overview

TokenID

3108

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

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

OVERVIEW

Queens+Kings overthrow hierarchies in contemporary art and re-mint CryptoRealm . Created by Hackatao and NFT Studios, supported by Sotheby’s 6,900 Queens+Kings: interchangeable NFT traits, randomly allocated and algorithmically generated.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
QueensAndKingsAvatars

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 2000 runs

Other Settings:
default evmVersion
File 1 of 16 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

File 2 of 16 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 16 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 4 of 16 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 5 of 16 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 6 of 16 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 16 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 8 of 16 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 9 of 16 : ECDSA.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 10 of 16 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 11 of 16 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 12 of 16 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
import "./ProtectedMint.sol";
import "./IOpenSeaProxy.sol";

/**
 * @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, ProtectedMint {
    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) internal _owners;

    // Mapping owner address to token count
    mapping(address => uint16) internal _balances;

    // Mapping from token ID to approved address
    mapping(uint16 => address) internal _tokenApprovals;

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

    // OpenSea's proxy registry address
    address proxyRegistryAddress;

    /**
     * @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 = 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, uint16(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[uint16(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) {
        if (proxyRegistryAddress != address(0)) {
            ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
            if (address(proxyRegistry.proxies(owner)) == operator) {
                return true;
            }
        }

        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 Sets OpenSea's proxy registry address
     */
    function setProxyRegistryAddress(address _proxyRegistryAddress) external onlyOwner {
        proxyRegistryAddress = _proxyRegistryAddress;
    }

    /**
     * @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 = 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(uint16 tokenId) internal virtual {
        address owner = 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(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), uint16(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, uint16 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ownerOf(tokenId), to, tokenId);
    }

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

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

File 13 of 16 : IOpenSeaProxy.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

contract OwnableDelegateProxy {}

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

File 14 of 16 : ITrait.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";

interface ITrait is IERC721 {
    function onTraitAddedToAvatar(uint16 _tokenId, uint16 _avatarId) external;

    function onAvatarTransfer(
        address _from,
        address _to,
        uint16 _tokenId
    ) external;

    function onTraitRemovedFromAvatar(uint16 _tokenId, address _owner) external;

    function traitToAvatar(uint16) external returns (uint16);

    function mint(uint256 _tokenId, address _to) external;

    function burn(uint16 _tokenId) external;
}

File 15 of 16 : ProtectedMint.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";

abstract contract ProtectedMint is Ownable {
    address[] public minterAddresses;

    modifier onlyMinter() {
        bool isAllowed;

        for (uint256 i; i < minterAddresses.length; i++) {
            if (minterAddresses[i] == msg.sender) {
                isAllowed = true;

                break;
            }
        }

        require(isAllowed, "Minter: caller is not an allowed minter");

        _;
    }

    /**
     * @dev Adds an address that is allowed to mint
     */
    function addMinterAddress(address _minterAddress) external onlyOwner {
        minterAddresses.push(_minterAddress);
    }

    /**
     * @dev Removes
     */
    function removeMinterAddress(address _minterAddress) external onlyOwner {
        for (uint256 i; i < minterAddresses.length; i++) {
            if (minterAddresses[i] != _minterAddress) {
                continue;
            }

            minterAddresses[i] = minterAddresses[minterAddresses.length - 1];

            minterAddresses.pop();
        }
    }
}

File 16 of 16 : QueensAndKingsAvatars.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "./ERC721.sol";
import "./ITrait.sol";

contract QueensAndKingsAvatars is ERC721 {
    using Strings for uint256;

    modifier onlyAvatarOwner(uint256 _tokenId) {
        require(ownerOf(_tokenId) == msg.sender, "Caller is not the owner of the avatar");

        _;
    }

    address public signerAddress;

    string public baseURI = "ipfs://HASH/";
    uint16 public totalTokens = 6900;
    uint16 public totalSupply = 0;
    uint256 public latestExternalTokenId = totalTokens + 1;

    address[] public traitTypeToAddress;

    // TokenId => Trait => TraitId
    mapping(uint16 => mapping(uint8 => uint16)) public avatarTraits;
    mapping(uint16 => bool) public hasMintedTraits;
    mapping(uint256 => uint16) public externalToInternalMapping;
    mapping(uint16 => uint256) public internalToExternalMapping;
    mapping(uint16 => bool) public frozenAvatars;

    bool isFreezeAllowed;

    constructor() ERC721("Queens+KingsAvatars", "Q+KA") {}

    // ONLY OWNER

    /**
     * @dev Sets the address that generates the signatures for whitelisting
     */
    function setSignerAddress(address _signerAddress) external onlyOwner {
        signerAddress = _signerAddress;
    }

    /**
     * @dev Sets the base URI for the API that provides the NFT data.
     */
    function setBaseTokenURI(string memory _uri) external onlyOwner {
        baseURI = _uri;
    }

    /**
     * @dev Adds the contract address of a trait type
     */
    function addTraitType(address _traitAddress) external onlyOwner {
        traitTypeToAddress.push(_traitAddress);
    }

    /**
     * @dev Adds the contract address of a trait type
     */
    function resetTraitTypes() external onlyOwner {
        delete traitTypeToAddress;
    }

    function setFreezedAllowed(bool _isFreezeAllowed) external onlyOwner {
        isFreezeAllowed = _isFreezeAllowed;
    }

    // END ONLY OWNER

    // ONLY MINTER

    /**
     * @dev Mints a avatars
     */
    function mint(uint16 _tokenId, address _to) external onlyMinter {
        require(_tokenId > 0 && _tokenId <= totalTokens, "Token ID cannot be 0");
        require(totalSupply < totalTokens, "Cannot mint more avatars");

        externalToInternalMapping[_tokenId] = _tokenId;
        internalToExternalMapping[_tokenId] = _tokenId;

        totalSupply++;

        _mint(_to, _tokenId);
    }

    // END ONLY MITNER

    // ONLY AVATAR OWNER

    /**
     * @dev Adds full traits to an avatar
     */
    function setTraitsToAvatar(uint256 _tokenId, uint16[] memory _traits) external onlyAvatarOwner(_tokenId) {
        require(traitTypeToAddress.length == _traits.length, "Invalid amount of traits");
        uint16 _iTokenId = getInternalMapping(_tokenId);
        require(hasMintedTraits[_iTokenId], "Can not modify avatar until original traits are minted");

        require(!frozenAvatars[_iTokenId], "Can not change the traits of a frozen avatar");

        bool regenerate;
        uint256[] memory traitsPreviousAvatar = new uint256[](_traits.length);
        uint256 regeneratePreviousAvatarCounter;

        for (uint8 i; i < _traits.length; i++) {
            if (_traits[i] == avatarTraits[_iTokenId][i]) {
                continue;
            }

            ITrait trait = ITrait(traitTypeToAddress[i]);

            require(_traits[i] == 0 || trait.ownerOf(_traits[i]) == msg.sender, "Caller is not the owner of the trait");

            uint16 newTraitCurrentAvatarId = trait.traitToAvatar(_traits[i]);

            if (newTraitCurrentAvatarId != 0 && newTraitCurrentAvatarId != _iTokenId) {
                avatarTraits[newTraitCurrentAvatarId][i] = 0;

                traitsPreviousAvatar[regeneratePreviousAvatarCounter] = getExternalMapping(newTraitCurrentAvatarId);

                regeneratePreviousAvatarCounter++;
            }

            if (avatarTraits[_iTokenId][i] != 0) {
                regenerate = true;
                trait.onTraitRemovedFromAvatar(avatarTraits[_iTokenId][i], ownerOf(_tokenId));
            }

            avatarTraits[_iTokenId][i] = _traits[i];

            if (_traits[i] != 0) {
                trait.onTraitAddedToAvatar(_traits[i], _iTokenId);
            }
        }

        for (uint256 i; i < regeneratePreviousAvatarCounter; i++) {
            if (_exists(traitsPreviousAvatar[i])) {
                regenerateAvatar(traitsPreviousAvatar[i]);
            }
        }

        if (regenerate) {
            regenerateAvatar(_tokenId);
        }
    }

    /**
     * @dev mints the traits for a given avatar
     */
    function mintTraits(
        uint16 _tokenId,
        uint16[] memory _traits,
        bytes calldata _signature
    ) external {
        require(ownerOf(_tokenId) == msg.sender, "Caller is not the owner of the avatar");
        require(_tokenId <= totalTokens, "Invalid token Id");
        require(!hasMintedTraits[_tokenId], "Traits already minted");

        bytes32 messageHash = generateMessageHash(_tokenId, _traits);
        address recoveredWallet = ECDSA.recover(messageHash, _signature);
        require(recoveredWallet == signerAddress, "Invalid signature for the caller");

        hasMintedTraits[_tokenId] = true;

        for (uint8 i; i < _traits.length; i++) {
            if (_traits[i] == 0) {
                continue;
            }

            ITrait trait = ITrait(traitTypeToAddress[i]);
            trait.mint(_traits[i], msg.sender);

            avatarTraits[_tokenId][i] = _traits[i];

            trait.onTraitAddedToAvatar(_traits[i], _tokenId);
        }
    }

    function freeze(uint256 _tokenId) external {
        require(isFreezeAllowed, "Cannot freeze at this stage");
        uint16 _iTokenId = getInternalMapping(_tokenId);

        require(ownerOf(_tokenId) == msg.sender, "Caller is not the owner of the avatar");
        require(hasMintedTraits[_iTokenId], "Traits have not been minted");
        require(!frozenAvatars[_iTokenId], "Avatar is already frozen");

        frozenAvatars[_iTokenId] = true;

        for (uint8 i; i < traitTypeToAddress.length; i++) {
            if (avatarTraits[_iTokenId][i] == 0) {
                continue;
            }

            ITrait trait = ITrait(traitTypeToAddress[i]);
            trait.burn(avatarTraits[_iTokenId][i]);
        }
    }

    // END ONLY AVATAR OWNER

    // ONLY TRAIT CONTRACTS

    /**
     * @dev removes a single trait from an avatar
     * by it's contract type
     */
    function removeTrait(uint16 _iTokenId) external {
        require(!frozenAvatars[_iTokenId], "Avatar is already frozen");
        bool found;

        uint256 _tokenId = getExternalMapping(_iTokenId);

        for (uint8 i; i < traitTypeToAddress.length; i++) {
            if (traitTypeToAddress[i] == msg.sender) {
                avatarTraits[getInternalMapping(_tokenId)][i] = 0;
                found = true;

                break;
            }
        }

        require(found, "Caller is not allowed");

        regenerateAvatar(_tokenId);
    }

    // END ONLY TRAIT CONTRACTS

    // CUSTOM ERC721

    /**
     * @dev See {ERC721}.
     *
     * Calls avatarTransfer for all the traits that the avatar has
     * in order to emit the transfer event for all the traits
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override {
        require(ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        uint16 _iTokenId = getInternalMapping(tokenId);

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

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

        emit Transfer(from, to, tokenId);

        for (uint8 i; i < traitTypeToAddress.length; i++) {
            if (avatarTraits[_iTokenId][i] == 0) {
                continue;
            }

            ITrait traitContract = ITrait(traitTypeToAddress[i]);
            traitContract.onAvatarTransfer(from, to, avatarTraits[_iTokenId][i]);
        }
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        uint16 _iTokenId;
        if (tokenId > totalTokens) {
            _iTokenId = getInternalMapping(tokenId);
        } else {
            _iTokenId = uint16(tokenId);
        }

        address owner = _owners[_iTokenId];
        require(owner != address(0), "ERC721 Avatar: owner query for nonexistent token");

        return owner;
    }

    /**
     * @dev See {IRC721-_exists}.
     */
    function _exists(uint256 tokenId) internal view override returns (bool) {
        uint16 _iTokenId = externalToInternalMapping[tokenId];

        return _owners[_iTokenId] != address(0);
    }

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

        return _tokenApprovals[getInternalMapping(tokenId)];
    }

    /**
     * @dev See {ERC721-_approve}.
     */
    function _approve(address to, uint16 tokenId) internal virtual override {
        _tokenApprovals[getInternalMapping(tokenId)] = to;
        emit Approval(ownerOf(tokenId), to, tokenId);
    }

    // END CUSTOM ERC721

    /**
     * @dev Returns the traits for the given token id
     */
    function getAvatarTraits(uint256 _tokenId) external view returns (uint16[] memory) {
        require(_exists(_tokenId), "ERC721: operator query for nonexistent token");

        uint16 _iTokenId = getInternalMapping(_tokenId);

        uint16[] memory traits = new uint16[](traitTypeToAddress.length);
        for (uint8 i; i < traitTypeToAddress.length; i++) {
            traits[i] = avatarTraits[_iTokenId][i];
        }

        return traits;
    }

    // INTERNAL

    /**
     * @dev to avoid users receiving offers for their complete avatars, removing
     * the parts and accepting the offers; The NFT changes ID every time a part is removed
     * or replaced
     */
    function regenerateAvatar(uint256 _tokenId) internal returns (uint256) {
        address _owner = ownerOf(_tokenId);

        emit Transfer(_owner, address(0), _tokenId);
        emit Transfer(address(0), _owner, latestExternalTokenId);

        uint16 _iTokenId = getInternalMapping(_tokenId);

        externalToInternalMapping[latestExternalTokenId] = _iTokenId;
        internalToExternalMapping[_iTokenId] = latestExternalTokenId;

        delete externalToInternalMapping[_tokenId];

        latestExternalTokenId++;

        return latestExternalTokenId - 1;
    }

    /**
     * @dev returns the original id for the given avatar
     */
    function getInternalMapping(uint256 _tokenId) internal view returns (uint16) {
        require(externalToInternalMapping[_tokenId] != 0, "getInternalMapping: Invalid mapping");

        return externalToInternalMapping[_tokenId];
    }

    /**
     8 @dev returns the external id for the original given id
     */
    function getExternalMapping(uint16 _iTokenId) internal view returns (uint256) {
        require(internalToExternalMapping[_iTokenId] != 0, "getExternalMapping: Invalid mapping");

        return internalToExternalMapping[_iTokenId];
    }

    /**
     * @dev See {ERC721}.
     */
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

    /**
     * @dev Generate a message hash for the given parameters
     */
    function generateMessageHash(uint256 _avatarId, uint16[] memory _traitIds) internal pure returns (bytes32) {
        uint256 signatureBytes = 32 + _traitIds.length * 32;

        return
            keccak256(
                abi.encodePacked("\x19Ethereum Signed Message:\n", signatureBytes.toString(), _avatarId, _traitIds)
            );
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": true,
    "runs": 2000
  },
  "evmVersion": "london",
  "libraries": {},
  "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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_minterAddress","type":"address"}],"name":"addMinterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_traitAddress","type":"address"}],"name":"addTraitType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"uint8","name":"","type":"uint8"}],"name":"avatarTraits","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"externalToInternalMapping","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"freeze","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"frozenAvatars","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getAvatarTraits","outputs":[{"internalType":"uint16[]","name":"","type":"uint16[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"hasMintedTraits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"internalToExternalMapping","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"latestExternalTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_tokenId","type":"uint16"},{"internalType":"address","name":"_to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_tokenId","type":"uint16"},{"internalType":"uint16[]","name":"_traits","type":"uint16[]"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"mintTraits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"minterAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_minterAddress","type":"address"}],"name":"removeMinterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_iTokenId","type":"uint16"}],"name":"removeTrait","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetTraitTypes","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":"_uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isFreezeAllowed","type":"bool"}],"name":"setFreezedAllowed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"name":"setProxyRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signerAddress","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint16[]","name":"_traits","type":"uint16[]"}],"name":"setTraitsToAvatar","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTokens","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"traitTypeToAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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"}]

60c0604052600c60808190526b697066733a2f2f484153482f60a01b60a09081526200002f91600a91906200015b565b50600b805463ffffffff1916611af49081179091556200005190600162000201565b61ffff16600c553480156200006557600080fd5b506040518060400160405280601381526020017f517565656e732b4b696e6773417661746172730000000000000000000000000081525060405180604001604052806004815260200163512b4b4160e01b815250620000d3620000cd6200010760201b60201c565b6200010b565b8151620000e89060029060208501906200015b565b508051620000fe9060039060208401906200015b565b50505062000273565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001699062000236565b90600052602060002090601f0160209004810192826200018d5760008555620001d8565b82601f10620001a857805160ff1916838001178555620001d8565b82800160010185558215620001d8579182015b82811115620001d8578251825591602001919060010190620001bb565b50620001e6929150620001ea565b5090565b5b80821115620001e65760008155600101620001eb565b600061ffff8083168185168083038211156200022d57634e487b7160e01b600052601160045260246000fd5b01949350505050565b600181811c908216806200024b57607f821691505b602082108114156200026d57634e487b7160e01b600052602260045260246000fd5b50919050565b61431d80620002836000396000f3fe608060405234801561001057600080fd5b50600436106102de5760003560e01c806370a0823111610186578063b88d4fde116100e3578063e985e9c511610097578063f2fde38b11610071578063f2fde38b14610629578063fda6c1501461063c578063ff52c4641461064f57600080fd5b8063e985e9c5146105f0578063e9cf98ae14610603578063ed27e5661461061657600080fd5b8063d26ea6c0116100c8578063d26ea6c0146105b7578063d7a78db8146105ca578063e6ad01b7146105dd57600080fd5b8063b88d4fde14610591578063c87b56dd146105a457600080fd5b80638e34742a1161013a57806395d89b411161011f57806395d89b41146105635780639c2055131461056b578063a22cb4651461057e57600080fd5b80638e34742a1461054757806390d229241461055057600080fd5b80637e1c0c091161016b5780637e1c0c091461051557806383ca5a05146105235780638da5cb5b1461053657600080fd5b806370a08231146104fa578063715018a61461050d57600080fd5b806334c9f8ea1161023f5780635848ef61116101f3578063601a6740116101cd578063601a6740146104bc5780636352211e146104df5780636c0360eb146104f257600080fd5b80635848ef61146104725780635a79254d146104855780635b7633d0146104a957600080fd5b806342842e0e1161022457806342842e0e146104375780634ae585c31461044a5780634be0f77e1461045257600080fd5b806334c9f8ea1461040157806341517e051461041457600080fd5b8063095ea7b31161029657806318160ddd1161027b57806318160ddd146103b457806323b872dd146103db57806330176e13146103ee57600080fd5b8063095ea7b314610373578063096a31a41461038657600080fd5b8063046dc166116102c7578063046dc1661461033657806306fdde031461034b578063081812fc1461036057600080fd5b806301ffc9a7146102e3578063028850971461030b575b600080fd5b6102f66102f1366004613a68565b61067e565b60405190151581526020015b60405180910390f35b61031e610319366004613a85565b61071b565b6040516001600160a01b039091168152602001610302565b610349610344366004613ab3565b610745565b005b6103536107d3565b6040516103029190613b28565b61031e61036e366004613a85565b610865565b610349610381366004613b3b565b610931565b6103a6610394366004613b77565b60116020526000908152604090205481565b604051908152602001610302565b600b546103c89062010000900461ffff1681565b60405161ffff9091168152602001610302565b6103496103e9366004613b94565b610a63565b6103496103fc366004613c74565b610aea565b61034961040f366004613ab3565b610b5b565b6102f6610422366004613b77565b60126020526000908152604090205460ff1681565b610349610445366004613b94565b610c14565b610349610c2f565b610465610460366004613a85565b610c97565b6040516103029190613cbd565b610349610480366004613d8e565b610e04565b6103c8610493366004613a85565b60106020526000908152604090205461ffff1681565b60095461031e906001600160a01b031681565b6102f66104ca366004613b77565b600f6020526000908152604090205460ff1681565b61031e6104ed366004613a85565b6115ae565b61035361166b565b6103a6610508366004613ab3565b6116f9565b610349611797565b600b546103c89061ffff1681565b610349610531366004613ab3565b6117fb565b6000546001600160a01b031661031e565b6103a6600c5481565b61031e61055e366004613a85565b6118b3565b6103536118c3565b610349610579366004613dd5565b6118d2565b61034961058c366004613e23565b611adb565b61034961059f366004613e58565b611ba0565b6103536105b2366004613a85565b611c2e565b6103496105c5366004613ab3565b611d27565b6103496105d8366004613a85565b611db0565b6103496105eb366004613b77565b61206f565b6102f66105fe366004613ed8565b6121e4565b610349610611366004613ab3565b6122ce565b610349610624366004613ef6565b61243d565b610349610637366004613ab3565b6124aa565b61034961064a366004613f11565b61258c565b6103c861065d366004613fb5565b600e60209081526000928352604080842090915290825290205461ffff1681565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806106e157506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061071557507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6001818154811061072b57600080fd5b6000918252602090912001546001600160a01b0316905081565b6000546001600160a01b031633146107a45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6009805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6060600280546107e290613fe9565b80601f016020809104026020016040519081016040528092919081815260200182805461080e90613fe9565b801561085b5780601f106108305761010080835404028352916020019161085b565b820191906000526020600020905b81548152906001019060200180831161083e57829003601f168201915b5050505050905090565b60008181526010602090815260408083205461ffff16835260049091528120546001600160a01b03166109005760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161079b565b6006600061090d8461296c565b61ffff1681526020810191909152604001600020546001600160a01b031692915050565b600061093c826115ae565b9050806001600160a01b0316836001600160a01b031614156109c65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161079b565b336001600160a01b03821614806109e257506109e281336121e4565b610a545760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161079b565b610a5e8383612a08565b505050565b610a6d3382612a9e565b610adf5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161079b565b610a5e838383612b97565b6000546001600160a01b03163314610b445760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079b565b8051610b5790600a90602084019061399f565b5050565b6000546001600160a01b03163314610bb55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079b565b600d80546001810182556000919091527fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb501805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b610a5e83838360405180602001604052806000815250611ba0565b6000546001600160a01b03163314610c895760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079b565b610c95600d6000613a23565b565b60008181526010602090815260408083205461ffff16835260049091529020546060906001600160a01b0316610d355760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161079b565b6000610d408361296c565b600d5490915060009067ffffffffffffffff811115610d6157610d61613bd5565b604051908082528060200260200182016040528015610d8a578160200160208202803683370190505b50905060005b600d5460ff82161015610dfc5761ffff8084166000908152600e6020908152604080832060ff861680855292529091205484519216918491908110610dd757610dd7614024565b61ffff9092166020928302919091019091015280610df481614050565b915050610d90565b509392505050565b8133610e0f826115ae565b6001600160a01b031614610e735760405162461bcd60e51b815260206004820152602560248201527f43616c6c6572206973206e6f7420746865206f776e6572206f662074686520616044820152643b30ba30b960d91b606482015260840161079b565b8151600d5414610ec55760405162461bcd60e51b815260206004820152601860248201527f496e76616c696420616d6f756e74206f66207472616974730000000000000000604482015260640161079b565b6000610ed08461296c565b61ffff81166000908152600f602052604090205490915060ff16610f5c5760405162461bcd60e51b815260206004820152603660248201527f43616e206e6f74206d6f646966792061766174617220756e74696c206f72696760448201527f696e616c2074726169747320617265206d696e74656400000000000000000000606482015260840161079b565b61ffff811660009081526012602052604090205460ff1615610fe65760405162461bcd60e51b815260206004820152602c60248201527f43616e206e6f74206368616e67652074686520747261697473206f662061206660448201527f726f7a656e206176617461720000000000000000000000000000000000000000606482015260840161079b565b600080845167ffffffffffffffff81111561100357611003613bd5565b60405190808252806020026020018201604052801561102c578160200160208202803683370190505b5090506000805b86518160ff1610156115015761ffff8086166000908152600e6020908152604080832060ff86168085529252909120548951921691899190811061107957611079614024565b602002602001015161ffff161415611090576114ef565b6000600d8260ff16815481106110a8576110a8614024565b60009182526020909120015488516001600160a01b039091169150889060ff84169081106110d8576110d8614024565b602002602001015161ffff16600014806111955750336001600160a01b0316816001600160a01b0316636352211e8a8560ff168151811061111b5761111b614024565b60200260200101516040518263ffffffff1660e01b8152600401611149919061ffff91909116815260200190565b602060405180830381865afa158015611166573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118a9190614070565b6001600160a01b0316145b6112065760405162461bcd60e51b8152602060048201526024808201527f43616c6c6572206973206e6f7420746865206f776e6572206f6620746865207460448201527f7261697400000000000000000000000000000000000000000000000000000000606482015260840161079b565b6000816001600160a01b031663f25b18368a8560ff168151811061122c5761122c614024565b60200260200101516040518263ffffffff1660e01b815260040161125a919061ffff91909116815260200190565b6020604051808303816000875af1158015611279573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061129d919061408d565b905061ffff8116158015906112ba57508661ffff168161ffff1614155b1561131d5761ffff81166000908152600e6020908152604080832060ff871684529091529020805461ffff191690556112f281612ed6565b85858151811061130457611304614024565b602090810291909101015283611319816140aa565b9450505b61ffff8088166000908152600e6020908152604080832060ff8816845290915290205416156113eb5761ffff8088166000908152600e6020908152604080832060ff88168452909152902054600197506001600160a01b03841691638f1004b191166113888d6115ae565b6040516001600160e01b031960e085901b16815261ffff90921660048301526001600160a01b03166024820152604401600060405180830381600087803b1580156113d257600080fd5b505af11580156113e6573d6000803e3d6000fd5b505050505b888360ff168151811061140057611400614024565b60209081029190910181015161ffff8981166000908152600e8452604080822060ff891680845295529020805461ffff19169190921617905589518a9190811061144c5761144c614024565b602002602001015161ffff166000146114ec57816001600160a01b031663e3f512bb8a8560ff168151811061148357611483614024565b6020026020010151896040518363ffffffff1660e01b81526004016114b992919061ffff92831681529116602082015260400190565b600060405180830381600087803b1580156114d357600080fd5b505af11580156114e7573d6000803e3d6000fd5b505050505b50505b806114f981614050565b915050611033565b5060005b818110156115935761155883828151811061152257611522614024565b602002602001015160009081526010602090815260408083205461ffff16835260049091529020546001600160a01b0316151590565b156115815761157f83828151811061157257611572614024565b6020026020010151612f73565b505b8061158b816140aa565b915050611505565b5082156115a5576115a387612f73565b505b50505050505050565b600b54600090819061ffff168311156115d1576115ca8361296c565b90506115d4565b50815b61ffff81166000908152600460205260409020546001600160a01b0316806116645760405162461bcd60e51b815260206004820152603060248201527f455243373231204176617461723a206f776e657220717565727920666f72206e60448201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000606482015260840161079b565b9392505050565b600a805461167890613fe9565b80601f01602080910402602001604051908101604052809291908181526020018280546116a490613fe9565b80156116f15780601f106116c6576101008083540402835291602001916116f1565b820191906000526020600020905b8154815290600101906020018083116116d457829003601f168201915b505050505081565b60006001600160a01b0382166117775760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161079b565b506001600160a01b031660009081526005602052604090205461ffff1690565b6000546001600160a01b031633146117f15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079b565b610c956000613068565b6000546001600160a01b031633146118555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079b565b6001805480820182556000919091527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf601805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b600d818154811061072b57600080fd5b6060600380546107e290613fe9565b6000805b60015481101561193357336001600160a01b0316600182815481106118fd576118fd614024565b6000918252602090912001546001600160a01b031614156119215760019150611933565b8061192b816140aa565b9150506118d6565b50806119a75760405162461bcd60e51b815260206004820152602760248201527f4d696e7465723a2063616c6c6572206973206e6f7420616e20616c6c6f77656460448201527f206d696e74657200000000000000000000000000000000000000000000000000606482015260840161079b565b60008361ffff161180156119c55750600b5461ffff90811690841611155b611a115760405162461bcd60e51b815260206004820152601460248201527f546f6b656e2049442063616e6e6f742062652030000000000000000000000000604482015260640161079b565b600b5461ffff808216620100009092041610611a6f5760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f74206d696e74206d6f726520617661746172730000000000000000604482015260640161079b565b61ffff8084166000818152601060209081526040808320805461ffff1916851790556011909152902055600b8054620100009004909116906002611ab2836140c5565b91906101000a81548161ffff021916908361ffff16021790555050610a5e828461ffff166130c5565b6001600160a01b038216331415611b345760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161079b565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611baa3383612a9e565b611c1c5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161079b565b611c2884848484613243565b50505050565b60008181526010602090815260408083205461ffff16835260049091529020546060906001600160a01b0316611ccc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161079b565b6000611cd66132cc565b90506000815111611cf65760405180602001604052806000815250611664565b80611d00846132db565b604051602001611d119291906140e7565b6040516020818303038152906040529392505050565b6000546001600160a01b03163314611d815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079b565b6008805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60135460ff16611e025760405162461bcd60e51b815260206004820152601b60248201527f43616e6e6f7420667265657a6520617420746869732073746167650000000000604482015260640161079b565b6000611e0d8261296c565b905033611e19836115ae565b6001600160a01b031614611e7d5760405162461bcd60e51b815260206004820152602560248201527f43616c6c6572206973206e6f7420746865206f776e6572206f662074686520616044820152643b30ba30b960d91b606482015260840161079b565b61ffff81166000908152600f602052604090205460ff16611ee05760405162461bcd60e51b815260206004820152601b60248201527f5472616974732068617665206e6f74206265656e206d696e7465640000000000604482015260640161079b565b61ffff811660009081526012602052604090205460ff1615611f445760405162461bcd60e51b815260206004820152601860248201527f41766174617220697320616c72656164792066726f7a656e0000000000000000604482015260640161079b565b61ffff81166000908152601260205260408120805460ff191660011790555b600d5460ff82161015610a5e5761ffff8083166000908152600e6020908152604080832060ff8616845290915290205416611f9d5761205d565b6000600d8260ff1681548110611fb557611fb5614024565b60009182526020808320919091015461ffff8681168452600e8352604080852060ff88168652909352928290205491517f19ac6f690000000000000000000000000000000000000000000000000000000081529190921660048201526001600160a01b03909116915081906319ac6f6990602401600060405180830381600087803b15801561204357600080fd5b505af1158015612057573d6000803e3d6000fd5b50505050505b8061206781614050565b915050611f63565b61ffff811660009081526012602052604090205460ff16156120d35760405162461bcd60e51b815260206004820152601860248201527f41766174617220697320616c72656164792066726f7a656e0000000000000000604482015260640161079b565b6000806120df83612ed6565b905060005b600d5460ff8216101561218d57336001600160a01b0316600d8260ff168154811061211157612111614024565b6000918252602090912001546001600160a01b0316141561217b576000600e600061213b8561296c565b61ffff90811682526020808301939093526040918201600090812060ff871682529093529120805461ffff1916929091169190911790556001925061218d565b8061218581614050565b9150506120e4565b50816121db5760405162461bcd60e51b815260206004820152601560248201527f43616c6c6572206973206e6f7420616c6c6f7765640000000000000000000000604482015260640161079b565b611c2881612f73565b6008546000906001600160a01b03161561229f576008546040517fc45527910000000000000000000000000000000000000000000000000000000081526001600160a01b03858116600483015291821691841690829063c455279190602401602060405180830381865afa158015612260573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122849190614070565b6001600160a01b0316141561229d576001915050610715565b505b506001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6000546001600160a01b031633146123285760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079b565b60005b600154811015610b5757816001600160a01b03166001828154811061235257612352614024565b6000918252602090912001546001600160a01b0316146123715761242b565b60018054612380908290614116565b8154811061239057612390614024565b600091825260209091200154600180546001600160a01b0390921691839081106123bc576123bc614024565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060018054806123fb576123fb61412d565b6000828152602090208101600019908101805473ffffffffffffffffffffffffffffffffffffffff191690550190555b80612435816140aa565b91505061232b565b6000546001600160a01b031633146124975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079b565b6013805460ff1916911515919091179055565b6000546001600160a01b031633146125045760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079b565b6001600160a01b0381166125805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161079b565b61258981613068565b50565b3361259a61ffff86166115ae565b6001600160a01b0316146125fe5760405162461bcd60e51b815260206004820152602560248201527f43616c6c6572206973206e6f7420746865206f776e6572206f662074686520616044820152643b30ba30b960d91b606482015260840161079b565b600b5461ffff90811690851611156126585760405162461bcd60e51b815260206004820152601060248201527f496e76616c696420746f6b656e20496400000000000000000000000000000000604482015260640161079b565b61ffff84166000908152600f602052604090205460ff16156126bc5760405162461bcd60e51b815260206004820152601560248201527f54726169747320616c7265616479206d696e7465640000000000000000000000604482015260640161079b565b60006126cc8561ffff168561340d565b905060006127108285858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061346792505050565b6009549091506001600160a01b038083169116146127705760405162461bcd60e51b815260206004820181905260248201527f496e76616c6964207369676e617475726520666f72207468652063616c6c6572604482015260640161079b565b61ffff86166000908152600f60205260408120805460ff191660011790555b85518160ff1610156115a557858160ff16815181106127b0576127b0614024565b602002602001015161ffff16600014156127c95761295a565b6000600d8260ff16815481106127e1576127e1614024565b60009182526020909120015487516001600160a01b03909116915081906394bf804d90899060ff861690811061281957612819614024565b60209081029190910101516040516001600160e01b031960e084901b16815261ffff9091166004820152336024820152604401600060405180830381600087803b15801561286657600080fd5b505af115801561287a573d6000803e3d6000fd5b50505050868260ff168151811061289357612893614024565b60209081029190910181015161ffff8a81166000908152600e8452604080822060ff881680845295529020805461ffff19169190921617905587516001600160a01b0383169163e3f512bb918a919081106128f0576128f0614024565b60200260200101518a6040518363ffffffff1660e01b815260040161292692919061ffff92831681529116602082015260400190565b600060405180830381600087803b15801561294057600080fd5b505af1158015612954573d6000803e3d6000fd5b50505050505b8061296481614050565b91505061278f565b60008181526010602052604081205461ffff166129f15760405162461bcd60e51b815260206004820152602360248201527f676574496e7465726e616c4d617070696e673a20496e76616c6964206d61707060448201527f696e670000000000000000000000000000000000000000000000000000000000606482015260840161079b565b5060009081526010602052604090205461ffff1690565b8160066000612a1a8461ffff1661296c565b61ffff90811682526020820192909252604001600020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b039384161790558216908316612a65826115ae565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526010602090815260408083205461ffff16835260049091528120546001600160a01b0316612b395760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161079b565b6000612b44836115ae565b9050806001600160a01b0316846001600160a01b03161480612b7f5750836001600160a01b0316612b7484610865565b6001600160a01b0316145b80612b8f5750612b8f81856121e4565b949350505050565b826001600160a01b0316612baa826115ae565b6001600160a01b031614612c265760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161079b565b6001600160a01b038216612ca15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161079b565b6000612cac8261296c565b9050612cb9600083612a08565b6001600160a01b0384166000908152600560205260408120805460019290612ce690849061ffff16614143565b82546101009290920a61ffff8181021990931691831602179091556001600160a01b03851660009081526005602052604081208054600194509092612d2d91859116614166565b82546101009290920a61ffff8181021990931691831602179091558216600090815260046020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0388811691821790925591518694509192908816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a460005b600d5460ff82161015612ecf5761ffff8083166000908152600e6020908152604080832060ff8616845290915290205416612def57612ebd565b6000600d8260ff1681548110612e0757612e07614024565b60009182526020808320919091015461ffff8681168452600e8352604080852060ff88168652909352928290205491517f0a28a87c0000000000000000000000000000000000000000000000000000000081526001600160a01b038a8116600483015289811660248301529290931660448401521691508190630a28a87c90606401600060405180830381600087803b158015612ea357600080fd5b505af1158015612eb7573d6000803e3d6000fd5b50505050505b80612ec781614050565b915050612db5565b5050505050565b61ffff8116600090815260116020526040812054612f5c5760405162461bcd60e51b815260206004820152602360248201527f67657445787465726e616c4d617070696e673a20496e76616c6964206d61707060448201527f696e670000000000000000000000000000000000000000000000000000000000606482015260840161079b565b5061ffff1660009081526011602052604090205490565b600080612f7f836115ae565b60405190915083906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a4600c546040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46000612ffe8461296c565b600c80546000908152601060208181526040808420805461ffff881661ffff199182168117909255865491865260118452828620919091558a8552929091528220805490911690558154929350613054836140aa565b91905055506001600c54612b8f9190614116565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03821661311b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161079b565b60008181526010602090815260408083205461ffff16835260049091529020546001600160a01b0316156131915760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161079b565b6001600160a01b03821660009081526005602052604081208054600192906131be90849061ffff16614166565b825461ffff9182166101009390930a92830291909202199091161790555060008181526004602052604080822080546001600160a01b03861673ffffffffffffffffffffffffffffffffffffffff19909116811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b61324e848484612b97565b61325a84848484613483565b611c285760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161079b565b6060600a80546107e290613fe9565b60608161331b57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115613345578061332f816140aa565b915061333e9050600a83614199565b915061331f565b60008167ffffffffffffffff81111561336057613360613bd5565b6040519080825280601f01601f19166020018201604052801561338a576020820181803683370190505b5090505b8415612b8f5761339f600183614116565b91506133ac600a866141ad565b6133b79060306141c1565b60f81b8183815181106133cc576133cc614024565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613406600a86614199565b945061338e565b6000808251602061341e91906141d9565b6134299060206141c1565b9050613434816132db565b8484604051602001613448939291906141f8565b6040516020818303038152906040528051906020012091505092915050565b60008060006134768585613609565b91509150610dfc81613679565b60006001600160a01b0384163b156135fe576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a02906134e0903390899088908890600401614278565b6020604051808303816000875af192505050801561351b575060408051601f3d908101601f19168201909252613518918101906142b4565b60015b6135cb573d808015613549576040519150601f19603f3d011682016040523d82523d6000602084013e61354e565b606091505b5080516135c35760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161079b565b805181602001fd5b6001600160e01b0319167f150b7a0200000000000000000000000000000000000000000000000000000000149050612b8f565b506001949350505050565b6000808251604114156136405760208301516040840151606085015160001a6136348782858561386a565b94509450505050613672565b82516040141561366a576020830151604084015161365f868383613957565b935093505050613672565b506000905060025b9250929050565b600081600481111561368d5761368d6142d1565b14156136965750565b60018160048111156136aa576136aa6142d1565b14156136f85760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161079b565b600281600481111561370c5761370c6142d1565b141561375a5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161079b565b600381600481111561376e5761376e6142d1565b14156137e25760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f7565000000000000000000000000000000000000000000000000000000000000606482015260840161079b565b60048160048111156137f6576137f66142d1565b14156125895760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f7565000000000000000000000000000000000000000000000000000000000000606482015260840161079b565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156138a1575060009050600361394e565b8460ff16601b141580156138b957508460ff16601c14155b156138ca575060009050600461394e565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561391e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166139475760006001925092505061394e565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b016139918782888561386a565b935093505050935093915050565b8280546139ab90613fe9565b90600052602060002090601f0160209004810192826139cd5760008555613a13565b82601f106139e657805160ff1916838001178555613a13565b82800160010185558215613a13579182015b82811115613a135782518255916020019190600101906139f8565b50613a1f929150613a3d565b5090565b508054600082559060005260206000209081019061258991905b5b80821115613a1f5760008155600101613a3e565b6001600160e01b03198116811461258957600080fd5b600060208284031215613a7a57600080fd5b813561166481613a52565b600060208284031215613a9757600080fd5b5035919050565b6001600160a01b038116811461258957600080fd5b600060208284031215613ac557600080fd5b813561166481613a9e565b60005b83811015613aeb578181015183820152602001613ad3565b83811115611c285750506000910152565b60008151808452613b14816020860160208601613ad0565b601f01601f19169290920160200192915050565b6020815260006116646020830184613afc565b60008060408385031215613b4e57600080fd5b8235613b5981613a9e565b946020939093013593505050565b61ffff8116811461258957600080fd5b600060208284031215613b8957600080fd5b813561166481613b67565b600080600060608486031215613ba957600080fd5b8335613bb481613a9e565b92506020840135613bc481613a9e565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715613c1457613c14613bd5565b604052919050565b600067ffffffffffffffff831115613c3657613c36613bd5565b613c496020601f19601f86011601613beb565b9050828152838383011115613c5d57600080fd5b828260208301376000602084830101529392505050565b600060208284031215613c8657600080fd5b813567ffffffffffffffff811115613c9d57600080fd5b8201601f81018413613cae57600080fd5b612b8f84823560208401613c1c565b6020808252825182820181905260009190848201906040850190845b81811015613cf957835161ffff1683529284019291840191600101613cd9565b50909695505050505050565b600082601f830112613d1657600080fd5b8135602067ffffffffffffffff821115613d3257613d32613bd5565b8160051b613d41828201613beb565b9283528481018201928281019087851115613d5b57600080fd5b83870192505b84831015613d83578235613d7481613b67565b82529183019190830190613d61565b979650505050505050565b60008060408385031215613da157600080fd5b82359150602083013567ffffffffffffffff811115613dbf57600080fd5b613dcb85828601613d05565b9150509250929050565b60008060408385031215613de857600080fd5b8235613df381613b67565b91506020830135613e0381613a9e565b809150509250929050565b80358015158114613e1e57600080fd5b919050565b60008060408385031215613e3657600080fd5b8235613e4181613a9e565b9150613e4f60208401613e0e565b90509250929050565b60008060008060808587031215613e6e57600080fd5b8435613e7981613a9e565b93506020850135613e8981613a9e565b925060408501359150606085013567ffffffffffffffff811115613eac57600080fd5b8501601f81018713613ebd57600080fd5b613ecc87823560208401613c1c565b91505092959194509250565b60008060408385031215613eeb57600080fd5b8235613df381613a9e565b600060208284031215613f0857600080fd5b61166482613e0e565b60008060008060608587031215613f2757600080fd5b8435613f3281613b67565b9350602085013567ffffffffffffffff80821115613f4f57600080fd5b613f5b88838901613d05565b94506040870135915080821115613f7157600080fd5b818701915087601f830112613f8557600080fd5b813581811115613f9457600080fd5b886020828501011115613fa657600080fd5b95989497505060200194505050565b60008060408385031215613fc857600080fd5b8235613fd381613b67565b9150602083013560ff81168114613e0357600080fd5b600181811c90821680613ffd57607f821691505b6020821081141561401e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060ff821660ff8114156140675761406761403a565b60010192915050565b60006020828403121561408257600080fd5b815161166481613a9e565b60006020828403121561409f57600080fd5b815161166481613b67565b60006000198214156140be576140be61403a565b5060010190565b600061ffff808316818114156140dd576140dd61403a565b6001019392505050565b600083516140f9818460208801613ad0565b83519083019061410d818360208801613ad0565b01949350505050565b6000828210156141285761412861403a565b500390565b634e487b7160e01b600052603160045260246000fd5b600061ffff8381169083168181101561415e5761415e61403a565b039392505050565b600061ffff80831681851680830382111561410d5761410d61403a565b634e487b7160e01b600052601260045260246000fd5b6000826141a8576141a8614183565b500490565b6000826141bc576141bc614183565b500690565b600082198211156141d4576141d461403a565b500190565b60008160001904831182151516156141f3576141f361403a565b500290565b7f19457468657265756d205369676e6564204d6573736167653a0a000000000000815260008451602061423182601a8601838a01613ad0565b818401915085601a830152603a82019150845181860160005b8281101561426a57815161ffff168552938301939083019060010161424a565b509298975050505050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526142aa6080830184613afc565b9695505050505050565b6000602082840312156142c657600080fd5b815161166481613a52565b634e487b7160e01b600052602160045260246000fdfea2646970667358221220849730851bed747915cd7ccf53bd7b67c6ef4e0bec09a4bd216fbacf05ec860664736f6c634300080a0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102de5760003560e01c806370a0823111610186578063b88d4fde116100e3578063e985e9c511610097578063f2fde38b11610071578063f2fde38b14610629578063fda6c1501461063c578063ff52c4641461064f57600080fd5b8063e985e9c5146105f0578063e9cf98ae14610603578063ed27e5661461061657600080fd5b8063d26ea6c0116100c8578063d26ea6c0146105b7578063d7a78db8146105ca578063e6ad01b7146105dd57600080fd5b8063b88d4fde14610591578063c87b56dd146105a457600080fd5b80638e34742a1161013a57806395d89b411161011f57806395d89b41146105635780639c2055131461056b578063a22cb4651461057e57600080fd5b80638e34742a1461054757806390d229241461055057600080fd5b80637e1c0c091161016b5780637e1c0c091461051557806383ca5a05146105235780638da5cb5b1461053657600080fd5b806370a08231146104fa578063715018a61461050d57600080fd5b806334c9f8ea1161023f5780635848ef61116101f3578063601a6740116101cd578063601a6740146104bc5780636352211e146104df5780636c0360eb146104f257600080fd5b80635848ef61146104725780635a79254d146104855780635b7633d0146104a957600080fd5b806342842e0e1161022457806342842e0e146104375780634ae585c31461044a5780634be0f77e1461045257600080fd5b806334c9f8ea1461040157806341517e051461041457600080fd5b8063095ea7b31161029657806318160ddd1161027b57806318160ddd146103b457806323b872dd146103db57806330176e13146103ee57600080fd5b8063095ea7b314610373578063096a31a41461038657600080fd5b8063046dc166116102c7578063046dc1661461033657806306fdde031461034b578063081812fc1461036057600080fd5b806301ffc9a7146102e3578063028850971461030b575b600080fd5b6102f66102f1366004613a68565b61067e565b60405190151581526020015b60405180910390f35b61031e610319366004613a85565b61071b565b6040516001600160a01b039091168152602001610302565b610349610344366004613ab3565b610745565b005b6103536107d3565b6040516103029190613b28565b61031e61036e366004613a85565b610865565b610349610381366004613b3b565b610931565b6103a6610394366004613b77565b60116020526000908152604090205481565b604051908152602001610302565b600b546103c89062010000900461ffff1681565b60405161ffff9091168152602001610302565b6103496103e9366004613b94565b610a63565b6103496103fc366004613c74565b610aea565b61034961040f366004613ab3565b610b5b565b6102f6610422366004613b77565b60126020526000908152604090205460ff1681565b610349610445366004613b94565b610c14565b610349610c2f565b610465610460366004613a85565b610c97565b6040516103029190613cbd565b610349610480366004613d8e565b610e04565b6103c8610493366004613a85565b60106020526000908152604090205461ffff1681565b60095461031e906001600160a01b031681565b6102f66104ca366004613b77565b600f6020526000908152604090205460ff1681565b61031e6104ed366004613a85565b6115ae565b61035361166b565b6103a6610508366004613ab3565b6116f9565b610349611797565b600b546103c89061ffff1681565b610349610531366004613ab3565b6117fb565b6000546001600160a01b031661031e565b6103a6600c5481565b61031e61055e366004613a85565b6118b3565b6103536118c3565b610349610579366004613dd5565b6118d2565b61034961058c366004613e23565b611adb565b61034961059f366004613e58565b611ba0565b6103536105b2366004613a85565b611c2e565b6103496105c5366004613ab3565b611d27565b6103496105d8366004613a85565b611db0565b6103496105eb366004613b77565b61206f565b6102f66105fe366004613ed8565b6121e4565b610349610611366004613ab3565b6122ce565b610349610624366004613ef6565b61243d565b610349610637366004613ab3565b6124aa565b61034961064a366004613f11565b61258c565b6103c861065d366004613fb5565b600e60209081526000928352604080842090915290825290205461ffff1681565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806106e157506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061071557507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6001818154811061072b57600080fd5b6000918252602090912001546001600160a01b0316905081565b6000546001600160a01b031633146107a45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6009805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6060600280546107e290613fe9565b80601f016020809104026020016040519081016040528092919081815260200182805461080e90613fe9565b801561085b5780601f106108305761010080835404028352916020019161085b565b820191906000526020600020905b81548152906001019060200180831161083e57829003601f168201915b5050505050905090565b60008181526010602090815260408083205461ffff16835260049091528120546001600160a01b03166109005760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161079b565b6006600061090d8461296c565b61ffff1681526020810191909152604001600020546001600160a01b031692915050565b600061093c826115ae565b9050806001600160a01b0316836001600160a01b031614156109c65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161079b565b336001600160a01b03821614806109e257506109e281336121e4565b610a545760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161079b565b610a5e8383612a08565b505050565b610a6d3382612a9e565b610adf5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161079b565b610a5e838383612b97565b6000546001600160a01b03163314610b445760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079b565b8051610b5790600a90602084019061399f565b5050565b6000546001600160a01b03163314610bb55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079b565b600d80546001810182556000919091527fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb501805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b610a5e83838360405180602001604052806000815250611ba0565b6000546001600160a01b03163314610c895760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079b565b610c95600d6000613a23565b565b60008181526010602090815260408083205461ffff16835260049091529020546060906001600160a01b0316610d355760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161079b565b6000610d408361296c565b600d5490915060009067ffffffffffffffff811115610d6157610d61613bd5565b604051908082528060200260200182016040528015610d8a578160200160208202803683370190505b50905060005b600d5460ff82161015610dfc5761ffff8084166000908152600e6020908152604080832060ff861680855292529091205484519216918491908110610dd757610dd7614024565b61ffff9092166020928302919091019091015280610df481614050565b915050610d90565b509392505050565b8133610e0f826115ae565b6001600160a01b031614610e735760405162461bcd60e51b815260206004820152602560248201527f43616c6c6572206973206e6f7420746865206f776e6572206f662074686520616044820152643b30ba30b960d91b606482015260840161079b565b8151600d5414610ec55760405162461bcd60e51b815260206004820152601860248201527f496e76616c696420616d6f756e74206f66207472616974730000000000000000604482015260640161079b565b6000610ed08461296c565b61ffff81166000908152600f602052604090205490915060ff16610f5c5760405162461bcd60e51b815260206004820152603660248201527f43616e206e6f74206d6f646966792061766174617220756e74696c206f72696760448201527f696e616c2074726169747320617265206d696e74656400000000000000000000606482015260840161079b565b61ffff811660009081526012602052604090205460ff1615610fe65760405162461bcd60e51b815260206004820152602c60248201527f43616e206e6f74206368616e67652074686520747261697473206f662061206660448201527f726f7a656e206176617461720000000000000000000000000000000000000000606482015260840161079b565b600080845167ffffffffffffffff81111561100357611003613bd5565b60405190808252806020026020018201604052801561102c578160200160208202803683370190505b5090506000805b86518160ff1610156115015761ffff8086166000908152600e6020908152604080832060ff86168085529252909120548951921691899190811061107957611079614024565b602002602001015161ffff161415611090576114ef565b6000600d8260ff16815481106110a8576110a8614024565b60009182526020909120015488516001600160a01b039091169150889060ff84169081106110d8576110d8614024565b602002602001015161ffff16600014806111955750336001600160a01b0316816001600160a01b0316636352211e8a8560ff168151811061111b5761111b614024565b60200260200101516040518263ffffffff1660e01b8152600401611149919061ffff91909116815260200190565b602060405180830381865afa158015611166573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118a9190614070565b6001600160a01b0316145b6112065760405162461bcd60e51b8152602060048201526024808201527f43616c6c6572206973206e6f7420746865206f776e6572206f6620746865207460448201527f7261697400000000000000000000000000000000000000000000000000000000606482015260840161079b565b6000816001600160a01b031663f25b18368a8560ff168151811061122c5761122c614024565b60200260200101516040518263ffffffff1660e01b815260040161125a919061ffff91909116815260200190565b6020604051808303816000875af1158015611279573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061129d919061408d565b905061ffff8116158015906112ba57508661ffff168161ffff1614155b1561131d5761ffff81166000908152600e6020908152604080832060ff871684529091529020805461ffff191690556112f281612ed6565b85858151811061130457611304614024565b602090810291909101015283611319816140aa565b9450505b61ffff8088166000908152600e6020908152604080832060ff8816845290915290205416156113eb5761ffff8088166000908152600e6020908152604080832060ff88168452909152902054600197506001600160a01b03841691638f1004b191166113888d6115ae565b6040516001600160e01b031960e085901b16815261ffff90921660048301526001600160a01b03166024820152604401600060405180830381600087803b1580156113d257600080fd5b505af11580156113e6573d6000803e3d6000fd5b505050505b888360ff168151811061140057611400614024565b60209081029190910181015161ffff8981166000908152600e8452604080822060ff891680845295529020805461ffff19169190921617905589518a9190811061144c5761144c614024565b602002602001015161ffff166000146114ec57816001600160a01b031663e3f512bb8a8560ff168151811061148357611483614024565b6020026020010151896040518363ffffffff1660e01b81526004016114b992919061ffff92831681529116602082015260400190565b600060405180830381600087803b1580156114d357600080fd5b505af11580156114e7573d6000803e3d6000fd5b505050505b50505b806114f981614050565b915050611033565b5060005b818110156115935761155883828151811061152257611522614024565b602002602001015160009081526010602090815260408083205461ffff16835260049091529020546001600160a01b0316151590565b156115815761157f83828151811061157257611572614024565b6020026020010151612f73565b505b8061158b816140aa565b915050611505565b5082156115a5576115a387612f73565b505b50505050505050565b600b54600090819061ffff168311156115d1576115ca8361296c565b90506115d4565b50815b61ffff81166000908152600460205260409020546001600160a01b0316806116645760405162461bcd60e51b815260206004820152603060248201527f455243373231204176617461723a206f776e657220717565727920666f72206e60448201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000606482015260840161079b565b9392505050565b600a805461167890613fe9565b80601f01602080910402602001604051908101604052809291908181526020018280546116a490613fe9565b80156116f15780601f106116c6576101008083540402835291602001916116f1565b820191906000526020600020905b8154815290600101906020018083116116d457829003601f168201915b505050505081565b60006001600160a01b0382166117775760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161079b565b506001600160a01b031660009081526005602052604090205461ffff1690565b6000546001600160a01b031633146117f15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079b565b610c956000613068565b6000546001600160a01b031633146118555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079b565b6001805480820182556000919091527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf601805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b600d818154811061072b57600080fd5b6060600380546107e290613fe9565b6000805b60015481101561193357336001600160a01b0316600182815481106118fd576118fd614024565b6000918252602090912001546001600160a01b031614156119215760019150611933565b8061192b816140aa565b9150506118d6565b50806119a75760405162461bcd60e51b815260206004820152602760248201527f4d696e7465723a2063616c6c6572206973206e6f7420616e20616c6c6f77656460448201527f206d696e74657200000000000000000000000000000000000000000000000000606482015260840161079b565b60008361ffff161180156119c55750600b5461ffff90811690841611155b611a115760405162461bcd60e51b815260206004820152601460248201527f546f6b656e2049442063616e6e6f742062652030000000000000000000000000604482015260640161079b565b600b5461ffff808216620100009092041610611a6f5760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f74206d696e74206d6f726520617661746172730000000000000000604482015260640161079b565b61ffff8084166000818152601060209081526040808320805461ffff1916851790556011909152902055600b8054620100009004909116906002611ab2836140c5565b91906101000a81548161ffff021916908361ffff16021790555050610a5e828461ffff166130c5565b6001600160a01b038216331415611b345760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161079b565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611baa3383612a9e565b611c1c5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161079b565b611c2884848484613243565b50505050565b60008181526010602090815260408083205461ffff16835260049091529020546060906001600160a01b0316611ccc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161079b565b6000611cd66132cc565b90506000815111611cf65760405180602001604052806000815250611664565b80611d00846132db565b604051602001611d119291906140e7565b6040516020818303038152906040529392505050565b6000546001600160a01b03163314611d815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079b565b6008805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60135460ff16611e025760405162461bcd60e51b815260206004820152601b60248201527f43616e6e6f7420667265657a6520617420746869732073746167650000000000604482015260640161079b565b6000611e0d8261296c565b905033611e19836115ae565b6001600160a01b031614611e7d5760405162461bcd60e51b815260206004820152602560248201527f43616c6c6572206973206e6f7420746865206f776e6572206f662074686520616044820152643b30ba30b960d91b606482015260840161079b565b61ffff81166000908152600f602052604090205460ff16611ee05760405162461bcd60e51b815260206004820152601b60248201527f5472616974732068617665206e6f74206265656e206d696e7465640000000000604482015260640161079b565b61ffff811660009081526012602052604090205460ff1615611f445760405162461bcd60e51b815260206004820152601860248201527f41766174617220697320616c72656164792066726f7a656e0000000000000000604482015260640161079b565b61ffff81166000908152601260205260408120805460ff191660011790555b600d5460ff82161015610a5e5761ffff8083166000908152600e6020908152604080832060ff8616845290915290205416611f9d5761205d565b6000600d8260ff1681548110611fb557611fb5614024565b60009182526020808320919091015461ffff8681168452600e8352604080852060ff88168652909352928290205491517f19ac6f690000000000000000000000000000000000000000000000000000000081529190921660048201526001600160a01b03909116915081906319ac6f6990602401600060405180830381600087803b15801561204357600080fd5b505af1158015612057573d6000803e3d6000fd5b50505050505b8061206781614050565b915050611f63565b61ffff811660009081526012602052604090205460ff16156120d35760405162461bcd60e51b815260206004820152601860248201527f41766174617220697320616c72656164792066726f7a656e0000000000000000604482015260640161079b565b6000806120df83612ed6565b905060005b600d5460ff8216101561218d57336001600160a01b0316600d8260ff168154811061211157612111614024565b6000918252602090912001546001600160a01b0316141561217b576000600e600061213b8561296c565b61ffff90811682526020808301939093526040918201600090812060ff871682529093529120805461ffff1916929091169190911790556001925061218d565b8061218581614050565b9150506120e4565b50816121db5760405162461bcd60e51b815260206004820152601560248201527f43616c6c6572206973206e6f7420616c6c6f7765640000000000000000000000604482015260640161079b565b611c2881612f73565b6008546000906001600160a01b03161561229f576008546040517fc45527910000000000000000000000000000000000000000000000000000000081526001600160a01b03858116600483015291821691841690829063c455279190602401602060405180830381865afa158015612260573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122849190614070565b6001600160a01b0316141561229d576001915050610715565b505b506001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6000546001600160a01b031633146123285760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079b565b60005b600154811015610b5757816001600160a01b03166001828154811061235257612352614024565b6000918252602090912001546001600160a01b0316146123715761242b565b60018054612380908290614116565b8154811061239057612390614024565b600091825260209091200154600180546001600160a01b0390921691839081106123bc576123bc614024565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060018054806123fb576123fb61412d565b6000828152602090208101600019908101805473ffffffffffffffffffffffffffffffffffffffff191690550190555b80612435816140aa565b91505061232b565b6000546001600160a01b031633146124975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079b565b6013805460ff1916911515919091179055565b6000546001600160a01b031633146125045760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079b565b6001600160a01b0381166125805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161079b565b61258981613068565b50565b3361259a61ffff86166115ae565b6001600160a01b0316146125fe5760405162461bcd60e51b815260206004820152602560248201527f43616c6c6572206973206e6f7420746865206f776e6572206f662074686520616044820152643b30ba30b960d91b606482015260840161079b565b600b5461ffff90811690851611156126585760405162461bcd60e51b815260206004820152601060248201527f496e76616c696420746f6b656e20496400000000000000000000000000000000604482015260640161079b565b61ffff84166000908152600f602052604090205460ff16156126bc5760405162461bcd60e51b815260206004820152601560248201527f54726169747320616c7265616479206d696e7465640000000000000000000000604482015260640161079b565b60006126cc8561ffff168561340d565b905060006127108285858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061346792505050565b6009549091506001600160a01b038083169116146127705760405162461bcd60e51b815260206004820181905260248201527f496e76616c6964207369676e617475726520666f72207468652063616c6c6572604482015260640161079b565b61ffff86166000908152600f60205260408120805460ff191660011790555b85518160ff1610156115a557858160ff16815181106127b0576127b0614024565b602002602001015161ffff16600014156127c95761295a565b6000600d8260ff16815481106127e1576127e1614024565b60009182526020909120015487516001600160a01b03909116915081906394bf804d90899060ff861690811061281957612819614024565b60209081029190910101516040516001600160e01b031960e084901b16815261ffff9091166004820152336024820152604401600060405180830381600087803b15801561286657600080fd5b505af115801561287a573d6000803e3d6000fd5b50505050868260ff168151811061289357612893614024565b60209081029190910181015161ffff8a81166000908152600e8452604080822060ff881680845295529020805461ffff19169190921617905587516001600160a01b0383169163e3f512bb918a919081106128f0576128f0614024565b60200260200101518a6040518363ffffffff1660e01b815260040161292692919061ffff92831681529116602082015260400190565b600060405180830381600087803b15801561294057600080fd5b505af1158015612954573d6000803e3d6000fd5b50505050505b8061296481614050565b91505061278f565b60008181526010602052604081205461ffff166129f15760405162461bcd60e51b815260206004820152602360248201527f676574496e7465726e616c4d617070696e673a20496e76616c6964206d61707060448201527f696e670000000000000000000000000000000000000000000000000000000000606482015260840161079b565b5060009081526010602052604090205461ffff1690565b8160066000612a1a8461ffff1661296c565b61ffff90811682526020820192909252604001600020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b039384161790558216908316612a65826115ae565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526010602090815260408083205461ffff16835260049091528120546001600160a01b0316612b395760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161079b565b6000612b44836115ae565b9050806001600160a01b0316846001600160a01b03161480612b7f5750836001600160a01b0316612b7484610865565b6001600160a01b0316145b80612b8f5750612b8f81856121e4565b949350505050565b826001600160a01b0316612baa826115ae565b6001600160a01b031614612c265760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161079b565b6001600160a01b038216612ca15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161079b565b6000612cac8261296c565b9050612cb9600083612a08565b6001600160a01b0384166000908152600560205260408120805460019290612ce690849061ffff16614143565b82546101009290920a61ffff8181021990931691831602179091556001600160a01b03851660009081526005602052604081208054600194509092612d2d91859116614166565b82546101009290920a61ffff8181021990931691831602179091558216600090815260046020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0388811691821790925591518694509192908816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a460005b600d5460ff82161015612ecf5761ffff8083166000908152600e6020908152604080832060ff8616845290915290205416612def57612ebd565b6000600d8260ff1681548110612e0757612e07614024565b60009182526020808320919091015461ffff8681168452600e8352604080852060ff88168652909352928290205491517f0a28a87c0000000000000000000000000000000000000000000000000000000081526001600160a01b038a8116600483015289811660248301529290931660448401521691508190630a28a87c90606401600060405180830381600087803b158015612ea357600080fd5b505af1158015612eb7573d6000803e3d6000fd5b50505050505b80612ec781614050565b915050612db5565b5050505050565b61ffff8116600090815260116020526040812054612f5c5760405162461bcd60e51b815260206004820152602360248201527f67657445787465726e616c4d617070696e673a20496e76616c6964206d61707060448201527f696e670000000000000000000000000000000000000000000000000000000000606482015260840161079b565b5061ffff1660009081526011602052604090205490565b600080612f7f836115ae565b60405190915083906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a4600c546040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46000612ffe8461296c565b600c80546000908152601060208181526040808420805461ffff881661ffff199182168117909255865491865260118452828620919091558a8552929091528220805490911690558154929350613054836140aa565b91905055506001600c54612b8f9190614116565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03821661311b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161079b565b60008181526010602090815260408083205461ffff16835260049091529020546001600160a01b0316156131915760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161079b565b6001600160a01b03821660009081526005602052604081208054600192906131be90849061ffff16614166565b825461ffff9182166101009390930a92830291909202199091161790555060008181526004602052604080822080546001600160a01b03861673ffffffffffffffffffffffffffffffffffffffff19909116811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b61324e848484612b97565b61325a84848484613483565b611c285760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161079b565b6060600a80546107e290613fe9565b60608161331b57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115613345578061332f816140aa565b915061333e9050600a83614199565b915061331f565b60008167ffffffffffffffff81111561336057613360613bd5565b6040519080825280601f01601f19166020018201604052801561338a576020820181803683370190505b5090505b8415612b8f5761339f600183614116565b91506133ac600a866141ad565b6133b79060306141c1565b60f81b8183815181106133cc576133cc614024565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613406600a86614199565b945061338e565b6000808251602061341e91906141d9565b6134299060206141c1565b9050613434816132db565b8484604051602001613448939291906141f8565b6040516020818303038152906040528051906020012091505092915050565b60008060006134768585613609565b91509150610dfc81613679565b60006001600160a01b0384163b156135fe576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a02906134e0903390899088908890600401614278565b6020604051808303816000875af192505050801561351b575060408051601f3d908101601f19168201909252613518918101906142b4565b60015b6135cb573d808015613549576040519150601f19603f3d011682016040523d82523d6000602084013e61354e565b606091505b5080516135c35760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161079b565b805181602001fd5b6001600160e01b0319167f150b7a0200000000000000000000000000000000000000000000000000000000149050612b8f565b506001949350505050565b6000808251604114156136405760208301516040840151606085015160001a6136348782858561386a565b94509450505050613672565b82516040141561366a576020830151604084015161365f868383613957565b935093505050613672565b506000905060025b9250929050565b600081600481111561368d5761368d6142d1565b14156136965750565b60018160048111156136aa576136aa6142d1565b14156136f85760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161079b565b600281600481111561370c5761370c6142d1565b141561375a5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161079b565b600381600481111561376e5761376e6142d1565b14156137e25760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f7565000000000000000000000000000000000000000000000000000000000000606482015260840161079b565b60048160048111156137f6576137f66142d1565b14156125895760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f7565000000000000000000000000000000000000000000000000000000000000606482015260840161079b565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156138a1575060009050600361394e565b8460ff16601b141580156138b957508460ff16601c14155b156138ca575060009050600461394e565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561391e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166139475760006001925092505061394e565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b016139918782888561386a565b935093505050935093915050565b8280546139ab90613fe9565b90600052602060002090601f0160209004810192826139cd5760008555613a13565b82601f106139e657805160ff1916838001178555613a13565b82800160010185558215613a13579182015b82811115613a135782518255916020019190600101906139f8565b50613a1f929150613a3d565b5090565b508054600082559060005260206000209081019061258991905b5b80821115613a1f5760008155600101613a3e565b6001600160e01b03198116811461258957600080fd5b600060208284031215613a7a57600080fd5b813561166481613a52565b600060208284031215613a9757600080fd5b5035919050565b6001600160a01b038116811461258957600080fd5b600060208284031215613ac557600080fd5b813561166481613a9e565b60005b83811015613aeb578181015183820152602001613ad3565b83811115611c285750506000910152565b60008151808452613b14816020860160208601613ad0565b601f01601f19169290920160200192915050565b6020815260006116646020830184613afc565b60008060408385031215613b4e57600080fd5b8235613b5981613a9e565b946020939093013593505050565b61ffff8116811461258957600080fd5b600060208284031215613b8957600080fd5b813561166481613b67565b600080600060608486031215613ba957600080fd5b8335613bb481613a9e565b92506020840135613bc481613a9e565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715613c1457613c14613bd5565b604052919050565b600067ffffffffffffffff831115613c3657613c36613bd5565b613c496020601f19601f86011601613beb565b9050828152838383011115613c5d57600080fd5b828260208301376000602084830101529392505050565b600060208284031215613c8657600080fd5b813567ffffffffffffffff811115613c9d57600080fd5b8201601f81018413613cae57600080fd5b612b8f84823560208401613c1c565b6020808252825182820181905260009190848201906040850190845b81811015613cf957835161ffff1683529284019291840191600101613cd9565b50909695505050505050565b600082601f830112613d1657600080fd5b8135602067ffffffffffffffff821115613d3257613d32613bd5565b8160051b613d41828201613beb565b9283528481018201928281019087851115613d5b57600080fd5b83870192505b84831015613d83578235613d7481613b67565b82529183019190830190613d61565b979650505050505050565b60008060408385031215613da157600080fd5b82359150602083013567ffffffffffffffff811115613dbf57600080fd5b613dcb85828601613d05565b9150509250929050565b60008060408385031215613de857600080fd5b8235613df381613b67565b91506020830135613e0381613a9e565b809150509250929050565b80358015158114613e1e57600080fd5b919050565b60008060408385031215613e3657600080fd5b8235613e4181613a9e565b9150613e4f60208401613e0e565b90509250929050565b60008060008060808587031215613e6e57600080fd5b8435613e7981613a9e565b93506020850135613e8981613a9e565b925060408501359150606085013567ffffffffffffffff811115613eac57600080fd5b8501601f81018713613ebd57600080fd5b613ecc87823560208401613c1c565b91505092959194509250565b60008060408385031215613eeb57600080fd5b8235613df381613a9e565b600060208284031215613f0857600080fd5b61166482613e0e565b60008060008060608587031215613f2757600080fd5b8435613f3281613b67565b9350602085013567ffffffffffffffff80821115613f4f57600080fd5b613f5b88838901613d05565b94506040870135915080821115613f7157600080fd5b818701915087601f830112613f8557600080fd5b813581811115613f9457600080fd5b886020828501011115613fa657600080fd5b95989497505060200194505050565b60008060408385031215613fc857600080fd5b8235613fd381613b67565b9150602083013560ff81168114613e0357600080fd5b600181811c90821680613ffd57607f821691505b6020821081141561401e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060ff821660ff8114156140675761406761403a565b60010192915050565b60006020828403121561408257600080fd5b815161166481613a9e565b60006020828403121561409f57600080fd5b815161166481613b67565b60006000198214156140be576140be61403a565b5060010190565b600061ffff808316818114156140dd576140dd61403a565b6001019392505050565b600083516140f9818460208801613ad0565b83519083019061410d818360208801613ad0565b01949350505050565b6000828210156141285761412861403a565b500390565b634e487b7160e01b600052603160045260246000fd5b600061ffff8381169083168181101561415e5761415e61403a565b039392505050565b600061ffff80831681851680830382111561410d5761410d61403a565b634e487b7160e01b600052601260045260246000fd5b6000826141a8576141a8614183565b500490565b6000826141bc576141bc614183565b500690565b600082198211156141d4576141d461403a565b500190565b60008160001904831182151516156141f3576141f361403a565b500290565b7f19457468657265756d205369676e6564204d6573736167653a0a000000000000815260008451602061423182601a8601838a01613ad0565b818401915085601a830152603a82019150845181860160005b8281101561426a57815161ffff168552938301939083019060010161424a565b509298975050505050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526142aa6080830184613afc565b9695505050505050565b6000602082840312156142c657600080fd5b815161166481613a52565b634e487b7160e01b600052602160045260246000fdfea2646970667358221220849730851bed747915cd7ccf53bd7b67c6ef4e0bec09a4bd216fbacf05ec860664736f6c634300080a0033

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.