ETH Price: $3,474.32 (+1.95%)
Gas: 8 Gwei

Token

Hor1zon (H1Z)
 

Overview

Max Total Supply

6,999 H1Z

Holders

3,916

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
cacahou.eth
Balance
2 H1Z
0x9edd069accf979f744ce3fbbebf54507ead29a21
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Hor1zon project is a collection of 6,999 Troopers forged in the Metaverse and living on the Ethereum Blockchain. Each NFT has specific attributes and variables that makes it unique.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Horizon

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-04
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.4;

// File @openzeppelin/contracts/utils/introspection/[email protected]

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

/**
 * @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 whiteed 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 whiteed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

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

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


// File @openzeppelin/contracts/utils/[email protected]

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/math/[email protected]


// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/access/[email protected]

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

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

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

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

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

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

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

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


contract Horizon is ERC721("Hor1zon", "H1Z"), ERC721Enumerable, Ownable {
    using SafeMath for uint256;
    using Strings for uint256;
    /*
     * Currently Assuming there will be one baseURI.
     * If it fails to upload all NFTs data under one baseURI,
     * we will divide baseURI and tokenURI function will be changed accordingly.
    */
    string private baseURI;
    string private blindURI;
    uint256 public constant BUY_LIMIT_PER_TX = 5;
    uint256 public constant MAX_NFT_PUBLIC = 6899;
    uint256 private constant MAX_NFT = 6999;
    uint256 public NFTPrice = 120000000000000000;  // 0.12 ETH
    bool public reveal;
    bool public isActive;
    bool public isPresaleActive;
    uint256 public constant WHITELIST_MAX_MINT = 2;
    mapping(address => bool) private whiteList;
    mapping(address => uint256) private whiteListClaimed;
    uint256 public giveawayCount;
    /*
     * Function to reveal all NFTs
    */
    function revealNow() 
        external 
        onlyOwner 
    {
        reveal = true;
    }
    
    /*
     * Function addToWhiteList to add whitelisted addresses to presale
    */
    function addToWhiteList(
        address[] memory _addresses
    ) 
        external
        onlyOwner
    {
        for (uint256 i = 0; i < _addresses.length; i++) {
            require(_addresses[i] != address(0), "Cannot add the null address");
            whiteList[_addresses[i]] = true;
            /**
            * @dev We don't want to reset _whiteListClaimed count
            * if we try to add someone more than once.
            */
            whiteListClaimed[_addresses[i]] > 0 ? whiteListClaimed[_addresses[i]] : 0;
        }
    }
    
    /*
     * Function onWhiteList returns if address is whitelisted or not 
    */
    function onWhiteList(
        address _addr
    ) 
        external 
        view
        returns (bool) 
    {
        return whiteList[_addr];
    }
    
    /*
     * Function setIsActive to activate/desactivate the smart contract
    */
    function setIsActive(
        bool _isActive
    ) 
        external 
        onlyOwner 
    {
        isActive = _isActive;
    }
    
    /*
     * Function setPresaleActive to activate/desactivate the presale  
    */
    function setPresaleActive(
        bool _isActive
    ) 
        external 
        onlyOwner 
    {
        isPresaleActive = _isActive;
    }
    
    /*
     * Function to set Base and Blind URI 
    */
    function setURIs(
        string memory _blindURI, 
        string memory _URI
    ) 
        external 
        onlyOwner 
    {
        blindURI = _blindURI;
        baseURI = _URI;
    }
    
    /*
     * Function to withdraw collected amount during minting by the owner
    */
    function withdraw(
        address _to
    ) 
        public 
        onlyOwner 
    {
        uint balance = address(this).balance;
        require(balance > 0, "Balance should be more then zero");
        payable(_to).transfer(balance);
    }
    
    /*
     * Function to mint new NFTs during the public sale
     * It is payable. Amount is calculated as per (NFTPrice.mul(_numOfTokens))
    */
    function mintNFT(
        uint256 _numOfTokens
    ) 
        public 
        payable 
    {
    
        require(isActive, 'Contract is not active');
        require(!isPresaleActive, 'Only whiteing from White List');
        require(_numOfTokens <= BUY_LIMIT_PER_TX, "Cannot mint above limit");
        require(totalSupply().add(_numOfTokens).sub(giveawayCount) <= MAX_NFT_PUBLIC, "Purchase would exceed max public supply of NFTs");
        require(NFTPrice.mul(_numOfTokens) == msg.value, "Ether value sent is not correct");
        
        for(uint i = 0; i < _numOfTokens; i++) {
            _safeMint(msg.sender, totalSupply().sub(giveawayCount));
        }
    }
    
    /*
     * Function to mint new NFTs during the presale
     * It is payable. Amount is calculated as per (NFTPrice.mul(_numOfTokens))
    */ 
    function mintNFTDuringPresale(
        uint256 _numOfTokens
    ) 
        public 
        payable
    {
        require(isActive, 'Contract is not active');
        require(isPresaleActive, 'Only whiteing from White List');
        require(whiteList[msg.sender], 'You are not on the White List');
        require(totalSupply() < MAX_NFT_PUBLIC, 'All public tokens have been minted');
        require(_numOfTokens <= WHITELIST_MAX_MINT, 'Cannot purchase this many tokens');
        require(totalSupply().add(_numOfTokens).sub(giveawayCount) <= MAX_NFT_PUBLIC, 'Purchase would exceed max public supply of NFTs');
        require(whiteListClaimed[msg.sender].add(_numOfTokens) <= WHITELIST_MAX_MINT, 'Purchase exceeds max whiteed');
        require(NFTPrice.mul(_numOfTokens) == msg.value, "Ether value sent is not correct");
        for (uint256 i = 0; i < _numOfTokens; i++) {
            
            whiteListClaimed[msg.sender] += 1;
            _safeMint(msg.sender, totalSupply().sub(giveawayCount));
        }
    }
    
    /*
     * Function to mint all NFTs for giveaway and partnerships
    */
    function mintByOwner(
        address _to, 
        uint256 _tokenId
    ) 
        public 
        onlyOwner
    {
        require(_tokenId >= MAX_NFT_PUBLIC, "Tokens number to mint must exceed number of public tokens");
        require(_tokenId < MAX_NFT, "Tokens number to mint cannot exceed number of MAX tokens");
        _safeMint(_to, _tokenId);
        giveawayCount=giveawayCount.add(1);
    }
    
    /*
     * Function to mint all NFTs for giveaway and partnerships
    */
    function mintMultipleByOwner(
        address[] memory _to, 
        uint256[] memory _tokenId
    ) 
        public 
        onlyOwner
    {
        require(_to.length == _tokenId.length, "Should have same length");
        for(uint256 i = 0; i < _to.length; i++){
            require(_tokenId[i] >= MAX_NFT_PUBLIC, "Tokens number to mint must exceed number of public tokens");
            require(_tokenId[i] < MAX_NFT, "Tokens number to mint cannot exceed number of MAX tokens");
            _safeMint(_to[i], _tokenId[i]);
            giveawayCount = giveawayCount.add(1);
        }
    }
    
    /*
     * Function to get token URI of given token ID
     * URI will be blank untill totalSupply reaches MAX_NFT_PUBLIC
    */
    function tokenURI(
        uint256 _tokenId
    ) 
        public 
        view 
        virtual 
        override 
        returns (string memory) 
    {
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
        if (!reveal) {
            return string(abi.encodePacked(blindURI));
        } else {
            return string(abi.encodePacked(baseURI, _tokenId.toString()));
        }
    }
    
    function supportsInterface(
        bytes4 _interfaceId
    ) 
        public
        view 
        override (ERC721, ERC721Enumerable) 
        returns (bool) 
    {
        return super.supportsInterface(_interfaceId);
    }

    // Standard functions to be overridden 
    function _beforeTokenTransfer(
        address _from, 
        address _to, 
        uint256 _tokenId
    ) 
        internal 
        override(ERC721, ERC721Enumerable) 
    {
        super._beforeTokenTransfer(_from, _to, _tokenId);
    }
}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BUY_LIMIT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFTPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addToWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giveawayCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"mintByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256[]","name":"_tokenId","type":"uint256[]"}],"name":"mintMultipleByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numOfTokens","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numOfTokens","type":"uint256"}],"name":"mintNFTDuringPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"onWhiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealNow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setPresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_blindURI","type":"string"},{"internalType":"string","name":"_URI","type":"string"}],"name":"setURIs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"_interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526701aa535d3d0c0000600d553480156200001d57600080fd5b5060408051808201825260078152662437b918bd37b760c91b6020808301918252835180850190945260038452622418ad60e91b9084015281519192916200006891600091620000f7565b5080516200007e906001906020840190620000f7565b5050506200009b62000095620000a160201b60201c565b620000a5565b620001da565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000105906200019d565b90600052602060002090601f01602090048101928262000129576000855562000174565b82601f106200014457805160ff191683800117855562000174565b8280016001018555821562000174579182015b828111156200017457825182559160200191906001019062000157565b506200018292915062000186565b5090565b5b8082111562000182576000815560010162000187565b600181811c90821680620001b257607f821691505b60208210811415620001d457634e487b7160e01b600052602260045260246000fd5b50919050565b612d3480620001ea6000396000f3fe6080604052600436106102255760003560e01c8063740d73f311610123578063b88d4fde116100ab578063e82541741161006f578063e825417414610632578063e985e9c514610652578063e9be0f3f1461069b578063f2fde38b146106b1578063ff99d8ce146106d157600080fd5b8063b88d4fde146105a7578063c151a5f8146105c7578063c87b56dd146105e7578063d1d80f3014610607578063e748e07c1461061d57600080fd5b8063a22cb465116100f2578063a22cb46514610509578063a38bffda14610529578063a475b5dd1461053f578063aeb1676814610559578063b22d0c831461056e57600080fd5b8063740d73f3146104a35780638da5cb5b146104c357806392642744146104e157806395d89b41146104f457600080fd5b80633542aee2116101b15780635f0f45b2116101755780635f0f45b21461041957806360d938dc1461042e5780636352211e1461044e57806370a082311461046e578063715018a61461048e57600080fd5b80633542aee2146103795780633f8121a21461039957806342842e0e146103b95780634f6ccce7146103d957806351cff8d9146103f957600080fd5b806318160ddd116101f857806318160ddd146102db57806322f3e2d4146102fa57806323b872dd146103195780632750fc78146103395780632f745c591461035957600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004612782565b6106e4565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b506102746106f5565b6040516102569190612965565b34801561028d57600080fd5b506102a161029c36600461281b565b610787565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d4366004612650565b610821565b005b3480156102e757600080fd5b506008545b604051908152602001610256565b34801561030657600080fd5b50600e5461024a90610100900460ff1681565b34801561032557600080fd5b506102d9610334366004612573565b610937565b34801561034557600080fd5b506102d9610354366004612768565b610968565b34801561036557600080fd5b506102ec610374366004612650565b6109ac565b34801561038557600080fd5b506102d9610394366004612650565b610a42565b3480156103a557600080fd5b506102d96103b4366004612768565b610ace565b3480156103c557600080fd5b506102d96103d4366004612573565b610b14565b3480156103e557600080fd5b506102ec6103f436600461281b565b610b2f565b34801561040557600080fd5b506102d9610414366004612527565b610bd0565b34801561042557600080fd5b506102d9610c7e565b34801561043a57600080fd5b50600e5461024a9062010000900460ff1681565b34801561045a57600080fd5b506102a161046936600461281b565b610cb7565b34801561047a57600080fd5b506102ec610489366004612527565b610d2e565b34801561049a57600080fd5b506102d9610db5565b3480156104af57600080fd5b506102d96104be366004612679565b610deb565b3480156104cf57600080fd5b50600a546001600160a01b03166102a1565b6102d96104ef36600461281b565b610fd0565b34801561050057600080fd5b5061027461119b565b34801561051557600080fd5b506102d9610524366004612627565b6111aa565b34801561053557600080fd5b506102ec600d5481565b34801561054b57600080fd5b50600e5461024a9060ff1681565b34801561056557600080fd5b506102ec600281565b34801561057a57600080fd5b5061024a610589366004612527565b6001600160a01b03166000908152600f602052604090205460ff1690565b3480156105b357600080fd5b506102d96105c23660046125ae565b61126f565b3480156105d357600080fd5b506102d96105e23660046126ac565b6112a7565b3480156105f357600080fd5b5061027461060236600461281b565b61143a565b34801561061357600080fd5b506102ec611af381565b34801561062957600080fd5b506102ec600581565b34801561063e57600080fd5b506102d961064d3660046127ba565b61150c565b34801561065e57600080fd5b5061024a61066d366004612541565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106a757600080fd5b506102ec60115481565b3480156106bd57600080fd5b506102d96106cc366004612527565b61155d565b6102d96106df36600461281b565b6115f8565b60006106ef82611906565b92915050565b60606000805461070490612c3c565b80601f016020809104026020016040519081016040528092919081815260200182805461073090612c3c565b801561077d5780601f106107525761010080835404028352916020019161077d565b820191906000526020600020905b81548152906001019060200180831161076057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108055760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061082c82610cb7565b9050806001600160a01b0316836001600160a01b0316141561089a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107fc565b336001600160a01b03821614806108b657506108b6813361066d565b6109285760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107fc565b610932838361192b565b505050565b6109413382611999565b61095d5760405162461bcd60e51b81526004016107fc90612aab565b610932838383611a90565b600a546001600160a01b031633146109925760405162461bcd60e51b81526004016107fc90612a27565b600e80549115156101000261ff0019909216919091179055565b60006109b783610d2e565b8210610a195760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107fc565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610a6c5760405162461bcd60e51b81526004016107fc90612a27565b611af3811015610a8e5760405162461bcd60e51b81526004016107fc90612afc565b611b578110610aaf5760405162461bcd60e51b81526004016107fc906129ca565b610ab98282611c3b565b601154610ac7906001611c55565b6011555050565b600a546001600160a01b03163314610af85760405162461bcd60e51b81526004016107fc90612a27565b600e8054911515620100000262ff000019909216919091179055565b6109328383836040518060200160405280600081525061126f565b6000610b3a60085490565b8210610b9d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107fc565b60088281548110610bbe57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610bfa5760405162461bcd60e51b81526004016107fc90612a27565b4780610c485760405162461bcd60e51b815260206004820181905260248201527f42616c616e63652073686f756c64206265206d6f7265207468656e207a65726f60448201526064016107fc565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610932573d6000803e3d6000fd5b600a546001600160a01b03163314610ca85760405162461bcd60e51b81526004016107fc90612a27565b600e805460ff19166001179055565b6000818152600260205260408120546001600160a01b0316806106ef5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107fc565b60006001600160a01b038216610d995760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107fc565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610ddf5760405162461bcd60e51b81526004016107fc90612a27565b610de96000611c68565b565b600a546001600160a01b03163314610e155760405162461bcd60e51b81526004016107fc90612a27565b60005b8151811015610fcc5760006001600160a01b0316828281518110610e4c57634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03161415610eab5760405162461bcd60e51b815260206004820152601b60248201527f43616e6e6f742061646420746865206e756c6c2061646472657373000000000060448201526064016107fc565b6001600f6000848481518110610ed157634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908315150217905550600060106000848481518110610f3657634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000205411610f6b576000610fb9565b60106000838381518110610f8f57634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020545b5080610fc481612c77565b915050610e18565b5050565b600e54610100900460ff166110205760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b60448201526064016107fc565b600e5462010000900460ff16156110795760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c79207768697465696e672066726f6d205768697465204c69737400000060448201526064016107fc565b60058111156110ca5760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74206d696e742061626f7665206c696d697400000000000000000060448201526064016107fc565b611af36110ec6011546110e6846110e060085490565b90611c55565b90611cba565b111561110a5760405162461bcd60e51b81526004016107fc90612a5c565b600d5434906111199083611cc6565b146111665760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016107fc565b60005b81811015610fcc57611189336111846011546110e660085490565b611c3b565b8061119381612c77565b915050611169565b60606001805461070490612c3c565b6001600160a01b0382163314156112035760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107fc565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112793383611999565b6112955760405162461bcd60e51b81526004016107fc90612aab565b6112a184848484611cd2565b50505050565b600a546001600160a01b031633146112d15760405162461bcd60e51b81526004016107fc90612a27565b80518251146113225760405162461bcd60e51b815260206004820152601760248201527f53686f756c6420686176652073616d65206c656e67746800000000000000000060448201526064016107fc565b60005b825181101561093257611af382828151811061135157634e487b7160e01b600052603260045260246000fd5b602002602001015110156113775760405162461bcd60e51b81526004016107fc90612afc565b611b5782828151811061139a57634e487b7160e01b600052603260045260246000fd5b6020026020010151106113bf5760405162461bcd60e51b81526004016107fc906129ca565b6114178382815181106113e257634e487b7160e01b600052603260045260246000fd5b602002602001015183838151811061140a57634e487b7160e01b600052603260045260246000fd5b6020026020010151611c3b565b601154611425906001611c55565b6011558061143281612c77565b915050611325565b6000818152600260205260409020546060906001600160a01b03166114b95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107fc565b600e5460ff166114eb57600c6040516020016114d591906128f7565b6040516020818303038152906040529050919050565b600b6114f683611d05565b6040516020016114d5929190612903565b919050565b600a546001600160a01b031633146115365760405162461bcd60e51b81526004016107fc90612a27565b815161154990600c90602085019061237a565b50805161093290600b90602084019061237a565b600a546001600160a01b031633146115875760405162461bcd60e51b81526004016107fc90612a27565b6001600160a01b0381166115ec5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107fc565b6115f581611c68565b50565b600e54610100900460ff166116485760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b60448201526064016107fc565b600e5462010000900460ff166116a05760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c79207768697465696e672066726f6d205768697465204c69737400000060448201526064016107fc565b336000908152600f602052604090205460ff166116ff5760405162461bcd60e51b815260206004820152601d60248201527f596f7520617265206e6f74206f6e20746865205768697465204c69737400000060448201526064016107fc565b611af361170b60085490565b106117635760405162461bcd60e51b815260206004820152602260248201527f416c6c207075626c696320746f6b656e732068617665206265656e206d696e74604482015261195960f21b60648201526084016107fc565b60028111156117b45760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e7360448201526064016107fc565b611af36117ca6011546110e6846110e060085490565b11156117e85760405162461bcd60e51b81526004016107fc90612a5c565b336000908152601060205260409020546002906118059083611c55565b11156118535760405162461bcd60e51b815260206004820152601c60248201527f50757263686173652065786365656473206d617820776869746565640000000060448201526064016107fc565b600d5434906118629083611cc6565b146118af5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016107fc565b60005b81811015610fcc573360009081526010602052604081208054600192906118da908490612bae565b925050819055506118f4336111846011546110e660085490565b806118fe81612c77565b9150506118b2565b60006001600160e01b0319821663780e9d6360e01b14806106ef57506106ef82611e1f565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061196082610cb7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a125760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107fc565b6000611a1d83610cb7565b9050806001600160a01b0316846001600160a01b03161480611a585750836001600160a01b0316611a4d84610787565b6001600160a01b0316145b80611a8857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611aa382610cb7565b6001600160a01b031614611b0b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107fc565b6001600160a01b038216611b6d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107fc565b611b78838383611e6f565b611b8360008261192b565b6001600160a01b0383166000908152600360205260408120805460019290611bac908490612bf9565b90915550506001600160a01b0382166000908152600360205260408120805460019290611bda908490612bae565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610fcc828260405180602001604052806000815250611e7a565b6000611c618284612bae565b9392505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611c618284612bf9565b6000611c618284612bda565b611cdd848484611a90565b611ce984848484611ead565b6112a15760405162461bcd60e51b81526004016107fc90612978565b606081611d295750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d535780611d3d81612c77565b9150611d4c9050600a83612bc6565b9150611d2d565b60008167ffffffffffffffff811115611d7c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611da6576020820181803683370190505b5090505b8415611a8857611dbb600183612bf9565b9150611dc8600a86612c92565b611dd3906030612bae565b60f81b818381518110611df657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611e18600a86612bc6565b9450611daa565b60006001600160e01b031982166380ac58cd60e01b1480611e5057506001600160e01b03198216635b5e139f60e01b145b806106ef57506301ffc9a760e01b6001600160e01b03198316146106ef565b610932838383611fba565b611e848383612072565b611e916000848484611ead565b6109325760405162461bcd60e51b81526004016107fc90612978565b60006001600160a01b0384163b15611faf57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ef1903390899088908890600401612928565b602060405180830381600087803b158015611f0b57600080fd5b505af1925050508015611f3b575060408051601f3d908101601f19168201909252611f389181019061279e565b60015b611f95573d808015611f69576040519150601f19603f3d011682016040523d82523d6000602084013e611f6e565b606091505b508051611f8d5760405162461bcd60e51b81526004016107fc90612978565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a88565b506001949350505050565b6001600160a01b0383166120155761201081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612038565b816001600160a01b0316836001600160a01b0316146120385761203883826121c0565b6001600160a01b03821661204f576109328161225d565b826001600160a01b0316826001600160a01b031614610932576109328282612336565b6001600160a01b0382166120c85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107fc565b6000818152600260205260409020546001600160a01b03161561212d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107fc565b61213960008383611e6f565b6001600160a01b0382166000908152600360205260408120805460019290612162908490612bae565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016121cd84610d2e565b6121d79190612bf9565b60008381526007602052604090205490915080821461222a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061226f90600190612bf9565b600083815260096020526040812054600880549394509092849081106122a557634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106122d457634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061231a57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061234183610d2e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461238690612c3c565b90600052602060002090601f0160209004810192826123a857600085556123ee565b82601f106123c157805160ff19168380011785556123ee565b828001600101855582156123ee579182015b828111156123ee5782518255916020019190600101906123d3565b506123fa9291506123fe565b5090565b5b808211156123fa57600081556001016123ff565b600067ffffffffffffffff83111561242d5761242d612cd2565b612440601f8401601f1916602001612b59565b905082815283838301111561245457600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461150757600080fd5b600082601f830112612492578081fd5b813560206124a76124a283612b8a565b612b59565b80838252828201915082860187848660051b89010111156124c6578586fd5b855b858110156124eb576124d98261246b565b845292840192908401906001016124c8565b5090979650505050505050565b8035801515811461150757600080fd5b600082601f830112612518578081fd5b611c6183833560208501612413565b600060208284031215612538578081fd5b611c618261246b565b60008060408385031215612553578081fd5b61255c8361246b565b915061256a6020840161246b565b90509250929050565b600080600060608486031215612587578081fd5b6125908461246b565b925061259e6020850161246b565b9150604084013590509250925092565b600080600080608085870312156125c3578081fd5b6125cc8561246b565b93506125da6020860161246b565b925060408501359150606085013567ffffffffffffffff8111156125fc578182fd5b8501601f8101871361260c578182fd5b61261b87823560208401612413565b91505092959194509250565b60008060408385031215612639578182fd5b6126428361246b565b915061256a602084016124f8565b60008060408385031215612662578182fd5b61266b8361246b565b946020939093013593505050565b60006020828403121561268a578081fd5b813567ffffffffffffffff8111156126a0578182fd5b611a8884828501612482565b600080604083850312156126be578182fd5b823567ffffffffffffffff808211156126d5578384fd5b6126e186838701612482565b93506020915081850135818111156126f7578384fd5b85019050601f81018613612709578283fd5b80356127176124a282612b8a565b80828252848201915084840189868560051b8701011115612736578687fd5b8694505b8385101561275857803583526001949094019391850191850161273a565b5080955050505050509250929050565b600060208284031215612779578081fd5b611c61826124f8565b600060208284031215612793578081fd5b8135611c6181612ce8565b6000602082840312156127af578081fd5b8151611c6181612ce8565b600080604083850312156127cc578182fd5b823567ffffffffffffffff808211156127e3578384fd5b6127ef86838701612508565b93506020850135915080821115612804578283fd5b5061281185828601612508565b9150509250929050565b60006020828403121561282c578081fd5b5035919050565b6000815180845261284b816020860160208601612c10565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061287957607f831692505b602080841082141561289957634e487b7160e01b86526022600452602486fd5b8180156128ad57600181146128be576128eb565b60ff198616895284890196506128eb565b60008881526020902060005b868110156128e35781548b8201529085019083016128ca565b505084890196505b50505050505092915050565b6000611c61828461285f565b600061290f828561285f565b835161291f818360208801612c10565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061295b90830184612833565b9695505050505050565b602081526000611c616020830184612833565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526038908201527f546f6b656e73206e756d62657220746f206d696e742063616e6e6f742065786360408201527f656564206e756d626572206f66204d415820746f6b656e730000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f507572636861736520776f756c6420657863656564206d6178207075626c696360408201526e20737570706c79206f66204e46547360881b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526039908201527f546f6b656e73206e756d62657220746f206d696e74206d75737420657863656560408201527f64206e756d626572206f66207075626c696320746f6b656e7300000000000000606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612b8257612b82612cd2565b604052919050565b600067ffffffffffffffff821115612ba457612ba4612cd2565b5060051b60200190565b60008219821115612bc157612bc1612ca6565b500190565b600082612bd557612bd5612cbc565b500490565b6000816000190483118215151615612bf457612bf4612ca6565b500290565b600082821015612c0b57612c0b612ca6565b500390565b60005b83811015612c2b578181015183820152602001612c13565b838111156112a15750506000910152565b600181811c90821680612c5057607f821691505b60208210811415612c7157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c8b57612c8b612ca6565b5060010190565b600082612ca157612ca1612cbc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146115f557600080fdfea26469706673582212207295fc352c0c28ee7666b95804743b22c96cb5d64e144c36db574e76e92abd9664736f6c63430008040033

