ETH Price: $3,328.86 (+1.96%)
Gas: 7 Gwei

Token

NFTYGiFY (NG)
 

Overview

Max Total Supply

66 NG

Holders

27

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 NG
0x0235f8ca04b4f875cd40ed02c5115878ac836255
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
NFTYGiFY

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 20000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-23
*/

pragma solidity ^0.8.19;
// SPDX-License-Identifier: MIT

/*

      [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]
    []                                                                                            []
    []  []      [][]  [][][][]  [][][][][]  []    [][]    [][][][]    [][]  [][][][]  []    [][]  []
    []  [][]    [][]  [][]        [][]      []    [][]  [][]    [][]    []  [][]      []    [][]  []
    []  [][][]  [][]  [][]        [][]      [][][][][]  [][]                [][]      [][][][][]  []
    []  []  [][][][]  [][][][][]  [][]        [][]      [][]  [][][]  [][]  [][][][][]  [][]      []
    []  []    [][][]  [][]        [][]        [][]      [][]    [][]  [][]  [][]        [][]      []
    []  []      [][]  [][]        [][]        [][]        [][][][][]  [][]  [][]        [][]      []
    []                                                                                            []
      [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]


*/

// this is a redeployment of the NFTYGiFY contract @ 0xfEF980f4A9B0d08af665CB8F6dd32c8f3317cC53
// fixes a potential conflict with persisting token salePrice after transferFrom or safeTransferFrom

// no NFTYGiFers were harmed in this transition

// the tokens from the original contract will not have support of the NFTYGiFY website.
// they will forever live in our hearts and on the Ethereum network.
// may they rest in peace.

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

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

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
/**
 * @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);
}

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

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
/**
 * @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;
    }
}

// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
/**
 * @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);
    }
}

// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.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;
    }
}

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (access/Ownable.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() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

/// @title Base64
/// @author Brecht Devos - <[email protected]>
/// @notice Provides a function for encoding some bytes in base64
library Base64 {
    string internal constant TABLE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';

    function encode(bytes memory data) internal pure returns (string memory) {
        if (data.length == 0) return '';

        // load the table into memory
        string memory table = TABLE;

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((data.length + 2) / 3);

        // add some extra buffer at the end required for the writing
        string memory result = new string(encodedLen + 32);

        assembly {
            // set the actual output length
            mstore(result, encodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

            // result ptr, jump over length
            let resultPtr := add(result, 32)

            // run over the input, 3 bytes at a time
            for {} lt(dataPtr, endPtr) {}
            {
               dataPtr := add(dataPtr, 3)

               // read 3 bytes
               let input := mload(dataPtr)

               // write 4 characters
               mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr(18, input), 0x3F)))))
               resultPtr := add(resultPtr, 1)
               mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr(12, input), 0x3F)))))
               resultPtr := add(resultPtr, 1)
               mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr( 6, input), 0x3F)))))
               resultPtr := add(resultPtr, 1)
               mstore(resultPtr, shl(248, mload(add(tablePtr, and(        input,  0x3F)))))
               resultPtr := add(resultPtr, 1)
            }

            // padding with '='
            switch mod(mload(data), 3)
            case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) }
            case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) }
        }

        return result;
    }
}

// from: https://eips.ethereum.org/EIPS/eip-2981#simple-summary
///
/// @dev Interface for the NFT Royalty Standard
///
interface IERC2981 is IERC165 {
    /// ERC165 bytes to add to interface array - set in parent contract
    /// implementing this standard
    ///
    /// bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a
    /// bytes4 private constant _INTERFACE_ID_ERC2981 = 0x2a55205a;
    /// _registerInterface(_INTERFACE_ID_ERC2981);

    /// @notice Called with the sale price to determine how much royalty
    //          is owed and to whom.
    /// @param _tokenId - the NFT asset queried for royalty information
    /// @param _salePrice - the sale price of the NFT asset specified by _tokenId
    /// @return receiver - address of who should be sent the royalty payment
    /// @return royaltyAmount - the royalty payment amount for _salePrice
    function royaltyInfo(
        uint256 _tokenId,
        uint256 _salePrice
    ) external view returns (
        address receiver,
        uint256 royaltyAmount
    );
}

/*

      [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]
    []                                                                                            []
    []  []      [][]  [][][][]  [][][][][]  []    [][]    [][][][]    [][]  [][][][]  []    [][]  []
    []  [][]    [][]  [][]        [][]      []    [][]  [][]    [][]    []  [][]      []    [][]  []
    []  [][][]  [][]  [][]        [][]      [][][][][]  [][]                [][]      [][][][][]  []
    []  []  [][][][]  [][][][][]  [][]        [][]      [][]  [][][]  [][]  [][][][][]  [][]      []
    []  []    [][][]  [][]        [][]        [][]      [][]    [][]  [][]  [][]        [][]      []
    []  []      [][]  [][]        [][]        [][]        [][][][][]  [][]  [][]        [][]      []
    []                                                                                            []
      [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]


*/

contract NFTYGiFY is ERC721, IERC2981, Ownable {
    using Counters for Counters.Counter;

    event PriceSet(
        uint256 indexed tokenId,
        uint256 indexed price
    );

    struct Nftygify {
        bytes gif;
        address payable artistAddress;
        bytes16 title;
        bytes16 artistName;
        uint256 salePrice;
    }

    mapping(address => bytes4[]) internal hashes;
    mapping(uint256 => Nftygify) internal nftygify;

    Counters.Counter private supply;
    uint256 public mintFee = 0.01 ether;
    uint256 public artistCommission = 0.01 ether;
    uint256 public artistRoyaltyPermille = 50; // permille ‰
    uint256 public saleCommissionPermille = 20; // permille ‰
    string public nftygifyURL = "https://nometa.online/nftygify";
    string public description =
        "NFTYGiFYs are unique, user created, fully on-chain pixel art nfts.";
    string internal nameStart = "NFTYGiFY #";
    /* verifing address for mint */
    address internal signing_address = 0xE605261D47f60f25a222358a8e42eE2a6ae7d66D;

    constructor() payable ERC721('NFTYGiFY','NG') {
    }

    receive() external payable {}

    /* interface id for IERC2981: '0x2a55205a' */
    function supportsInterface(bytes4 interfaceId)
          public
          view
          override(IERC165, ERC721)
          returns (bool) {
      return
          interfaceId == type(IERC721).interfaceId ||
          interfaceId == type(IERC721Metadata).interfaceId ||
          interfaceId == type(IERC2981).interfaceId ||
          super.supportsInterface(interfaceId);
    }

    function mint(
          address payable _artistAddress,
          bytes16  _title,
          bytes16  _artistName,
          uint256 _salePrice,
          bytes calldata _gifBytes,
          uint8  _v,
          bytes32  _r,
          bytes32  _s
          ) external payable {
        // recreate the message that was signed in app
        bytes32 message = prefixed(keccak256(abi.encodePacked(
                                                        _artistAddress,
                                                        _title,
                                                        _artistName,
                                                        _salePrice,
                                                        _gifBytes
                                                        )));
        require(ecrecover(message, _v, _r, _s) == signing_address,
                    "transaction verification failed");
        // check if hash already exists. sending the same mint tx will fail.
        // using a mapping to artistAddress reduces iterations.
        bytes4 hash = bytes4(_r);
        bytes4[] memory artistHashes = hashes[_artistAddress];
        for (uint16 i = 0; i < artistHashes.length; i++) {
            require(hash != artistHashes[i], "item is not unique");
        }
        if (msg.sender != _artistAddress) {
          uint256 commission = artistCommission;
          require(msg.value >= mintFee + commission,
                    "value less than required");
          (bool success, ) = payable(_artistAddress).call{value: commission}("");
          require(success,"failed to transfer funds");
        } else {
          require(msg.value >= mintFee, "value less than required");
        }
        hashes[_artistAddress].push(hash);
        supply.increment();
        uint256 tokenId = supply.current();
        Nftygify memory newNftygify;
        newNftygify.artistAddress = _artistAddress;
        newNftygify.title = _title;
        newNftygify.artistName = _artistName;
        newNftygify.salePrice = _salePrice;
        // using reduced gif bytes in tx args.
        newNftygify.gif = _gifBytes;
        nftygify[tokenId] = newNftygify;
        _safeMint(msg.sender, tokenId);
    }

    // override transfer functions to reset sale price to 0
    // removing token from nftygify market
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId),
                                        "ERC721: not owner nor approved");
        nftygify[tokenId].salePrice = 0;
        _transfer(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId),
                                        "ERC721: not owner nor approved");
        nftygify[tokenId].salePrice = 0;
        _safeTransfer(from, to, tokenId, _data);
    }

    // builds prefixed hash to mimic eth_sign.
    function prefixed(bytes32 _hash) internal pure returns (bytes32) {
      return keccak256(abi.encodePacked(
                              "\x19Ethereum Signed Message:\n32",
                               _hash
                               ));
    }

    // conforming to IERC2981 = 0x2a55205a;
    // limits _salePrice input to a minimum of 1000000
    // low price denominations will make a permille calculation meaningless
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
                  external
                  view
                  returns (address receiver, uint256 royaltyAmount) {
        require(_exists(_tokenId), "non existent token");
        require(_salePrice >= 1000000, "min _salePrice input: 1000000");
        return (
            nftygify[_tokenId].artistAddress,
            _salePrice * artistRoyaltyPermille / 1000
            );
    }

    function imageURI(uint256 _tokenId) public view returns(string memory) {
      bytes memory comment = bytes.concat(
                  "-- ",
                  bytes(nameStart),
                  bytes(Strings.toString(_tokenId)),
                  " --"
                  );
      bytes memory gif_commented = bytes.concat(
                  "GIF89a",
                  nftygify[_tokenId].gif,
                  hex"0021fe",
                  bytes1(uint8(comment.length)),
                  comment,
                  hex"003b"
                  );
      return string.concat(
                  'data:image/gif;base64,',
                  Base64.encode(gif_commented)
                  );
    }

    // used by generateMetaData:
    function b16toStr(bytes16 _bytes16) internal pure returns (string memory) {
            uint8 count = 0;
            while(count < 16 && _bytes16[count] != 0) {
                count++;
            }
            bytes memory bytesArray = new bytes(count);
            for (uint8 index = 0; index < 16 && _bytes16[index] != 0; index++) {
                bytesArray[index] = _bytes16[index];
            }
            return string(bytesArray);
        }

    function generateMetaData(uint256 _tokenId) internal view returns(string memory) {
      string memory title;
      if (nftygify[_tokenId].title != bytes16(0)) {
        title = string.concat(
                          '"title":"',
                          b16toStr(nftygify[_tokenId].title),
                          '",'
                          );
      } else {
        title = "";
      }
      string memory artistName;
      if (nftygify[_tokenId].artistName != bytes16(0)) {
        artistName = string.concat(
                          '"artist":"',
                          b16toStr(nftygify[_tokenId].artistName),
                          '",'
                          );
      } else {
        artistName = "";
      }
      return string.concat(
              'data:application/json;base64,',
              Base64.encode(abi.encodePacked(
                          '{"name":"',
                          nameStart,
                          Strings.toString(_tokenId),
                          '","description":"',
                          description,
                          '",',
                          title,
                          artistName,
                          '"image":"',
                          imageURI(_tokenId),
                          '","external_url":"',
                          nftygifyURL,
                          '"}'
                          )));
    }

    function tokenURI(uint256 _tokenId)
          public
          view
          virtual
          override
          returns (string memory) {
    require(_exists(_tokenId), "non existent token");
    return generateMetaData(_tokenId);
    }

    function buy(uint256 _tokenId, uint256 _salePrice) external payable {
        Nftygify memory tokenNftygify = nftygify[_tokenId];
        address artist = tokenNftygify.artistAddress;
        address seller = ownerOf(_tokenId);
        require(msg.sender != seller, "buyer already owns nft");
        require(tokenNftygify.salePrice != 0, "nft is not for sale");
        require(msg.value >= tokenNftygify.salePrice,
                                      "value less than sale price");
        if ((seller == artist) || (msg.sender == artist)) {
          (bool success, ) = payable(seller).call{
                  value: msg.value * (1000-saleCommissionPermille) / 1000}("");
          require(success, "failed to transfer funds");
        } else {
          uint256 royalty = artistRoyaltyPermille;
          (bool success1, ) = payable(seller).call{
                  value: msg.value
                          * (1000-saleCommissionPermille-royalty)
                          / 1000}("");
          require(success1, "failed to transfer funds");
          (bool success2, ) = payable(artist).call{
                  value: msg.value * royalty / 1000}("");
          require(success2, "failed to transfer funds");
        }
        nftygify[_tokenId].salePrice = _salePrice;
        _safeTransfer(seller, msg.sender, _tokenId,'');
    }

    function totalSupply() external view returns (uint256) {
        return supply.current();
    }

    function getSalePrice(uint256 _tokenId) external view returns (uint256) {
        return nftygify[_tokenId].salePrice;
    }

    function setSalePrice(uint256 _tokenId, uint256 _salePrice) external {
        require(_exists(_tokenId), "non existant token");
        require(msg.sender == ownerOf(_tokenId), "not token owner");
        nftygify[_tokenId].salePrice = _salePrice;

        emit PriceSet(_tokenId, _salePrice);
    }

    function setMintFee(uint256 _mintFee) external onlyOwner {
        require(_mintFee <= 0.02 ether, "mintFee max 0.02 eth");
        mintFee = _mintFee;
    }

    function setSaleCommission(uint _commission) external onlyOwner {
        require(_commission <= 30, "sales commission max 3%");
        saleCommissionPermille = _commission;
    }

    function setArtistRoyalty(uint256 _royalty) external onlyOwner {
        require(_royalty <= 150, "artist royalty max 15%");
        artistRoyaltyPermille = _royalty;
    }

    function setArtistCommission(uint256 _commission) external onlyOwner {
        require(_commission <= 0.02 ether, "artist commission max 0.02 eth");
        artistCommission = _commission;
    }

    function setNftygifyURL(string calldata _URL) external onlyOwner {
        nftygifyURL = _URL;
    }

    function withdraw() external onlyOwner {
    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
    require(success);
    }

}