Deployed Bytecode

0x6080604052600436106102255760003560e01c8063740d73f311610123578063b88d4fde116100ab578063e82541741161006f578063e825417414610632578063e985e9c514610652578063e9be0f3f1461069b578063f2fde38b146106b1578063ff99d8ce146106d157600080fd5b8063b88d4fde146105a7578063c151a5f8146105c7578063c87b56dd146105e7578063d1d80f3014610607578063e748e07c1461061d57600080fd5b8063a22cb465116100f2578063a22cb46514610509578063a38bffda14610529578063a475b5dd1461053f578063aeb1676814610559578063b22d0c831461056e57600080fd5b8063740d73f3146104a35780638da5cb5b146104c357806392642744146104e157806395d89b41146104f457600080fd5b80633542aee2116101b15780635f0f45b2116101755780635f0f45b21461041957806360d938dc1461042e5780636352211e1461044e57806370a082311461046e578063715018a61461048e57600080fd5b80633542aee2146103795780633f8121a21461039957806342842e0e146103b95780634f6ccce7146103d957806351cff8d9146103f957600080fd5b806318160ddd116101f857806318160ddd146102db57806322f3e2d4146102fa57806323b872dd146103195780632750fc78146103395780632f745c591461035957600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004612782565b6106e4565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b506102746106f5565b6040516102569190612965565b34801561028d57600080fd5b506102a161029c36600461281b565b610787565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d4366004612650565b610821565b005b3480156102e757600080fd5b506008545b604051908152602001610256565b34801561030657600080fd5b50600e5461024a90610100900460ff1681565b34801561032557600080fd5b506102d9610334366004612573565b610937565b34801561034557600080fd5b506102d9610354366004612768565b610968565b34801561036557600080fd5b506102ec610374366004612650565b6109ac565b34801561038557600080fd5b506102d9610394366004612650565b610a42565b3480156103a557600080fd5b506102d96103b4366004612768565b610ace565b3480156103c557600080fd5b506102d96103d4366004612573565b610b14565b3480156103e557600080fd5b506102ec6103f436600461281b565b610b2f565b34801561040557600080fd5b506102d9610414366004612527565b610bd0565b34801561042557600080fd5b506102d9610c7e565b34801561043a57600080fd5b50600e5461024a9062010000900460ff1681565b34801561045a57600080fd5b506102a161046936600461281b565b610cb7565b34801561047a57600080fd5b506102ec610489366004612527565b610d2e565b34801561049a57600080fd5b506102d9610db5565b3480156104af57600080fd5b506102d96104be366004612679565b610deb565b3480156104cf57600080fd5b50600a546001600160a01b03166102a1565b6102d96104ef36600461281b565b610fd0565b34801561050057600080fd5b5061027461119b565b34801561051557600080fd5b506102d9610524366004612627565b6111aa565b34801561053557600080fd5b506102ec600d5481565b34801561054b57600080fd5b50600e5461024a9060ff1681565b34801561056557600080fd5b506102ec600281565b34801561057a57600080fd5b5061024a610589366004612527565b6001600160a01b03166000908152600f602052604090205460ff1690565b3480156105b357600080fd5b506102d96105c23660046125ae565b61126f565b3480156105d357600080fd5b506102d96105e23660046126ac565b6112a7565b3480156105f357600080fd5b5061027461060236600461281b565b61143a565b34801561061357600080fd5b506102ec611af381565b34801561062957600080fd5b506102ec600581565b34801561063e57600080fd5b506102d961064d3660046127ba565b61150c565b34801561065e57600080fd5b5061024a61066d366004612541565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106a757600080fd5b506102ec60115481565b3480156106bd57600080fd5b506102d96106cc366004612527565b61155d565b6102d96106df36600461281b565b6115f8565b60006106ef82611906565b92915050565b60606000805461070490612c3c565b80601f016020809104026020016040519081016040528092919081815260200182805461073090612c3c565b801561077d5780601f106107525761010080835404028352916020019161077d565b820191906000526020600020905b81548152906001019060200180831161076057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108055760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061082c82610cb7565b9050806001600160a01b0316836001600160a01b0316141561089a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107fc565b336001600160a01b03821614806108b657506108b6813361066d565b6109285760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107fc565b610932838361192b565b505050565b6109413382611999565b61095d5760405162461bcd60e51b81526004016107fc90612aab565b610932838383611a90565b600a546001600160a01b031633146109925760405162461bcd60e51b81526004016107fc90612a27565b600e80549115156101000261ff0019909216919091179055565b60006109b783610d2e565b8210610a195760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107fc565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610a6c5760405162461bcd60e51b81526004016107fc90612a27565b611af3811015610a8e5760405162461bcd60e51b81526004016107fc90612afc565b611b578110610aaf5760405162461bcd60e51b81526004016107fc906129ca565b610ab98282611c3b565b601154610ac7906001611c55565b6011555050565b600a546001600160a01b03163314610af85760405162461bcd60e51b81526004016107fc90612a27565b600e8054911515620100000262ff000019909216919091179055565b6109328383836040518060200160405280600081525061126f565b6000610b3a60085490565b8210610b9d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107fc565b60088281548110610bbe57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610bfa5760405162461bcd60e51b81526004016107fc90612a27565b4780610c485760405162461bcd60e51b815260206004820181905260248201527f42616c616e63652073686f756c64206265206d6f7265207468656e207a65726f60448201526064016107fc565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610932573d6000803e3d6000fd5b600a546001600160a01b03163314610ca85760405162461bcd60e51b81526004016107fc90612a27565b600e805460ff19166001179055565b6000818152600260205260408120546001600160a01b0316806106ef5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107fc565b60006001600160a01b038216610d995760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107fc565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610ddf5760405162461bcd60e51b81526004016107fc90612a27565b610de96000611c68565b565b600a546001600160a01b03163314610e155760405162461bcd60e51b81526004016107fc90612a27565b60005b8151811015610fcc5760006001600160a01b0316828281518110610e4c57634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03161415610eab5760405162461bcd60e51b815260206004820152601b60248201527f43616e6e6f742061646420746865206e756c6c2061646472657373000000000060448201526064016107fc565b6001600f6000848481518110610ed157634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908315150217905550600060106000848481518110610f3657634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000205411610f6b576000610fb9565b60106000838381518110610f8f57634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020545b5080610fc481612c77565b915050610e18565b5050565b600e54610100900460ff166110205760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b60448201526064016107fc565b600e5462010000900460ff16156110795760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c79207768697465696e672066726f6d205768697465204c69737400000060448201526064016107fc565b60058111156110ca5760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74206d696e742061626f7665206c696d697400000000000000000060448201526064016107fc565b611af36110ec6011546110e6846110e060085490565b90611c55565b90611cba565b111561110a5760405162461bcd60e51b81526004016107fc90612a5c565b600d5434906111199083611cc6565b146111665760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016107fc565b60005b81811015610fcc57611189336111846011546110e660085490565b611c3b565b8061119381612c77565b915050611169565b60606001805461070490612c3c565b6001600160a01b0382163314156112035760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107fc565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112793383611999565b6112955760405162461bcd60e51b81526004016107fc90612aab565b6112a184848484611cd2565b50505050565b600a546001600160a01b031633146112d15760405162461bcd60e51b81526004016107fc90612a27565b80518251146113225760405162461bcd60e51b815260206004820152601760248201527f53686f756c6420686176652073616d65206c656e67746800000000000000000060448201526064016107fc565b60005b825181101561093257611af382828151811061135157634e487b7160e01b600052603260045260246000fd5b602002602001015110156113775760405162461bcd60e51b81526004016107fc90612afc565b611b5782828151811061139a57634e487b7160e01b600052603260045260246000fd5b6020026020010151106113bf5760405162461bcd60e51b81526004016107fc906129ca565b6114178382815181106113e257634e487b7160e01b600052603260045260246000fd5b602002602001015183838151811061140a57634e487b7160e01b600052603260045260246000fd5b6020026020010151611c3b565b601154611425906001611c55565b6011558061143281612c77565b915050611325565b6000818152600260205260409020546060906001600160a01b03166114b95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107fc565b600e5460ff166114eb57600c6040516020016114d591906128f7565b6040516020818303038152906040529050919050565b600b6114f683611d05565b6040516020016114d5929190612903565b919050565b600a546001600160a01b031633146115365760405162461bcd60e51b81526004016107fc90612a27565b815161154990600c90602085019061237a565b50805161093290600b90602084019061237a565b600a546001600160a01b031633146115875760405162461bcd60e51b81526004016107fc90612a27565b6001600160a01b0381166115ec5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107fc565b6115f581611c68565b50565b600e54610100900460ff166116485760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b60448201526064016107fc565b600e5462010000900460ff166116a05760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c79207768697465696e672066726f6d205768697465204c69737400000060448201526064016107fc565b336000908152600f602052604090205460ff166116ff5760405162461bcd60e51b815260206004820152601d60248201527f596f7520617265206e6f74206f6e20746865205768697465204c69737400000060448201526064016107fc565b611af361170b60085490565b106117635760405162461bcd60e51b815260206004820152602260248201527f416c6c207075626c696320746f6b656e732068617665206265656e206d696e74604482015261195960f21b60648201526084016107fc565b60028111156117b45760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e7360448201526064016107fc565b611af36117ca6011546110e6846110e060085490565b11156117e85760405162461bcd60e51b81526004016107fc90612a5c565b336000908152601060205260409020546002906118059083611c55565b11156118535760405162461bcd60e51b815260206004820152601c60248201527f50757263686173652065786365656473206d617820776869746565640000000060448201526064016107fc565b600d5434906118629083611cc6565b146118af5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016107fc565b60005b81811015610fcc573360009081526010602052604081208054600192906118da908490612bae565b925050819055506118f4336111846011546110e660085490565b806118fe81612c77565b9150506118b2565b60006001600160e01b0319821663780e9d6360e01b14806106ef57506106ef82611e1f565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061196082610cb7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a125760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107fc565b6000611a1d83610cb7565b9050806001600160a01b0316846001600160a01b03161480611a585750836001600160a01b0316611a4d84610787565b6001600160a01b0316145b80611a8857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611aa382610cb7565b6001600160a01b031614611b0b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107fc565b6001600160a01b038216611b6d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107fc565b611b78838383611e6f565b611b8360008261192b565b6001600160a01b0383166000908152600360205260408120805460019290611bac908490612bf9565b90915550506001600160a01b0382166000908152600360205260408120805460019290611bda908490612bae565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610fcc828260405180602001604052806000815250611e7a565b6000611c618284612bae565b9392505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611c618284612bf9565b6000611c618284612bda565b611cdd848484611a90565b611ce984848484611ead565b6112a15760405162461bcd60e51b81526004016107fc90612978565b606081611d295750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d535780611d3d81612c77565b9150611d4c9050600a83612bc6565b9150611d2d565b60008167ffffffffffffffff811115611d7c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611da6576020820181803683370190505b5090505b8415611a8857611dbb600183612bf9565b9150611dc8600a86612c92565b611dd3906030612bae565b60f81b818381518110611df657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611e18600a86612bc6565b9450611daa565b60006001600160e01b031982166380ac58cd60e01b1480611e5057506001600160e01b03198216635b5e139f60e01b145b806106ef57506301ffc9a760e01b6001600160e01b03198316146106ef565b610932838383611fba565b611e848383612072565b611e916000848484611ead565b6109325760405162461bcd60e51b81526004016107fc90612978565b60006001600160a01b0384163b15611faf57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ef1903390899088908890600401612928565b602060405180830381600087803b158015611f0b57600080fd5b505af1925050508015611f3b575060408051601f3d908101601f19168201909252611f389181019061279e565b60015b611f95573d808015611f69576040519150601f19603f3d011682016040523d82523d6000602084013e611f6e565b606091505b508051611f8d5760405162461bcd60e51b81526004016107fc90612978565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a88565b506001949350505050565b6001600160a01b0383166120155761201081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612038565b816001600160a01b0316836001600160a01b0316146120385761203883826121c0565b6001600160a01b03821661204f576109328161225d565b826001600160a01b0316826001600160a01b031614610932576109328282612336565b6001600160a01b0382166120c85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107fc565b6000818152600260205260409020546001600160a01b03161561212d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107fc565b61213960008383611e6f565b6001600160a01b0382166000908152600360205260408120805460019290612162908490612bae565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016121cd84610d2e565b6121d79190612bf9565b60008381526007602052604090205490915080821461222a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061226f90600190612bf9565b600083815260096020526040812054600880549394509092849081106122a557634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106122d457634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061231a57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061234183610d2e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461238690612c3c565b90600052602060002090601f0160209004810192826123a857600085556123ee565b82601f106123c157805160ff19168380011785556123ee565b828001600101855582156123ee579182015b828111156123ee5782518255916020019190600101906123d3565b506123fa9291506123fe565b5090565b5b808211156123fa57600081556001016123ff565b600067ffffffffffffffff83111561242d5761242d612cd2565b612440601f8401601f1916602001612b59565b905082815283838301111561245457600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461150757600080fd5b600082601f830112612492578081fd5b813560206124a76124a283612b8a565b612b59565b80838252828201915082860187848660051b89010111156124c6578586fd5b855b858110156124eb576124d98261246b565b845292840192908401906001016124c8565b5090979650505050505050565b8035801515811461150757600080fd5b600082601f830112612518578081fd5b611c6183833560208501612413565b600060208284031215612538578081fd5b611c618261246b565b60008060408385031215612553578081fd5b61255c8361246b565b915061256a6020840161246b565b90509250929050565b600080600060608486031215612587578081fd5b6125908461246b565b925061259e6020850161246b565b9150604084013590509250925092565b600080600080608085870312156125c3578081fd5b6125cc8561246b565b93506125da6020860161246b565b925060408501359150606085013567ffffffffffffffff8111156125fc578182fd5b8501601f8101871361260c578182fd5b61261b87823560208401612413565b91505092959194509250565b60008060408385031215612639578182fd5b6126428361246b565b915061256a602084016124f8565b60008060408385031215612662578182fd5b61266b8361246b565b946020939093013593505050565b60006020828403121561268a578081fd5b813567ffffffffffffffff8111156126a0578182fd5b611a8884828501612482565b600080604083850312156126be578182fd5b823567ffffffffffffffff808211156126d5578384fd5b6126e186838701612482565b93506020915081850135818111156126f7578384fd5b85019050601f81018613612709578283fd5b80356127176124a282612b8a565b80828252848201915084840189868560051b8701011115612736578687fd5b8694505b8385101561275857803583526001949094019391850191850161273a565b5080955050505050509250929050565b600060208284031215612779578081fd5b611c61826124f8565b600060208284031215612793578081fd5b8135611c6181612ce8565b6000602082840312156127af578081fd5b8151611c6181612ce8565b600080604083850312156127cc578182fd5b823567ffffffffffffffff808211156127e3578384fd5b6127ef86838701612508565b93506020850135915080821115612804578283fd5b5061281185828601612508565b9150509250929050565b60006020828403121561282c578081fd5b5035919050565b6000815180845261284b816020860160208601612c10565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061287957607f831692505b602080841082141561289957634e487b7160e01b86526022600452602486fd5b8180156128ad57600181146128be576128eb565b60ff198616895284890196506128eb565b60008881526020902060005b868110156128e35781548b8201529085019083016128ca565b505084890196505b50505050505092915050565b6000611c61828461285f565b600061290f828561285f565b835161291f818360208801612c10565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061295b90830184612833565b9695505050505050565b602081526000611c616020830184612833565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526038908201527f546f6b656e73206e756d62657220746f206d696e742063616e6e6f742065786360408201527f656564206e756d626572206f66204d415820746f6b656e730000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f507572636861736520776f756c6420657863656564206d6178207075626c696360408201526e20737570706c79206f66204e46547360881b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526039908201527f546f6b656e73206e756d62657220746f206d696e74206d75737420657863656560408201527f64206e756d626572206f66207075626c696320746f6b656e7300000000000000606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612b8257612b82612cd2565b604052919050565b600067ffffffffffffffff821115612ba457612ba4612cd2565b5060051b60200190565b60008219821115612bc157612bc1612ca6565b500190565b600082612bd557612bd5612cbc565b500490565b6000816000190483118215151615612bf457612bf4612ca6565b500290565b600082821015612c0b57612c0b612ca6565b500390565b60005b83811015612c2b578181015183820152602001612c13565b838111156112a15750506000910152565b600181811c90821680612c5057607f821691505b60208210811415612c7157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c8b57612c8b612ca6565b5060010190565b600082612ca157612ca1612cbc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146115f557600080fdfea26469706673582212207295fc352c0c28ee7666b95804743b22c96cb5d64e144c36db574e76e92abd9664736f6c63430008040033