/*

      [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]
    []                                                                                            []
    []  []      [][]  [][][][]  [][][][][]  []    [][]    [][][][]    [][]  [][][][]  []    [][]  []
    []  [][]    [][]  [][]        [][]      []    [][]  [][]    [][]    []  [][]      []    [][]  []
    []  [][][]  [][]  [][]        [][]      [][][][][]  [][]                [][]      [][][][][]  []
    []  []  [][][][]  [][][][][]  [][]        [][]      [][]  [][][]  [][]  [][][][][]  [][]      []
    []  []    [][][]  [][]        [][]        [][]      [][]    [][]  [][]  [][]        [][]      []
    []  []      [][]  [][]        [][]        [][]        [][][][][]  [][]  [][]        [][]      []
    []                                                                                            []
      [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]


*/

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","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":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"price","type":"uint256"}],"name":"PriceSet","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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"artistCommission","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"artistRoyaltyPermille","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"description","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"getSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"imageURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_artistAddress","type":"address"},{"internalType":"bytes16","name":"_title","type":"bytes16"},{"internalType":"bytes16","name":"_artistName","type":"bytes16"},{"internalType":"uint256","name":"_salePrice","type":"uint256"},{"internalType":"bytes","name":"_gifBytes","type":"bytes"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftygifyURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleCommissionPermille","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_commission","type":"uint256"}],"name":"setArtistCommission","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_royalty","type":"uint256"}],"name":"setArtistRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintFee","type":"uint256"}],"name":"setMintFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URL","type":"string"}],"name":"setNftygifyURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_commission","type":"uint256"}],"name":"setSaleCommission","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

662386f26fc10000600a819055600b556032600c556014600d5560c0604052601e60809081527f68747470733a2f2f6e6f6d6574612e6f6e6c696e652f6e66747967696679000060a052600e906200005890826200024e565b506040518060800160405280604281526020016200463160429139600f906200008290826200024e565b5060408051808201909152600a8152694e46545947694659202360b01b6020820152601090620000b390826200024e565b50601180546001600160a01b03191673e605261d47f60f25a222358a8e42ee2a6ae7d66d17905560408051808201825260088152674e4654594769465960c01b602080830191909152825180840190935260028352614e4760f01b908301529060006200012183826200024e565b5060016200013082826200024e565b5050506200014d620001476200015360201b60201c565b62000157565b6200031a565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001d457607f821691505b602082108103620001f557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200024957600081815260208120601f850160051c81016020861015620002245750805b601f850160051c820191505b81811015620002455782815560010162000230565b5050505b505050565b81516001600160401b038111156200026a576200026a620001a9565b62000282816200027b8454620001bf565b84620001fb565b602080601f831160018114620002ba5760008415620002a15750858301515b600019600386901b1c1916600185901b17855562000245565b600085815260208120601f198616915b82811015620002eb57888601518255948401946001909101908401620002ca565b50858210156200030a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b614307806200032a6000396000f3fe6080604052600436106102385760003560e01c80637284e41611610138578063b88d4fde116100b0578063d6febde81161007f578063eddd0d9c11610064578063eddd0d9c14610679578063f2fde38b14610699578063f8eb5fc5146106b957600080fd5b8063d6febde814610610578063e985e9c51461062357600080fd5b8063b88d4fde1461059a578063c7291ace146105ba578063c87b56dd146105d0578063d0c153c9146105f057600080fd5b806395d89b4111610107578063a22cb465116100ec578063a22cb46514610544578063a3df3c7f14610564578063b078e5321461057a57600080fd5b806395d89b4114610519578063983586b11461052e57600080fd5b80637284e416146104a45780638181d1a3146104b95780638da5cb5b146104ce5780638f742d16146104f957600080fd5b806323b872dd116101cb5780634d5b53f21161019a57806367a27b911161017f57806367a27b911461044f57806370a082311461046f578063715018a61461048f57600080fd5b80634d5b53f21461040f5780636352211e1461042f57600080fd5b806323b872dd1461036e5780632a55205a1461038e5780633ccfd60b146103da57806342842e0e146103ef57600080fd5b8063095ea7b311610207578063095ea7b31461030257806313966db51461032257806318160ddd1461034657806321c95eda1461035b57600080fd5b806301ffc9a714610244578063053992c51461027957806306fdde031461029b578063081812fc146102bd57600080fd5b3661023f57005b600080fd5b34801561025057600080fd5b5061026461025f36600461344b565b6106e9565b60405190151581526020015b60405180910390f35b34801561028557600080fd5b5061029961029436600461346f565b6107dd565b005b3480156102a757600080fd5b506102b0610918565b60405161027091906134ff565b3480156102c957600080fd5b506102dd6102d8366004613512565b6109aa565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610270565b34801561030e57600080fd5b5061029961031d36600461354d565b610a6a565b34801561032e57600080fd5b50610338600a5481565b604051908152602001610270565b34801561035257600080fd5b50610338610bed565b6102996103693660046135f0565b610bfd565b34801561037a57600080fd5b5061029961038936600461369e565b61126f565b34801561039a57600080fd5b506103ae6103a936600461346f565b6112e2565b6040805173ffffffffffffffffffffffffffffffffffffffff9093168352602083019190915201610270565b3480156103e657600080fd5b506102996113fa565b3480156103fb57600080fd5b5061029961040a36600461369e565b6114b9565b34801561041b57600080fd5b5061029961042a366004613512565b6114d4565b34801561043b57600080fd5b506102dd61044a366004613512565b611591565b34801561045b57600080fd5b5061029961046a366004613512565b611629565b34801561047b57600080fd5b5061033861048a3660046136df565b6116ec565b34801561049b57600080fd5b506102996117a0565b3480156104b057600080fd5b506102b0611813565b3480156104c557600080fd5b506102b06118a1565b3480156104da57600080fd5b5060065473ffffffffffffffffffffffffffffffffffffffff166102dd565b34801561050557600080fd5b506102b0610514366004613512565b6118ae565b34801561052557600080fd5b506102b0611966565b34801561053a57600080fd5b50610338600b5481565b34801561055057600080fd5b5061029961055f3660046136fc565b611975565b34801561057057600080fd5b50610338600c5481565b34801561058657600080fd5b50610299610595366004613512565b611984565b3480156105a657600080fd5b506102996105b5366004613769565b611a41565b3480156105c657600080fd5b50610338600d5481565b3480156105dc57600080fd5b506102b06105eb366004613512565b611abb565b3480156105fc57600080fd5b5061029961060b366004613867565b611b38565b61029961061e36600461346f565b611bac565b34801561062f57600080fd5b5061026461063e3660046138a9565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561068557600080fd5b50610299610694366004613512565b612102565b3480156106a557600080fd5b506102996106b43660046136df565b6121c5565b3480156106c557600080fd5b506103386106d4366004613512565b60009081526008602052604090206003015490565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061077c57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806107c857507fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a00000000000000000000000000000000000000000000000000000000145b806107d757506107d7826122be565b92915050565b60008281526002602052604090205473ffffffffffffffffffffffffffffffffffffffff166108535760405162461bcd60e51b815260206004820152601260248201527f6e6f6e206578697374616e7420746f6b656e000000000000000000000000000060448201526064015b60405180910390fd5b61085c82611591565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108d65760405162461bcd60e51b815260206004820152600f60248201527f6e6f7420746f6b656e206f776e65720000000000000000000000000000000000604482015260640161084a565b60008281526008602052604080822060030183905551829184917fa0f1665b7b659537b52deec61ea64d134a3bccda74c7f4e79f2246e7a8187a8a9190a35050565b606060008054610927906138d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610953906138d7565b80156109a05780601f10610975576101008083540402835291602001916109a0565b820191906000526020600020905b81548152906001019060200180831161098357829003601f168201915b5050505050905090565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16610a415760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161084a565b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610a7582611591565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b185760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161084a565b3373ffffffffffffffffffffffffffffffffffffffff82161480610b6c575073ffffffffffffffffffffffffffffffffffffffff8116600090815260056020908152604080832033845290915290205460ff165b610bde5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161084a565b610be883836123a1565b505050565b6000610bf860095490565b905090565b6000610c9b8a8a8a8a8a8a604051602001610c1d9695949392919061392a565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815282825280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000084830152603c8085019190915282518085039091018152605c909301909152815191012090565b60115460408051600081526020810180835284905260ff881691810191909152606081018690526080810185905291925073ffffffffffffffffffffffffffffffffffffffff169060019060a0016020604051602081039080840390855afa158015610d0b573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff1614610d785760405162461bcd60e51b815260206004820152601f60248201527f7472616e73616374696f6e20766572696669636174696f6e206661696c656400604482015260640161084a565b73ffffffffffffffffffffffffffffffffffffffff8a1660009081526007602090815260408083208054825181850281018501909352808352879493830182828015610e2557602002820191906000526020600020906000905b82829054906101000a900460e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019060040190602082600301049283019260010382029150808411610dd25790505b5050505050905060005b81518161ffff161015610ef857818161ffff1681518110610e5257610e526139a7565b60200260200101517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191603610ee65760405162461bcd60e51b815260206004820152601260248201527f6974656d206973206e6f7420756e697175650000000000000000000000000000604482015260640161084a565b80610ef081613a05565b915050610e2f565b503373ffffffffffffffffffffffffffffffffffffffff8d161461102d57600b54600a54610f27908290613a26565b341015610f765760405162461bcd60e51b815260206004820152601860248201527f76616c7565206c657373207468616e2072657175697265640000000000000000604482015260640161084a565b60008d73ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114610fd0576040519150601f19603f3d011682016040523d82523d6000602084013e610fd5565b606091505b50509050806110265760405162461bcd60e51b815260206004820152601860248201527f6661696c656420746f207472616e736665722066756e64730000000000000000604482015260640161084a565b505061107f565b600a5434101561107f5760405162461bcd60e51b815260206004820152601860248201527f76616c7565206c657373207468616e2072657175697265640000000000000000604482015260640161084a565b73ffffffffffffffffffffffffffffffffffffffff8c1660009081526007602081815260408320805460018101825590845292206008830401805460e086901c600494909316939093026101000a91820263ffffffff909202199092161790556110ed600980546001019055565b60006110f860095490565b6040805160a08101825260608082526000602083018190529282018390528101829052608081019190915290915073ffffffffffffffffffffffffffffffffffffffff8e166020808301919091527fffffffffffffffffffffffffffffffff00000000000000000000000000000000808f16604080850191909152908e166060840152608083018d90528051601f8c018390048302810183019091528a8152908b908b90819084018382808284376000920182905250938552505050828152600860205260409020815182919081906111d19082613a87565b5060208201516001820180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff90921691909117905560408201516060830151608091821c70010000000000000000000000000000000091831c919091021760028301559091015160039091015561125f3383612441565b5050505050505050505050505050565b611279338261245b565b6112c55760405162461bcd60e51b815260206004820152601e60248201527f4552433732313a206e6f74206f776e6572206e6f7220617070726f7665640000604482015260640161084a565b600081815260086020526040812060030155610be88383836125b1565b600082815260026020526040812054819073ffffffffffffffffffffffffffffffffffffffff166113555760405162461bcd60e51b815260206004820152601260248201527f6e6f6e206578697374656e7420746f6b656e0000000000000000000000000000604482015260640161084a565b620f42408310156113a85760405162461bcd60e51b815260206004820152601d60248201527f6d696e205f73616c65507269636520696e7075743a2031303030303030000000604482015260640161084a565b600084815260086020526040902060010154600c5473ffffffffffffffffffffffffffffffffffffffff909116906103e8906113e49086613ba1565b6113ee9190613be7565b915091505b9250929050565b60065473ffffffffffffffffffffffffffffffffffffffff1633146114615760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161084a565b604051600090339047908381818185875af1925050503d80600081146114a3576040519150601f19603f3d011682016040523d82523d6000602084013e6114a8565b606091505b50509050806114b657600080fd5b50565b610be883838360405180602001604052806000815250611a41565b60065473ffffffffffffffffffffffffffffffffffffffff16331461153b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161084a565b601e81111561158c5760405162461bcd60e51b815260206004820152601760248201527f73616c657320636f6d6d697373696f6e206d6178203325000000000000000000604482015260640161084a565b600d55565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16806107d75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161084a565b60065473ffffffffffffffffffffffffffffffffffffffff1633146116905760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161084a565b66470de4df8200008111156116e75760405162461bcd60e51b815260206004820152601e60248201527f61727469737420636f6d6d697373696f6e206d617820302e3032206574680000604482015260640161084a565b600b55565b600073ffffffffffffffffffffffffffffffffffffffff82166117775760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161084a565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b60065473ffffffffffffffffffffffffffffffffffffffff1633146118075760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161084a565b61181160006127e4565b565b600f8054611820906138d7565b80601f016020809104026020016040519081016040528092919081815260200182805461184c906138d7565b80156118995780601f1061186e57610100808354040283529160200191611899565b820191906000526020600020905b81548152906001019060200180831161187c57829003601f168201915b505050505081565b600e8054611820906138d7565b6060600060106118bd8461285b565b6040516020016118ce929190613c8c565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181528282526000868152600860209081529281208251929550909361192493919260f81b91869101613cff565b604051602081830303815290604052905061193e81612990565b60405160200161194e9190613dc4565b60405160208183030381529060405292505050919050565b606060018054610927906138d7565b611980338383612b6a565b5050565b60065473ffffffffffffffffffffffffffffffffffffffff1633146119eb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161084a565b6096811115611a3c5760405162461bcd60e51b815260206004820152601660248201527f61727469737420726f79616c7479206d61782031352500000000000000000000604482015260640161084a565b600c55565b611a4b338361245b565b611a975760405162461bcd60e51b815260206004820152601e60248201527f4552433732313a206e6f74206f776e6572206e6f7220617070726f7665640000604482015260640161084a565b600082815260086020526040812060030155611ab584848484612c7d565b50505050565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff16611b2f5760405162461bcd60e51b815260206004820152601260248201527f6e6f6e206578697374656e7420746f6b656e0000000000000000000000000000604482015260640161084a565b6107d782612d06565b60065473ffffffffffffffffffffffffffffffffffffffff163314611b9f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161084a565b600e610be8828483613e09565b600082815260086020526040808220815160a08101909252805482908290611bd3906138d7565b80601f0160208091040260200160405190810160405280929190818152602001828054611bff906138d7565b8015611c4c5780601f10611c2157610100808354040283529160200191611c4c565b820191906000526020600020905b815481529060010190602001808311611c2f57829003601f168201915b5050509183525050600182015473ffffffffffffffffffffffffffffffffffffffff1660208083019190915260028301547fffffffffffffffffffffffffffffffff00000000000000000000000000000000608082811b82166040860152700100000000000000000000000000000000909204821b16606084015260039093015492909101919091528101519091506000611ce685611591565b905073ffffffffffffffffffffffffffffffffffffffff81163303611d4d5760405162461bcd60e51b815260206004820152601660248201527f627579657220616c7265616479206f776e73206e667400000000000000000000604482015260640161084a565b8260800151600003611da15760405162461bcd60e51b815260206004820152601360248201527f6e6674206973206e6f7420666f722073616c6500000000000000000000000000604482015260640161084a565b8260800151341015611df55760405162461bcd60e51b815260206004820152601a60248201527f76616c7565206c657373207468616e2073616c65207072696365000000000000604482015260640161084a565b8173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161480611e4457503373ffffffffffffffffffffffffffffffffffffffff8316145b15611f215760008173ffffffffffffffffffffffffffffffffffffffff166103e8600d546103e8611e759190613f23565b611e7f9034613ba1565b611e899190613be7565b604051600081818185875af1925050503d8060008114611ec5576040519150601f19603f3d011682016040523d82523d6000602084013e611eca565b606091505b5050905080611f1b5760405162461bcd60e51b815260206004820152601860248201527f6661696c656420746f207472616e736665722066756e64730000000000000000604482015260640161084a565b506120cb565b6000600c54905060008273ffffffffffffffffffffffffffffffffffffffff166103e883600d546103e8611f559190613f23565b611f5f9190613f23565b611f699034613ba1565b611f739190613be7565b604051600081818185875af1925050503d8060008114611faf576040519150601f19603f3d011682016040523d82523d6000602084013e611fb4565b606091505b50509050806120055760405162461bcd60e51b815260206004820152601860248201527f6661696c656420746f207472616e736665722066756e64730000000000000000604482015260640161084a565b600073ffffffffffffffffffffffffffffffffffffffff85166103e861202b8534613ba1565b6120359190613be7565b604051600081818185875af1925050503d8060008114612071576040519150601f19603f3d011682016040523d82523d6000602084013e612076565b606091505b50509050806120c75760405162461bcd60e51b815260206004820152601860248201527f6661696c656420746f207472616e736665722066756e64730000000000000000604482015260640161084a565b5050505b6000858152600860209081526040808320600301879055805191820190529081526120fb90829033908890612c7d565b5050505050565b60065473ffffffffffffffffffffffffffffffffffffffff1633146121695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161084a565b66470de4df8200008111156121c05760405162461bcd60e51b815260206004820152601460248201527f6d696e74466565206d617820302e303220657468000000000000000000000000604482015260640161084a565b600a55565b60065473ffffffffffffffffffffffffffffffffffffffff16331461222c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161084a565b73ffffffffffffffffffffffffffffffffffffffff81166122b55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161084a565b6114b6816127e4565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061235157507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806107d757507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146107d7565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841690811790915581906123fb82611591565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611980828260405180602001604052806000815250612eaf565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff166124f25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161084a565b60006124fd83611591565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061256c57508373ffffffffffffffffffffffffffffffffffffffff16612554846109aa565b73ffffffffffffffffffffffffffffffffffffffff16145b806125a9575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff166125d182611591565b73ffffffffffffffffffffffffffffffffffffffff161461265a5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e6572000000000000000000000000000000000000000000000000000000606482015260840161084a565b73ffffffffffffffffffffffffffffffffffffffff82166126e25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161084a565b6126ed6000826123a1565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600360205260408120805460019290612723908490613f23565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260036020526040812080546001929061275e908490613a26565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6006805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60608160000361289e57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156128c857806128b281613f36565b91506128c19050600a83613be7565b91506128a2565b60008167ffffffffffffffff8111156128e3576128e361373a565b6040519080825280601f01601f19166020018201604052801561290d576020820181803683370190505b5090505b84156125a957612922600183613f23565b915061292f600a86613f6e565b61293a906030613a26565b60f81b81838151811061294f5761294f6139a7565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612989600a86613be7565b9450612911565b606081516000036129af57505060408051602081019091526000815290565b600060405180606001604052806040815260200161429260409139905060006003845160026129de9190613a26565b6129e89190613be7565b6129f3906004613ba1565b90506000612a02826020613a26565b67ffffffffffffffff811115612a1a57612a1a61373a565b6040519080825280601f01601f191660200182016040528015612a44576020820181803683370190505b509050818152600183018586518101602084015b81831015612ab25760039283018051603f601282901c811687015160f890811b8552600c83901c8216880151811b6001860152600683901c8216880151811b60028601529116860151901b93820193909352600401612a58565b600389510660018114612acc5760028114612b1657612b5c565b7f3d3d0000000000000000000000000000000000000000000000000000000000007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe830152612b5c565b7f3d000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8301525b509398975050505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612be55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161084a565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612c888484846125b1565b612c9484848484612f38565b611ab55760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161084a565b600081815260086020526040902060020154606090819060801b7fffffffffffffffffffffffffffffffff000000000000000000000000000000001615612d8b57600083815260086020526040902060020154612d659060801b613111565b604051602001612d759190613f82565b6040516020818303038152906040529050612d9c565b506040805160208101909152600081525b600083815260086020526040902060020154606090700100000000000000000000000000000000900460801b7fffffffffffffffffffffffffffffffff000000000000000000000000000000001615612e4757600084815260086020526040902060020154612e2190700100000000000000000000000000000000900460801b613111565b604051602001612e319190613fee565b6040516020818303038152906040529050612e58565b506040805160208101909152600081525b612e9f6010612e668661285b565b600f8585612e738a6118ae565b600e604051602001612e8b979695949392919061405a565b604051602081830303815290604052612990565b60405160200161194e91906141c7565b612eb9838361328f565b612ec66000848484612f38565b610be85760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161084a565b600073ffffffffffffffffffffffffffffffffffffffff84163b15613106576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612faf90339089908890889060040161420c565b6020604051808303816000875af1925050508015613008575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261300591810190614255565b60015b6130bb573d808015613036576040519150601f19603f3d011682016040523d82523d6000602084013e61303b565b606091505b5080516000036130b35760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161084a565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506125a9565b506001949350505050565b606060005b60108160ff161080156131625750828160ff1660108110613139576131396139a7565b1a60f81b7fff000000000000000000000000000000000000000000000000000000000000001615155b15613179578061317181614272565b915050613116565b60008160ff1667ffffffffffffffff8111156131975761319761373a565b6040519080825280601f01601f1916602001820160405280156131c1576020820181803683370190505b50905060005b60108160ff161080156132135750848160ff16601081106131ea576131ea6139a7565b1a60f81b7fff000000000000000000000000000000000000000000000000000000000000001615155b1561328757848160ff166010811061322d5761322d6139a7565b1a60f81b828260ff1681518110613246576132466139a7565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508061327f81614272565b9150506131c7565b509392505050565b73ffffffffffffffffffffffffffffffffffffffff82166132f25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161084a565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff16156133645760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161084a565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260036020526040812080546001929061339a908490613a26565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146114b657600080fd5b60006020828403121561345d57600080fd5b81356134688161341d565b9392505050565b6000806040838503121561348257600080fd5b50508035926020909101359150565b60005b838110156134ac578181015183820152602001613494565b50506000910152565b600081518084526134cd816020860160208601613491565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061346860208301846134b5565b60006020828403121561352457600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff811681146114b657600080fd5b6000806040838503121561356057600080fd5b823561356b8161352b565b946020939093013593505050565b80357fffffffffffffffffffffffffffffffff00000000000000000000000000000000811681146135a957600080fd5b919050565b60008083601f8401126135c057600080fd5b50813567ffffffffffffffff8111156135d857600080fd5b6020830191508360208285010111156113f357600080fd5b60008060008060008060008060006101008a8c03121561360f57600080fd5b893561361a8161352b565b985061362860208b01613579565b975061363660408b01613579565b965060608a0135955060808a013567ffffffffffffffff81111561365957600080fd5b6136658c828d016135ae565b90965094505060a08a013560ff8116811461367f57600080fd5b8093505060c08a0135915060e08a013590509295985092959850929598565b6000806000606084860312156136b357600080fd5b83356136be8161352b565b925060208401356136ce8161352b565b929592945050506040919091013590565b6000602082840312156136f157600080fd5b81356134688161352b565b6000806040838503121561370f57600080fd5b823561371a8161352b565b91506020830135801515811461372f57600080fd5b809150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000806000806080858703121561377f57600080fd5b843561378a8161352b565b9350602085013561379a8161352b565b925060408501359150606085013567ffffffffffffffff808211156137be57600080fd5b818701915087601f8301126137d257600080fd5b8135818111156137e4576137e461373a565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190838211818310171561382a5761382a61373a565b816040528281528a602084870101111561384357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806020838503121561387a57600080fd5b823567ffffffffffffffff81111561389157600080fd5b61389d858286016135ae565b90969095509350505050565b600080604083850312156138bc57600080fd5b82356138c78161352b565b9150602083013561372f8161352b565b600181811c908216806138eb57607f821691505b602082108103613924577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7fffffffffffffffffffffffffffffffffffffffff0000000000000000000000008760601b16815260007fffffffffffffffffffffffffffffffff00000000000000000000000000000000808816601484015280871660248401525084603483015282846054840137506000910160540190815295945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061ffff808316818103613a1c57613a1c6139d6565b6001019392505050565b808201808211156107d7576107d76139d6565b601f821115610be857600081815260208120601f850160051c81016020861015613a605750805b601f850160051c820191505b81811015613a7f57828155600101613a6c565b505050505050565b815167ffffffffffffffff811115613aa157613aa161373a565b613ab581613aaf84546138d7565b84613a39565b602080601f831160018114613b085760008415613ad25750858301515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600386901b1c1916600185901b178555613a7f565b6000858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b82811015613b5557888601518255948401946001909101908401613b36565b5085821015613b9157878501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600388901b60f8161c191681555b5050505050600190811b01905550565b80820281158282048414176107d7576107d76139d6565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613bf657613bf6613bb8565b500490565b60008154613c08816138d7565b60018281168015613c205760018114613c5357613c82565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0084168752821515830287019450613c82565b8560005260208060002060005b85811015613c795781548a820152908401908201613c60565b50505082870194505b5050505092915050565b7f2d2d20000000000000000000000000000000000000000000000000000000000081526000613cbe6003830185613bfb565b8351613cce818360208801613491565b7f202d2d00000000000000000000000000000000000000000000000000000000009101908152600301949350505050565b7f474946383961000000000000000000000000000000000000000000000000000081526000613d316006830186613bfb565b7e21fe000000000000000000000000000000000000000000000000000000000081527fff00000000000000000000000000000000000000000000000000000000000000851660038201528351613d8e816004840160208801613491565b7e3b0000000000000000000000000000000000000000000000000000000000006004929091019182015260060195945050505050565b7f646174613a696d6167652f6769663b6261736536342c00000000000000000000815260008251613dfc816016850160208701613491565b9190910160160192915050565b67ffffffffffffffff831115613e2157613e2161373a565b613e3583613e2f83546138d7565b83613a39565b6000601f841160018114613e875760008515613e515750838201355b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600387901b1c1916600186901b1783556120fb565b6000838152602090207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0861690835b82811015613ed65786850135825560209485019460019092019101613eb6565b5086821015613f11577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60f88860031b161c19848701351681555b505060018560011b0183555050505050565b818103818111156107d7576107d76139d6565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613f6757613f676139d6565b5060010190565b600082613f7d57613f7d613bb8565b500690565b7f227469746c65223a220000000000000000000000000000000000000000000000815260008251613fba816009850160208701613491565b7f222c0000000000000000000000000000000000000000000000000000000000006009939091019283015250600b01919050565b7f22617274697374223a220000000000000000000000000000000000000000000081526000825161402681600a850160208701613491565b7f222c000000000000000000000000000000000000000000000000000000000000600a939091019283015250600c01919050565b7f7b226e616d65223a2200000000000000000000000000000000000000000000008152600061408c600983018a613bfb565b885161409c818360208d01613491565b7f222c226465736372697074696f6e223a2200000000000000000000000000000091019081526140cf6011820189613bfb565b90507f222c00000000000000000000000000000000000000000000000000000000000081528651614107816002840160208b01613491565b865191019061411d816002840160208a01613491565b7f22696d616765223a22000000000000000000000000000000000000000000000060029290910191820152845161415b81600b840160208901613491565b7f222c2265787465726e616c5f75726c223a220000000000000000000000000000600b9290910191820152614193601d820185613bfb565b7f227d00000000000000000000000000000000000000000000000000000000000081526002019a9950505050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516141ff81601d850160208701613491565b91909101601d0192915050565b600073ffffffffffffffffffffffffffffffffffffffff80871683528086166020840152508360408301526080606083015261424b60808301846134b5565b9695505050505050565b60006020828403121561426757600080fd5b81516134688161341d565b600060ff821660ff8103614288576142886139d6565b6001019291505056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220d3da4311a630dca798ce745876e789b83293bcf933b78a1e6f401d4206f8bed564736f6c634300081300334e46545947694659732061726520756e697175652c207573657220637265617465642c2066756c6c79206f6e2d636861696e20706978656c20617274206e6674732e

Deployed Bytecode

0x6080604052600436106102385760003560e01c80637284e41611610138578063b88d4fde116100b0578063d6febde81161007f578063eddd0d9c11610064578063eddd0d9c14610679578063f2fde38b14610699578063f8eb5fc5146106b957600080fd5b8063d6febde814610610578063e985e9c51461062357600080fd5b8063b88d4fde1461059a578063c7291ace146105ba578063c87b56dd146105d0578063d0c153c9146105f057600080fd5b806395d89b4111610107578063a22cb465116100ec578063a22cb46514610544578063a3df3c7f14610564578063b078e5321461057a57600080fd5b806395d89b4114610519578063983586b11461052e57600080fd5b80637284e416146104a45780638181d1a3146104b95780638da5cb5b146104ce5780638f742d16146104f957600080fd5b806323b872dd116101cb5780634d5b53f21161019a57806367a27b911161017f57806367a27b911461044f57806370a082311461046f578063715018a61461048f57600080fd5b80634d5b53f21461040f5780636352211e1461042f57600080fd5b806323b872dd1461036e5780632a55205a1461038e5780633ccfd60b146103da57806342842e0e146103ef57600080fd5b8063095ea7b311610207578063095ea7b31461030257806313966db51461032257806318160ddd1461034657806321c95eda1461035b57600080fd5b806301ffc9a714610244578063053992c51461027957806306fdde031461029b578063081812fc146102bd57600080fd5b3661023f57005b600080fd5b34801561025057600080fd5b5061026461025f36600461344b565b6106e9565b60405190151581526020015b60405180910390f35b34801561028557600080fd5b5061029961029436600461346f565b6107dd565b005b3480156102a757600080fd5b506102b0610918565b60405161027091906134ff565b3480156102c957600080fd5b506102dd6102d8366004613512565b6109aa565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610270565b34801561030e57600080fd5b5061029961031d36600461354d565b610a6a565b34801561032e57600080fd5b50610338600a5481565b604051908152602001610270565b34801561035257600080fd5b50610338610bed565b6102996103693660046135f0565b610bfd565b34801561037a57600080fd5b5061029961038936600461369e565b61126f565b34801561039a57600080fd5b506103ae6103a936600461346f565b6112e2565b6040805173ffffffffffffffffffffffffffffffffffffffff9093168352602083019190915201610270565b3480156103e657600080fd5b506102996113fa565b3480156103fb57600080fd5b5061029961040a36600461369e565b6114b9565b34801561041b57600080fd5b5061029961042a366004613512565b6114d4565b34801561043b57600080fd5b506102dd61044a366004613512565b611591565b34801561045b57600080fd5b5061029961046a366004613512565b611629565b34801561047b57600080fd5b5061033861048a3660046136df565b6116ec565b34801561049b57600080fd5b506102996117a0565b3480156104b057600080fd5b506102b0611813565b3480156104c557600080fd5b506102b06118a1565b3480156104da57600080fd5b5060065473ffffffffffffffffffffffffffffffffffffffff166102dd565b34801561050557600080fd5b506102b0610514366004613512565b6118ae565b34801561052557600080fd5b506102b0611966565b34801561053a57600080fd5b50610338600b5481565b34801561055057600080fd5b5061029961055f3660046136fc565b611975565b34801561057057600080fd5b50610338600c5481565b34801561058657600080fd5b50610299610595366004613512565b611984565b3480156105a657600080fd5b506102996105b5366004613769565b611a41565b3480156105c657600080fd5b50610338600d5481565b3480156105dc57600080fd5b506102b06105eb366004613512565b611abb565b3480156105fc57600080fd5b5061029961060b366004613867565b611b38565b61029961061e36600461346f565b611bac565b34801561062f57600080fd5b5061026461063e3660046138a9565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561068557600080fd5b50610299610694366004613512565b612102565b3480156106a557600080fd5b506102996106b43660046136df565b6121c5565b3480156106c557600080fd5b506103386106d4366004613512565b60009081526008602052604090206003015490565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061077c57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806107c857507fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a00000000000000000000000000000000000000000000000000000000145b806107d757506107d7826122be565b92915050565b60008281526002602052604090205473ffffffffffffffffffffffffffffffffffffffff166108535760405162461bcd60e51b815260206004820152601260248201527f6e6f6e206578697374616e7420746f6b656e000000000000000000000000000060448201526064015b60405180910390fd5b61085c82611591565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108d65760405162461bcd60e51b815260206004820152600f60248201527f6e6f7420746f6b656e206f776e65720000000000000000000000000000000000604482015260640161084a565b60008281526008602052604080822060030183905551829184917fa0f1665b7b659537b52deec61ea64d134a3bccda74c7f4e79f2246e7a8187a8a9190a35050565b606060008054610927906138d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610953906138d7565b80156109a05780601f10610975576101008083540402835291602001916109a0565b820191906000526020600020905b81548152906001019060200180831161098357829003601f168201915b5050505050905090565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16610a415760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161084a565b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610a7582611591565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b185760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161084a565b3373ffffffffffffffffffffffffffffffffffffffff82161480610b6c575073ffffffffffffffffffffffffffffffffffffffff8116600090815260056020908152604080832033845290915290205460ff165b610bde5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161084a565b610be883836123a1565b505050565b6000610bf860095490565b905090565b6000610c9b8a8a8a8a8a8a604051602001610c1d9695949392919061392a565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815282825280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000084830152603c8085019190915282518085039091018152605c909301909152815191012090565b60115460408051600081526020810180835284905260ff881691810191909152606081018690526080810185905291925073ffffffffffffffffffffffffffffffffffffffff169060019060a0016020604051602081039080840390855afa158015610d0b573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff1614610d785760405162461bcd60e51b815260206004820152601f60248201527f7472616e73616374696f6e20766572696669636174696f6e206661696c656400604482015260640161084a565b73ffffffffffffffffffffffffffffffffffffffff8a1660009081526007602090815260408083208054825181850281018501909352808352879493830182828015610e2557602002820191906000526020600020906000905b82829054906101000a900460e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019060040190602082600301049283019260010382029150808411610dd25790505b5050505050905060005b81518161ffff161015610ef857818161ffff1681518110610e5257610e526139a7565b60200260200101517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191603610ee65760405162461bcd60e51b815260206004820152601260248201527f6974656d206973206e6f7420756e697175650000000000000000000000000000604482015260640161084a565b80610ef081613a05565b915050610e2f565b503373ffffffffffffffffffffffffffffffffffffffff8d161461102d57600b54600a54610f27908290613a26565b341015610f765760405162461bcd60e51b815260206004820152601860248201527f76616c7565206c657373207468616e2072657175697265640000000000000000604482015260640161084a565b60008d73ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114610fd0576040519150601f19603f3d011682016040523d82523d6000602084013e610fd5565b606091505b50509050806110265760405162461bcd60e51b815260206004820152601860248201527f6661696c656420746f207472616e736665722066756e64730000000000000000604482015260640161084a565b505061107f565b600a5434101561107f5760405162461bcd60e51b815260206004820152601860248201527f76616c7565206c657373207468616e2072657175697265640000000000000000604482015260640161084a565b73ffffffffffffffffffffffffffffffffffffffff8c1660009081526007602081815260408320805460018101825590845292206008830401805460e086901c600494909316939093026101000a91820263ffffffff909202199092161790556110ed600980546001019055565b60006110f860095490565b6040805160a08101825260608082526000602083018190529282018390528101829052608081019190915290915073ffffffffffffffffffffffffffffffffffffffff8e166020808301919091527fffffffffffffffffffffffffffffffff00000000000000000000000000000000808f16604080850191909152908e166060840152608083018d90528051601f8c018390048302810183019091528a8152908b908b90819084018382808284376000920182905250938552505050828152600860205260409020815182919081906111d19082613a87565b5060208201516001820180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff90921691909117905560408201516060830151608091821c70010000000000000000000000000000000091831c919091021760028301559091015160039091015561125f3383612441565b5050505050505050505050505050565b611279338261245b565b6112c55760405162461bcd60e51b815260206004820152601e60248201527f4552433732313a206e6f74206f776e6572206e6f7220617070726f7665640000604482015260640161084a565b600081815260086020526040812060030155610be88383836125b1565b600082815260026020526040812054819073ffffffffffffffffffffffffffffffffffffffff166113555760405162461bcd60e51b815260206004820152601260248201527f6e6f6e206578697374656e7420746f6b656e0000000000000000000000000000604482015260640161084a565b620f42408310156113a85760405162461bcd60e51b815260206004820152601d60248201527f6d696e205f73616c65507269636520696e7075743a2031303030303030000000604482015260640161084a565b600084815260086020526040902060010154600c5473ffffffffffffffffffffffffffffffffffffffff909116906103e8906113e49086613ba1565b6113ee9190613be7565b915091505b9250929050565b60065473ffffffffffffffffffffffffffffffffffffffff1633146114615760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161084a565b604051600090339047908381818185875af1925050503d80600081146114a3576040519150601f19603f3d011682016040523d82523d6000602084013e6114a8565b606091505b50509050806114b657600080fd5b50565b610be883838360405180602001604052806000815250611a41565b60065473ffffffffffffffffffffffffffffffffffffffff16331461153b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161084a565b601e81111561158c5760405162461bcd60e51b815260206004820152601760248201527f73616c657320636f6d6d697373696f6e206d6178203325000000000000000000604482015260640161084a565b600d55565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16806107d75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161084a565b60065473ffffffffffffffffffffffffffffffffffffffff1633146116905760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161084a565b66470de4df8200008111156116e75760405162461bcd60e51b815260206004820152601e60248201527f61727469737420636f6d6d697373696f6e206d617820302e3032206574680000604482015260640161084a565b600b55565b600073ffffffffffffffffffffffffffffffffffffffff82166117775760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161084a565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b60065473ffffffffffffffffffffffffffffffffffffffff1633146118075760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161084a565b61181160006127e4565b565b600f8054611820906138d7565b80601f016020809104026020016040519081016040528092919081815260200182805461184c906138d7565b80156118995780601f1061186e57610100808354040283529160200191611899565b820191906000526020600020905b81548152906001019060200180831161187c57829003601f168201915b505050505081565b600e8054611820906138d7565b6060600060106118bd8461285b565b6040516020016118ce929190613c8c565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181528282526000868152600860209081529281208251929550909361192493919260f81b91869101613cff565b604051602081830303815290604052905061193e81612990565b60405160200161194e9190613dc4565b60405160208183030381529060405292505050919050565b606060018054610927906138d7565b611980338383612b6a565b5050565b60065473ffffffffffffffffffffffffffffffffffffffff1633146119eb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161084a565b6096811115611a3c5760405162461bcd60e51b815260206004820152601660248201527f61727469737420726f79616c7479206d61782031352500000000000000000000604482015260640161084a565b600c55565b611a4b338361245b565b611a975760405162461bcd60e51b815260206004820152601e60248201527f4552433732313a206e6f74206f776e6572206e6f7220617070726f7665640000604482015260640161084a565b600082815260086020526040812060030155611ab584848484612c7d565b50505050565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff16611b2f5760405162461bcd60e51b815260206004820152601260248201527f6e6f6e206578697374656e7420746f6b656e0000000000000000000000000000604482015260640161084a565b6107d782612d06565b60065473ffffffffffffffffffffffffffffffffffffffff163314611b9f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161084a565b600e610be8828483613e09565b600082815260086020526040808220815160a08101909252805482908290611bd3906138d7565b80601f0160208091040260200160405190810160405280929190818152602001828054611bff906138d7565b8015611c4c5780601f10611c2157610100808354040283529160200191611c4c565b820191906000526020600020905b815481529060010190602001808311611c2f57829003601f168201915b5050509183525050600182015473ffffffffffffffffffffffffffffffffffffffff1660208083019190915260028301547fffffffffffffffffffffffffffffffff00000000000000000000000000000000608082811b82166040860152700100000000000000000000000000000000909204821b16606084015260039093015492909101919091528101519091506000611ce685611591565b905073ffffffffffffffffffffffffffffffffffffffff81163303611d4d5760405162461bcd60e51b815260206004820152601660248201527f627579657220616c7265616479206f776e73206e667400000000000000000000604482015260640161084a565b8260800151600003611da15760405162461bcd60e51b815260206004820152601360248201527f6e6674206973206e6f7420666f722073616c6500000000000000000000000000604482015260640161084a565b8260800151341015611df55760405162461bcd60e51b815260206004820152601a60248201527f76616c7565206c657373207468616e2073616c65207072696365000000000000604482015260640161084a565b8173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161480611e4457503373ffffffffffffffffffffffffffffffffffffffff8316145b15611f215760008173ffffffffffffffffffffffffffffffffffffffff166103e8600d546103e8611e759190613f23565b611e7f9034613ba1565b611e899190613be7565b604051600081818185875af1925050503d8060008114611ec5576040519150601f19603f3d011682016040523d82523d6000602084013e611eca565b606091505b5050905080611f1b5760405162461bcd60e51b815260206004820152601860248201527f6661696c656420746f207472616e736665722066756e64730000000000000000604482015260640161084a565b506120cb565b6000600c54905060008273ffffffffffffffffffffffffffffffffffffffff166103e883600d546103e8611f559190613f23565b611f5f9190613f23565b611f699034613ba1565b611f739190613be7565b604051600081818185875af1925050503d8060008114611faf576040519150601f19603f3d011682016040523d82523d6000602084013e611fb4565b606091505b50509050806120055760405162461bcd60e51b815260206004820152601860248201527f6661696c656420746f207472616e736665722066756e64730000000000000000604482015260640161084a565b600073ffffffffffffffffffffffffffffffffffffffff85166103e861202b8534613ba1565b6120359190613be7565b604051600081818185875af1925050503d8060008114612071576040519150601f19603f3d011682016040523d82523d6000602084013e612076565b606091505b50509050806120c75760405162461bcd60e51b815260206004820152601860248201527f6661696c656420746f207472616e736665722066756e64730000000000000000604482015260640161084a565b5050505b6000858152600860209081526040808320600301879055805191820190529081526120fb90829033908890612c7d565b5050505050565b60065473ffffffffffffffffffffffffffffffffffffffff1633146121695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161084a565b66470de4df8200008111156121c05760405162461bcd60e51b815260206004820152601460248201527f6d696e74466565206d617820302e303220657468000000000000000000000000604482015260640161084a565b600a55565b60065473ffffffffffffffffffffffffffffffffffffffff16331461222c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161084a565b73ffffffffffffffffffffffffffffffffffffffff81166122b55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161084a565b6114b6816127e4565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061235157507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806107d757507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146107d7565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841690811790915581906123fb82611591565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611980828260405180602001604052806000815250612eaf565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff166124f25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161084a565b60006124fd83611591565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061256c57508373ffffffffffffffffffffffffffffffffffffffff16612554846109aa565b73ffffffffffffffffffffffffffffffffffffffff16145b806125a9575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff166125d182611591565b73ffffffffffffffffffffffffffffffffffffffff161461265a5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e6572000000000000000000000000000000000000000000000000000000606482015260840161084a565b73ffffffffffffffffffffffffffffffffffffffff82166126e25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161084a565b6126ed6000826123a1565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600360205260408120805460019290612723908490613f23565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260036020526040812080546001929061275e908490613a26565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6006805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60608160000361289e57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156128c857806128b281613f36565b91506128c19050600a83613be7565b91506128a2565b60008167ffffffffffffffff8111156128e3576128e361373a565b6040519080825280601f01601f19166020018201604052801561290d576020820181803683370190505b5090505b84156125a957612922600183613f23565b915061292f600a86613f6e565b61293a906030613a26565b60f81b81838151811061294f5761294f6139a7565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612989600a86613be7565b9450612911565b606081516000036129af57505060408051602081019091526000815290565b600060405180606001604052806040815260200161429260409139905060006003845160026129de9190613a26565b6129e89190613be7565b6129f3906004613ba1565b90506000612a02826020613a26565b67ffffffffffffffff811115612a1a57612a1a61373a565b6040519080825280601f01601f191660200182016040528015612a44576020820181803683370190505b509050818152600183018586518101602084015b81831015612ab25760039283018051603f601282901c811687015160f890811b8552600c83901c8216880151811b6001860152600683901c8216880151811b60028601529116860151901b93820193909352600401612a58565b600389510660018114612acc5760028114612b1657612b5c565b7f3d3d0000000000000000000000000000000000000000000000000000000000007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe830152612b5c565b7f3d000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8301525b509398975050505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612be55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161084a565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612c888484846125b1565b612c9484848484612f38565b611ab55760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161084a565b600081815260086020526040902060020154606090819060801b7fffffffffffffffffffffffffffffffff000000000000000000000000000000001615612d8b57600083815260086020526040902060020154612d659060801b613111565b604051602001612d759190613f82565b6040516020818303038152906040529050612d9c565b506040805160208101909152600081525b600083815260086020526040902060020154606090700100000000000000000000000000000000900460801b7fffffffffffffffffffffffffffffffff000000000000000000000000000000001615612e4757600084815260086020526040902060020154612e2190700100000000000000000000000000000000900460801b613111565b604051602001612e319190613fee565b6040516020818303038152906040529050612e58565b506040805160208101909152600081525b612e9f6010612e668661285b565b600f8585612e738a6118ae565b600e604051602001612e8b979695949392919061405a565b604051602081830303815290604052612990565b60405160200161194e91906141c7565b612eb9838361328f565b612ec66000848484612f38565b610be85760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161084a565b600073ffffffffffffffffffffffffffffffffffffffff84163b15613106576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612faf90339089908890889060040161420c565b6020604051808303816000875af1925050508015613008575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261300591810190614255565b60015b6130bb573d808015613036576040519150601f19603f3d011682016040523d82523d6000602084013e61303b565b606091505b5080516000036130b35760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161084a565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506125a9565b506001949350505050565b606060005b60108160ff161080156131625750828160ff1660108110613139576131396139a7565b1a60f81b7fff000000000000000000000000000000000000000000000000000000000000001615155b15613179578061317181614272565b915050613116565b60008160ff1667ffffffffffffffff8111156131975761319761373a565b6040519080825280601f01601f1916602001820160405280156131c1576020820181803683370190505b50905060005b60108160ff161080156132135750848160ff16601081106131ea576131ea6139a7565b1a60f81b7fff000000000000000000000000000000000000000000000000000000000000001615155b1561328757848160ff166010811061322d5761322d6139a7565b1a60f81b828260ff1681518110613246576132466139a7565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508061327f81614272565b9150506131c7565b509392505050565b73ffffffffffffffffffffffffffffffffffffffff82166132f25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161084a565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff16156133645760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161084a565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260036020526040812080546001929061339a908490613a26565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146114b657600080fd5b60006020828403121561345d57600080fd5b81356134688161341d565b9392505050565b6000806040838503121561348257600080fd5b50508035926020909101359150565b60005b838110156134ac578181015183820152602001613494565b50506000910152565b600081518084526134cd816020860160208601613491565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061346860208301846134b5565b60006020828403121561352457600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff811681146114b657600080fd5b6000806040838503121561356057600080fd5b823561356b8161352b565b946020939093013593505050565b80357fffffffffffffffffffffffffffffffff00000000000000000000000000000000811681146135a957600080fd5b919050565b60008083601f8401126135c057600080fd5b50813567ffffffffffffffff8111156135d857600080fd5b6020830191508360208285010111156113f357600080fd5b60008060008060008060008060006101008a8c03121561360f57600080fd5b893561361a8161352b565b985061362860208b01613579565b975061363660408b01613579565b965060608a0135955060808a013567ffffffffffffffff81111561365957600080fd5b6136658c828d016135ae565b90965094505060a08a013560ff8116811461367f57600080fd5b8093505060c08a0135915060e08a013590509295985092959850929598565b6000806000606084860312156136b357600080fd5b83356136be8161352b565b925060208401356136ce8161352b565b929592945050506040919091013590565b6000602082840312156136f157600080fd5b81356134688161352b565b6000806040838503121561370f57600080fd5b823561371a8161352b565b91506020830135801515811461372f57600080fd5b809150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000806000806080858703121561377f57600080fd5b843561378a8161352b565b9350602085013561379a8161352b565b925060408501359150606085013567ffffffffffffffff808211156137be57600080fd5b818701915087601f8301126137d257600080fd5b8135818111156137e4576137e461373a565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190838211818310171561382a5761382a61373a565b816040528281528a602084870101111561384357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806020838503121561387a57600080fd5b823567ffffffffffffffff81111561389157600080fd5b61389d858286016135ae565b90969095509350505050565b600080604083850312156138bc57600080fd5b82356138c78161352b565b9150602083013561372f8161352b565b600181811c908216806138eb57607f821691505b602082108103613924577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7fffffffffffffffffffffffffffffffffffffffff0000000000000000000000008760601b16815260007fffffffffffffffffffffffffffffffff00000000000000000000000000000000808816601484015280871660248401525084603483015282846054840137506000910160540190815295945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061ffff808316818103613a1c57613a1c6139d6565b6001019392505050565b808201808211156107d7576107d76139d6565b601f821115610be857600081815260208120601f850160051c81016020861015613a605750805b601f850160051c820191505b81811015613a7f57828155600101613a6c565b505050505050565b815167ffffffffffffffff811115613aa157613aa161373a565b613ab581613aaf84546138d7565b84613a39565b602080601f831160018114613b085760008415613ad25750858301515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600386901b1c1916600185901b178555613a7f565b6000858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b82811015613b5557888601518255948401946001909101908401613b36565b5085821015613b9157878501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600388901b60f8161c191681555b5050505050600190811b01905550565b80820281158282048414176107d7576107d76139d6565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613bf657613bf6613bb8565b500490565b60008154613c08816138d7565b60018281168015613c205760018114613c5357613c82565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0084168752821515830287019450613c82565b8560005260208060002060005b85811015613c795781548a820152908401908201613c60565b50505082870194505b5050505092915050565b7f2d2d20000000000000000000000000000000000000000000000000000000000081526000613cbe6003830185613bfb565b8351613cce818360208801613491565b7f202d2d00000000000000000000000000000000000000000000000000000000009101908152600301949350505050565b7f474946383961000000000000000000000000000000000000000000000000000081526000613d316006830186613bfb565b7e21fe000000000000000000000000000000000000000000000000000000000081527fff00000000000000000000000000000000000000000000000000000000000000851660038201528351613d8e816004840160208801613491565b7e3b0000000000000000000000000000000000000000000000000000000000006004929091019182015260060195945050505050565b7f646174613a696d6167652f6769663b6261736536342c00000000000000000000815260008251613dfc816016850160208701613491565b9190910160160192915050565b67ffffffffffffffff831115613e2157613e2161373a565b613e3583613e2f83546138d7565b83613a39565b6000601f841160018114613e875760008515613e515750838201355b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600387901b1c1916600186901b1783556120fb565b6000838152602090207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0861690835b82811015613ed65786850135825560209485019460019092019101613eb6565b5086821015613f11577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60f88860031b161c19848701351681555b505060018560011b0183555050505050565b818103818111156107d7576107d76139d6565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613f6757613f676139d6565b5060010190565b600082613f7d57613f7d613bb8565b500690565b7f227469746c65223a220000000000000000000000000000000000000000000000815260008251613fba816009850160208701613491565b7f222c0000000000000000000000000000000000000000000000000000000000006009939091019283015250600b01919050565b7f22617274697374223a220000000000000000000000000000000000000000000081526000825161402681600a850160208701613491565b7f222c000000000000000000000000000000000000000000000000000000000000600a939091019283015250600c01919050565b7f7b226e616d65223a2200000000000000000000000000000000000000000000008152600061408c600983018a613bfb565b885161409c818360208d01613491565b7f222c226465736372697074696f6e223a2200000000000000000000000000000091019081526140cf6011820189613bfb565b90507f222c00000000000000000000000000000000000000000000000000000000000081528651614107816002840160208b01613491565b865191019061411d816002840160208a01613491565b7f22696d616765223a22000000000000000000000000000000000000000000000060029290910191820152845161415b81600b840160208901613491565b7f222c2265787465726e616c5f75726c223a220000000000000000000000000000600b9290910191820152614193601d820185613bfb565b7f227d00000000000000000000000000000000000000000000000000000000000081526002019a9950505050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516141ff81601d850160208701613491565b91909101601d0192915050565b600073ffffffffffffffffffffffffffffffffffffffff80871683528086166020840152508360408301526080606083015261424b60808301846134b5565b9695505050505050565b60006020828403121561426757600080fd5b81516134688161341d565b600060ff821660ff8103614288576142886139d6565b6001019291505056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220d3da4311a630dca798ce745876e789b83293bcf933b78a1e6f401d4206f8bed564736f6c63430008130033

Deployed Bytecode Sourcemap

43496:11608:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44728:389;;;;;;;;;;-1:-1:-1;44728:389:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;44728:389:0;;;;;;;;53774:306;;;;;;;;;;-1:-1:-1;53774:306:0;;;;;:::i;:::-;;:::i;:::-;;23194:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24753:221::-;;;;;;;;;;-1:-1:-1;24753:221:0;;;;;:::i;:::-;;:::i;:::-;;;2067:42:1;2055:55;;;2037:74;;2025:2;2010:18;24753:221:0;1891:226:1;24276:411:0;;;;;;;;;;-1:-1:-1;24276:411:0;;;;;:::i;:::-;;:::i;44007:35::-;;;;;;;;;;;;;;;;;;;2747:25:1;;;2735:2;2720:18;44007:35:0;2601:177:1;53535:97:0;;;;;;;;;;;;;:::i;45125:2271::-;;;;;;:::i;:::-;;:::i;47509:348::-;;;;;;;;;;-1:-1:-1;47509:348:0;;;;;:::i;:::-;;:::i;48755:457::-;;;;;;;;;;-1:-1:-1;48755:457:0;;;;;:::i;:::-;;:::i;:::-;;;;5104:42:1;5092:55;;;5074:74;;5179:2;5164:18;;5157:34;;;;5047:18;48755:457:0;4900:297:1;54945:154:0;;;;;;;;;;;;;:::i;25913:185::-;;;;;;;;;;-1:-1:-1;25913:185:0;;;;;:::i;:::-;;:::i;54256:183::-;;;;;;;;;;-1:-1:-1;54256:183:0;;;;;:::i;:::-;;:::i;22888:239::-;;;;;;;;;;-1:-1:-1;22888:239:0;;;;;:::i;:::-;;:::i;54630:197::-;;;;;;;;;;-1:-1:-1;54630:197:0;;;;;:::i;:::-;;:::i;22618:208::-;;;;;;;;;;-1:-1:-1;22618:208:0;;;;;:::i;:::-;;:::i;38367:103::-;;;;;;;;;;;;;:::i;44296:105::-;;;;;;;;;;;;;:::i;44229:60::-;;;;;;;;;;;;;:::i;37716:87::-;;;;;;;;;;-1:-1:-1;37789:6:0;;;;37716:87;;49220:714;;;;;;;;;;-1:-1:-1;49220:714:0;;;;;:::i;:::-;;:::i;23363:104::-;;;;;;;;;;;;;:::i;44049:44::-;;;;;;;;;;;;;;;;25046:155;;;;;;;;;;-1:-1:-1;25046:155:0;;;;;:::i;:::-;;:::i;44100:41::-;;;;;;;;;;;;;;;;54447:175;;;;;;;;;;-1:-1:-1;54447:175:0;;;;;:::i;:::-;;:::i;47865:392::-;;;;;;;;;;-1:-1:-1;47865:392:0;;;;;:::i;:::-;;:::i;44164:42::-;;;;;;;;;;;;;;;;51908:247;;;;;;;;;;-1:-1:-1;51908:247:0;;;;;:::i;:::-;;:::i;54835:102::-;;;;;;;;;;-1:-1:-1;54835:102:0;;;;;:::i;:::-;;:::i;52163:1364::-;;;;;;:::i;:::-;;:::i;25272:164::-;;;;;;;;;;-1:-1:-1;25272:164:0;;;;;:::i;:::-;25393:25;;;;25369:4;25393:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25272:164;54088:160;;;;;;;;;;-1:-1:-1;54088:160:0;;;;;:::i;:::-;;:::i;38625:201::-;;;;;;;;;;-1:-1:-1;38625:201:0;;;;;:::i;:::-;;:::i;53640:126::-;;;;;;;;;;-1:-1:-1;53640:126:0;;;;;:::i;:::-;53703:7;53730:18;;;:8;:18;;;;;:28;;;;53640:126;44728:389;44866:4;44899:40;;;44914:25;44899:40;;:103;;-1:-1:-1;44954:48:0;;;44969:33;44954:48;44899:103;:159;;;-1:-1:-1;45017:41:0;;;45032:26;45017:41;44899:159;:210;;;;45073:36;45097:11;45073:23;:36::i;:::-;44881:228;44728:389;-1:-1:-1;;44728:389:0:o;53774:306::-;28072:4;28096:16;;;:7;:16;;;;;;:30;:16;53854:48;;;;-1:-1:-1;;;53854:48:0;;8404:2:1;53854:48:0;;;8386:21:1;8443:2;8423:18;;;8416:30;8482:20;8462:18;;;8455:48;8520:18;;53854:48:0;;;;;;;;;53935:17;53943:8;53935:7;:17::i;:::-;53921:31;;:10;:31;;;53913:59;;;;-1:-1:-1;;;53913:59:0;;8751:2:1;53913:59:0;;;8733:21:1;8790:2;8770:18;;;8763:30;8829:17;8809:18;;;8802:45;8864:18;;53913:59:0;8549:339:1;53913:59:0;53983:18;;;;:8;:18;;;;;;:28;;:41;;;54042:30;54014:10;;53992:8;;54042:30;;53983:18;54042:30;53774:306;;:::o;23194:100::-;23248:13;23281:5;23274:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23194:100;:::o;24753:221::-;24829:7;28096:16;;;:7;:16;;;;;;:30;:16;24849:73;;;;-1:-1:-1;;;24849:73:0;;9537:2:1;24849:73:0;;;9519:21:1;9576:2;9556:18;;;9549:30;9615:34;9595:18;;;9588:62;9686:14;9666:18;;;9659:42;9718:19;;24849:73:0;9335:408:1;24849:73:0;-1:-1:-1;24942:24:0;;;;:15;:24;;;;;;;;;24753:221::o;24276:411::-;24357:13;24373:23;24388:7;24373:14;:23::i;:::-;24357:39;;24421:5;24415:11;;:2;:11;;;24407:57;;;;-1:-1:-1;;;24407:57:0;;9950:2:1;24407:57:0;;;9932:21:1;9989:2;9969:18;;;9962:30;10028:34;10008:18;;;10001:62;10099:3;10079:18;;;10072:31;10120:19;;24407:57:0;9748:397:1;24407:57:0;17920:10;24499:21;;;;;:62;;-1:-1:-1;25393:25:0;;;25369:4;25393:25;;;:18;:25;;;;;;;;17920:10;25393:35;;;;;;;;;;24524:37;24477:168;;;;-1:-1:-1;;;24477:168:0;;10352:2:1;24477:168:0;;;10334:21:1;10391:2;10371:18;;;10364:30;10430:34;10410:18;;;10403:62;10501:26;10481:18;;;10474:54;10545:19;;24477:168:0;10150:420:1;24477:168:0;24658:21;24667:2;24671:7;24658:8;:21::i;:::-;24346:341;24276:411;;:::o;53535:97::-;53581:7;53608:16;:6;36241:14;;36149:114;53608:16;53601:23;;53535:97;:::o;45125:2271::-;45478:15;45496:441;45590:14;45663:6;45728:11;45798:10;45867:9;;45515:420;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;45505:431;;45515:420;45505:431;;;;26724:66:1;48404:156:0;;;26712:79:1;26807:12;;;;26800:28;;;;48404:156:0;;;;;;;;;;26844:12:1;;;;48404:156:0;;;48394:167;;;;;;48313:256;45496:441;45990:15;;45956:30;;;45990:15;45956:30;;;;;;;;11548:25:1;;;11621:4;11609:17;;11589:18;;;11582:45;;;;11643:18;;;11636:34;;;11686:18;;;11679:34;;;45478:459:0;;-1:-1:-1;45990:15:0;;;;;11520:19:1;;45956:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:49;;;45948:114;;;;-1:-1:-1;;;45948:114:0;;11926:2:1;45948:114:0;;;11908:21:1;11965:2;11945:18;;;11938:30;12004:33;11984:18;;;11977:61;12055:18;;45948:114:0;11724:355:1;45948:114:0;46282:22;;;46216:11;46282:22;;;:6;:22;;;;;;;;46251:53;;;;;;;;;;;;;;;;;46237:2;;46216:11;46251:53;;46282:22;46251:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46320:8;46315:130;46338:12;:19;46334:1;:23;;;46315:130;;;46395:12;46408:1;46395:15;;;;;;;;;;:::i;:::-;;;;;;;46387:23;;;:4;:23;;;;46379:54;;;;-1:-1:-1;;;46379:54:0;;12475:2:1;46379:54:0;;;12457:21:1;12514:2;12494:18;;;12487:30;12553:20;12533:18;;;12526:48;12591:18;;46379:54:0;12273:342:1;46379:54:0;46359:3;;;;:::i;:::-;;;;46315:130;;;-1:-1:-1;46459:10:0;:28;;;;46455:427;;46523:16;;46573:7;;:20;;46523:16;;46573:20;:::i;:::-;46560:9;:33;;46552:91;;;;-1:-1:-1;;;46552:91:0;;13343:2:1;46552:91:0;;;13325:21:1;13382:2;13362:18;;;13355:30;13421:26;13401:18;;;13394:54;13465:18;;46552:91:0;13141:348:1;46552:91:0;46657:12;46683:14;46675:28;;46711:10;46675:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46656:70;;;46747:7;46739:43;;;;-1:-1:-1;;;46739:43:0;;13906:2:1;46739:43:0;;;13888:21:1;13945:2;13925:18;;;13918:30;13984:26;13964:18;;;13957:54;14028:18;;46739:43:0;13704:348:1;46739:43:0;46489:305;;46455:427;;;46834:7;;46821:9;:20;;46813:57;;;;-1:-1:-1;;;46813:57:0;;13343:2:1;46813:57:0;;;13325:21:1;13382:2;13362:18;;;13355:30;13421:26;13401:18;;;13394:54;13465:18;;46813:57:0;13141:348:1;46813:57:0;46892:22;;;;;;;:6;:22;;;;;;;:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46936:18;:6;36360:19;;36378:1;36360:19;;;36271:127;46936:18;46965:15;46983:16;:6;36241:14;;36149:114;46983:16;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46965:34:0;;-1:-1:-1;47048:42:0;;;:25;;;;:42;;;;47101:26;;;;:17;;;;:26;;;;47138:36;;;:22;;;:36;47185:21;;;:34;;;47278:27;;;;;;;;;;;;;;;;;;;;;47296:9;;;;;;47278:27;;47296:9;;;;47278:27;;;;;;;;-1:-1:-1;47278:27:0;;;-1:-1:-1;;;47316:17:0;;;:8;:17;;;;;:31;;47278:11;;47316:17;;;:31;;:17;:31;:::i;:::-;-1:-1:-1;47316:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47358:30;47368:10;47380:7;47358:9;:30::i;:::-;45411:1985;;;;;45125:2271;;;;;;;;;:::o;47509:348::-;47651:41;17920:10;47684:7;47651:18;:41::i;:::-;47643:125;;;;-1:-1:-1;;;47643:125:0;;16636:2:1;47643:125:0;;;16618:21:1;16675:2;16655:18;;;16648:30;16714:32;16694:18;;;16687:60;16764:18;;47643:125:0;16434:354:1;47643:125:0;47809:1;47779:17;;;:8;:17;;;;;:27;;:31;47821:28;47831:4;47837:2;47788:7;47821:9;:28::i;48755:457::-;48894:16;28096;;;:7;:16;;;;;;48894;;28096:30;:16;48946:48;;;;-1:-1:-1;;;48946:48:0;;16995:2:1;48946:48:0;;;16977:21:1;17034:2;17014:18;;;17007:30;17073:20;17053:18;;;17046:48;17111:18;;48946:48:0;16793:342:1;48946:48:0;49027:7;49013:10;:21;;49005:63;;;;-1:-1:-1;;;49005:63:0;;17342:2:1;49005:63:0;;;17324:21:1;17381:2;17361:18;;;17354:30;17420:31;17400:18;;;17393:59;17469:18;;49005:63:0;17140:353:1;49005:63:0;49101:18;;;;:8;:18;;;;;:32;;;49161:21;;49101:32;;;;;49185:4;;49148:34;;:10;:34;:::i;:::-;:41;;;;:::i;:::-;49079:125;;;;48755:457;;;;;;:::o;54945:154::-;37789:6;;37936:23;37789:6;17920:10;37936:23;37928:68;;;;-1:-1:-1;;;37928:68:0;;18187:2:1;37928:68:0;;;18169:21:1;;;18206:18;;;18199:30;18265:34;18245:18;;;18238:62;18317:18;;37928:68:0;17985:356:1;37928:68:0;55010:58:::1;::::0;54992:12:::1;::::0;55018:10:::1;::::0;55042:21:::1;::::0;54992:12;55010:58;54992:12;55010:58;55042:21;55018:10;55010:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54991:77;;;55083:7;55075:16;;;::::0;::::1;;54984:115;54945:154::o:0;25913:185::-;26051:39;26068:4;26074:2;26078:7;26051:39;;;;;;;;;;;;:16;:39::i;54256:183::-;37789:6;;37936:23;37789:6;17920:10;37936:23;37928:68;;;;-1:-1:-1;;;37928:68:0;;18187:2:1;37928:68:0;;;18169:21:1;;;18206:18;;;18199:30;18265:34;18245:18;;;18238:62;18317:18;;37928:68:0;17985:356:1;37928:68:0;54354:2:::1;54339:11;:17;;54331:53;;;::::0;-1:-1:-1;;;54331:53:0;;18548:2:1;54331:53:0::1;::::0;::::1;18530:21:1::0;18587:2;18567:18;;;18560:30;18626:25;18606:18;;;18599:53;18669:18;;54331:53:0::1;18346:347:1::0;54331:53:0::1;54395:22;:36:::0;54256:183::o;22888:239::-;22960:7;22996:16;;;:7;:16;;;;;;;;;23023:73;;;;-1:-1:-1;;;23023:73:0;;18900:2:1;23023:73:0;;;18882:21:1;18939:2;18919:18;;;18912:30;18978:34;18958:18;;;18951:62;19049:11;19029:18;;;19022:39;19078:19;;23023:73:0;18698:405:1;54630:197:0;37789:6;;37936:23;37789:6;17920:10;37936:23;37928:68;;;;-1:-1:-1;;;37928:68:0;;18187:2:1;37928:68:0;;;18169:21:1;;;18206:18;;;18199:30;18265:34;18245:18;;;18238:62;18317:18;;37928:68:0;17985:356:1;37928:68:0;54733:10:::1;54718:11;:25;;54710:68;;;::::0;-1:-1:-1;;;54710:68:0;;19310:2:1;54710:68:0::1;::::0;::::1;19292:21:1::0;19349:2;19329:18;;;19322:30;19388:32;19368:18;;;19361:60;19438:18;;54710:68:0::1;19108:354:1::0;54710:68:0::1;54789:16;:30:::0;54630:197::o;22618:208::-;22690:7;22718:19;;;22710:74;;;;-1:-1:-1;;;22710:74:0;;19669:2:1;22710:74:0;;;19651:21:1;19708:2;19688:18;;;19681:30;19747:34;19727:18;;;19720:62;19818:12;19798:18;;;19791:40;19848:19;;22710:74:0;19467:406:1;22710:74:0;-1:-1:-1;22802:16:0;;;;;;:9;:16;;;;;;;22618:208::o;38367:103::-;37789:6;;37936:23;37789:6;17920:10;37936:23;37928:68;;;;-1:-1:-1;;;37928:68:0;;18187:2:1;37928:68:0;;;18169:21:1;;;18206:18;;;18199:30;18265:34;18245:18;;;18238:62;18317:18;;37928:68:0;17985:356:1;37928:68:0;38432:30:::1;38459:1;38432:18;:30::i;:::-;38367:103::o:0;44296:105::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44229:60::-;;;;;;;:::i;49220:714::-;49276:13;49300:20;49388:9;49425:26;49442:8;49425:16;:26::i;:::-;49323:176;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;49508:26;49599:18;;;:8;49323:176;49599:18;;;;;;49687:14;;49323:176;;-1:-1:-1;49508:26:0;;49537:245;;49599:18;;49674:29;;;49323:176;;49537:245;;:::i;:::-;;;;;;;;;;;;;49508:274;;49877:28;49891:13;49877;:28::i;:::-;49798:128;;;;;;;;:::i;:::-;;;;;;;;;;;;;49791:135;;;;49220:714;;;:::o;23363:104::-;23419:13;23452:7;23445:14;;;;;:::i;25046:155::-;25141:52;17920:10;25174:8;25184;25141:18;:52::i;:::-;25046:155;;:::o;54447:175::-;37789:6;;37936:23;37789:6;17920:10;37936:23;37928:68;;;;-1:-1:-1;;;37928:68:0;;18187:2:1;37928:68:0;;;18169:21:1;;;18206:18;;;18199:30;18265:34;18245:18;;;18238:62;18317:18;;37928:68:0;17985:356:1;37928:68:0;54541:3:::1;54529:8;:15;;54521:50;;;::::0;-1:-1:-1;;;54521:50:0;;23062:2:1;54521:50:0::1;::::0;::::1;23044:21:1::0;23101:2;23081:18;;;23074:30;23140:24;23120:18;;;23113:52;23182:18;;54521:50:0::1;22860:346:1::0;54521:50:0::1;54582:21;:32:::0;54447:175::o;47865:392::-;48040:41;17920:10;48073:7;48040:18;:41::i;:::-;48032:125;;;;-1:-1:-1;;;48032:125:0;;16636:2:1;48032:125:0;;;16618:21:1;16675:2;16655:18;;;16648:30;16714:32;16694:18;;;16687:60;16764:18;;48032:125:0;16434:354:1;48032:125:0;48198:1;48168:17;;;:8;:17;;;;;:27;;:31;48210:39;48224:4;48230:2;48177:7;48243:5;48210:13;:39::i;:::-;47865:392;;;;:::o;51908:247::-;28072:4;28096:16;;;:7;:16;;;;;;52037:13;;28096:30;:16;52059:48;;;;-1:-1:-1;;;52059:48:0;;16995:2:1;52059:48:0;;;16977:21:1;17034:2;17014:18;;;17007:30;17073:20;17053:18;;;17046:48;17111:18;;52059:48:0;16793:342:1;52059:48:0;52121:26;52138:8;52121:16;:26::i;54835:102::-;37789:6;;37936:23;37789:6;17920:10;37936:23;37928:68;;;;-1:-1:-1;;;37928:68:0;;18187:2:1;37928:68:0;;;18169:21:1;;;18206:18;;;18199:30;18265:34;18245:18;;;18238:62;18317:18;;37928:68:0;17985:356:1;37928:68:0;54911:11:::1;:18;54925:4:::0;;54911:11;:18:::1;:::i;52163:1364::-:0;52242:29;52274:18;;;:8;:18;;;;;;52242:50;;;;;;;;;;;;52274:18;;52242:50;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;52242:50:0;;;-1:-1:-1;;52242:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52320:27;;;52242:50;;-1:-1:-1;52242:50:0;52375:17;52383:8;52375:7;:17::i;:::-;52358:34;-1:-1:-1;52411:20:0;;;:10;:20;52403:55;;;;-1:-1:-1;;;52403:55:0;;24741:2:1;52403:55:0;;;24723:21:1;24780:2;24760:18;;;24753:30;24819:24;24799:18;;;24792:52;24861:18;;52403:55:0;24539:346:1;52403:55:0;52477:13;:23;;;52504:1;52477:28;52469:60;;;;-1:-1:-1;;;52469:60:0;;25092:2:1;52469:60:0;;;25074:21:1;25131:2;25111:18;;;25104:30;25170:21;25150:18;;;25143:49;25209:18;;52469:60:0;24890:343:1;52469:60:0;52561:13;:23;;;52548:9;:36;;52540:114;;;;-1:-1:-1;;;52540:114:0;;25440:2:1;52540:114:0;;;25422:21:1;25479:2;25459:18;;;25452:30;25518:28;25498:18;;;25491:56;25564:18;;52540:114:0;25238:350:1;52540:114:0;52680:6;52670:16;;:6;:16;;;52669:44;;;-1:-1:-1;52692:10:0;:20;;;;52669:44;52665:746;;;52729:12;52755:6;52747:20;;52839:4;52813:22;;52808:4;:27;;;;:::i;:::-;52795:41;;:9;:41;:::i;:::-;:48;;;;:::i;:::-;52747:101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52728:120;;;52869:7;52861:44;;;;-1:-1:-1;;;52861:44:0;;13906:2:1;52861:44:0;;;13888:21:1;13945:2;13925:18;;;13918:30;13984:26;13964:18;;;13957:54;14028:18;;52861:44:0;13704:348:1;52861:44:0;52715:202;52665:746;;;52936:15;52954:21;;52936:39;;52989:13;53016:6;53008:20;;53162:4;53124:7;53101:22;;53096:4;:27;;;;:::i;:::-;:35;;;;:::i;:::-;53056:76;;:9;:76;:::i;:::-;:110;;;;:::i;:::-;53008:163;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52988:183;;;53192:8;53184:45;;;;-1:-1:-1;;;53184:45:0;;13906:2:1;53184:45:0;;;13888:21:1;13945:2;13925:18;;;13918:30;13984:26;13964:18;;;13957:54;14028:18;;53184:45:0;13704:348:1;53184:45:0;53243:13;53262:20;;;53332:4;53310:19;53322:7;53310:9;:19;:::i;:::-;:26;;;;:::i;:::-;53262:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53242:99;;;53362:8;53354:45;;;;-1:-1:-1;;;53354:45:0;;13906:2:1;53354:45:0;;;13888:21:1;13945:2;13925:18;;;13918:30;13984:26;13964:18;;;13957:54;14028:18;;53354:45:0;13704:348:1;53354:45:0;52923:488;;;52665:746;53421:18;;;;:8;:18;;;;;;;;:28;;:41;;;53473:46;;;;;;;;;;;;53487:6;;53495:10;;53430:8;;53473:13;:46::i;:::-;52231:1296;;;52163:1364;;:::o;54088:160::-;37789:6;;37936:23;37789:6;17920:10;37936:23;37928:68;;;;-1:-1:-1;;;37928:68:0;;18187:2:1;37928:68:0;;;18169:21:1;;;18206:18;;;18199:30;18265:34;18245:18;;;18238:62;18317:18;;37928:68:0;17985:356:1;37928:68:0;54176:10:::1;54164:8;:22;;54156:55;;;::::0;-1:-1:-1;;;54156:55:0;;25928:2:1;54156:55:0::1;::::0;::::1;25910:21:1::0;25967:2;25947:18;;;25940:30;26006:22;25986:18;;;25979:50;26046:18;;54156:55:0::1;25726:344:1::0;54156:55:0::1;54222:7;:18:::0;54088:160::o;38625:201::-;37789:6;;37936:23;37789:6;17920:10;37936:23;37928:68;;;;-1:-1:-1;;;37928:68:0;;18187:2:1;37928:68:0;;;18169:21:1;;;18206:18;;;18199:30;18265:34;18245:18;;;18238:62;18317:18;;37928:68:0;17985:356:1;37928:68:0;38714:22:::1;::::0;::::1;38706:73;;;::::0;-1:-1:-1;;;38706:73:0;;26277:2:1;38706:73:0::1;::::0;::::1;26259:21:1::0;26316:2;26296:18;;;26289:30;26355:34;26335:18;;;26328:62;26426:8;26406:18;;;26399:36;26452:19;;38706:73:0::1;26075:402:1::0;38706:73:0::1;38790:28;38809:8;38790:18;:28::i;22249:305::-:0;22351:4;22388:40;;;22403:25;22388:40;;:105;;-1:-1:-1;22445:48:0;;;22460:33;22445:48;22388:105;:158;;;-1:-1:-1;20982:25:0;20967:40;;;;22510:36;20858:157;32153:174;32228:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;32282:23;32228:24;32282:14;:23::i;:::-;32273:46;;;;;;;;;;;;32153:174;;:::o;28991:110::-;29067:26;29077:2;29081:7;29067:26;;;;;;;;;;;;:9;:26::i;28301:348::-;28394:4;28096:16;;;:7;:16;;;;;;:30;:16;28411:73;;;;-1:-1:-1;;;28411:73:0;;27069:2:1;28411:73:0;;;27051:21:1;27108:2;27088:18;;;27081:30;27147:34;27127:18;;;27120:62;27218:14;27198:18;;;27191:42;27250:19;;28411:73:0;26867:408:1;28411:73:0;28495:13;28511:23;28526:7;28511:14;:23::i;:::-;28495:39;;28564:5;28553:16;;:7;:16;;;:51;;;;28597:7;28573:31;;:20;28585:7;28573:11;:20::i;:::-;:31;;;28553:51;:87;;;-1:-1:-1;25393:25:0;;;;25369:4;25393:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28608:32;28545:96;28301:348;-1:-1:-1;;;;28301:348:0:o;31410:625::-;31569:4;31542:31;;:23;31557:7;31542:14;:23::i;:::-;:31;;;31534:81;;;;-1:-1:-1;;;31534:81:0;;27482:2:1;31534:81:0;;;27464:21:1;27521:2;27501:18;;;27494:30;27560:34;27540:18;;;27533:62;27631:7;27611:18;;;27604:35;27656:19;;31534:81:0;27280:401:1;31534:81:0;31634:16;;;31626:65;;;;-1:-1:-1;;;31626:65:0;;27888:2:1;31626:65:0;;;27870:21:1;27927:2;27907:18;;;27900:30;27966:34;27946:18;;;27939:62;28037:6;28017:18;;;28010:34;28061:19;;31626:65:0;27686:400:1;31626:65:0;31808:29;31825:1;31829:7;31808:8;:29::i;:::-;31850:15;;;;;;;:9;:15;;;;;:20;;31869:1;;31850:15;:20;;31869:1;;31850:20;:::i;:::-;;;;-1:-1:-1;;31881:13:0;;;;;;;:9;:13;;;;;:18;;31898:1;;31881:13;:18;;31898:1;;31881:18;:::i;:::-;;;;-1:-1:-1;;31910:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;;31949:27;;31910:16;;31949:27;;;;;;;24346:341;24276:411;;:::o;38986:191::-;39079:6;;;;39096:17;;;;;;;;;;;39129:40;;39079:6;;;39096:17;39079:6;;39129:40;;39060:16;;39129:40;39049:128;38986:191;:::o;18334:723::-;18390:13;18611:5;18620:1;18611:10;18607:53;;-1:-1:-1;;18638:10:0;;;;;;;;;;;;;;;;;;18334:723::o;18607:53::-;18685:5;18670:12;18726:78;18733:9;;18726:78;;18759:8;;;;:::i;:::-;;-1:-1:-1;18782:10:0;;-1:-1:-1;18790:2:0;18782:10;;:::i;:::-;;;18726:78;;;18814:19;18846:6;18836:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18836:17:0;;18814:39;;18864:154;18871:10;;18864:154;;18898:11;18908:1;18898:11;;:::i;:::-;;-1:-1:-1;18967:10:0;18975:2;18967:5;:10;:::i;:::-;18954:24;;:2;:24;:::i;:::-;18941:39;;18924:6;18931;18924:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;18995:11:0;19004:2;18995:11;;:::i;:::-;;;18864:154;;39450:1931;39508:13;39538:4;:11;39553:1;39538:16;39534:31;;-1:-1:-1;;39556:9:0;;;;;;;;;-1:-1:-1;39556:9:0;;;39450:1931::o;39534:31::-;39617:19;39639:5;;;;;;;;;;;;;;;;;39617:27;;39696:18;39742:1;39723:4;:11;39737:1;39723:15;;;;:::i;:::-;39722:21;;;;:::i;:::-;39717:27;;:1;:27;:::i;:::-;39696:48;-1:-1:-1;39827:20:0;39861:15;39696:48;39874:2;39861:15;:::i;:::-;39850:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39850:27:0;;39827:50;;39974:10;39966:6;39959:26;40069:1;40062:5;40058:13;40128:4;40179;40173:11;40164:7;40160:25;40275:2;40267:6;40263:15;40348:780;40367:6;40358:7;40355:19;40348:780;;;40433:1;40420:15;;;40499:14;;40637:4;40625:2;40621:14;;;40617:25;;40603:40;;40597:47;40592:3;40588:57;;;40570:76;;40765:2;40761:14;;;40757:25;;40743:40;;40737:47;40728:57;;40691:1;40676:17;;40710:76;40906:1;40901:14;;;40897:25;;40883:40;;40877:47;40868:57;;40816:17;;;40850:76;41037:25;;41023:40;;41017:47;41008:57;;40956:17;;;40990:76;;;;41096:17;;40348:780;;;41201:1;41194:4;41188:11;41184:19;41222:1;41217:54;;;;41290:1;41285:52;;;;41177:160;;41217:54;41252:16;41233:17;;;41226:43;41217:54;;41285:52;41320:14;41301:17;;;41294:41;41177:160;-1:-1:-1;41367:6:0;;39450:1931;-1:-1:-1;;;;;;;;39450:1931:0:o;32469:315::-;32624:8;32615:17;;:5;:17;;;32607:55;;;;-1:-1:-1;;;32607:55:0;;28610:2:1;32607:55:0;;;28592:21:1;28649:2;28629:18;;;28622:30;28688:27;28668:18;;;28661:55;28733:18;;32607:55:0;28408:349:1;32607:55:0;32673:25;;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;;;;;;;;;;;;32735:41;;586::1;;;32735::0;;559:18:1;32735:41:0;;;;;;;32469:315;;;:::o;27379:::-;27536:28;27546:4;27552:2;27556:7;27536:9;:28::i;:::-;27583:48;27606:4;27612:2;27616:7;27625:5;27583:22;:48::i;:::-;27575:111;;;;-1:-1:-1;;;27575:111:0;;28964:2:1;27575:111:0;;;28946:21:1;29003:2;28983:18;;;28976:30;29042:34;29022:18;;;29015:62;29113:20;29093:18;;;29086:48;29151:19;;27575:111:0;28762:414:1;50446:1454:0;50604:1;50568:18;;;:8;:18;;;;;:24;;;50512:13;;;;50596:10;50568:24;:38;;;50564:288;;50718:18;;;;:8;:18;;;;;:24;;;50709:34;;50718:24;;50709:8;:34::i;:::-;50627:178;;;;;;;;:::i;:::-;;;;;;;;;;;;;50619:186;;50564:288;;;-1:-1:-1;50832:10:0;;;;;;;;;-1:-1:-1;50832:10:0;;50564:288;50938:1;50897:18;;;:8;:18;;;;;:29;;;50860:24;;50897:29;;;50930:10;50897:29;:43;;;50893:309;;51058:18;;;;:8;:18;;;;;:29;;;51049:39;;51058:29;;;;;51049:8;:39::i;:::-;50966:184;;;;;;;;:::i;:::-;;;;;;;;;;;;;50953:197;;50893:309;;;-1:-1:-1;51177:15:0;;;;;;;;;-1:-1:-1;51177:15:0;;50893:309;51295:596;51394:9;51432:26;51449:8;51432:16;:26::i;:::-;51535:11;51608:5;51642:10;51721:18;51730:8;51721;:18::i;:::-;51817:11;51309:581;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51295:13;:596::i;:::-;51217:675;;;;;;;;:::i;29328:321::-;29458:18;29464:2;29468:7;29458:5;:18::i;:::-;29509:54;29540:1;29544:2;29548:7;29557:5;29509:22;:54::i;:::-;29487:154;;;;-1:-1:-1;;;29487:154:0;;28964:2:1;29487:154:0;;;28946:21:1;29003:2;28983:18;;;28976:30;29042:34;29022:18;;;29015:62;29113:20;29093:18;;;29086:48;29151:19;;29487:154:0;28762:414:1;33349:799:0;33504:4;33525:13;;;10271:19;:23;33521:620;;33561:72;;;;;:36;;;;;;:72;;17920:10;;33612:4;;33618:7;;33627:5;;33561:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33561:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33557:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33803:6;:13;33820:1;33803:18;33799:272;;33846:60;;-1:-1:-1;;;33846:60:0;;28964:2:1;33846:60:0;;;28946:21:1;29003:2;28983:18;;;28976:30;29042:34;29022:18;;;29015:62;29113:20;29093:18;;;29086:48;29151:19;;33846:60:0;28762:414:1;33799:272:0;34021:6;34015:13;34006:6;34002:2;33998:15;33991:38;33557:529;33684:51;;33694:41;33684:51;;-1:-1:-1;33677:58:0;;33521:620;-1:-1:-1;34125:4:0;33349:799;;;;;;:::o;49976:462::-;50035:13;50065:11;50095:84;50109:2;50101:5;:10;;;:34;;;;;50115:8;50124:5;50115:15;;;;;;;;;:::i;:::-;;;;:20;;;;50101:34;50095:84;;;50156:7;;;;:::i;:::-;;;;50095:84;;;50193:23;50229:5;50219:16;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50219:16:0;;50193:42;;50255:11;50250:137;50280:2;50272:5;:10;;;:34;;;;;50286:8;50295:5;50286:15;;;;;;;;;:::i;:::-;;;;:20;;;;50272:34;50250:137;;;50356:8;50365:5;50356:15;;;;;;;;;:::i;:::-;;;;50336:10;50347:5;50336:17;;;;;;;;;;:::i;:::-;;;;:35;;;;;;;;;;-1:-1:-1;50308:7:0;;;;:::i;:::-;;;;50250:137;;;-1:-1:-1;50415:10:0;49976:462;-1:-1:-1;;;49976:462:0:o;29985:439::-;30065:16;;;30057:61;;;;-1:-1:-1;;;30057:61:0;;34617:2:1;30057:61:0;;;34599:21:1;;;34636:18;;;34629:30;34695:34;34675:18;;;34668:62;34747:18;;30057:61:0;34415:356:1;30057:61:0;28072:4;28096:16;;;:7;:16;;;;;;:30;:16;:30;30129:58;;;;-1:-1:-1;;;30129:58:0;;34978:2:1;30129:58:0;;;34960:21:1;35017:2;34997:18;;;34990:30;35056;35036:18;;;35029:58;35104:18;;30129:58:0;34776:352:1;30129:58:0;30258:13;;;;;;;:9;:13;;;;;:18;;30275:1;;30258:13;:18;;30275:1;;30258:18;:::i;:::-;;;;-1:-1:-1;;30287:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;30326:33;;30287:16;;;30326:33;;30287:16;;30326:33;25046:155;;:::o;14:177:1:-;99:66;92:5;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;:::-;430:5;196:245;-1:-1:-1;;;196:245:1:o;638:248::-;706:6;714;767:2;755:9;746:7;742:23;738:32;735:52;;;783:1;780;773:12;735:52;-1:-1:-1;;806:23:1;;;876:2;861:18;;;848:32;;-1:-1:-1;638:248:1:o;891:250::-;976:1;986:113;1000:6;997:1;994:13;986:113;;;1076:11;;;1070:18;1057:11;;;1050:39;1022:2;1015:10;986:113;;;-1:-1:-1;;1133:1:1;1115:16;;1108:27;891:250::o;1146:330::-;1188:3;1226:5;1220:12;1253:6;1248:3;1241:19;1269:76;1338:6;1331:4;1326:3;1322:14;1315:4;1308:5;1304:16;1269:76;:::i;:::-;1390:2;1378:15;1395:66;1374:88;1365:98;;;;1465:4;1361:109;;1146:330;-1:-1:-1;;1146:330:1:o;1481:220::-;1630:2;1619:9;1612:21;1593:4;1650:45;1691:2;1680:9;1676:18;1668:6;1650:45;:::i;1706:180::-;1765:6;1818:2;1806:9;1797:7;1793:23;1789:32;1786:52;;;1834:1;1831;1824:12;1786:52;-1:-1:-1;1857:23:1;;1706:180;-1:-1:-1;1706:180:1:o;2122:154::-;2208:42;2201:5;2197:54;2190:5;2187:65;2177:93;;2266:1;2263;2256:12;2281:315;2349:6;2357;2410:2;2398:9;2389:7;2385:23;2381:32;2378:52;;;2426:1;2423;2416:12;2378:52;2465:9;2452:23;2484:31;2509:5;2484:31;:::i;:::-;2534:5;2586:2;2571:18;;;;2558:32;;-1:-1:-1;;;2281:315:1:o;2783:220::-;2851:20;;2911:66;2900:78;;2890:89;;2880:117;;2993:1;2990;2983:12;2880:117;2783:220;;;:::o;3008:347::-;3059:8;3069:6;3123:3;3116:4;3108:6;3104:17;3100:27;3090:55;;3141:1;3138;3131:12;3090:55;-1:-1:-1;3164:20:1;;3207:18;3196:30;;3193:50;;;3239:1;3236;3229:12;3193:50;3276:4;3268:6;3264:17;3252:29;;3328:3;3321:4;3312:6;3304;3300:19;3296:30;3293:39;3290:59;;;3345:1;3342;3335:12;3360:1074;3499:6;3507;3515;3523;3531;3539;3547;3555;3563;3616:3;3604:9;3595:7;3591:23;3587:33;3584:53;;;3633:1;3630;3623:12;3584:53;3672:9;3659:23;3691:31;3716:5;3691:31;:::i;:::-;3741:5;-1:-1:-1;3765:38:1;3799:2;3784:18;;3765:38;:::i;:::-;3755:48;;3822:38;3856:2;3845:9;3841:18;3822:38;:::i;:::-;3812:48;;3907:2;3896:9;3892:18;3879:32;3869:42;;3962:3;3951:9;3947:19;3934:33;3990:18;3982:6;3979:30;3976:50;;;4022:1;4019;4012:12;3976:50;4061:58;4111:7;4102:6;4091:9;4087:22;4061:58;:::i;:::-;4138:8;;-1:-1:-1;4035:84:1;-1:-1:-1;;4225:3:1;4210:19;;4197:33;4274:4;4261:18;;4249:31;;4239:59;;4294:1;4291;4284:12;4239:59;4317:7;4307:17;;;4371:3;4360:9;4356:19;4343:33;4333:43;;4423:3;4412:9;4408:19;4395:33;4385:43;;3360:1074;;;;;;;;;;;:::o;4439:456::-;4516:6;4524;4532;4585:2;4573:9;4564:7;4560:23;4556:32;4553:52;;;4601:1;4598;4591:12;4553:52;4640:9;4627:23;4659:31;4684:5;4659:31;:::i;:::-;4709:5;-1:-1:-1;4766:2:1;4751:18;;4738:32;4779:33;4738:32;4779:33;:::i;:::-;4439:456;;4831:7;;-1:-1:-1;;;4885:2:1;4870:18;;;;4857:32;;4439:456::o;5202:247::-;5261:6;5314:2;5302:9;5293:7;5289:23;5285:32;5282:52;;;5330:1;5327;5320:12;5282:52;5369:9;5356:23;5388:31;5413:5;5388:31;:::i;5454:416::-;5519:6;5527;5580:2;5568:9;5559:7;5555:23;5551:32;5548:52;;;5596:1;5593;5586:12;5548:52;5635:9;5622:23;5654:31;5679:5;5654:31;:::i;:::-;5704:5;-1:-1:-1;5761:2:1;5746:18;;5733:32;5803:15;;5796:23;5784:36;;5774:64;;5834:1;5831;5824:12;5774:64;5857:7;5847:17;;;5454:416;;;;;:::o;5875:184::-;5927:77;5924:1;5917:88;6024:4;6021:1;6014:15;6048:4;6045:1;6038:15;6064:1325;6159:6;6167;6175;6183;6236:3;6224:9;6215:7;6211:23;6207:33;6204:53;;;6253:1;6250;6243:12;6204:53;6292:9;6279:23;6311:31;6336:5;6311:31;:::i;:::-;6361:5;-1:-1:-1;6418:2:1;6403:18;;6390:32;6431:33;6390:32;6431:33;:::i;:::-;6483:7;-1:-1:-1;6537:2:1;6522:18;;6509:32;;-1:-1:-1;6592:2:1;6577:18;;6564:32;6615:18;6645:14;;;6642:34;;;6672:1;6669;6662:12;6642:34;6710:6;6699:9;6695:22;6685:32;;6755:7;6748:4;6744:2;6740:13;6736:27;6726:55;;6777:1;6774;6767:12;6726:55;6813:2;6800:16;6835:2;6831;6828:10;6825:36;;;6841:18;;:::i;:::-;6975:2;6969:9;7037:4;7029:13;;6880:66;7025:22;;;7049:2;7021:31;7017:40;7005:53;;;7073:18;;;7093:22;;;7070:46;7067:72;;;7119:18;;:::i;:::-;7159:10;7155:2;7148:22;7194:2;7186:6;7179:18;7234:7;7229:2;7224;7220;7216:11;7212:20;7209:33;7206:53;;;7255:1;7252;7245:12;7206:53;7311:2;7306;7302;7298:11;7293:2;7285:6;7281:15;7268:46;7356:1;7351:2;7346;7338:6;7334:15;7330:24;7323:35;7377:6;7367:16;;;;;;;6064:1325;;;;;;;:::o;7394:410::-;7465:6;7473;7526:2;7514:9;7505:7;7501:23;7497:32;7494:52;;;7542:1;7539;7532:12;7494:52;7582:9;7569:23;7615:18;7607:6;7604:30;7601:50;;;7647:1;7644;7637:12;7601:50;7686:58;7736:7;7727:6;7716:9;7712:22;7686:58;:::i;:::-;7763:8;;7660:84;;-1:-1:-1;7394:410:1;-1:-1:-1;;;;7394:410:1:o;7809:388::-;7877:6;7885;7938:2;7926:9;7917:7;7913:23;7909:32;7906:52;;;7954:1;7951;7944:12;7906:52;7993:9;7980:23;8012:31;8037:5;8012:31;:::i;:::-;8062:5;-1:-1:-1;8119:2:1;8104:18;;8091:32;8132:33;8091:32;8132:33;:::i;8893:437::-;8972:1;8968:12;;;;9015;;;9036:61;;9090:4;9082:6;9078:17;9068:27;;9036:61;9143:2;9135:6;9132:14;9112:18;9109:38;9106:218;;9180:77;9177:1;9170:88;9281:4;9278:1;9271:15;9309:4;9306:1;9299:15;9106:218;;8893:437;;;:::o;10575:741::-;10893:66;10884:6;10880:2;10876:15;10872:88;10867:3;10860:101;10842:3;10980:66;11088:2;11080:6;11076:15;11071:2;11066:3;11062:12;11055:37;11134:2;11126:6;11122:15;11117:2;11112:3;11108:12;11101:37;;11168:6;11163:2;11158:3;11154:12;11147:28;11219:6;11211;11206:2;11201:3;11197:12;11184:42;-1:-1:-1;11290:1:1;11249:16;;11267:2;11245:25;11279:13;;;11245:25;10575:741;-1:-1:-1;;;;;10575:741:1:o;12084:184::-;12136:77;12133:1;12126:88;12233:4;12230:1;12223:15;12257:4;12254:1;12247:15;12620:184;12672:77;12669:1;12662:88;12769:4;12766:1;12759:15;12793:4;12790:1;12783:15;12809:197;12847:3;12875:6;12916:2;12909:5;12905:14;12943:2;12934:7;12931:15;12928:41;;12949:18;;:::i;:::-;12998:1;12985:15;;12809:197;-1:-1:-1;;;12809:197:1:o;13011:125::-;13076:9;;;13097:10;;;13094:36;;;13110:18;;:::i;14182:544::-;14283:2;14278:3;14275:11;14272:448;;;14319:1;14344:5;14340:2;14333:17;14389:4;14385:2;14375:19;14459:2;14447:10;14443:19;14440:1;14436:27;14430:4;14426:38;14495:4;14483:10;14480:20;14477:47;;;-1:-1:-1;14518:4:1;14477:47;14573:2;14568:3;14564:12;14561:1;14557:20;14551:4;14547:31;14537:41;;14628:82;14646:2;14639:5;14636:13;14628:82;;;14691:17;;;14672:1;14661:13;14628:82;;;14632:3;;;14182:544;;;:::o;14962:1467::-;15086:3;15080:10;15113:18;15105:6;15102:30;15099:56;;;15135:18;;:::i;:::-;15164:96;15253:6;15213:38;15245:4;15239:11;15213:38;:::i;:::-;15207:4;15164:96;:::i;:::-;15315:4;;15379:2;15368:14;;15396:1;15391:781;;;;16216:1;16233:6;16230:89;;;-1:-1:-1;16285:19:1;;;16279:26;16230:89;14868:66;14859:1;14855:11;;;14851:84;14847:89;14837:100;14943:1;14939:11;;;14834:117;16332:81;;15361:1062;;15391:781;14129:1;14122:14;;;14166:4;14153:18;;15439:66;15427:79;;;15603:236;15617:7;15614:1;15611:14;15603:236;;;15706:19;;;15700:26;15685:42;;15798:27;;;;15766:1;15754:14;;;;15633:19;;15603:236;;;15607:3;15867:6;15858:7;15855:19;15852:261;;;15928:19;;;15922:26;16029:66;16011:1;16007:14;;;16023:3;16003:24;15999:97;15995:102;15980:118;15965:134;;15852:261;-1:-1:-1;;;;;16159:1:1;16143:14;;;16139:22;16126:36;;-1:-1:-1;14962:1467:1:o;17498:168::-;17571:9;;;17602;;17619:15;;;17613:22;;17599:37;17589:71;;17640:18;;:::i;17671:184::-;17723:77;17720:1;17713:88;17820:4;17817:1;17810:15;17844:4;17841:1;17834:15;17860:120;17900:1;17926;17916:35;;17931:18;;:::i;:::-;-1:-1:-1;17965:9:1;;17860:120::o;19878:783::-;19931:3;19972:5;19966:12;20001:36;20027:9;20001:36;:::i;:::-;20056:1;20073:18;;;20100:191;;;;20305:1;20300:355;;;;20066:589;;20100:191;20148:66;20137:9;20133:82;20128:3;20121:95;20271:6;20264:14;20257:22;20249:6;20245:35;20240:3;20236:45;20229:52;;20100:191;;20300:355;20331:5;20328:1;20321:16;20360:4;20405:2;20402:1;20392:16;20430:1;20444:165;20458:6;20455:1;20452:13;20444:165;;;20536:14;;20523:11;;;20516:35;20579:16;;;;20473:10;;20444:165;;;20448:3;;;20638:6;20633:3;20629:16;20622:23;;20066:589;;;;;19878:783;;;;:::o;20666:671::-;21052:5;21047:3;21040:18;21022:3;21077:49;21123:1;21118:3;21114:11;21106:6;21077:49;:::i;:::-;21155:6;21149:13;21171:65;21229:6;21225:2;21218:4;21210:6;21206:17;21171:65;:::i;:::-;21296:5;21258:15;;21282:20;;;21329:1;21318:13;;20666:671;-1:-1:-1;;;;20666:671:1:o;21342:1064::-;21840:8;21835:3;21828:21;21810:3;21871:49;21917:1;21912:3;21908:11;21900:6;21871:49;:::i;:::-;21943:66;21936:5;21929:81;22053:66;22045:6;22041:79;22037:1;22030:5;22026:13;22019:102;22150:6;22144:13;22166:76;22235:6;22231:1;22224:5;22220:13;22213:4;22205:6;22201:17;22166:76;:::i;:::-;22307:66;22303:1;22261:18;;;;22295:10;;;22288:86;22398:1;22390:10;;21342:1064;-1:-1:-1;;;;;21342:1064:1:o;22411:444::-;22663:24;22658:3;22651:37;22633:3;22717:6;22711:13;22733:75;22801:6;22796:2;22791:3;22787:12;22780:4;22772:6;22768:17;22733:75;:::i;:::-;22828:16;;;;22846:2;22824:25;;22411:444;-1:-1:-1;;22411:444:1:o;23211:1323::-;23335:18;23330:3;23327:27;23324:53;;;23357:18;;:::i;:::-;23386:93;23475:3;23435:38;23467:4;23461:11;23435:38;:::i;:::-;23429:4;23386:93;:::i;:::-;23505:1;23530:2;23525:3;23522:11;23547:1;23542:734;;;;24320:1;24337:3;24334:93;;;-1:-1:-1;24393:19:1;;;24380:33;24334:93;14868:66;14859:1;14855:11;;;14851:84;14847:89;14837:100;14943:1;14939:11;;;14834:117;24440:78;;23515:1013;;23542:734;14129:1;14122:14;;;14166:4;14153:18;;23587:66;23578:76;;;23737:9;23759:229;23773:7;23770:1;23767:14;23759:229;;;23862:19;;;23849:33;23834:49;;23969:4;23954:20;;;;23922:1;23910:14;;;;23789:12;23759:229;;;23763:3;24016;24007:7;24004:16;24001:219;;;24136:66;24130:3;24124;24121:1;24117:11;24113:21;24109:94;24105:99;24092:9;24087:3;24083:19;24070:33;24066:139;24058:6;24051:155;24001:219;;;24263:1;24257:3;24254:1;24250:11;24246:19;24240:4;24233:33;23515:1013;;23211:1323;;;:::o;25593:128::-;25660:9;;;25681:11;;;25678:37;;;25695:18;;:::i;28091:195::-;28130:3;28161:66;28154:5;28151:77;28148:103;;28231:18;;:::i;:::-;-1:-1:-1;28278:1:1;28267:13;;28091:195::o;28291:112::-;28323:1;28349;28339:35;;28354:18;;:::i;:::-;-1:-1:-1;28388:9:1;;28291:112::o;29181:690::-;29522:66;29517:3;29510:79;29492:3;29618:6;29612:13;29634:74;29701:6;29697:1;29692:3;29688:11;29681:4;29673:6;29669:17;29634:74;:::i;:::-;29771:66;29767:1;29727:16;;;;29759:10;;;29752:86;-1:-1:-1;29862:2:1;29854:11;;29181:690;-1:-1:-1;29181:690:1:o;29876:693::-;30218:66;30213:3;30206:79;30188:3;30314:6;30308:13;30330:75;30398:6;30393:2;30388:3;30384:12;30377:4;30369:6;30365:17;30330:75;:::i;:::-;30469:66;30464:2;30424:16;;;;30456:11;;;30449:87;-1:-1:-1;30560:2:1;30552:11;;29876:693;-1:-1:-1;29876:693:1:o;30574:2429::-;31620:66;31615:3;31608:79;31590:3;31706:49;31752:1;31747:3;31743:11;31735:6;31706:49;:::i;:::-;31784:6;31778:13;31800:65;31858:6;31854:2;31847:4;31839:6;31835:17;31800:65;:::i;:::-;31925:66;31887:15;;31911:81;;;32011:52;32059:2;32048:14;;32040:6;32011:52;:::i;:::-;32001:62;;32083:66;32079:2;32072:78;32181:6;32175:13;32197:75;32263:8;32259:1;32255:2;32251:10;32244:4;32236:6;32232:17;32197:75;:::i;:::-;32333:13;;32291:17;;;32355:75;32333:13;32417:1;32409:10;;32402:4;32390:17;;32355:75;:::i;:::-;32494:66;32490:1;32449:17;;;;32482:10;;;32475:86;32586:13;;32608:76;32586:13;32670:2;32662:11;;32655:4;32643:17;;32608:76;:::i;:::-;32749:66;32744:2;32703:17;;;;32736:11;;;32729:87;32835:49;32880:2;32872:11;;32864:6;32835:49;:::i;:::-;32904:66;32893:78;;32995:1;32987:10;;30574:2429;-1:-1:-1;;;;;;;;;;30574:2429:1:o;33008:451::-;33260:31;33255:3;33248:44;33230:3;33321:6;33315:13;33337:75;33405:6;33400:2;33395:3;33391:12;33384:4;33376:6;33372:17;33337:75;:::i;:::-;33432:16;;;;33450:2;33428:25;;33008:451;-1:-1:-1;;33008:451:1:o;33464:512::-;33658:4;33687:42;33768:2;33760:6;33756:15;33745:9;33738:34;33820:2;33812:6;33808:15;33803:2;33792:9;33788:18;33781:43;;33860:6;33855:2;33844:9;33840:18;33833:34;33903:3;33898:2;33887:9;33883:18;33876:31;33924:46;33965:3;33954:9;33950:19;33942:6;33924:46;:::i;:::-;33916:54;33464:512;-1:-1:-1;;;;;;33464:512:1:o;33981:249::-;34050:6;34103:2;34091:9;34082:7;34078:23;34074:32;34071:52;;;34119:1;34116;34109:12;34071:52;34151:9;34145:16;34170:30;34194:5;34170:30;:::i;34235:175::-;34272:3;34316:4;34309:5;34305:16;34345:4;34336:7;34333:17;34330:43;;34353:18;;:::i;:::-;34402:1;34389:15;;34235:175;-1:-1:-1;;34235:175:1:o

Swarm Source

ipfs://d3da4311a630dca798ce745876e789b83293bcf933b78a1e6f401d4206f8bed5
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.