Deployed Bytecode Sourcemap

49810:7490:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56760:235;;;;;;;;;;-1:-1:-1;56760:235:0;;;;;:::i;:::-;;:::i;:::-;;;9533:14:1;;9526:22;9508:41;;9496:2;9481:18;56760:235:0;;;;;;;;21422:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22981:221::-;;;;;;;;;;-1:-1:-1;22981:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8831:32:1;;;8813:51;;8801:2;8786:18;22981:221:0;8768:102:1;22504:411:0;;;;;;;;;;-1:-1:-1;22504:411:0;;;;;:::i;:::-;;:::i;:::-;;35111:113;;;;;;;;;;-1:-1:-1;35199:10:0;:17;35111:113;;;22373:25:1;;;22361:2;22346:18;35111:113:0;22328:76:1;50466:20:0;;;;;;;;;;-1:-1:-1;50466:20:0;;;;;;;;;;;23871:339;;;;;;;;;;-1:-1:-1;23871:339:0;;;;;:::i;:::-;;:::i;51892:137::-;;;;;;;;;;-1:-1:-1;51892:137:0;;;;;:::i;:::-;;:::i;34779:256::-;;;;;;;;;;-1:-1:-1;34779:256:0;;;;;:::i;:::-;;:::i;55047:413::-;;;;;;;;;;-1:-1:-1;55047:413:0;;;;;:::i;:::-;;:::i;52129:149::-;;;;;;;;;;-1:-1:-1;52129:149:0;;;;;:::i;:::-;;:::i;24281:185::-;;;;;;;;;;-1:-1:-1;24281:185:0;;;;;:::i;:::-;;:::i;35301:233::-;;;;;;;;;;-1:-1:-1;35301:233:0;;;;;:::i;:::-;;:::i;52649:253::-;;;;;;;;;;-1:-1:-1;52649:253:0;;;;;:::i;:::-;;:::i;50775:98::-;;;;;;;;;;;;;:::i;50493:27::-;;;;;;;;;;-1:-1:-1;50493:27:0;;;;;;;;;;;21116:239;;;;;;;;;;-1:-1:-1;21116:239:0;;;;;:::i;:::-;;:::i;20846:208::-;;;;;;;;;;-1:-1:-1;20846:208:0;;;;;:::i;:::-;;:::i;49179:94::-;;;;;;;;;;;;;:::i;50973:562::-;;;;;;;;;;-1:-1:-1;50973:562:0;;;;;:::i;:::-;;:::i;48528:87::-;;;;;;;;;;-1:-1:-1;48601:6:0;;-1:-1:-1;;;;;48601:6:0;48528:87;;53067:686;;;;;;:::i;:::-;;:::i;21591:104::-;;;;;;;;;;;;;:::i;23274:295::-;;;;;;;;;;-1:-1:-1;23274:295:0;;;;;:::i;:::-;;:::i;50377:44::-;;;;;;;;;;;;;;;;50441:18;;;;;;;;;;-1:-1:-1;50441:18:0;;;;;;;;50527:46;;;;;;;;;;;;50572:1;50527:46;;51634:158;;;;;;;;;;-1:-1:-1;51634:158:0;;;;;:::i;:::-;-1:-1:-1;;;;;51768:16:0;51738:4;51768:16;;;:9;:16;;;;;;;;;51634:158;24537:328;;;;;;;;;;-1:-1:-1;24537:328:0;;;;;:::i;:::-;;:::i;55552:606::-;;;;;;;;;;-1:-1:-1;55552:606:0;;;;;:::i;:::-;;:::i;56306:442::-;;;;;;;;;;-1:-1:-1;56306:442:0;;;;;:::i;:::-;;:::i;50279:45::-;;;;;;;;;;;;50320:4;50279:45;;50228:44;;;;;;;;;;;;50271:1;50228:44;;52350:197;;;;;;;;;;-1:-1:-1;52350:197:0;;;;;:::i;:::-;;:::i;23640:164::-;;;;;;;;;;-1:-1:-1;23640:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23761:25:0;;;23737:4;23761:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23640:164;50688:28;;;;;;;;;;;;;;;;49428:192;;;;;;;;;;-1:-1:-1;49428:192:0;;;;;:::i;:::-;;:::i;53915:1040::-;;;;;;:::i;:::-;;:::i;56760:235::-;56920:4;56950:37;56974:12;56950:23;:37::i;:::-;56943:44;56760:235;-1:-1:-1;;56760:235:0:o;21422:100::-;21476:13;21509:5;21502:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21422:100;:::o;22981:221::-;23057:7;26464:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26464:16:0;23077:73;;;;-1:-1:-1;;;23077:73:0;;17280:2:1;23077:73:0;;;17262:21:1;17319:2;17299:18;;;17292:30;17358:34;17338:18;;;17331:62;-1:-1:-1;;;17409:18:1;;;17402:42;17461:19;;23077:73:0;;;;;;;;;-1:-1:-1;23170:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23170:24:0;;22981:221::o;22504:411::-;22585:13;22601:23;22616:7;22601:14;:23::i;:::-;22585:39;;22649:5;-1:-1:-1;;;;;22643:11:0;:2;-1:-1:-1;;;;;22643:11:0;;;22635:57;;;;-1:-1:-1;;;22635:57:0;;18880:2:1;22635:57:0;;;18862:21:1;18919:2;18899:18;;;18892:30;18958:34;18938:18;;;18931:62;-1:-1:-1;;;19009:18:1;;;19002:31;19050:19;;22635:57:0;18852:223:1;22635:57:0;16064:10;-1:-1:-1;;;;;22727:21:0;;;;:62;;-1:-1:-1;22752:37:0;22769:5;16064:10;23640:164;:::i;22752:37::-;22705:168;;;;-1:-1:-1;;;22705:168:0;;14897:2:1;22705:168:0;;;14879:21:1;14936:2;14916:18;;;14909:30;14975:34;14955:18;;;14948:62;15046:26;15026:18;;;15019:54;15090:19;;22705:168:0;14869:246:1;22705:168:0;22886:21;22895:2;22899:7;22886:8;:21::i;:::-;22504:411;;;:::o;23871:339::-;24066:41;16064:10;24099:7;24066:18;:41::i;:::-;24058:103;;;;-1:-1:-1;;;24058:103:0;;;;;;;:::i;:::-;24174:28;24184:4;24190:2;24194:7;24174:9;:28::i;51892:137::-;48601:6;;-1:-1:-1;;;;;48601:6:0;16064:10;48748:23;48740:68;;;;-1:-1:-1;;;48740:68:0;;;;;;;:::i;:::-;52001:8:::1;:20:::0;;;::::1;;;;-1:-1:-1::0;;52001:20:0;;::::1;::::0;;;::::1;::::0;;51892:137::o;34779:256::-;34876:7;34912:23;34929:5;34912:16;:23::i;:::-;34904:5;:31;34896:87;;;;-1:-1:-1;;;34896:87:0;;10344:2:1;34896:87:0;;;10326:21:1;10383:2;10363:18;;;10356:30;10422:34;10402:18;;;10395:62;-1:-1:-1;;;10473:18:1;;;10466:41;10524:19;;34896:87:0;10316:233:1;34896:87:0;-1:-1:-1;;;;;;35001:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34779:256::o;55047:413::-;48601:6;;-1:-1:-1;;;;;48601:6:0;16064:10;48748:23;48740:68;;;;-1:-1:-1;;;48740:68:0;;;;;;;:::i;:::-;50320:4:::1;55186:8;:26;;55178:96;;;;-1:-1:-1::0;;;55178:96:0::1;;;;;;;:::i;:::-;50366:4;55293:8;:18;55285:87;;;;-1:-1:-1::0;;;55285:87:0::1;;;;;;;:::i;:::-;55383:24;55393:3;55398:8;55383:9;:24::i;:::-;55432:13;::::0;:20:::1;::::0;55450:1:::1;55432:17;:20::i;:::-;55418:13;:34:::0;-1:-1:-1;;55047:413:0:o;52129:149::-;48601:6;;-1:-1:-1;;;;;48601:6:0;16064:10;48748:23;48740:68;;;;-1:-1:-1;;;48740:68:0;;;;;;;:::i;:::-;52243:15:::1;:27:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;52243:27:0;;::::1;::::0;;;::::1;::::0;;52129:149::o;24281:185::-;24419:39;24436:4;24442:2;24446:7;24419:39;;;;;;;;;;;;:16;:39::i;35301:233::-;35376:7;35412:30;35199:10;:17;;35111:113;35412:30;35404:5;:38;35396:95;;;;-1:-1:-1;;;35396:95:0;;20116:2:1;35396:95:0;;;20098:21:1;20155:2;20135:18;;;20128:30;20194:34;20174:18;;;20167:62;-1:-1:-1;;;20245:18:1;;;20238:42;20297:19;;35396:95:0;20088:234:1;35396:95:0;35509:10;35520:5;35509:17;;;;;;-1:-1:-1;;;35509:17:0;;;;;;;;;;;;;;;;;35502:24;;35301:233;;;:::o;52649:253::-;48601:6;;-1:-1:-1;;;;;48601:6:0;16064:10;48748:23;48740:68;;;;-1:-1:-1;;;48740:68:0;;;;;;;:::i;:::-;52765:21:::1;52805:11:::0;52797:56:::1;;;::::0;-1:-1:-1;;;52797:56:0;;13767:2:1;52797:56:0::1;::::0;::::1;13749:21:1::0;;;13786:18;;;13779:30;13845:34;13825:18;;;13818:62;13897:18;;52797:56:0::1;13739:182:1::0;52797:56:0::1;52864:30;::::0;-1:-1:-1;;;;;52864:21:0;::::1;::::0;:30;::::1;;;::::0;52886:7;;52864:30:::1;::::0;;;52886:7;52864:21;:30;::::1;;;;;;;;;;;;;::::0;::::1;;;;50775:98:::0;48601:6;;-1:-1:-1;;;;;48601:6:0;16064:10;48748:23;48740:68;;;;-1:-1:-1;;;48740:68:0;;;;;;;:::i;:::-;50852:6:::1;:13:::0;;-1:-1:-1;;50852:13:0::1;50861:4;50852:13;::::0;;50775:98::o;21116:239::-;21188:7;21224:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21224:16:0;21259:19;21251:73;;;;-1:-1:-1;;;21251:73:0;;16158:2:1;21251:73:0;;;16140:21:1;16197:2;16177:18;;;16170:30;16236:34;16216:18;;;16209:62;-1:-1:-1;;;16287:18:1;;;16280:39;16336:19;;21251:73:0;16130:231:1;20846:208:0;20918:7;-1:-1:-1;;;;;20946:19:0;;20938:74;;;;-1:-1:-1;;;20938:74:0;;15322:2:1;20938:74:0;;;15304:21:1;15361:2;15341:18;;;15334:30;15400:34;15380:18;;;15373:62;-1:-1:-1;;;15451:18:1;;;15444:40;15501:19;;20938:74:0;15294:232:1;20938:74:0;-1:-1:-1;;;;;;21030:16:0;;;;;:9;:16;;;;;;;20846:208::o;49179:94::-;48601:6;;-1:-1:-1;;;;;48601:6:0;16064:10;48748:23;48740:68;;;;-1:-1:-1;;;48740:68:0;;;;;;;:::i;:::-;49244:21:::1;49262:1;49244:9;:21::i;:::-;49179:94::o:0;50973:562::-;48601:6;;-1:-1:-1;;;;;48601:6:0;16064:10;48748:23;48740:68;;;;-1:-1:-1;;;48740:68:0;;;;;;;:::i;:::-;51101:9:::1;51096:432;51120:10;:17;51116:1;:21;51096:432;;;51192:1;-1:-1:-1::0;;;;;51167:27:0::1;:10;51178:1;51167:13;;;;;;-1:-1:-1::0;;;51167:13:0::1;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;51167:27:0::1;;;51159:67;;;::::0;-1:-1:-1;;;51159:67:0;;14541:2:1;51159:67:0::1;::::0;::::1;14523:21:1::0;14580:2;14560:18;;;14553:30;14619:29;14599:18;;;14592:57;14666:18;;51159:67:0::1;14513:177:1::0;51159:67:0::1;51268:4;51241:9;:24;51251:10;51262:1;51251:13;;;;;;-1:-1:-1::0;;;51251:13:0::1;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;51241:24:0::1;-1:-1:-1::0;;;;;51241:24:0::1;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;51477:1;51443:16;:31;51460:10;51471:1;51460:13;;;;;;-1:-1:-1::0;;;51460:13:0::1;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;51443:31:0::1;-1:-1:-1::0;;;;;51443:31:0::1;;;;;;;;;;;;;:35;:73;;51515:1;51443:73;;;51481:16;:31;51498:10;51509:1;51498:13;;;;;;-1:-1:-1::0;;;51498:13:0::1;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;51481:31:0::1;-1:-1:-1::0;;;;;51481:31:0::1;;;;;;;;;;;;;51443:73;-1:-1:-1::0;51139:3:0;::::1;::::0;::::1;:::i;:::-;;;;51096:432;;;;50973:562:::0;:::o;53067:686::-;53188:8;;;;;;;53180:43;;;;-1:-1:-1;;;53180:43:0;;16929:2:1;53180:43:0;;;16911:21:1;16968:2;16948:18;;;16941:30;-1:-1:-1;;;16987:18:1;;;16980:52;17049:18;;53180:43:0;16901:172:1;53180:43:0;53243:15;;;;;;;53242:16;53234:58;;;;-1:-1:-1;;;53234:58:0;;21710:2:1;53234:58:0;;;21692:21:1;21749:2;21729:18;;;21722:30;21788:31;21768:18;;;21761:59;21837:18;;53234:58:0;21682:179:1;53234:58:0;50271:1;53311:12;:32;;53303:68;;;;-1:-1:-1;;;53303:68:0;;12296:2:1;53303:68:0;;;12278:21:1;12335:2;12315:18;;;12308:30;12374:25;12354:18;;;12347:53;12417:18;;53303:68:0;12268:173:1;53303:68:0;50320:4;53390:50;53426:13;;53390:31;53408:12;53390:13;35199:10;:17;;35111:113;53390:13;:17;;:31::i;:::-;:35;;:50::i;:::-;:68;;53382:128;;;;-1:-1:-1;;;53382:128:0;;;;;;;:::i;:::-;53529:8;;53559:9;;53529:26;;53542:12;53529;:26::i;:::-;:39;53521:83;;;;-1:-1:-1;;;53521:83:0;;13407:2:1;53521:83:0;;;13389:21:1;13446:2;13426:18;;;13419:30;13485:33;13465:18;;;13458:61;13536:18;;53521:83:0;13379:181:1;53521:83:0;53629:6;53625:121;53645:12;53641:1;:16;53625:121;;;53679:55;53689:10;53701:32;53719:13;;53701;35199:10;:17;;35111:113;53701:32;53679:9;:55::i;:::-;53659:3;;;;:::i;:::-;;;;53625:121;;21591:104;21647:13;21680:7;21673:14;;;;;:::i;23274:295::-;-1:-1:-1;;;;;23377:24:0;;16064:10;23377:24;;23369:62;;;;-1:-1:-1;;;23369:62:0;;13053:2:1;23369:62:0;;;13035:21:1;13092:2;13072:18;;;13065:30;13131:27;13111:18;;;13104:55;13176:18;;23369:62:0;13025:175:1;23369:62:0;16064:10;23444:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23444:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23444:53:0;;;;;;;;;;23513:48;;9508:41:1;;;23444:42:0;;16064:10;23513:48;;9481:18:1;23513:48:0;;;;;;;23274:295;;:::o;24537:328::-;24712:41;16064:10;24745:7;24712:18;:41::i;:::-;24704:103;;;;-1:-1:-1;;;24704:103:0;;;;;;;:::i;:::-;24818:39;24832:4;24838:2;24842:7;24851:5;24818:13;:39::i;:::-;24537:328;;;;:::o;55552:606::-;48601:6;;-1:-1:-1;;;;;48601:6:0;16064:10;48748:23;48740:68;;;;-1:-1:-1;;;48740:68:0;;;;;;;:::i;:::-;55731:8:::1;:15;55717:3;:10;:29;55709:65;;;::::0;-1:-1:-1;;;55709:65:0;;20529:2:1;55709:65:0::1;::::0;::::1;20511:21:1::0;20568:2;20548:18;;;20541:30;20607:25;20587:18;;;20580:53;20650:18;;55709:65:0::1;20501:173:1::0;55709:65:0::1;55789:9;55785:366;55808:3;:10;55804:1;:14;55785:366;;;50320:4;55847:8;55856:1;55847:11;;;;;;-1:-1:-1::0;;;55847:11:0::1;;;;;;;;;;;;;;;:29;;55839:99;;;;-1:-1:-1::0;;;55839:99:0::1;;;;;;;:::i;:::-;50366:4;55961:8;55970:1;55961:11;;;;;;-1:-1:-1::0;;;55961:11:0::1;;;;;;;;;;;;;;;:21;55953:90;;;;-1:-1:-1::0;;;55953:90:0::1;;;;;;;:::i;:::-;56058:30;56068:3;56072:1;56068:6;;;;;;-1:-1:-1::0;;;56068:6:0::1;;;;;;;;;;;;;;;56076:8;56085:1;56076:11;;;;;;-1:-1:-1::0;;;56076:11:0::1;;;;;;;;;;;;;;;56058:9;:30::i;:::-;56119:13;::::0;:20:::1;::::0;56137:1:::1;56119:17;:20::i;:::-;56103:13;:36:::0;55820:3;::::1;::::0;::::1;:::i;:::-;;;;55785:366;;56306:442:::0;26440:4;26464:16;;;:7;:16;;;;;;56446:13;;-1:-1:-1;;;;;26464:16:0;56478:77;;;;-1:-1:-1;;;56478:77:0;;18464:2:1;56478:77:0;;;18446:21:1;18503:2;18483:18;;;18476:30;18542:34;18522:18;;;18515:62;-1:-1:-1;;;18593:18:1;;;18586:45;18648:19;;56478:77:0;18436:237:1;56478:77:0;56571:6;;;;56566:175;;56625:8;56608:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;56594:41;;56306:442;;;:::o;56566:175::-;56699:7;56708:19;:8;:17;:19::i;:::-;56682:46;;;;;;;;;:::i;56566:175::-;56306:442;;;:::o;52350:197::-;48601:6;;-1:-1:-1;;;;;48601:6:0;16064:10;48748:23;48740:68;;;;-1:-1:-1;;;48740:68:0;;;;;;;:::i;:::-;52494:20;;::::1;::::0;:8:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;52525:14:0;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;49428:192::-:0;48601:6;;-1:-1:-1;;;;;48601:6:0;16064:10;48748:23;48740:68;;;;-1:-1:-1;;;48740:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49517:22:0;::::1;49509:73;;;::::0;-1:-1:-1;;;49509:73:0;;11532:2:1;49509:73:0::1;::::0;::::1;11514:21:1::0;11571:2;11551:18;;;11544:30;11610:34;11590:18;;;11583:62;-1:-1:-1;;;11661:18:1;;;11654:36;11707:19;;49509:73:0::1;11504:228:1::0;49509:73:0::1;49593:19;49603:8;49593:9;:19::i;:::-;49428:192:::0;:::o;53915:1040::-;54042:8;;;;;;;54034:43;;;;-1:-1:-1;;;54034:43:0;;16929:2:1;54034:43:0;;;16911:21:1;16968:2;16948:18;;;16941:30;-1:-1:-1;;;16987:18:1;;;16980:52;17049:18;;54034:43:0;16901:172:1;54034:43:0;54096:15;;;;;;;54088:57;;;;-1:-1:-1;;;54088:57:0;;21710:2:1;54088:57:0;;;21692:21:1;21749:2;21729:18;;;21722:30;21788:31;21768:18;;;21761:59;21837:18;;54088:57:0;21682:179:1;54088:57:0;54174:10;54164:21;;;;:9;:21;;;;;;;;54156:63;;;;-1:-1:-1;;;54156:63:0;;9986:2:1;54156:63:0;;;9968:21:1;10025:2;10005:18;;;9998:30;10064:31;10044:18;;;10037:59;10113:18;;54156:63:0;9958:179:1;54156:63:0;50320:4;54238:13;35199:10;:17;;35111:113;54238:13;:30;54230:77;;;;-1:-1:-1;;;54230:77:0;;20881:2:1;54230:77:0;;;20863:21:1;20920:2;20900:18;;;20893:30;20959:34;20939:18;;;20932:62;-1:-1:-1;;;21010:18:1;;;21003:32;21052:19;;54230:77:0;20853:224:1;54230:77:0;50572:1;54326:12;:34;;54318:79;;;;-1:-1:-1;;;54318:79:0;;22068:2:1;54318:79:0;;;22050:21:1;;;22087:18;;;22080:30;22146:34;22126:18;;;22119:62;22198:18;;54318:79:0;22040:182:1;54318:79:0;50320:4;54416:50;54452:13;;54416:31;54434:12;54416:13;35199:10;:17;;35111:113;54416:50;:68;;54408:128;;;;-1:-1:-1;;;54408:128:0;;;;;;;:::i;:::-;54572:10;54555:28;;;;:16;:28;;;;;;50572:1;;54555:46;;54588:12;54555:32;:46::i;:::-;:68;;54547:109;;;;-1:-1:-1;;;54547:109:0;;11175:2:1;54547:109:0;;;11157:21:1;11214:2;11194:18;;;11187:30;11253;11233:18;;;11226:58;11301:18;;54547:109:0;11147:178:1;54547:109:0;54675:8;;54705:9;;54675:26;;54688:12;54675;:26::i;:::-;:39;54667:83;;;;-1:-1:-1;;;54667:83:0;;13407:2:1;54667:83:0;;;13389:21:1;13446:2;13426:18;;;13419:30;13485:33;13465:18;;;13458:61;13536:18;;54667:83:0;13379:181:1;54667:83:0;54766:9;54761:187;54785:12;54781:1;:16;54761:187;;;54850:10;54833:28;;;;:16;:28;;;;;:33;;54865:1;;54833:28;:33;;54865:1;;54833:33;:::i;:::-;;;;;;;;54881:55;54891:10;54903:32;54921:13;;54903;35199:10;:17;;35111:113;54881:55;54799:3;;;;:::i;:::-;;;;54761:187;;34471:224;34573:4;-1:-1:-1;;;;;;34597:50:0;;-1:-1:-1;;;34597:50:0;;:90;;;34651:36;34675:11;34651:23;:36::i;30357:174::-;30432:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30432:29:0;-1:-1:-1;;;;;30432:29:0;;;;;;;;:24;;30486:23;30432:24;30486:14;:23::i;:::-;-1:-1:-1;;;;;30477:46:0;;;;;;;;;;;30357:174;;:::o;26669:348::-;26762:4;26464:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26464:16:0;26779:73;;;;-1:-1:-1;;;26779:73:0;;14128:2:1;26779:73:0;;;14110:21:1;14167:2;14147:18;;;14140:30;14206:34;14186:18;;;14179:62;-1:-1:-1;;;14257:18:1;;;14250:42;14309:19;;26779:73:0;14100:234:1;26779:73:0;26863:13;26879:23;26894:7;26879:14;:23::i;:::-;26863:39;;26932:5;-1:-1:-1;;;;;26921:16:0;:7;-1:-1:-1;;;;;26921:16:0;;:51;;;;26965:7;-1:-1:-1;;;;;26941:31:0;:20;26953:7;26941:11;:20::i;:::-;-1:-1:-1;;;;;26941:31:0;;26921:51;:87;;;-1:-1:-1;;;;;;23761:25:0;;;23737:4;23761:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;26976:32;26913:96;26669:348;-1:-1:-1;;;;26669:348:0:o;29661:578::-;29820:4;-1:-1:-1;;;;;29793:31:0;:23;29808:7;29793:14;:23::i;:::-;-1:-1:-1;;;;;29793:31:0;;29785:85;;;;-1:-1:-1;;;29785:85:0;;18054:2:1;29785:85:0;;;18036:21:1;18093:2;18073:18;;;18066:30;18132:34;18112:18;;;18105:62;-1:-1:-1;;;18183:18:1;;;18176:39;18232:19;;29785:85:0;18026:231:1;29785:85:0;-1:-1:-1;;;;;29889:16:0;;29881:65;;;;-1:-1:-1;;;29881:65:0;;12648:2:1;29881:65:0;;;12630:21:1;12687:2;12667:18;;;12660:30;12726:34;12706:18;;;12699:62;-1:-1:-1;;;12777:18:1;;;12770:34;12821:19;;29881:65:0;12620:226:1;29881:65:0;29959:39;29980:4;29986:2;29990:7;29959:20;:39::i;:::-;30063:29;30080:1;30084:7;30063:8;:29::i;:::-;-1:-1:-1;;;;;30105:15:0;;;;;;:9;:15;;;;;:20;;30124:1;;30105:15;:20;;30124:1;;30105:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30136:13:0;;;;;;:9;:13;;;;;:18;;30153:1;;30136:13;:18;;30153:1;;30136:18;:::i;:::-;;;;-1:-1:-1;;30165:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30165:21:0;-1:-1:-1;;;;;30165:21:0;;;;;;;;;30204:27;;30165:16;;30204:27;;;;;;;29661:578;;;:::o;27359:110::-;27435:26;27445:2;27449:7;27435:26;;;;;;;;;;;;:9;:26::i;43390:98::-;43448:7;43475:5;43479:1;43475;:5;:::i;:::-;43468:12;43390:98;-1:-1:-1;;;43390:98:0:o;49628:173::-;49703:6;;;-1:-1:-1;;;;;49720:17:0;;;-1:-1:-1;;;;;;49720:17:0;;;;;;;49753:40;;49703:6;;;49720:17;49703:6;;49753:40;;49684:16;;49753:40;49628:173;;:::o;43771:98::-;43829:7;43856:5;43860:1;43856;:5;:::i;44128:98::-;44186:7;44213:5;44217:1;44213;:5;:::i;25747:315::-;25904:28;25914:4;25920:2;25924:7;25904:9;:28::i;:::-;25951:48;25974:4;25980:2;25984:7;25993:5;25951:22;:48::i;:::-;25943:111;;;;-1:-1:-1;;;25943:111:0;;;;;;;:::i;16486:723::-;16542:13;16763:10;16759:53;;-1:-1:-1;;16790:10:0;;;;;;;;;;;;-1:-1:-1;;;16790:10:0;;;;;16486:723::o;16759:53::-;16837:5;16822:12;16878:78;16885:9;;16878:78;;16911:8;;;;:::i;:::-;;-1:-1:-1;16934:10:0;;-1:-1:-1;16942:2:0;16934:10;;:::i;:::-;;;16878:78;;;16966:19;16998:6;16988:17;;;;;;-1:-1:-1;;;16988:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16988:17:0;;16966:39;;17016:154;17023:10;;17016:154;;17050:11;17060:1;17050:11;;:::i;:::-;;-1:-1:-1;17119:10:0;17127:2;17119:5;:10;:::i;:::-;17106:24;;:2;:24;:::i;:::-;17093:39;;17076:6;17083;17076:14;;;;;;-1:-1:-1;;;17076:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;17076:56:0;;;;;;;;-1:-1:-1;17147:11:0;17156:2;17147:11;;:::i;:::-;;;17016:154;;20477:305;20579:4;-1:-1:-1;;;;;;20616:40:0;;-1:-1:-1;;;20616:40:0;;:105;;-1:-1:-1;;;;;;;20673:48:0;;-1:-1:-1;;;20673:48:0;20616:105;:158;;;-1:-1:-1;;;;;;;;;;19127:40:0;;;20738:36;19018:157;57048:249;57241:48;57268:5;57275:3;57280:8;57241:26;:48::i;27696:321::-;27826:18;27832:2;27836:7;27826:5;:18::i;:::-;27877:54;27908:1;27912:2;27916:7;27925:5;27877:22;:54::i;:::-;27855:154;;;;-1:-1:-1;;;27855:154:0;;;;;;;:::i;31096:799::-;31251:4;-1:-1:-1;;;;;31272:13:0;;8374:20;8422:8;31268:620;;31308:72;;-1:-1:-1;;;31308:72:0;;-1:-1:-1;;;;;31308:36:0;;;;;:72;;16064:10;;31359:4;;31365:7;;31374:5;;31308:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31308:72:0;;;;;;;;-1:-1:-1;;31308:72:0;;;;;;;;;;;;:::i;:::-;;;31304:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31550:13:0;;31546:272;;31593:60;;-1:-1:-1;;;31593:60:0;;;;;;;:::i;31546:272::-;31768:6;31762:13;31753:6;31749:2;31745:15;31738:38;31304:529;-1:-1:-1;;;;;;31431:51:0;-1:-1:-1;;;31431:51:0;;-1:-1:-1;31424:58:0;;31268:620;-1:-1:-1;31872:4:0;31096:799;;;;;;:::o;36147:589::-;-1:-1:-1;;;;;36353:18:0;;36349:187;;36388:40;36420:7;37563:10;:17;;37536:24;;;;:15;:24;;;;;:44;;;37591:24;;;;;;;;;;;;37459:164;36388:40;36349:187;;;36458:2;-1:-1:-1;;;;;36450:10:0;:4;-1:-1:-1;;;;;36450:10:0;;36446:90;;36477:47;36510:4;36516:7;36477:32;:47::i;:::-;-1:-1:-1;;;;;36550:16:0;;36546:183;;36583:45;36620:7;36583:36;:45::i;36546:183::-;36656:4;-1:-1:-1;;;;;36650:10:0;:2;-1:-1:-1;;;;;36650:10:0;;36646:83;;36677:40;36705:2;36709:7;36677:27;:40::i;28353:382::-;-1:-1:-1;;;;;28433:16:0;;28425:61;;;;-1:-1:-1;;;28425:61:0;;16568:2:1;28425:61:0;;;16550:21:1;;;16587:18;;;16580:30;16646:34;16626:18;;;16619:62;16698:18;;28425:61:0;16540:182:1;28425:61:0;26440:4;26464:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26464:16:0;:30;28497:58;;;;-1:-1:-1;;;28497:58:0;;11939:2:1;28497:58:0;;;11921:21:1;11978:2;11958:18;;;11951:30;12017;11997:18;;;11990:58;12065:18;;28497:58:0;11911:178:1;28497:58:0;28568:45;28597:1;28601:2;28605:7;28568:20;:45::i;:::-;-1:-1:-1;;;;;28626:13:0;;;;;;:9;:13;;;;;:18;;28643:1;;28626:13;:18;;28643:1;;28626:18;:::i;:::-;;;;-1:-1:-1;;28655:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28655:21:0;-1:-1:-1;;;;;28655:21:0;;;;;;;;28694:33;;28655:16;;;28694:33;;28655:16;;28694:33;28353:382;;:::o;38250:988::-;38516:22;38566:1;38541:22;38558:4;38541:16;:22::i;:::-;:26;;;;:::i;:::-;38578:18;38599:26;;;:17;:26;;;;;;38516:51;;-1:-1:-1;38732:28:0;;;38728:328;;-1:-1:-1;;;;;38799:18:0;;38777:19;38799:18;;;:12;:18;;;;;;;;:34;;;;;;;;;38850:30;;;;;;:44;;;38967:30;;:17;:30;;;;;:43;;;38728:328;-1:-1:-1;39152:26:0;;;;:17;:26;;;;;;;;39145:33;;;-1:-1:-1;;;;;39196:18:0;;;;;:12;:18;;;;;:34;;;;;;;39189:41;38250:988::o;39533:1079::-;39811:10;:17;39786:22;;39811:21;;39831:1;;39811:21;:::i;:::-;39843:18;39864:24;;;:15;:24;;;;;;40237:10;:26;;39786:46;;-1:-1:-1;39864:24:0;;39786:46;;40237:26;;;;-1:-1:-1;;;40237:26:0;;;;;;;;;;;;;;;;;40215:48;;40301:11;40276:10;40287;40276:22;;;;;;-1:-1:-1;;;40276:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;40381:28;;;:15;:28;;;;;;;:41;;;40553:24;;;;;40546:31;40588:10;:16;;;;;-1:-1:-1;;;40588:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39533:1079;;;;:::o;37037:221::-;37122:14;37139:20;37156:2;37139:16;:20::i;:::-;-1:-1:-1;;;;;37170:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37215:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37037:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:2;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:2;;;309:1;306;299:12;268:2;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;88:332;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:2;;588:1;585;578:12;603:699;657:5;710:3;703:4;695:6;691:17;687:27;677:2;;732:5;725;718:20;677:2;772:6;759:20;798:4;822:60;838:43;878:2;838:43;:::i;:::-;822:60;:::i;:::-;904:3;928:2;923:3;916:15;956:2;951:3;947:12;940:19;;991:2;983:6;979:15;1043:3;1038:2;1032;1029:1;1025:10;1017:6;1013:23;1009:32;1006:41;1003:2;;;1064:5;1057;1050:20;1003:2;1090:5;1104:169;1118:2;1115:1;1112:9;1104:169;;;1175:23;1194:3;1175:23;:::i;:::-;1163:36;;1219:12;;;;1251;;;;1136:1;1129:9;1104:169;;;-1:-1:-1;1291:5:1;;667:635;-1:-1:-1;;;;;;;667:635:1:o;1307:160::-;1372:20;;1428:13;;1421:21;1411:32;;1401:2;;1457:1;1454;1447:12;1472:229;1515:5;1568:3;1561:4;1553:6;1549:17;1545:27;1535:2;;1590:5;1583;1576:20;1535:2;1616:79;1691:3;1682:6;1669:20;1662:4;1654:6;1650:17;1616:79;:::i;1706:196::-;1765:6;1818:2;1806:9;1797:7;1793:23;1789:32;1786:2;;;1839:6;1831;1824:22;1786:2;1867:29;1886:9;1867:29;:::i;1907:270::-;1975:6;1983;2036:2;2024:9;2015:7;2011:23;2007:32;2004:2;;;2057:6;2049;2042:22;2004:2;2085:29;2104:9;2085:29;:::i;:::-;2075:39;;2133:38;2167:2;2156:9;2152:18;2133:38;:::i;:::-;2123:48;;1994:183;;;;;:::o;2182:338::-;2259:6;2267;2275;2328:2;2316:9;2307:7;2303:23;2299:32;2296:2;;;2349:6;2341;2334:22;2296:2;2377:29;2396:9;2377:29;:::i;:::-;2367:39;;2425:38;2459:2;2448:9;2444:18;2425:38;:::i;:::-;2415:48;;2510:2;2499:9;2495:18;2482:32;2472:42;;2286:234;;;;;:::o;2525:696::-;2620:6;2628;2636;2644;2697:3;2685:9;2676:7;2672:23;2668:33;2665:2;;;2719:6;2711;2704:22;2665:2;2747:29;2766:9;2747:29;:::i;:::-;2737:39;;2795:38;2829:2;2818:9;2814:18;2795:38;:::i;:::-;2785:48;;2880:2;2869:9;2865:18;2852:32;2842:42;;2935:2;2924:9;2920:18;2907:32;2962:18;2954:6;2951:30;2948:2;;;2999:6;2991;2984:22;2948:2;3027:22;;3080:4;3072:13;;3068:27;-1:-1:-1;3058:2:1;;3114:6;3106;3099:22;3058:2;3142:73;3207:7;3202:2;3189:16;3184:2;3180;3176:11;3142:73;:::i;:::-;3132:83;;;2655:566;;;;;;;:::o;3226:264::-;3291:6;3299;3352:2;3340:9;3331:7;3327:23;3323:32;3320:2;;;3373:6;3365;3358:22;3320:2;3401:29;3420:9;3401:29;:::i;:::-;3391:39;;3449:35;3480:2;3469:9;3465:18;3449:35;:::i;3495:264::-;3563:6;3571;3624:2;3612:9;3603:7;3599:23;3595:32;3592:2;;;3645:6;3637;3630:22;3592:2;3673:29;3692:9;3673:29;:::i;:::-;3663:39;3749:2;3734:18;;;;3721:32;;-1:-1:-1;;;3582:177:1:o;3764:368::-;3848:6;3901:2;3889:9;3880:7;3876:23;3872:32;3869:2;;;3922:6;3914;3907:22;3869:2;3967:9;3954:23;4000:18;3992:6;3989:30;3986:2;;;4037:6;4029;4022:22;3986:2;4065:61;4118:7;4109:6;4098:9;4094:22;4065:61;:::i;4137:1204::-;4255:6;4263;4316:2;4304:9;4295:7;4291:23;4287:32;4284:2;;;4337:6;4329;4322:22;4284:2;4382:9;4369:23;4411:18;4452:2;4444:6;4441:14;4438:2;;;4473:6;4465;4458:22;4438:2;4501:61;4554:7;4545:6;4534:9;4530:22;4501:61;:::i;:::-;4491:71;;4581:2;4571:12;;4636:2;4625:9;4621:18;4608:32;4665:2;4655:8;4652:16;4649:2;;;4686:6;4678;4671:22;4649:2;4714:24;;;-1:-1:-1;4769:4:1;4761:13;;4757:27;-1:-1:-1;4747:2:1;;4803:6;4795;4788:22;4747:2;4844;4831:16;4867:60;4883:43;4923:2;4883:43;:::i;4867:60::-;4949:3;4973:2;4968:3;4961:15;5001:2;4996:3;4992:12;4985:19;;5032:2;5028;5024:11;5080:7;5075:2;5069;5066:1;5062:10;5058:2;5054:19;5050:28;5047:41;5044:2;;;5106:6;5098;5091:22;5044:2;5133:6;5124:15;;5148:163;5162:2;5159:1;5156:9;5148:163;;;5219:17;;5207:30;;5180:1;5173:9;;;;;5257:12;;;;5289;;5148:163;;;5152:3;5330:5;5320:15;;;;;;;4274:1067;;;;;:::o;5346:190::-;5402:6;5455:2;5443:9;5434:7;5430:23;5426:32;5423:2;;;5476:6;5468;5461:22;5423:2;5504:26;5520:9;5504:26;:::i;5541:255::-;5599:6;5652:2;5640:9;5631:7;5627:23;5623:32;5620:2;;;5673:6;5665;5658:22;5620:2;5717:9;5704:23;5736:30;5760:5;5736:30;:::i;5801:259::-;5870:6;5923:2;5911:9;5902:7;5898:23;5894:32;5891:2;;;5944:6;5936;5929:22;5891:2;5981:9;5975:16;6000:30;6024:5;6000:30;:::i;6065:573::-;6153:6;6161;6214:2;6202:9;6193:7;6189:23;6185:32;6182:2;;;6235:6;6227;6220:22;6182:2;6280:9;6267:23;6309:18;6350:2;6342:6;6339:14;6336:2;;;6371:6;6363;6356:22;6336:2;6399:50;6441:7;6432:6;6421:9;6417:22;6399:50;:::i;:::-;6389:60;;6502:2;6491:9;6487:18;6474:32;6458:48;;6531:2;6521:8;6518:16;6515:2;;;6552:6;6544;6537:22;6515:2;;6580:52;6624:7;6613:8;6602:9;6598:24;6580:52;:::i;:::-;6570:62;;;6172:466;;;;;:::o;6643:190::-;6702:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:2;;;6776:6;6768;6761:22;6723:2;-1:-1:-1;6804:23:1;;6713:120;-1:-1:-1;6713:120:1:o;6838:257::-;6879:3;6917:5;6911:12;6944:6;6939:3;6932:19;6960:63;7016:6;7009:4;7004:3;7000:14;6993:4;6986:5;6982:16;6960:63;:::i;:::-;7077:2;7056:15;-1:-1:-1;;7052:29:1;7043:39;;;;7084:4;7039:50;;6887:208;-1:-1:-1;;6887:208:1:o;7100:979::-;7185:12;;7150:3;;7242:1;7262:18;;;;7315;;;;7342:2;;7396:4;7388:6;7384:17;7374:27;;7342:2;7422;7470;7462:6;7459:14;7439:18;7436:38;7433:2;;;-1:-1:-1;;;7497:33:1;;7553:4;7550:1;7543:15;7583:4;7504:3;7571:17;7433:2;7614:18;7641:104;;;;7759:1;7754:319;;;;7607:466;;7641:104;-1:-1:-1;;7674:24:1;;7662:37;;7719:16;;;;-1:-1:-1;7641:104:1;;7754:319;22924:4;22943:17;;;22993:4;22977:21;;7848:1;7862:165;7876:6;7873:1;7870:13;7862:165;;;7954:14;;7941:11;;;7934:35;7997:16;;;;7891:10;;7862:165;;;7866:3;;8056:6;8051:3;8047:16;8040:23;;7607:466;;;;;;;7158:921;;;;:::o;8084:197::-;8212:3;8237:38;8271:3;8263:6;8237:38;:::i;8286:376::-;8462:3;8490:38;8524:3;8516:6;8490:38;:::i;:::-;8557:6;8551:13;8573:52;8618:6;8614:2;8607:4;8599:6;8595:17;8573:52;:::i;:::-;8641:15;;8470:192;-1:-1:-1;;;;8470:192:1:o;8875:488::-;-1:-1:-1;;;;;9144:15:1;;;9126:34;;9196:15;;9191:2;9176:18;;9169:43;9243:2;9228:18;;9221:34;;;9291:3;9286:2;9271:18;;9264:31;;;9069:4;;9312:45;;9337:19;;9329:6;9312:45;:::i;:::-;9304:53;9078:285;-1:-1:-1;;;;;;9078:285:1:o;9560:219::-;9709:2;9698:9;9691:21;9672:4;9729:44;9769:2;9758:9;9754:18;9746:6;9729:44;:::i;10554:414::-;10756:2;10738:21;;;10795:2;10775:18;;;10768:30;10834:34;10829:2;10814:18;;10807:62;-1:-1:-1;;;10900:2:1;10885:18;;10878:48;10958:3;10943:19;;10728:240::o;15531:420::-;15733:2;15715:21;;;15772:2;15752:18;;;15745:30;15811:34;15806:2;15791:18;;15784:62;15882:26;15877:2;15862:18;;15855:54;15941:3;15926:19;;15705:246::o;17491:356::-;17693:2;17675:21;;;17712:18;;;17705:30;17771:34;17766:2;17751:18;;17744:62;17838:2;17823:18;;17665:182::o;19080:411::-;19282:2;19264:21;;;19321:2;19301:18;;;19294:30;19360:34;19355:2;19340:18;;19333:62;-1:-1:-1;;;19426:2:1;19411:18;;19404:45;19481:3;19466:19;;19254:237::o;19496:413::-;19698:2;19680:21;;;19737:2;19717:18;;;19710:30;19776:34;19771:2;19756:18;;19749:62;-1:-1:-1;;;19842:2:1;19827:18;;19820:47;19899:3;19884:19;;19670:239::o;21082:421::-;21284:2;21266:21;;;21323:2;21303:18;;;21296:30;21362:34;21357:2;21342:18;;21335:62;21433:27;21428:2;21413:18;;21406:55;21493:3;21478:19;;21256:247::o;22409:275::-;22480:2;22474:9;22545:2;22526:13;;-1:-1:-1;;22522:27:1;22510:40;;22580:18;22565:34;;22601:22;;;22562:62;22559:2;;;22627:18;;:::i;:::-;22663:2;22656:22;22454:230;;-1:-1:-1;22454:230:1:o;22689:183::-;22749:4;22782:18;22774:6;22771:30;22768:2;;;22804:18;;:::i;:::-;-1:-1:-1;22849:1:1;22845:14;22861:4;22841:25;;22758:114::o;23009:128::-;23049:3;23080:1;23076:6;23073:1;23070:13;23067:2;;;23086:18;;:::i;:::-;-1:-1:-1;23122:9:1;;23057:80::o;23142:120::-;23182:1;23208;23198:2;;23213:18;;:::i;:::-;-1:-1:-1;23247:9:1;;23188:74::o;23267:168::-;23307:7;23373:1;23369;23365:6;23361:14;23358:1;23355:21;23350:1;23343:9;23336:17;23332:45;23329:2;;;23380:18;;:::i;:::-;-1:-1:-1;23420:9:1;;23319:116::o;23440:125::-;23480:4;23508:1;23505;23502:8;23499:2;;;23513:18;;:::i;:::-;-1:-1:-1;23550:9:1;;23489:76::o;23570:258::-;23642:1;23652:113;23666:6;23663:1;23660:13;23652:113;;;23742:11;;;23736:18;23723:11;;;23716:39;23688:2;23681:10;23652:113;;;23783:6;23780:1;23777:13;23774:2;;;-1:-1:-1;;23818:1:1;23800:16;;23793:27;23623:205::o;23833:380::-;23912:1;23908:12;;;;23955;;;23976:2;;24030:4;24022:6;24018:17;24008:27;;23976:2;24083;24075:6;24072:14;24052:18;24049:38;24046:2;;;24129:10;24124:3;24120:20;24117:1;24110:31;24164:4;24161:1;24154:15;24192:4;24189:1;24182:15;24046:2;;23888:325;;;:::o;24218:135::-;24257:3;-1:-1:-1;;24278:17:1;;24275:2;;;24298:18;;:::i;:::-;-1:-1:-1;24345:1:1;24334:13;;24265:88::o;24358:112::-;24390:1;24416;24406:2;;24421:18;;:::i;:::-;-1:-1:-1;24455:9:1;;24396:74::o;24475:127::-;24536:10;24531:3;24527:20;24524:1;24517:31;24567:4;24564:1;24557:15;24591:4;24588:1;24581:15;24607:127;24668:10;24663:3;24659:20;24656:1;24649:31;24699:4;24696:1;24689:15;24723:4;24720:1;24713:15;24739:127;24800:10;24795:3;24791:20;24788:1;24781:31;24831:4;24828:1;24821:15;24855:4;24852:1;24845:15;24871:131;-1:-1:-1;;;;;;24945:32:1;;24935:43;;24925:2;;24992:1;24989;24982:12

Swarm Source

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