ETH Price: $3,110.99 (+1.30%)
Gas: 2 Gwei

Token

Fortress-Arena NFT (FortressTank)
 

Overview

Max Total Supply

3,720 FortressTank

Holders

413

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
nftseoul.eth
Balance
2 FortressTank
0x987aF6aAfA9415D1684905B4654338F4bEd19AD8
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

All Fortress Arena NFTs on Ethereum are minted out. There are only 3720 NFTs on Ethereum. Fortress-Arena is relaunched as an NFT-P2E game. We invite you to meet the glory of the past, the future and the present. Enjoy P2E game with unique NFT tanks.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TankNFT

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-04
*/

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


// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @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/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



/**
 * @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 allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.0 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: contracts/Tank.sol



pragma solidity ^0.8.0;




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

    /// @notice Encodes some bytes to the base64 representation
    function encode(bytes memory data) internal pure returns (string memory) {
        uint256 len = data.length;
        if (len == 0) return "";

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

        // Add some extra buffer at the end
        bytes memory result = new bytes(encodedLen + 32);

        bytes memory table = TABLE;

        assembly {
            let tablePtr := add(table, 1)
            let resultPtr := add(result, 32)

            for {
                let i := 0
            } lt(i, len) {

            } {
                i := add(i, 3)
                let input := and(mload(add(data, i)), 0xffffff)

                let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF))
                out := shl(224, out)

                mstore(resultPtr, out)

                resultPtr := add(resultPtr, 4)
            }

            switch mod(len, 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }

            mstore(result, encodedLen)
        }

        return string(result);
    }
}

/**
 * @title Fortress Arena Tank NFT contract
 * @author Atomrigs Lab 
 */

interface ITankGene {
    function getSeed(uint _tokenId) external view returns (uint);
    function getBaseGenes(uint _tokenId) external view returns (uint[] memory);
    function getBaseGeneNames(uint _tokenId) external view returns (string[] memory);
    function getImgIdx(uint _tokenId) external view returns (string memory);
}

contract TankNFT is ERC721Enumerable, ReentrancyGuard, Ownable {

    enum State {
        Setup,
        PreMint,
        PublicMint,
        Finished
    }

    State public state;
    address private _tankGene;
    address private _signer;
    address private _receiver;

    bool public isPermanent;
    uint8 public constant FOUNDER_TANKS_COUNT = 120;
    uint8 public MAX_PRE_MULTI = 2; //4 for presale round2
    uint8 public constant MAX_PUBLIC_MULTI = 20;
    uint16 public MAX_PRE_ID = FOUNDER_TANKS_COUNT + 3200; 
    uint16 public MAX_PUBLIC_ID = FOUNDER_TANKS_COUNT + 3600; 
    uint16 public constant MAX_COUNT = 5000;
    uint16 private _publicTokenId = FOUNDER_TANKS_COUNT; 
    uint public MINTING_FEE = 0.1 * 10**18; //in wei
    string private _baseImgUrl = "";

    mapping (address => uint8) public freeClaims; //address => count
    mapping (address => uint8) public preMints; //address => count

    event Received(address caller, uint amount, string message);
    event BalanceWithdraw(address recipient, uint amount);
    event StateChanged(State _state);
    event SignerChanged(address signer);    

    constructor(address signer_, address receiver_, string memory baseImgUrl_) ERC721("Fortress-Arena NFT", "FortressTank") Ownable() {
        _signer = signer_;
        _receiver = receiver_;
        _baseImgUrl = baseImgUrl_;
        state = State.Setup;
    }

    fallback() external payable {
        emit Received(_msgSender(), msg.value, "Fallback was called");
    }

    receive() external payable {
        emit Received(_msgSender(), msg.value, "Fallback was called");
    }    

    function updateMaxPreMulti(uint8 _newMax) external onlyOwner { //in wei unit
        MAX_PRE_MULTI = _newMax;
    }

    function updateMintingFee(uint _feeAmount) external onlyOwner { //in wei unit
        MINTING_FEE = _feeAmount;
    }    

    function updateSigner(address signer_) external onlyOwner {
        require(!isPermanent, "TankNFT: contract is fixed");        
        _signer = signer_;
    }

    function getSigner() external view returns (address){
        return _signer;
    }

    function updateGene(address tankGene_) external onlyOwner {
        require(!isPermanent, "TankNFT: Gene contract is fixed");
        _tankGene = tankGene_;
    }

    function updateBaseImgUrl(string memory _url) external onlyOwner {
        require(!isPermanent, "TankNFT: All images are on ipfs");
        _baseImgUrl = _url;
    }

    function updateMaxPublicId(uint16 _newMax) external onlyOwner {
        require(_newMax >= _publicTokenId, "TankNFT: Can not set MAX_PUBLIC_ID lower than the current id");
        require(_newMax <= MAX_COUNT, "TankNFT: Can not set more than MAX_COUNT");
        MAX_PUBLIC_ID = _newMax;
    }

    function changeToPermanent() external onlyOwner {
        isPermanent = true;
    }

    function setStateToSetup() public onlyOwner {
        state = State.Setup;
    }
    
    function setStateToPreMint() public onlyOwner {
        state = State.PreMint;
    }

    function setStateToPublicMint() public onlyOwner {
        state = State.PublicMint;
    }
    
    function setStateToFinished() public onlyOwner {
        state = State.Finished;
    }

    function getCurrentPublicId() public view returns (uint16) {
        return _publicTokenId;
    }

    function getNextPublicId() private returns (uint16) {
        uint16 newTokenId = _publicTokenId + 1;
        if (_exists(newTokenId)) {
            while (newTokenId <= MAX_PUBLIC_ID) {
                newTokenId += 1;
                if (!_exists(newTokenId)) {
                    break;
                }
            }
        }
        _publicTokenId = newTokenId;
        return newTokenId;
    }

    function safeMint(address _to, uint _tokenId) private returns (bool) {
        _safeMint(_to, _tokenId);
        return true;
    }

    function getBalance() public view returns (uint) {
        return address(this).balance;
    } 

    function withdraw() external onlyOwner { 
        uint amount = address(this).balance;
        (bool success, ) = _receiver.call{value: amount}("");
        require(success, "Failed to send Ether");
        emit BalanceWithdraw(_receiver, amount);
    }    

    function getHash(address this_, address sender_, string memory msg_) 
        public pure 
        returns (bytes32) {
        return keccak256(abi.encodePacked(this_, sender_, msg_));
    }

    function verifySig(bytes32 hash, uint8 v, bytes32 r, bytes32 s) 
        public view 
        returns (bool) {
        return ecrecover(hash, v, r, s) == _signer;
    }

    function freeClaim(uint8 v, bytes32 r, bytes32 s) external nonReentrant {
        require(state == State.PreMint || state == State.PublicMint, "TankNFT: State is not in PreMint or PublicMint");                
        require(_publicTokenId + 1 <= MAX_PUBLIC_ID, "TankNFT: Can not mint more than MAX_PUBLIC_ID");
        require(freeClaims[_msgSender()] == 0, "TankNFT: Already claimed");

        bytes32 hash = getHash(address(this), _msgSender(), "freeClaim");
        require(verifySig(hash, v, r, s), "TankNFT: Signer's sig does not match ");

        freeClaims[_msgSender()] = 1;
        require(safeMint(_msgSender(), getNextPublicId()), "TankNFT: minting failed");
    }

    function preMint(uint8 v, bytes32 r, bytes32 s, uint8 _count) external payable nonReentrant {
        require(state == State.PreMint, "TankNFT: State is not in PreMint");                
        require(_publicTokenId + _count <= MAX_PRE_ID, "TankNFT: Can not mint more than MAX_PRE_ID");        
        require(preMints[_msgSender()] + _count <=  MAX_PRE_MULTI, "TankNFT: Minting count exceeds more than allowed");
        require(MINTING_FEE * _count == msg.value, "TankNFT: Minting fee amounts does not match."); 

        bytes32 hash = getHash(address(this), _msgSender(), "preMint");
        require(verifySig(hash, v, r, s), "Signer's sig does not match ");
        for (uint i; i < _count; i++) {
            preMints[_msgSender()] += 1;
            require(safeMint(_msgSender(), getNextPublicId()), "TankNFT: minting failed");
        }
    }

    function publicMint(uint _count) external payable nonReentrant {
        require(state == State.PublicMint, "TankNFT: State is not in PublicMint");
        require(_count <= MAX_PUBLIC_MULTI, "TankNFT: Minting count exceeds more than allowed");
        require(_publicTokenId + _count <= MAX_PUBLIC_ID, "TankNFT: Can not mint more than MAX_PUBLIC_ID");
        require(MINTING_FEE * _count == msg.value, "TankNFT: Minting fee amounts does not match."); 

        for(uint i=0; i<_count; i++) {
            require(safeMint(_msgSender(), getNextPublicId()), "TankNFT: minting failed");
        }
    }

    function adminMint(uint[] calldata _tokenIds) external onlyOwner nonReentrant{
        for(uint i=0; i<_tokenIds.length; i++) {
            uint tokenId = _tokenIds[i];
            if (!_exists(tokenId)) {
                require(tokenId > 0);
                require(tokenId <= FOUNDER_TANKS_COUNT || tokenId > MAX_PUBLIC_ID, "TankNFT: id is out of range");
                require(tokenId <= MAX_COUNT);
                require(safeMint(_msgSender(), tokenId), "TankNFT: minting failed");
            }
        }
    }

    function adminMintTo(uint[] calldata _tokenIds, address[] calldata _tos) external onlyOwner nonReentrant {
        require(_tokenIds.length == _tos.length, "TankNFT: token count does not match recipient count");
        for(uint i=0; i<_tokenIds.length; i++) {
            uint tokenId = _tokenIds[i];
            if (!_exists(tokenId)) {
                require(tokenId > 0);
                require(tokenId <= FOUNDER_TANKS_COUNT || tokenId > MAX_PUBLIC_ID, "TankNFT: id is out of range");
                require(tokenId <= MAX_COUNT);
                require(safeMint(_tos[i], tokenId), "TankNFT: minting failed");
            }
        }
    }

    function transferBatch(uint[] calldata _tokenIds, address _to) external nonReentrant {
        for(uint i=0; i<_tokenIds.length; i++) {
            safeTransferFrom(_msgSender(), _to, _tokenIds[i]);
        }
    }

    function getSeed(uint _tokenId) public view onlyOwner returns (uint) {
        require(_exists(_tokenId), "TankNFT: TokenId not minted yet");
        ITankGene gene = ITankGene(_tankGene);
        return gene.getSeed(_tokenId);
    }

    function getBaseGenes(uint _tokenId) public view returns (uint[] memory) {
        require(_exists(_tokenId), "TankNFT: TokenId not minted yet");
        ITankGene gene = ITankGene(_tankGene);
        return gene.getBaseGenes(_tokenId);        
    }

    function getBaseGeneNames(uint _tokenId) public view returns (string[] memory) {
        require(_exists(_tokenId), "TankNFT: TokenId not minted yet");
        ITankGene gene = ITankGene(_tankGene);
        return gene.getBaseGeneNames(_tokenId);        
    }

    function getImgUrl(uint _tokenId) public view returns (string memory) {
        require(_exists(_tokenId), "TankNFT: TokenId not minted yet");

        return string(abi.encodePacked(_baseImgUrl, toString(_tokenId), '.gif'));
    }

    function getImgIdx(uint _tokenId) public view returns (string memory) {
        require(_exists(_tokenId), "TankNFT: TokenId not minted yet");
        ITankGene gene = ITankGene(_tankGene);
        return gene.getImgIdx(_tokenId);
    }

    function tokensOf(address _account) public view returns (uint[] memory) {
        uint[] memory tokenIds = new uint[] (balanceOf(_account));
        for (uint i; i<balanceOf(_account); i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_account, i);
        }
        return tokenIds;
    }
   
    function tokenURI(uint _tokenId) override public view returns (string memory) {
        require(_exists(_tokenId), "TankNFT: TokenId not minted yet");
        string[] memory genes = getBaseGeneNames(_tokenId);
        string[15] memory parts;

        parts[0] = '[{"trait_type": "Race", "value": "';
        parts[1] = genes[0];
        parts[2] = '"}, {"trait_type": "Color", "value": "';
        parts[3] = genes[1];
        parts[4] = '"}, {"trait_type": "Material", "value": "';        
        parts[5] = genes[2];
        parts[6] = '"}, {"trait_type": "Class", "value": "';
        parts[7] = genes[3];
        parts[8] = '"}, {"trait_type": "Element", "value": "';
        parts[9] = genes[4];
        parts[10] = '"}, {"trait_type": "Generation", "value": "';
        parts[11] = genes[5];
        parts[12] = '"}, {"trait_type": "FounderTank", "value": "';
        parts[13] = genes[6];
        parts[14] = '"}]';
        
        string memory attrs = string(abi.encodePacked(parts[0], parts[1], parts[2], parts[3], parts[4], parts[5], parts[6]));
        attrs = string(abi.encodePacked(attrs, parts[7], parts[8], parts[9], parts[10]));
                attrs = string(abi.encodePacked(attrs, parts[11], parts[12], parts[13], parts[14]));
        string memory description = "Fortress Arana Tank NFT(ERC721) is a necessity for playing Fortress-Arena. Users can not only get TANK Tokens(ERC20) by winning with their respective Tank-NFTs, but also create new tanks through combination. It is a great opportunity to increase your own asset while enjoying the newly reborn Fortress game with the blockchain.";
        string memory imgUrl = getImgUrl(_tokenId);
        string memory json = Base64.encode(bytes(string(abi.encodePacked('{"name": "Fortress-Arena NFT #', toString(_tokenId), '", "attributes": ', attrs,', "description": "', description, '", "image": "', imgUrl, '"}'))));
        return string(abi.encodePacked('data:application/json;base64,', json));
    }

    function getMintingState() external view returns (uint8) {
        if (state == State.Setup) {
            return 0;
        } else if (state == State.PreMint && _publicTokenId < MAX_PUBLIC_ID ) {
            return 1;
        } else if (state == State.PublicMint && _publicTokenId < MAX_PUBLIC_ID ) {
            return 2;
        } else {
            return 3;
        }
    }

    function toString(uint256 value) internal pure returns (string memory) {
    // Inspired by OraclizeAPI's implementation - MIT license
    // 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);
    }    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"signer_","type":"address"},{"internalType":"address","name":"receiver_","type":"address"},{"internalType":"string","name":"baseImgUrl_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BalanceWithdraw","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":false,"internalType":"address","name":"caller","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"string","name":"message","type":"string"}],"name":"Received","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"signer","type":"address"}],"name":"SignerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum TankNFT.State","name":"_state","type":"uint8"}],"name":"StateChanged","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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"FOUNDER_TANKS_COUNT","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_COUNT","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRE_ID","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRE_MULTI","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_ID","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_MULTI","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTING_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"address[]","name":"_tos","type":"address[]"}],"name":"adminMintTo","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":[],"name":"changeToPermanent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"freeClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeClaims","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getBaseGeneNames","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getBaseGenes","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentPublicId","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"this_","type":"address"},{"internalType":"address","name":"sender_","type":"address"},{"internalType":"string","name":"msg_","type":"string"}],"name":"getHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getImgIdx","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getImgUrl","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintingState","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getSeed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"isPermanent","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"_count","type":"uint8"}],"name":"preMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preMints","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStateToFinished","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStateToPreMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStateToPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStateToSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"state","outputs":[{"internalType":"enum TankNFT.State","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":[{"internalType":"address","name":"_account","type":"address"}],"name":"tokensOf","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"address","name":"_to","type":"address"}],"name":"transferBatch","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":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_url","type":"string"}],"name":"updateBaseImgUrl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tankGene_","type":"address"}],"name":"updateGene","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_newMax","type":"uint8"}],"name":"updateMaxPreMulti","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_newMax","type":"uint16"}],"name":"updateMaxPublicId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_feeAmount","type":"uint256"}],"name":"updateMintingFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signer_","type":"address"}],"name":"updateSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"hash","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"verifySig","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600e805460ff60a81b1916600160a91b179055620000266078610c80620002c1565b600e805461ffff92909216600160b01b0261ffff60b01b19909216919091179055620000566078610e10620002c1565b600e805463ffffffff60c01b1916600160c01b61ffff939093169290920261ffff60d01b191691909117600f60d31b17905567016345785d8a0000600f55604080516020810191829052600090819052620000b4916010916200021b565b50348015620000c257600080fd5b506040516200503b3803806200503b833981016040819052620000e59162000329565b6040805180820182526012815271119bdc9d1c995cdccb505c995b984813919560721b60208083019182528351808501909452600c84526b466f72747265737354616e6b60a01b90840152815191929162000143916000916200021b565b508051620001599060019060208401906200021b565b50506001600a55506200016c33620001c9565b600d80546001600160a01b038086166001600160a01b031992831617909255600e8054928516929091169190911790558051620001b19060109060208401906200021b565b5050600b805460ff60a01b19169055506200046a9050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000229906200042d565b90600052602060002090601f0160209004810192826200024d576000855562000298565b82601f106200026857805160ff191683800117855562000298565b8280016001018555821562000298579182015b82811115620002985782518255916020019190600101906200027b565b50620002a6929150620002aa565b5090565b5b80821115620002a65760008155600101620002ab565b600061ffff808316818516808303821115620002ed57634e487b7160e01b600052601160045260246000fd5b01949350505050565b80516001600160a01b03811681146200030e57600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b6000806000606084860312156200033f57600080fd5b6200034a84620002f6565b925060206200035b818601620002f6565b60408601519093506001600160401b03808211156200037957600080fd5b818701915087601f8301126200038e57600080fd5b815181811115620003a357620003a362000313565b604051601f8201601f19908116603f01168101908382118183101715620003ce57620003ce62000313565b816040528281528a86848701011115620003e757600080fd5b600093505b828410156200040b5784840186015181850187015292850192620003ec565b828411156200041d5760008684830101525b8096505050505050509250925092565b600181811c908216806200044257607f821691505b602082108114156200046457634e487b7160e01b600052602260045260246000fd5b50919050565b614bc1806200047a6000396000f3fe60806040526004361061039b5760003560e01c806379e9545a116101dc578063c084d54211610102578063d642b4b1116100a0578063e985e9c51161006f578063e985e9c514610b3b578063f2fde38b14610b84578063f3b9004514610ba4578063f89fc0d314610bb957610411565b8063d642b4b114610ad0578063d8c8447514610ae6578063e0d4ea3714610b06578063e601a4b414610b2657610411565b8063c87b56dd116100dc578063c87b56dd14610a43578063cf2defeb14610a63578063d08fd6eb14610a83578063d275fdb914610ab057610411565b8063c084d542146109d5578063c19d93fb146109f5578063c5cf33c214610a2357610411565b80639f0568e61161017a578063b0384ea111610149578063b0384ea114610960578063b43ff4bd14610975578063b88d4fde14610995578063c0275a25146109b557610411565b80639f0568e6146108eb5780639fc4a1d814610900578063a22cb46514610920578063a7ecd37e1461094057610411565b806381329bbd116101b657806381329bbd146108775780638da5cb5b14610898578063904a4795146108b657806395d89b41146108d657610411565b806379e9545a146108195780637ac3c02f146108395780637be33c091461085757610411565b806342842e0e116102c15780635a3f26721161025f578063715018a61161022e578063715018a6146107b857806372769e6f146107cd57806377163c1d146107e257806378bff498146107f857610411565b80635a3f2672146107295780636352211e146107565780636c0e693a1461077657806370a082311461079857610411565b80634f6ccce71161029b5780634f6ccce71461068457806350ad9413146106a45780635555c402146106d957806359b0d5b0146106f957610411565b806342842e0e1461062f578063488af0141461064f5780634b4c3f4c1461066f57610411565b806318160ddd116103395780632db11544116103085780632db11544146105c75780632f745c59146105da5780633c45d706146105fa5780633ccfd60b1461061a57610411565b806318160ddd1461056857806323af88271461057d57806323b872dd1461059257806327701f75146105b257610411565b8063081812fc11610375578063081812fc146104b1578063095ea7b3146104e957806312065fe0146105095780631365b2771461052657610411565b806301ffc9a7146104385780630202def11461046d57806306fdde031461048f57610411565b36610411577f59e04c3f0d44b7caf6e8ef854b61d9a51cf1960d7a88ff6356cc5e946b4b5832335b604080516001600160a01b03909216825234602083015260609082018190526013908201527211985b1b189858dac81dd85cc818d85b1b1959606a1b608082015260a00160405180910390a1005b7f59e04c3f0d44b7caf6e8ef854b61d9a51cf1960d7a88ff6356cc5e946b4b5832336103c3565b34801561044457600080fd5b506104586104533660046138d4565b610bcc565b60405190151581526020015b60405180910390f35b34801561047957600080fd5b5061048d610488366004613953565b610bf7565b005b34801561049b57600080fd5b506104a4610c73565b60405161046491906139fe565b3480156104bd57600080fd5b506104d16104cc366004613a11565b610d05565b6040516001600160a01b039091168152602001610464565b3480156104f557600080fd5b5061048d610504366004613a2a565b610d8d565b34801561051557600080fd5b50475b604051908152602001610464565b34801561053257600080fd5b50610556610541366004613a54565b60126020526000908152604090205460ff1681565b60405160ff9091168152602001610464565b34801561057457600080fd5b50600854610518565b34801561058957600080fd5b5061048d610ea3565b34801561059e57600080fd5b5061048d6105ad366004613a6f565b610eea565b3480156105be57600080fd5b50610556610f1b565b61048d6105d5366004613a11565b610fe8565b3480156105e657600080fd5b506105186105f5366004613a2a565b61116f565b34801561060657600080fd5b5061048d610615366004613b76565b611205565b34801561062657600080fd5b5061048d6112a0565b34801561063b57600080fd5b5061048d61064a366004613a6f565b6113b2565b34801561065b57600080fd5b5061048d61066a366004613bbb565b6113cd565b34801561067b57600080fd5b50610556607881565b34801561069057600080fd5b5061051861069f366004613a11565b611417565b3480156106b057600080fd5b50600e546106c690600160b01b900461ffff1681565b60405161ffff9091168152602001610464565b3480156106e557600080fd5b506104a46106f4366004613a11565b6114aa565b34801561070557600080fd5b50610556610714366004613a54565b60116020526000908152604090205460ff1681565b34801561073557600080fd5b50610749610744366004613a54565b61155a565b6040516104649190613bd6565b34801561076257600080fd5b506104d1610771366004613a11565b6115fd565b34801561078257600080fd5b50600e546106c690600160c01b900461ffff1681565b3480156107a457600080fd5b506105186107b3366004613a54565b611674565b3480156107c457600080fd5b5061048d6116fb565b3480156107d957600080fd5b5061048d611731565b3480156107ee57600080fd5b506106c661138881565b34801561080457600080fd5b50600e5461045890600160a01b900460ff1681565b34801561082557600080fd5b50610458610834366004613c1a565b611770565b34801561084557600080fd5b50600d546001600160a01b03166104d1565b34801561086357600080fd5b5061048d610872366004613a54565b6117f2565b34801561088357600080fd5b50600e5461055690600160a81b900460ff1681565b3480156108a457600080fd5b50600b546001600160a01b03166104d1565b3480156108c257600080fd5b5061048d6108d1366004613c55565b611898565b3480156108e257600080fd5b506104a46119e7565b3480156108f757600080fd5b5061048d6119f6565b34801561090c57600080fd5b5061048d61091b366004613c96565b611a3a565b34801561092c57600080fd5b5061048d61093b366004613d01565b611c15565b34801561094c57600080fd5b5061048d61095b366004613a54565b611c20565b34801561096c57600080fd5b5061048d611cc6565b34801561098157600080fd5b5061048d610990366004613d3d565b611d0a565b3480156109a157600080fd5b5061048d6109b0366004613d70565b611f59565b3480156109c157600080fd5b5061048d6109d0366004613a11565b611f91565b3480156109e157600080fd5b506104a46109f0366004613a11565b611fc0565b348015610a0157600080fd5b50600b54610a1690600160a01b900460ff1681565b6040516104649190613e01565b348015610a2f57600080fd5b50610518610a3e366004613e29565b612019565b348015610a4f57600080fd5b506104a4610a5e366004613a11565b61204f565b348015610a6f57600080fd5b50610749610a7e366004613a11565b612466565b348015610a8f57600080fd5b50610aa3610a9e366004613a11565b61250f565b6040516104649190613e86565b348015610abc57600080fd5b50600e54600160d01b900461ffff166106c6565b348015610adc57600080fd5b50610518600f5481565b348015610af257600080fd5b5061048d610b01366004613ee8565b6125b8565b348015610b1257600080fd5b50610518610b21366004613a11565b6126f2565b348015610b3257600080fd5b5061048d6127c7565b348015610b4757600080fd5b50610458610b56366004613f0c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610b9057600080fd5b5061048d610b9f366004613a54565b61280b565b348015610bb057600080fd5b50610556601481565b61048d610bc7366004613f3f565b6128a6565b60006001600160e01b0319821663780e9d6360e01b1480610bf15750610bf182612b56565b92915050565b6002600a541415610c235760405162461bcd60e51b8152600401610c1a90613f85565b60405180910390fd5b6002600a5560005b82811015610c6857610c563383868685818110610c4a57610c4a613fbc565b905060200201356113b2565b80610c6081613fe8565b915050610c2b565b50506001600a555050565b606060008054610c8290614003565b80601f0160208091040260200160405190810160405280929190818152602001828054610cae90614003565b8015610cfb5780601f10610cd057610100808354040283529160200191610cfb565b820191906000526020600020905b815481529060010190602001808311610cde57829003601f168201915b5050505050905090565b6000610d1082612ba6565b610d715760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c1a565b506000908152600460205260409020546001600160a01b031690565b6000610d98826115fd565b9050806001600160a01b0316836001600160a01b03161415610e065760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610c1a565b336001600160a01b0382161480610e225750610e228133610b56565b610e945760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c1a565b610e9e8383612bc3565b505050565b600b546001600160a01b03163314610ecd5760405162461bcd60e51b8152600401610c1a9061403e565b600b80546000919060ff60a01b1916600160a01b835b0217905550565b610ef43382612c31565b610f105760405162461bcd60e51b8152600401610c1a90614073565b610e9e838383612d17565b600080600b54600160a01b900460ff166003811115610f3c57610f3c613deb565b1415610f485750600090565b6001600b54600160a01b900460ff166003811115610f6857610f68613deb565b148015610f8a5750600e5461ffff600160c01b82048116600160d01b90920416105b15610f955750600190565b6002600b54600160a01b900460ff166003811115610fb557610fb5613deb565b148015610fd75750600e5461ffff600160c01b82048116600160d01b90920416105b15610fe25750600290565b50600390565b6002600a54141561100b5760405162461bcd60e51b8152600401610c1a90613f85565b6002600a819055600b54600160a01b900460ff16600381111561103057611030613deb565b146110895760405162461bcd60e51b815260206004820152602360248201527f54616e6b4e46543a205374617465206973206e6f7420696e205075626c69634d6044820152621a5b9d60ea1b6064820152608401610c1a565b60148111156110aa5760405162461bcd60e51b8152600401610c1a906140c4565b600e5461ffff600160c01b82048116916110cd918491600160d01b900416614114565b11156110eb5760405162461bcd60e51b8152600401610c1a9061412c565b3481600f546110fa9190614179565b146111175760405162461bcd60e51b8152600401610c1a90614198565b60005b8181101561116657611138335b61112f612ec2565b61ffff16612f54565b6111545760405162461bcd60e51b8152600401610c1a906141e4565b8061115e81613fe8565b91505061111a565b50506001600a55565b600061117a83611674565b82106111dc5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610c1a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b0316331461122f5760405162461bcd60e51b8152600401610c1a9061403e565b600e54600160a01b900460ff16156112895760405162461bcd60e51b815260206004820152601f60248201527f54616e6b4e46543a20416c6c20696d6167657320617265206f6e2069706673006044820152606401610c1a565b805161129c9060109060208401906137fd565b5050565b600b546001600160a01b031633146112ca5760405162461bcd60e51b8152600401610c1a9061403e565b600e5460405147916000916001600160a01b039091169083908381818185875af1925050503d806000811461131b576040519150601f19603f3d011682016040523d82523d6000602084013e611320565b606091505b50509050806113685760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b6044820152606401610c1a565b600e54604080516001600160a01b039092168252602082018490527f8777844761eb456b028cf7f87fc8dcb146ad8eeafbc6f80f2d006e5cd9e5a745910160405180910390a15050565b610e9e83838360405180602001604052806000815250611f59565b600b546001600160a01b031633146113f75760405162461bcd60e51b8152600401610c1a9061403e565b600e805460ff909216600160a81b0260ff60a81b19909216919091179055565b600061142260085490565b82106114855760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610c1a565b6008828154811061149857611498613fbc565b90600052602060002001549050919050565b60606114b582612ba6565b6114d15760405162461bcd60e51b8152600401610c1a9061421b565b600c54604051632aaae20160e11b8152600481018490526001600160a01b03909116908190635555c4029060240160006040518083038186803b15801561151757600080fd5b505afa15801561152b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526115539190810190614297565b9392505050565b6060600061156783611674565b6001600160401b0381111561157e5761157e613aab565b6040519080825280602002602001820160405280156115a7578160200160208202803683370190505b50905060005b6115b684611674565b8110156115f6576115c7848261116f565b8282815181106115d9576115d9613fbc565b6020908102919091010152806115ee81613fe8565b9150506115ad565b5092915050565b6000818152600260205260408120546001600160a01b031680610bf15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610c1a565b60006001600160a01b0382166116df5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610c1a565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b031633146117255760405162461bcd60e51b8152600401610c1a9061403e565b61172f6000612f69565b565b600b546001600160a01b0316331461175b5760405162461bcd60e51b8152600401610c1a9061403e565b600e805460ff60a01b1916600160a01b179055565b600d546040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905290916001600160a01b03169060019060a0016020604051602081039080840390855afa1580156117d3573d6000803e3d6000fd5b505050602060405103516001600160a01b03161490505b949350505050565b600b546001600160a01b0316331461181c5760405162461bcd60e51b8152600401610c1a9061403e565b600e54600160a01b900460ff16156118765760405162461bcd60e51b815260206004820152601f60248201527f54616e6b4e46543a2047656e6520636f6e7472616374206973206669786564006044820152606401610c1a565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600b546001600160a01b031633146118c25760405162461bcd60e51b8152600401610c1a9061403e565b6002600a5414156118e55760405162461bcd60e51b8152600401610c1a90613f85565b6002600a5560005b818110156119dd57600083838381811061190957611909613fbc565b90506020020135905061191b81612ba6565b6119ca576000811161192c57600080fd5b6078811115806119485750600e54600160c01b900461ffff1681115b6119945760405162461bcd60e51b815260206004820152601b60248201527f54616e6b4e46543a206964206973206f7574206f662072616e676500000000006044820152606401610c1a565b6113888111156119a357600080fd5b6119ae335b82612f54565b6119ca5760405162461bcd60e51b8152600401610c1a906141e4565b50806119d581613fe8565b9150506118ed565b50506001600a5550565b606060018054610c8290614003565b600b546001600160a01b03163314611a205760405162461bcd60e51b8152600401610c1a9061403e565b600b80546002919060ff60a01b1916600160a01b83610ee3565b600b546001600160a01b03163314611a645760405162461bcd60e51b8152600401610c1a9061403e565b6002600a541415611a875760405162461bcd60e51b8152600401610c1a90613f85565b6002600a55828114611af75760405162461bcd60e51b815260206004820152603360248201527f54616e6b4e46543a20746f6b656e20636f756e7420646f6573206e6f74206d616044820152721d18da081c9958da5c1a595b9d0818dbdd5b9d606a1b6064820152608401610c1a565b60005b83811015611c09576000858583818110611b1657611b16613fbc565b905060200201359050611b2881612ba6565b611bf65760008111611b3957600080fd5b607881111580611b555750600e54600160c01b900461ffff1681115b611ba15760405162461bcd60e51b815260206004820152601b60248201527f54616e6b4e46543a206964206973206f7574206f662072616e676500000000006044820152606401610c1a565b611388811115611bb057600080fd5b611bda848484818110611bc557611bc5613fbc565b90506020020160208101906119a89190613a54565b611bf65760405162461bcd60e51b8152600401610c1a906141e4565b5080611c0181613fe8565b915050611afa565b50506001600a55505050565b61129c338383612fbb565b600b546001600160a01b03163314611c4a5760405162461bcd60e51b8152600401610c1a9061403e565b600e54600160a01b900460ff1615611ca45760405162461bcd60e51b815260206004820152601a60248201527f54616e6b4e46543a20636f6e74726163742069732066697865640000000000006044820152606401610c1a565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600b546001600160a01b03163314611cf05760405162461bcd60e51b8152600401610c1a9061403e565b600b80546003919060ff60a01b1916600160a01b83610ee3565b6002600a541415611d2d5760405162461bcd60e51b8152600401610c1a90613f85565b6002600a556001600b54600160a01b900460ff166003811115611d5257611d52613deb565b1480611d7b57506002600b54600160a01b900460ff166003811115611d7957611d79613deb565b145b611dde5760405162461bcd60e51b815260206004820152602e60248201527f54616e6b4e46543a205374617465206973206e6f7420696e205072654d696e7460448201526d081bdc88141d589b1a58d35a5b9d60921b6064820152608401610c1a565b600e5461ffff600160c01b8204811691611e0291600160d01b9091041660016142cb565b61ffff161115611e245760405162461bcd60e51b8152600401610c1a9061412c565b3360009081526011602052604090205460ff1615611e845760405162461bcd60e51b815260206004820152601860248201527f54616e6b4e46543a20416c726561647920636c61696d656400000000000000006044820152606401610c1a565b6000611eb230336040518060400160405280600981526020016866726565436c61696d60b81b815250612019565b9050611ec081858585611770565b611f1a5760405162461bcd60e51b815260206004820152602560248201527f54616e6b4e46543a205369676e657227732073696720646f6573206e6f74206d604482015264030ba31b4160dd1b6064820152608401610c1a565b336000818152601160205260409020805460ff19166001179055611f3d90611127565b610c685760405162461bcd60e51b8152600401610c1a906141e4565b611f633383612c31565b611f7f5760405162461bcd60e51b8152600401610c1a90614073565b611f8b8484848461308a565b50505050565b600b546001600160a01b03163314611fbb5760405162461bcd60e51b8152600401610c1a9061403e565b600f55565b6060611fcb82612ba6565b611fe75760405162461bcd60e51b8152600401610c1a9061421b565b6010611ff2836130bd565b60405160200161200392919061430d565b6040516020818303038152906040529050919050565b6000838383604051602001612030939291906143c7565b6040516020818303038152906040528051906020012090509392505050565b606061205a82612ba6565b6120765760405162461bcd60e51b8152600401610c1a9061421b565b60006120818361250f565b905061208b613881565b604051806060016040528060228152602001614a5c602291398152815182906000906120b9576120b9613fbc565b6020026020010151816001600f81106120d4576120d4613fbc565b6020020181905250604051806060016040528060268152602001614a3660269139604082015281518290600190811061210f5761210f613fbc565b6020026020010151816003600f811061212a5761212a613fbc565b6020020181905250604051806060016040528060298152602001614b3d60299139608082015281518290600290811061216557612165613fbc565b6020026020010151816005600f811061218057612180613fbc565b6020020181905250604051806060016040528060268152602001614b666026913960c08201528151829060039081106121bb576121bb613fbc565b6020026020010151816007600f81106121d6576121d6613fbc565b6020020181905250604051806060016040528060288152602001614b156028913961010082015281518290600490811061221257612212613fbc565b6020026020010151816009600f811061222d5761222d613fbc565b60200201819052506040518060600160405280602b8152602001614aea602b913961014082015281518290600590811061226957612269613fbc565b602002602001015181600b600f811061228457612284613fbc565b60200201819052506040518060600160405280602c8152602001614abe602c91396101808201528151829060069081106122c0576122c0613fbc565b602002602001015181600d600f81106122db576122db613fbc565b602002018190525060405180604001604052806003815260200162227d5d60e81b81525081600e600f811061231257612312613fbc565b602090810291909101919091528151828201516040808501516060860151608087015160a088015160c08901519451600098612351989796910161440d565b60408051808303601f190181529082905260e084015161010085015161012086015161014087015193955061238b9486949060200161449f565b60408051808303601f19018152908290526101608401516101808501516101a08601516101c08701519395506123c69486949060200161449f565b60408051601f198184030181526101808301909152610147808352909250600091906148ef6020830139905060006123fd87611fc0565b9050600061243761240d896130bd565b858585604051602001612423949392919061450a565b6040516020818303038152906040526131ba565b90508060405160200161244a91906145f1565b6040516020818303038152906040529650505050505050919050565b606061247182612ba6565b61248d5760405162461bcd60e51b8152600401610c1a9061421b565b600c5460405163cf2defeb60e01b8152600481018490526001600160a01b0390911690819063cf2defeb9060240160006040518083038186803b1580156124d357600080fd5b505afa1580156124e7573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526115539190810190614659565b606061251a82612ba6565b6125365760405162461bcd60e51b8152600401610c1a9061421b565b600c5460405163d08fd6eb60e01b8152600481018490526001600160a01b0390911690819063d08fd6eb9060240160006040518083038186803b15801561257c57600080fd5b505afa158015612590573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261155391908101906146e9565b600b546001600160a01b031633146125e25760405162461bcd60e51b8152600401610c1a9061403e565b600e5461ffff600160d01b909104811690821610156126695760405162461bcd60e51b815260206004820152603c60248201527f54616e6b4e46543a2043616e206e6f7420736574204d41585f5055424c49435f60448201527f4944206c6f776572207468616e207468652063757272656e74206964000000006064820152608401610c1a565b61138861ffff821611156126d05760405162461bcd60e51b815260206004820152602860248201527f54616e6b4e46543a2043616e206e6f7420736574206d6f7265207468616e204d604482015267105617d0d3d5539560c21b6064820152608401610c1a565b600e805461ffff909216600160c01b0261ffff60c01b19909216919091179055565b600b546000906001600160a01b0316331461271f5760405162461bcd60e51b8152600401610c1a9061403e565b61272882612ba6565b6127445760405162461bcd60e51b8152600401610c1a9061421b565b600c5460405163e0d4ea3760e01b8152600481018490526001600160a01b0390911690819063e0d4ea379060240160206040518083038186803b15801561278a57600080fd5b505afa15801561279e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115539190614799565b919050565b600b546001600160a01b031633146127f15760405162461bcd60e51b8152600401610c1a9061403e565b600b80546001919060ff60a01b1916600160a01b83610ee3565b600b546001600160a01b031633146128355760405162461bcd60e51b8152600401610c1a9061403e565b6001600160a01b03811661289a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c1a565b6128a381612f69565b50565b6002600a5414156128c95760405162461bcd60e51b8152600401610c1a90613f85565b6002600a556001600b54600160a01b900460ff1660038111156128ee576128ee613deb565b1461293b5760405162461bcd60e51b815260206004820181905260248201527f54616e6b4e46543a205374617465206973206e6f7420696e205072654d696e746044820152606401610c1a565b600e5461ffff600160b01b82048116916129619160ff851691600160d01b9004166142cb565b61ffff1611156129c65760405162461bcd60e51b815260206004820152602a60248201527f54616e6b4e46543a2043616e206e6f74206d696e74206d6f7265207468616e2060448201526913505617d4149157d25160b21b6064820152608401610c1a565b600e543360009081526012602052604090205460ff600160a81b9092048216916129f2918491166147b2565b60ff161115612a135760405162461bcd60e51b8152600401610c1a906140c4565b348160ff16600f54612a259190614179565b14612a425760405162461bcd60e51b8152600401610c1a90614198565b6000612a6e3033604051806040016040528060078152602001661c1c99535a5b9d60ca1b815250612019565b9050612a7c81868686611770565b612ac85760405162461bcd60e51b815260206004820152601c60248201527f5369676e657227732073696720646f6573206e6f74206d6174636820000000006044820152606401610c1a565b60005b8260ff16811015612b4957336000908152601260205260408120805460019290612af990849060ff166147b2565b92506101000a81548160ff021916908360ff160217905550612b1b6111273390565b612b375760405162461bcd60e51b8152600401610c1a906141e4565b80612b4181613fe8565b915050612acb565b50506001600a5550505050565b60006001600160e01b031982166380ac58cd60e01b1480612b8757506001600160e01b03198216635b5e139f60e01b145b80610bf157506301ffc9a760e01b6001600160e01b0319831614610bf1565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612bf8826115fd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612c3c82612ba6565b612c9d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c1a565b6000612ca8836115fd565b9050806001600160a01b0316846001600160a01b03161480612ce35750836001600160a01b0316612cd884610d05565b6001600160a01b0316145b806117ea57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166117ea565b826001600160a01b0316612d2a826115fd565b6001600160a01b031614612d925760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610c1a565b6001600160a01b038216612df45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610c1a565b612dff83838361331f565b612e0a600082612bc3565b6001600160a01b0383166000908152600360205260408120805460019290612e339084906147d7565b90915550506001600160a01b0382166000908152600360205260408120805460019290612e61908490614114565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600e546000908190612ee090600160d01b900461ffff1660016142cb565b9050612eef8161ffff16612ba6565b15612f35575b600e5461ffff600160c01b909104811690821611612f3557612f186001826142cb565b9050612f278161ffff16612ba6565b612f3057612f35565b612ef5565b600e805461ffff60d01b1916600160d01b61ffff841602179055919050565b6000612f6083836133d7565b50600192915050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561301d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c1a565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b613095848484612d17565b6130a1848484846133f1565b611f8b5760405162461bcd60e51b8152600401610c1a906147ee565b6060816130e15750506040805180820190915260018152600360fc1b602082015290565b8160005b811561310b57806130f581613fe8565b91506131049050600a83614856565b91506130e5565b6000816001600160401b0381111561312557613125613aab565b6040519080825280601f01601f19166020018201604052801561314f576020820181803683370190505b5090505b84156117ea576131646001836147d7565b9150613171600a8661486a565b61317c906030614114565b60f81b81838151811061319157613191613fbc565b60200101906001600160f81b031916908160001a9053506131b3600a86614856565b9450613153565b8051606090806131da575050604080516020810190915260008152919050565b600060036131e9836002614114565b6131f39190614856565b6131fe906004614179565b9050600061320d826020614114565b6001600160401b0381111561322457613224613aab565b6040519080825280601f01601f19166020018201604052801561324e576020820181803683370190505b5090506000604051806060016040528060408152602001614a7e604091399050600181016020830160005b868110156132da576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101613279565b5060038606600181146132f4576002811461330557613311565b613d3d60f01b600119830152613311565b603d60f81b6000198301525b505050918152949350505050565b6001600160a01b03831661337a5761337581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61339d565b816001600160a01b0316836001600160a01b03161461339d5761339d83826134fb565b6001600160a01b0382166133b457610e9e81613598565b826001600160a01b0316826001600160a01b031614610e9e57610e9e8282613647565b61129c82826040518060200160405280600081525061368b565b60006001600160a01b0384163b156134f357604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061343590339089908890889060040161487e565b602060405180830381600087803b15801561344f57600080fd5b505af192505050801561347f575060408051601f3d908101601f1916820190925261347c918101906148bb565b60015b6134d9573d8080156134ad576040519150601f19603f3d011682016040523d82523d6000602084013e6134b2565b606091505b5080516134d15760405162461bcd60e51b8152600401610c1a906147ee565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117ea565b5060016117ea565b6000600161350884611674565b61351291906147d7565b600083815260076020526040902054909150808214613565576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906135aa906001906147d7565b600083815260096020526040812054600880549394509092849081106135d2576135d2613fbc565b9060005260206000200154905080600883815481106135f3576135f3613fbc565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061362b5761362b6148d8565b6001900381819060005260206000200160009055905550505050565b600061365283611674565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b61369583836136be565b6136a260008484846133f1565b610e9e5760405162461bcd60e51b8152600401610c1a906147ee565b6001600160a01b0382166137145760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c1a565b61371d81612ba6565b1561376a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c1a565b6137766000838361331f565b6001600160a01b038216600090815260036020526040812080546001929061379f908490614114565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461380990614003565b90600052602060002090601f01602090048101928261382b5760008555613871565b82601f1061384457805160ff1916838001178555613871565b82800160010185558215613871579182015b82811115613871578251825591602001919060010190613856565b5061387d9291506138a9565b5090565b604051806101e00160405280600f905b60608152602001906001900390816138915790505090565b5b8082111561387d57600081556001016138aa565b6001600160e01b0319811681146128a357600080fd5b6000602082840312156138e657600080fd5b8135611553816138be565b60008083601f84011261390357600080fd5b5081356001600160401b0381111561391a57600080fd5b6020830191508360208260051b850101111561393557600080fd5b9250929050565b80356001600160a01b03811681146127c257600080fd5b60008060006040848603121561396857600080fd5b83356001600160401b0381111561397e57600080fd5b61398a868287016138f1565b909450925061399d90506020850161393c565b90509250925092565b60005b838110156139c15781810151838201526020016139a9565b83811115611f8b5750506000910152565b600081518084526139ea8160208601602086016139a6565b601f01601f19169290920160200192915050565b60208152600061155360208301846139d2565b600060208284031215613a2357600080fd5b5035919050565b60008060408385031215613a3d57600080fd5b613a468361393c565b946020939093013593505050565b600060208284031215613a6657600080fd5b6115538261393c565b600080600060608486031215613a8457600080fd5b613a8d8461393c565b9250613a9b6020850161393c565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715613ae957613ae9613aab565b604052919050565b60006001600160401b03821115613b0a57613b0a613aab565b50601f01601f191660200190565b6000613b2b613b2684613af1565b613ac1565b9050828152838383011115613b3f57600080fd5b828260208301376000602084830101529392505050565b600082601f830112613b6757600080fd5b61155383833560208501613b18565b600060208284031215613b8857600080fd5b81356001600160401b03811115613b9e57600080fd5b6117ea84828501613b56565b803560ff811681146127c257600080fd5b600060208284031215613bcd57600080fd5b61155382613baa565b6020808252825182820181905260009190848201906040850190845b81811015613c0e57835183529284019291840191600101613bf2565b50909695505050505050565b60008060008060808587031215613c3057600080fd5b84359350613c4060208601613baa565b93969395505050506040820135916060013590565b60008060208385031215613c6857600080fd5b82356001600160401b03811115613c7e57600080fd5b613c8a858286016138f1565b90969095509350505050565b60008060008060408587031215613cac57600080fd5b84356001600160401b0380821115613cc357600080fd5b613ccf888389016138f1565b90965094506020870135915080821115613ce857600080fd5b50613cf5878288016138f1565b95989497509550505050565b60008060408385031215613d1457600080fd5b613d1d8361393c565b915060208301358015158114613d3257600080fd5b809150509250929050565b600080600060608486031215613d5257600080fd5b613d5b84613baa565b95602085013595506040909401359392505050565b60008060008060808587031215613d8657600080fd5b613d8f8561393c565b9350613d9d6020860161393c565b92506040850135915060608501356001600160401b03811115613dbf57600080fd5b8501601f81018713613dd057600080fd5b613ddf87823560208401613b18565b91505092959194509250565b634e487b7160e01b600052602160045260246000fd5b6020810160048310613e2357634e487b7160e01b600052602160045260246000fd5b91905290565b600080600060608486031215613e3e57600080fd5b613e478461393c565b9250613e556020850161393c565b915060408401356001600160401b03811115613e7057600080fd5b613e7c86828701613b56565b9150509250925092565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b82811015613edb57603f19888603018452613ec98583516139d2565b94509285019290850190600101613ead565b5092979650505050505050565b600060208284031215613efa57600080fd5b813561ffff8116811461155357600080fd5b60008060408385031215613f1f57600080fd5b613f288361393c565b9150613f366020840161393c565b90509250929050565b60008060008060808587031215613f5557600080fd5b613f5e85613baa565b93506020850135925060408501359150613f7a60608601613baa565b905092959194509250565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415613ffc57613ffc613fd2565b5060010190565b600181811c9082168061401757607f821691505b6020821081141561403857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526030908201527f54616e6b4e46543a204d696e74696e6720636f756e742065786365656473206d60408201526f1bdc99481d1a185b88185b1b1bddd95960821b606082015260800190565b6000821982111561412757614127613fd2565b500190565b6020808252602d908201527f54616e6b4e46543a2043616e206e6f74206d696e74206d6f7265207468616e2060408201526c13505617d41550931250d7d251609a1b606082015260800190565b600081600019048311821515161561419357614193613fd2565b500290565b6020808252602c908201527f54616e6b4e46543a204d696e74696e672066656520616d6f756e747320646f6560408201526b39903737ba1036b0ba31b41760a11b606082015260800190565b60208082526017908201527f54616e6b4e46543a206d696e74696e67206661696c6564000000000000000000604082015260600190565b6020808252601f908201527f54616e6b4e46543a20546f6b656e4964206e6f74206d696e7465642079657400604082015260600190565b600082601f83011261426357600080fd5b8151614271613b2682613af1565b81815284602083860101111561428657600080fd5b6117ea8260208301602087016139a6565b6000602082840312156142a957600080fd5b81516001600160401b038111156142bf57600080fd5b6117ea84828501614252565b600061ffff8083168185168083038211156142e8576142e8613fd2565b01949350505050565b600081516143038185602086016139a6565b9290920192915050565b600080845481600182811c91508083168061432957607f831692505b602080841082141561434957634e487b7160e01b86526022600452602486fd5b81801561435d576001811461436e5761439b565b60ff1986168952848901965061439b565b60008b81526020902060005b868110156143935781548b82015290850190830161437a565b505084890196505b5050505050506143be6143ae82866142f1565b631733b4b360e11b815260040190565b95945050505050565b60006bffffffffffffffffffffffff19808660601b168352808560601b1660148401525082516143fe8160288501602087016139a6565b91909101602801949350505050565b6000885160206144208285838e016139a6565b8951918401916144338184848e016139a6565b89519201916144458184848d016139a6565b88519201916144578184848c016139a6565b87519201916144698184848b016139a6565b865192019161447b8184848a016139a6565b855192019161448d81848489016139a6565b919091019a9950505050505050505050565b600086516144b1818460208b016139a6565b8651908301906144c5818360208b016139a6565b86519101906144d8818360208a016139a6565b85519101906144eb8183602089016139a6565b84519101906144fe8183602088016139a6565b01979650505050505050565b7f7b226e616d65223a2022466f7274726573732d4172656e61204e46542023000081526000855161454281601e850160208a016139a6565b7001116101130ba3a3934b13aba32b9911d1607d1b601e91840191820152855161457381602f840160208a016139a6565b711610113232b9b1b934b83a34b7b7111d101160711b602f929091019182015284516145a68160418401602089016139a6565b6c1116101134b6b0b3b2911d101160991b6041929091019182015283516145d481604e8401602088016139a6565b61227d60f01b604e92909101918201526050019695505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161462981601d8501602087016139a6565b91909101601d0192915050565b60006001600160401b0382111561464f5761464f613aab565b5060051b60200190565b6000602080838503121561466c57600080fd5b82516001600160401b0381111561468257600080fd5b8301601f8101851361469357600080fd5b80516146a1613b2682614636565b81815260059190911b820183019083810190878311156146c057600080fd5b928401925b828410156146de578351825292840192908401906146c5565b979650505050505050565b600060208083850312156146fc57600080fd5b82516001600160401b038082111561471357600080fd5b818501915085601f83011261472757600080fd5b8151614735613b2682614636565b81815260059190911b8301840190848101908883111561475457600080fd5b8585015b8381101561478c578051858111156147705760008081fd5b61477e8b89838a0101614252565b845250918601918601614758565b5098975050505050505050565b6000602082840312156147ab57600080fd5b5051919050565b600060ff821660ff84168060ff038211156147cf576147cf613fd2565b019392505050565b6000828210156147e9576147e9613fd2565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261486557614865614840565b500490565b60008261487957614879614840565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906148b1908301846139d2565b9695505050505050565b6000602082840312156148cd57600080fd5b8151611553816138be565b634e487b7160e01b600052603160045260246000fdfe466f727472657373204172616e612054616e6b204e465428455243373231292069732061206e656365737369747920666f7220706c6179696e6720466f7274726573732d4172656e612e2055736572732063616e206e6f74206f6e6c79206765742054414e4b20546f6b656e73284552433230292062792077696e6e696e67207769746820746865697220726573706563746976652054616e6b2d4e4654732c2062757420616c736f20637265617465206e65772074616e6b73207468726f75676820636f6d62696e6174696f6e2e2049742069732061206772656174206f70706f7274756e69747920746f20696e63726561736520796f7572206f776e206173736574207768696c6520656e6a6f79696e6720746865206e65776c79207265626f726e20466f7274726573732067616d6520776974682074686520626c6f636b636861696e2e227d2c207b2274726169745f74797065223a2022436f6c6f72222c202276616c7565223a20225b7b2274726169745f74797065223a202252616365222c202276616c7565223a20224142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f227d2c207b2274726169745f74797065223a2022466f756e64657254616e6b222c202276616c7565223a2022227d2c207b2274726169745f74797065223a202247656e65726174696f6e222c202276616c7565223a2022227d2c207b2274726169745f74797065223a2022456c656d656e74222c202276616c7565223a2022227d2c207b2274726169745f74797065223a20224d6174657269616c222c202276616c7565223a2022227d2c207b2274726169745f74797065223a2022436c617373222c202276616c7565223a2022a26469706673582212209042d0a254cff6ab57732d5ba98db0990539c6cda9f4e3564ff4b9ed80f820f064736f6c634300080900330000000000000000000000009db5171227c41198384442da05b3938d1603c98100000000000000000000000023cbe4431ba295d74cae8db6bdf900f30bde13370000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000003568747470733a2f2f69676174657761792d697066732e61746f6d726967732e696f2f666f7274726573732d6172656e612d6e66742f0000000000000000000000

Deployed Bytecode

0x60806040526004361061039b5760003560e01c806379e9545a116101dc578063c084d54211610102578063d642b4b1116100a0578063e985e9c51161006f578063e985e9c514610b3b578063f2fde38b14610b84578063f3b9004514610ba4578063f89fc0d314610bb957610411565b8063d642b4b114610ad0578063d8c8447514610ae6578063e0d4ea3714610b06578063e601a4b414610b2657610411565b8063c87b56dd116100dc578063c87b56dd14610a43578063cf2defeb14610a63578063d08fd6eb14610a83578063d275fdb914610ab057610411565b8063c084d542146109d5578063c19d93fb146109f5578063c5cf33c214610a2357610411565b80639f0568e61161017a578063b0384ea111610149578063b0384ea114610960578063b43ff4bd14610975578063b88d4fde14610995578063c0275a25146109b557610411565b80639f0568e6146108eb5780639fc4a1d814610900578063a22cb46514610920578063a7ecd37e1461094057610411565b806381329bbd116101b657806381329bbd146108775780638da5cb5b14610898578063904a4795146108b657806395d89b41146108d657610411565b806379e9545a146108195780637ac3c02f146108395780637be33c091461085757610411565b806342842e0e116102c15780635a3f26721161025f578063715018a61161022e578063715018a6146107b857806372769e6f146107cd57806377163c1d146107e257806378bff498146107f857610411565b80635a3f2672146107295780636352211e146107565780636c0e693a1461077657806370a082311461079857610411565b80634f6ccce71161029b5780634f6ccce71461068457806350ad9413146106a45780635555c402146106d957806359b0d5b0146106f957610411565b806342842e0e1461062f578063488af0141461064f5780634b4c3f4c1461066f57610411565b806318160ddd116103395780632db11544116103085780632db11544146105c75780632f745c59146105da5780633c45d706146105fa5780633ccfd60b1461061a57610411565b806318160ddd1461056857806323af88271461057d57806323b872dd1461059257806327701f75146105b257610411565b8063081812fc11610375578063081812fc146104b1578063095ea7b3146104e957806312065fe0146105095780631365b2771461052657610411565b806301ffc9a7146104385780630202def11461046d57806306fdde031461048f57610411565b36610411577f59e04c3f0d44b7caf6e8ef854b61d9a51cf1960d7a88ff6356cc5e946b4b5832335b604080516001600160a01b03909216825234602083015260609082018190526013908201527211985b1b189858dac81dd85cc818d85b1b1959606a1b608082015260a00160405180910390a1005b7f59e04c3f0d44b7caf6e8ef854b61d9a51cf1960d7a88ff6356cc5e946b4b5832336103c3565b34801561044457600080fd5b506104586104533660046138d4565b610bcc565b60405190151581526020015b60405180910390f35b34801561047957600080fd5b5061048d610488366004613953565b610bf7565b005b34801561049b57600080fd5b506104a4610c73565b60405161046491906139fe565b3480156104bd57600080fd5b506104d16104cc366004613a11565b610d05565b6040516001600160a01b039091168152602001610464565b3480156104f557600080fd5b5061048d610504366004613a2a565b610d8d565b34801561051557600080fd5b50475b604051908152602001610464565b34801561053257600080fd5b50610556610541366004613a54565b60126020526000908152604090205460ff1681565b60405160ff9091168152602001610464565b34801561057457600080fd5b50600854610518565b34801561058957600080fd5b5061048d610ea3565b34801561059e57600080fd5b5061048d6105ad366004613a6f565b610eea565b3480156105be57600080fd5b50610556610f1b565b61048d6105d5366004613a11565b610fe8565b3480156105e657600080fd5b506105186105f5366004613a2a565b61116f565b34801561060657600080fd5b5061048d610615366004613b76565b611205565b34801561062657600080fd5b5061048d6112a0565b34801561063b57600080fd5b5061048d61064a366004613a6f565b6113b2565b34801561065b57600080fd5b5061048d61066a366004613bbb565b6113cd565b34801561067b57600080fd5b50610556607881565b34801561069057600080fd5b5061051861069f366004613a11565b611417565b3480156106b057600080fd5b50600e546106c690600160b01b900461ffff1681565b60405161ffff9091168152602001610464565b3480156106e557600080fd5b506104a46106f4366004613a11565b6114aa565b34801561070557600080fd5b50610556610714366004613a54565b60116020526000908152604090205460ff1681565b34801561073557600080fd5b50610749610744366004613a54565b61155a565b6040516104649190613bd6565b34801561076257600080fd5b506104d1610771366004613a11565b6115fd565b34801561078257600080fd5b50600e546106c690600160c01b900461ffff1681565b3480156107a457600080fd5b506105186107b3366004613a54565b611674565b3480156107c457600080fd5b5061048d6116fb565b3480156107d957600080fd5b5061048d611731565b3480156107ee57600080fd5b506106c661138881565b34801561080457600080fd5b50600e5461045890600160a01b900460ff1681565b34801561082557600080fd5b50610458610834366004613c1a565b611770565b34801561084557600080fd5b50600d546001600160a01b03166104d1565b34801561086357600080fd5b5061048d610872366004613a54565b6117f2565b34801561088357600080fd5b50600e5461055690600160a81b900460ff1681565b3480156108a457600080fd5b50600b546001600160a01b03166104d1565b3480156108c257600080fd5b5061048d6108d1366004613c55565b611898565b3480156108e257600080fd5b506104a46119e7565b3480156108f757600080fd5b5061048d6119f6565b34801561090c57600080fd5b5061048d61091b366004613c96565b611a3a565b34801561092c57600080fd5b5061048d61093b366004613d01565b611c15565b34801561094c57600080fd5b5061048d61095b366004613a54565b611c20565b34801561096c57600080fd5b5061048d611cc6565b34801561098157600080fd5b5061048d610990366004613d3d565b611d0a565b3480156109a157600080fd5b5061048d6109b0366004613d70565b611f59565b3480156109c157600080fd5b5061048d6109d0366004613a11565b611f91565b3480156109e157600080fd5b506104a46109f0366004613a11565b611fc0565b348015610a0157600080fd5b50600b54610a1690600160a01b900460ff1681565b6040516104649190613e01565b348015610a2f57600080fd5b50610518610a3e366004613e29565b612019565b348015610a4f57600080fd5b506104a4610a5e366004613a11565b61204f565b348015610a6f57600080fd5b50610749610a7e366004613a11565b612466565b348015610a8f57600080fd5b50610aa3610a9e366004613a11565b61250f565b6040516104649190613e86565b348015610abc57600080fd5b50600e54600160d01b900461ffff166106c6565b348015610adc57600080fd5b50610518600f5481565b348015610af257600080fd5b5061048d610b01366004613ee8565b6125b8565b348015610b1257600080fd5b50610518610b21366004613a11565b6126f2565b348015610b3257600080fd5b5061048d6127c7565b348015610b4757600080fd5b50610458610b56366004613f0c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610b9057600080fd5b5061048d610b9f366004613a54565b61280b565b348015610bb057600080fd5b50610556601481565b61048d610bc7366004613f3f565b6128a6565b60006001600160e01b0319821663780e9d6360e01b1480610bf15750610bf182612b56565b92915050565b6002600a541415610c235760405162461bcd60e51b8152600401610c1a90613f85565b60405180910390fd5b6002600a5560005b82811015610c6857610c563383868685818110610c4a57610c4a613fbc565b905060200201356113b2565b80610c6081613fe8565b915050610c2b565b50506001600a555050565b606060008054610c8290614003565b80601f0160208091040260200160405190810160405280929190818152602001828054610cae90614003565b8015610cfb5780601f10610cd057610100808354040283529160200191610cfb565b820191906000526020600020905b815481529060010190602001808311610cde57829003601f168201915b5050505050905090565b6000610d1082612ba6565b610d715760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c1a565b506000908152600460205260409020546001600160a01b031690565b6000610d98826115fd565b9050806001600160a01b0316836001600160a01b03161415610e065760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610c1a565b336001600160a01b0382161480610e225750610e228133610b56565b610e945760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c1a565b610e9e8383612bc3565b505050565b600b546001600160a01b03163314610ecd5760405162461bcd60e51b8152600401610c1a9061403e565b600b80546000919060ff60a01b1916600160a01b835b0217905550565b610ef43382612c31565b610f105760405162461bcd60e51b8152600401610c1a90614073565b610e9e838383612d17565b600080600b54600160a01b900460ff166003811115610f3c57610f3c613deb565b1415610f485750600090565b6001600b54600160a01b900460ff166003811115610f6857610f68613deb565b148015610f8a5750600e5461ffff600160c01b82048116600160d01b90920416105b15610f955750600190565b6002600b54600160a01b900460ff166003811115610fb557610fb5613deb565b148015610fd75750600e5461ffff600160c01b82048116600160d01b90920416105b15610fe25750600290565b50600390565b6002600a54141561100b5760405162461bcd60e51b8152600401610c1a90613f85565b6002600a819055600b54600160a01b900460ff16600381111561103057611030613deb565b146110895760405162461bcd60e51b815260206004820152602360248201527f54616e6b4e46543a205374617465206973206e6f7420696e205075626c69634d6044820152621a5b9d60ea1b6064820152608401610c1a565b60148111156110aa5760405162461bcd60e51b8152600401610c1a906140c4565b600e5461ffff600160c01b82048116916110cd918491600160d01b900416614114565b11156110eb5760405162461bcd60e51b8152600401610c1a9061412c565b3481600f546110fa9190614179565b146111175760405162461bcd60e51b8152600401610c1a90614198565b60005b8181101561116657611138335b61112f612ec2565b61ffff16612f54565b6111545760405162461bcd60e51b8152600401610c1a906141e4565b8061115e81613fe8565b91505061111a565b50506001600a55565b600061117a83611674565b82106111dc5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610c1a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b0316331461122f5760405162461bcd60e51b8152600401610c1a9061403e565b600e54600160a01b900460ff16156112895760405162461bcd60e51b815260206004820152601f60248201527f54616e6b4e46543a20416c6c20696d6167657320617265206f6e2069706673006044820152606401610c1a565b805161129c9060109060208401906137fd565b5050565b600b546001600160a01b031633146112ca5760405162461bcd60e51b8152600401610c1a9061403e565b600e5460405147916000916001600160a01b039091169083908381818185875af1925050503d806000811461131b576040519150601f19603f3d011682016040523d82523d6000602084013e611320565b606091505b50509050806113685760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b6044820152606401610c1a565b600e54604080516001600160a01b039092168252602082018490527f8777844761eb456b028cf7f87fc8dcb146ad8eeafbc6f80f2d006e5cd9e5a745910160405180910390a15050565b610e9e83838360405180602001604052806000815250611f59565b600b546001600160a01b031633146113f75760405162461bcd60e51b8152600401610c1a9061403e565b600e805460ff909216600160a81b0260ff60a81b19909216919091179055565b600061142260085490565b82106114855760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610c1a565b6008828154811061149857611498613fbc565b90600052602060002001549050919050565b60606114b582612ba6565b6114d15760405162461bcd60e51b8152600401610c1a9061421b565b600c54604051632aaae20160e11b8152600481018490526001600160a01b03909116908190635555c4029060240160006040518083038186803b15801561151757600080fd5b505afa15801561152b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526115539190810190614297565b9392505050565b6060600061156783611674565b6001600160401b0381111561157e5761157e613aab565b6040519080825280602002602001820160405280156115a7578160200160208202803683370190505b50905060005b6115b684611674565b8110156115f6576115c7848261116f565b8282815181106115d9576115d9613fbc565b6020908102919091010152806115ee81613fe8565b9150506115ad565b5092915050565b6000818152600260205260408120546001600160a01b031680610bf15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610c1a565b60006001600160a01b0382166116df5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610c1a565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b031633146117255760405162461bcd60e51b8152600401610c1a9061403e565b61172f6000612f69565b565b600b546001600160a01b0316331461175b5760405162461bcd60e51b8152600401610c1a9061403e565b600e805460ff60a01b1916600160a01b179055565b600d546040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905290916001600160a01b03169060019060a0016020604051602081039080840390855afa1580156117d3573d6000803e3d6000fd5b505050602060405103516001600160a01b03161490505b949350505050565b600b546001600160a01b0316331461181c5760405162461bcd60e51b8152600401610c1a9061403e565b600e54600160a01b900460ff16156118765760405162461bcd60e51b815260206004820152601f60248201527f54616e6b4e46543a2047656e6520636f6e7472616374206973206669786564006044820152606401610c1a565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600b546001600160a01b031633146118c25760405162461bcd60e51b8152600401610c1a9061403e565b6002600a5414156118e55760405162461bcd60e51b8152600401610c1a90613f85565b6002600a5560005b818110156119dd57600083838381811061190957611909613fbc565b90506020020135905061191b81612ba6565b6119ca576000811161192c57600080fd5b6078811115806119485750600e54600160c01b900461ffff1681115b6119945760405162461bcd60e51b815260206004820152601b60248201527f54616e6b4e46543a206964206973206f7574206f662072616e676500000000006044820152606401610c1a565b6113888111156119a357600080fd5b6119ae335b82612f54565b6119ca5760405162461bcd60e51b8152600401610c1a906141e4565b50806119d581613fe8565b9150506118ed565b50506001600a5550565b606060018054610c8290614003565b600b546001600160a01b03163314611a205760405162461bcd60e51b8152600401610c1a9061403e565b600b80546002919060ff60a01b1916600160a01b83610ee3565b600b546001600160a01b03163314611a645760405162461bcd60e51b8152600401610c1a9061403e565b6002600a541415611a875760405162461bcd60e51b8152600401610c1a90613f85565b6002600a55828114611af75760405162461bcd60e51b815260206004820152603360248201527f54616e6b4e46543a20746f6b656e20636f756e7420646f6573206e6f74206d616044820152721d18da081c9958da5c1a595b9d0818dbdd5b9d606a1b6064820152608401610c1a565b60005b83811015611c09576000858583818110611b1657611b16613fbc565b905060200201359050611b2881612ba6565b611bf65760008111611b3957600080fd5b607881111580611b555750600e54600160c01b900461ffff1681115b611ba15760405162461bcd60e51b815260206004820152601b60248201527f54616e6b4e46543a206964206973206f7574206f662072616e676500000000006044820152606401610c1a565b611388811115611bb057600080fd5b611bda848484818110611bc557611bc5613fbc565b90506020020160208101906119a89190613a54565b611bf65760405162461bcd60e51b8152600401610c1a906141e4565b5080611c0181613fe8565b915050611afa565b50506001600a55505050565b61129c338383612fbb565b600b546001600160a01b03163314611c4a5760405162461bcd60e51b8152600401610c1a9061403e565b600e54600160a01b900460ff1615611ca45760405162461bcd60e51b815260206004820152601a60248201527f54616e6b4e46543a20636f6e74726163742069732066697865640000000000006044820152606401610c1a565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600b546001600160a01b03163314611cf05760405162461bcd60e51b8152600401610c1a9061403e565b600b80546003919060ff60a01b1916600160a01b83610ee3565b6002600a541415611d2d5760405162461bcd60e51b8152600401610c1a90613f85565b6002600a556001600b54600160a01b900460ff166003811115611d5257611d52613deb565b1480611d7b57506002600b54600160a01b900460ff166003811115611d7957611d79613deb565b145b611dde5760405162461bcd60e51b815260206004820152602e60248201527f54616e6b4e46543a205374617465206973206e6f7420696e205072654d696e7460448201526d081bdc88141d589b1a58d35a5b9d60921b6064820152608401610c1a565b600e5461ffff600160c01b8204811691611e0291600160d01b9091041660016142cb565b61ffff161115611e245760405162461bcd60e51b8152600401610c1a9061412c565b3360009081526011602052604090205460ff1615611e845760405162461bcd60e51b815260206004820152601860248201527f54616e6b4e46543a20416c726561647920636c61696d656400000000000000006044820152606401610c1a565b6000611eb230336040518060400160405280600981526020016866726565436c61696d60b81b815250612019565b9050611ec081858585611770565b611f1a5760405162461bcd60e51b815260206004820152602560248201527f54616e6b4e46543a205369676e657227732073696720646f6573206e6f74206d604482015264030ba31b4160dd1b6064820152608401610c1a565b336000818152601160205260409020805460ff19166001179055611f3d90611127565b610c685760405162461bcd60e51b8152600401610c1a906141e4565b611f633383612c31565b611f7f5760405162461bcd60e51b8152600401610c1a90614073565b611f8b8484848461308a565b50505050565b600b546001600160a01b03163314611fbb5760405162461bcd60e51b8152600401610c1a9061403e565b600f55565b6060611fcb82612ba6565b611fe75760405162461bcd60e51b8152600401610c1a9061421b565b6010611ff2836130bd565b60405160200161200392919061430d565b6040516020818303038152906040529050919050565b6000838383604051602001612030939291906143c7565b6040516020818303038152906040528051906020012090509392505050565b606061205a82612ba6565b6120765760405162461bcd60e51b8152600401610c1a9061421b565b60006120818361250f565b905061208b613881565b604051806060016040528060228152602001614a5c602291398152815182906000906120b9576120b9613fbc565b6020026020010151816001600f81106120d4576120d4613fbc565b6020020181905250604051806060016040528060268152602001614a3660269139604082015281518290600190811061210f5761210f613fbc565b6020026020010151816003600f811061212a5761212a613fbc565b6020020181905250604051806060016040528060298152602001614b3d60299139608082015281518290600290811061216557612165613fbc565b6020026020010151816005600f811061218057612180613fbc565b6020020181905250604051806060016040528060268152602001614b666026913960c08201528151829060039081106121bb576121bb613fbc565b6020026020010151816007600f81106121d6576121d6613fbc565b6020020181905250604051806060016040528060288152602001614b156028913961010082015281518290600490811061221257612212613fbc565b6020026020010151816009600f811061222d5761222d613fbc565b60200201819052506040518060600160405280602b8152602001614aea602b913961014082015281518290600590811061226957612269613fbc565b602002602001015181600b600f811061228457612284613fbc565b60200201819052506040518060600160405280602c8152602001614abe602c91396101808201528151829060069081106122c0576122c0613fbc565b602002602001015181600d600f81106122db576122db613fbc565b602002018190525060405180604001604052806003815260200162227d5d60e81b81525081600e600f811061231257612312613fbc565b602090810291909101919091528151828201516040808501516060860151608087015160a088015160c08901519451600098612351989796910161440d565b60408051808303601f190181529082905260e084015161010085015161012086015161014087015193955061238b9486949060200161449f565b60408051808303601f19018152908290526101608401516101808501516101a08601516101c08701519395506123c69486949060200161449f565b60408051601f198184030181526101808301909152610147808352909250600091906148ef6020830139905060006123fd87611fc0565b9050600061243761240d896130bd565b858585604051602001612423949392919061450a565b6040516020818303038152906040526131ba565b90508060405160200161244a91906145f1565b6040516020818303038152906040529650505050505050919050565b606061247182612ba6565b61248d5760405162461bcd60e51b8152600401610c1a9061421b565b600c5460405163cf2defeb60e01b8152600481018490526001600160a01b0390911690819063cf2defeb9060240160006040518083038186803b1580156124d357600080fd5b505afa1580156124e7573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526115539190810190614659565b606061251a82612ba6565b6125365760405162461bcd60e51b8152600401610c1a9061421b565b600c5460405163d08fd6eb60e01b8152600481018490526001600160a01b0390911690819063d08fd6eb9060240160006040518083038186803b15801561257c57600080fd5b505afa158015612590573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261155391908101906146e9565b600b546001600160a01b031633146125e25760405162461bcd60e51b8152600401610c1a9061403e565b600e5461ffff600160d01b909104811690821610156126695760405162461bcd60e51b815260206004820152603c60248201527f54616e6b4e46543a2043616e206e6f7420736574204d41585f5055424c49435f60448201527f4944206c6f776572207468616e207468652063757272656e74206964000000006064820152608401610c1a565b61138861ffff821611156126d05760405162461bcd60e51b815260206004820152602860248201527f54616e6b4e46543a2043616e206e6f7420736574206d6f7265207468616e204d604482015267105617d0d3d5539560c21b6064820152608401610c1a565b600e805461ffff909216600160c01b0261ffff60c01b19909216919091179055565b600b546000906001600160a01b0316331461271f5760405162461bcd60e51b8152600401610c1a9061403e565b61272882612ba6565b6127445760405162461bcd60e51b8152600401610c1a9061421b565b600c5460405163e0d4ea3760e01b8152600481018490526001600160a01b0390911690819063e0d4ea379060240160206040518083038186803b15801561278a57600080fd5b505afa15801561279e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115539190614799565b919050565b600b546001600160a01b031633146127f15760405162461bcd60e51b8152600401610c1a9061403e565b600b80546001919060ff60a01b1916600160a01b83610ee3565b600b546001600160a01b031633146128355760405162461bcd60e51b8152600401610c1a9061403e565b6001600160a01b03811661289a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c1a565b6128a381612f69565b50565b6002600a5414156128c95760405162461bcd60e51b8152600401610c1a90613f85565b6002600a556001600b54600160a01b900460ff1660038111156128ee576128ee613deb565b1461293b5760405162461bcd60e51b815260206004820181905260248201527f54616e6b4e46543a205374617465206973206e6f7420696e205072654d696e746044820152606401610c1a565b600e5461ffff600160b01b82048116916129619160ff851691600160d01b9004166142cb565b61ffff1611156129c65760405162461bcd60e51b815260206004820152602a60248201527f54616e6b4e46543a2043616e206e6f74206d696e74206d6f7265207468616e2060448201526913505617d4149157d25160b21b6064820152608401610c1a565b600e543360009081526012602052604090205460ff600160a81b9092048216916129f2918491166147b2565b60ff161115612a135760405162461bcd60e51b8152600401610c1a906140c4565b348160ff16600f54612a259190614179565b14612a425760405162461bcd60e51b8152600401610c1a90614198565b6000612a6e3033604051806040016040528060078152602001661c1c99535a5b9d60ca1b815250612019565b9050612a7c81868686611770565b612ac85760405162461bcd60e51b815260206004820152601c60248201527f5369676e657227732073696720646f6573206e6f74206d6174636820000000006044820152606401610c1a565b60005b8260ff16811015612b4957336000908152601260205260408120805460019290612af990849060ff166147b2565b92506101000a81548160ff021916908360ff160217905550612b1b6111273390565b612b375760405162461bcd60e51b8152600401610c1a906141e4565b80612b4181613fe8565b915050612acb565b50506001600a5550505050565b60006001600160e01b031982166380ac58cd60e01b1480612b8757506001600160e01b03198216635b5e139f60e01b145b80610bf157506301ffc9a760e01b6001600160e01b0319831614610bf1565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612bf8826115fd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612c3c82612ba6565b612c9d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c1a565b6000612ca8836115fd565b9050806001600160a01b0316846001600160a01b03161480612ce35750836001600160a01b0316612cd884610d05565b6001600160a01b0316145b806117ea57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166117ea565b826001600160a01b0316612d2a826115fd565b6001600160a01b031614612d925760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610c1a565b6001600160a01b038216612df45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610c1a565b612dff83838361331f565b612e0a600082612bc3565b6001600160a01b0383166000908152600360205260408120805460019290612e339084906147d7565b90915550506001600160a01b0382166000908152600360205260408120805460019290612e61908490614114565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600e546000908190612ee090600160d01b900461ffff1660016142cb565b9050612eef8161ffff16612ba6565b15612f35575b600e5461ffff600160c01b909104811690821611612f3557612f186001826142cb565b9050612f278161ffff16612ba6565b612f3057612f35565b612ef5565b600e805461ffff60d01b1916600160d01b61ffff841602179055919050565b6000612f6083836133d7565b50600192915050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561301d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c1a565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b613095848484612d17565b6130a1848484846133f1565b611f8b5760405162461bcd60e51b8152600401610c1a906147ee565b6060816130e15750506040805180820190915260018152600360fc1b602082015290565b8160005b811561310b57806130f581613fe8565b91506131049050600a83614856565b91506130e5565b6000816001600160401b0381111561312557613125613aab565b6040519080825280601f01601f19166020018201604052801561314f576020820181803683370190505b5090505b84156117ea576131646001836147d7565b9150613171600a8661486a565b61317c906030614114565b60f81b81838151811061319157613191613fbc565b60200101906001600160f81b031916908160001a9053506131b3600a86614856565b9450613153565b8051606090806131da575050604080516020810190915260008152919050565b600060036131e9836002614114565b6131f39190614856565b6131fe906004614179565b9050600061320d826020614114565b6001600160401b0381111561322457613224613aab565b6040519080825280601f01601f19166020018201604052801561324e576020820181803683370190505b5090506000604051806060016040528060408152602001614a7e604091399050600181016020830160005b868110156132da576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101613279565b5060038606600181146132f4576002811461330557613311565b613d3d60f01b600119830152613311565b603d60f81b6000198301525b505050918152949350505050565b6001600160a01b03831661337a5761337581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61339d565b816001600160a01b0316836001600160a01b03161461339d5761339d83826134fb565b6001600160a01b0382166133b457610e9e81613598565b826001600160a01b0316826001600160a01b031614610e9e57610e9e8282613647565b61129c82826040518060200160405280600081525061368b565b60006001600160a01b0384163b156134f357604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061343590339089908890889060040161487e565b602060405180830381600087803b15801561344f57600080fd5b505af192505050801561347f575060408051601f3d908101601f1916820190925261347c918101906148bb565b60015b6134d9573d8080156134ad576040519150601f19603f3d011682016040523d82523d6000602084013e6134b2565b606091505b5080516134d15760405162461bcd60e51b8152600401610c1a906147ee565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117ea565b5060016117ea565b6000600161350884611674565b61351291906147d7565b600083815260076020526040902054909150808214613565576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906135aa906001906147d7565b600083815260096020526040812054600880549394509092849081106135d2576135d2613fbc565b9060005260206000200154905080600883815481106135f3576135f3613fbc565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061362b5761362b6148d8565b6001900381819060005260206000200160009055905550505050565b600061365283611674565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b61369583836136be565b6136a260008484846133f1565b610e9e5760405162461bcd60e51b8152600401610c1a906147ee565b6001600160a01b0382166137145760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c1a565b61371d81612ba6565b1561376a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c1a565b6137766000838361331f565b6001600160a01b038216600090815260036020526040812080546001929061379f908490614114565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461380990614003565b90600052602060002090601f01602090048101928261382b5760008555613871565b82601f1061384457805160ff1916838001178555613871565b82800160010185558215613871579182015b82811115613871578251825591602001919060010190613856565b5061387d9291506138a9565b5090565b604051806101e00160405280600f905b60608152602001906001900390816138915790505090565b5b8082111561387d57600081556001016138aa565b6001600160e01b0319811681146128a357600080fd5b6000602082840312156138e657600080fd5b8135611553816138be565b60008083601f84011261390357600080fd5b5081356001600160401b0381111561391a57600080fd5b6020830191508360208260051b850101111561393557600080fd5b9250929050565b80356001600160a01b03811681146127c257600080fd5b60008060006040848603121561396857600080fd5b83356001600160401b0381111561397e57600080fd5b61398a868287016138f1565b909450925061399d90506020850161393c565b90509250925092565b60005b838110156139c15781810151838201526020016139a9565b83811115611f8b5750506000910152565b600081518084526139ea8160208601602086016139a6565b601f01601f19169290920160200192915050565b60208152600061155360208301846139d2565b600060208284031215613a2357600080fd5b5035919050565b60008060408385031215613a3d57600080fd5b613a468361393c565b946020939093013593505050565b600060208284031215613a6657600080fd5b6115538261393c565b600080600060608486031215613a8457600080fd5b613a8d8461393c565b9250613a9b6020850161393c565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715613ae957613ae9613aab565b604052919050565b60006001600160401b03821115613b0a57613b0a613aab565b50601f01601f191660200190565b6000613b2b613b2684613af1565b613ac1565b9050828152838383011115613b3f57600080fd5b828260208301376000602084830101529392505050565b600082601f830112613b6757600080fd5b61155383833560208501613b18565b600060208284031215613b8857600080fd5b81356001600160401b03811115613b9e57600080fd5b6117ea84828501613b56565b803560ff811681146127c257600080fd5b600060208284031215613bcd57600080fd5b61155382613baa565b6020808252825182820181905260009190848201906040850190845b81811015613c0e57835183529284019291840191600101613bf2565b50909695505050505050565b60008060008060808587031215613c3057600080fd5b84359350613c4060208601613baa565b93969395505050506040820135916060013590565b60008060208385031215613c6857600080fd5b82356001600160401b03811115613c7e57600080fd5b613c8a858286016138f1565b90969095509350505050565b60008060008060408587031215613cac57600080fd5b84356001600160401b0380821115613cc357600080fd5b613ccf888389016138f1565b90965094506020870135915080821115613ce857600080fd5b50613cf5878288016138f1565b95989497509550505050565b60008060408385031215613d1457600080fd5b613d1d8361393c565b915060208301358015158114613d3257600080fd5b809150509250929050565b600080600060608486031215613d5257600080fd5b613d5b84613baa565b95602085013595506040909401359392505050565b60008060008060808587031215613d8657600080fd5b613d8f8561393c565b9350613d9d6020860161393c565b92506040850135915060608501356001600160401b03811115613dbf57600080fd5b8501601f81018713613dd057600080fd5b613ddf87823560208401613b18565b91505092959194509250565b634e487b7160e01b600052602160045260246000fd5b6020810160048310613e2357634e487b7160e01b600052602160045260246000fd5b91905290565b600080600060608486031215613e3e57600080fd5b613e478461393c565b9250613e556020850161393c565b915060408401356001600160401b03811115613e7057600080fd5b613e7c86828701613b56565b9150509250925092565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b82811015613edb57603f19888603018452613ec98583516139d2565b94509285019290850190600101613ead565b5092979650505050505050565b600060208284031215613efa57600080fd5b813561ffff8116811461155357600080fd5b60008060408385031215613f1f57600080fd5b613f288361393c565b9150613f366020840161393c565b90509250929050565b60008060008060808587031215613f5557600080fd5b613f5e85613baa565b93506020850135925060408501359150613f7a60608601613baa565b905092959194509250565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415613ffc57613ffc613fd2565b5060010190565b600181811c9082168061401757607f821691505b6020821081141561403857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526030908201527f54616e6b4e46543a204d696e74696e6720636f756e742065786365656473206d60408201526f1bdc99481d1a185b88185b1b1bddd95960821b606082015260800190565b6000821982111561412757614127613fd2565b500190565b6020808252602d908201527f54616e6b4e46543a2043616e206e6f74206d696e74206d6f7265207468616e2060408201526c13505617d41550931250d7d251609a1b606082015260800190565b600081600019048311821515161561419357614193613fd2565b500290565b6020808252602c908201527f54616e6b4e46543a204d696e74696e672066656520616d6f756e747320646f6560408201526b39903737ba1036b0ba31b41760a11b606082015260800190565b60208082526017908201527f54616e6b4e46543a206d696e74696e67206661696c6564000000000000000000604082015260600190565b6020808252601f908201527f54616e6b4e46543a20546f6b656e4964206e6f74206d696e7465642079657400604082015260600190565b600082601f83011261426357600080fd5b8151614271613b2682613af1565b81815284602083860101111561428657600080fd5b6117ea8260208301602087016139a6565b6000602082840312156142a957600080fd5b81516001600160401b038111156142bf57600080fd5b6117ea84828501614252565b600061ffff8083168185168083038211156142e8576142e8613fd2565b01949350505050565b600081516143038185602086016139a6565b9290920192915050565b600080845481600182811c91508083168061432957607f831692505b602080841082141561434957634e487b7160e01b86526022600452602486fd5b81801561435d576001811461436e5761439b565b60ff1986168952848901965061439b565b60008b81526020902060005b868110156143935781548b82015290850190830161437a565b505084890196505b5050505050506143be6143ae82866142f1565b631733b4b360e11b815260040190565b95945050505050565b60006bffffffffffffffffffffffff19808660601b168352808560601b1660148401525082516143fe8160288501602087016139a6565b91909101602801949350505050565b6000885160206144208285838e016139a6565b8951918401916144338184848e016139a6565b89519201916144458184848d016139a6565b88519201916144578184848c016139a6565b87519201916144698184848b016139a6565b865192019161447b8184848a016139a6565b855192019161448d81848489016139a6565b919091019a9950505050505050505050565b600086516144b1818460208b016139a6565b8651908301906144c5818360208b016139a6565b86519101906144d8818360208a016139a6565b85519101906144eb8183602089016139a6565b84519101906144fe8183602088016139a6565b01979650505050505050565b7f7b226e616d65223a2022466f7274726573732d4172656e61204e46542023000081526000855161454281601e850160208a016139a6565b7001116101130ba3a3934b13aba32b9911d1607d1b601e91840191820152855161457381602f840160208a016139a6565b711610113232b9b1b934b83a34b7b7111d101160711b602f929091019182015284516145a68160418401602089016139a6565b6c1116101134b6b0b3b2911d101160991b6041929091019182015283516145d481604e8401602088016139a6565b61227d60f01b604e92909101918201526050019695505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161462981601d8501602087016139a6565b91909101601d0192915050565b60006001600160401b0382111561464f5761464f613aab565b5060051b60200190565b6000602080838503121561466c57600080fd5b82516001600160401b0381111561468257600080fd5b8301601f8101851361469357600080fd5b80516146a1613b2682614636565b81815260059190911b820183019083810190878311156146c057600080fd5b928401925b828410156146de578351825292840192908401906146c5565b979650505050505050565b600060208083850312156146fc57600080fd5b82516001600160401b038082111561471357600080fd5b818501915085601f83011261472757600080fd5b8151614735613b2682614636565b81815260059190911b8301840190848101908883111561475457600080fd5b8585015b8381101561478c578051858111156147705760008081fd5b61477e8b89838a0101614252565b845250918601918601614758565b5098975050505050505050565b6000602082840312156147ab57600080fd5b5051919050565b600060ff821660ff84168060ff038211156147cf576147cf613fd2565b019392505050565b6000828210156147e9576147e9613fd2565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261486557614865614840565b500490565b60008261487957614879614840565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906148b1908301846139d2565b9695505050505050565b6000602082840312156148cd57600080fd5b8151611553816138be565b634e487b7160e01b600052603160045260246000fdfe466f727472657373204172616e612054616e6b204e465428455243373231292069732061206e656365737369747920666f7220706c6179696e6720466f7274726573732d4172656e612e2055736572732063616e206e6f74206f6e6c79206765742054414e4b20546f6b656e73284552433230292062792077696e6e696e67207769746820746865697220726573706563746976652054616e6b2d4e4654732c2062757420616c736f20637265617465206e65772074616e6b73207468726f75676820636f6d62696e6174696f6e2e2049742069732061206772656174206f70706f7274756e69747920746f20696e63726561736520796f7572206f776e206173736574207768696c6520656e6a6f79696e6720746865206e65776c79207265626f726e20466f7274726573732067616d6520776974682074686520626c6f636b636861696e2e227d2c207b2274726169745f74797065223a2022436f6c6f72222c202276616c7565223a20225b7b2274726169745f74797065223a202252616365222c202276616c7565223a20224142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f227d2c207b2274726169745f74797065223a2022466f756e64657254616e6b222c202276616c7565223a2022227d2c207b2274726169745f74797065223a202247656e65726174696f6e222c202276616c7565223a2022227d2c207b2274726169745f74797065223a2022456c656d656e74222c202276616c7565223a2022227d2c207b2274726169745f74797065223a20224d6174657269616c222c202276616c7565223a2022227d2c207b2274726169745f74797065223a2022436c617373222c202276616c7565223a2022a26469706673582212209042d0a254cff6ab57732d5ba98db0990539c6cda9f4e3564ff4b9ed80f820f064736f6c63430008090033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000009db5171227c41198384442da05b3938d1603c98100000000000000000000000023cbe4431ba295d74cae8db6bdf900f30bde13370000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000003568747470733a2f2f69676174657761792d697066732e61746f6d726967732e696f2f666f7274726573732d6172656e612d6e66742f0000000000000000000000

-----Decoded View---------------
Arg [0] : signer_ (address): 0x9DB5171227C41198384442DA05B3938D1603c981
Arg [1] : receiver_ (address): 0x23cbE4431ba295D74Cae8dB6bdf900F30bDE1337
Arg [2] : baseImgUrl_ (string): https://igateway-ipfs.atomrigs.io/fortress-arena-nft/

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000009db5171227c41198384442da05b3938d1603c981
Arg [1] : 00000000000000000000000023cbe4431ba295d74cae8db6bdf900f30bde1337
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [4] : 68747470733a2f2f69676174657761792d697066732e61746f6d726967732e69
Arg [5] : 6f2f666f7274726573732d6172656e612d6e66742f0000000000000000000000


Deployed Bytecode Sourcemap

49625:13087:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51220:56;20759:10;51229:12;51220:56;;;-1:-1:-1;;;;;272:32:1;;;254:51;;51243:9:0;336:2:1;321:18;;314:34;384:2;364:18;;;357:30;;;423:2;403:18;;;396:30;-1:-1:-1;;;457:3:1;442:19;;435:50;292:3;502:19;51220:56:0;;;;;;;49625:13087;;51105:56;20759:10;51114:12;20679:98;35736:224;;;;;;;;;;-1:-1:-1;35736:224:0;;;;;:::i;:::-;;:::i;:::-;;;1083:14:1;;1076:22;1058:41;;1046:2;1031:18;35736:224:0;;;;;;;;57773:218;;;;;;;;;;-1:-1:-1;57773:218:0;;;;;:::i;:::-;;:::i;:::-;;23230:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24789:221::-;;;;;;;;;;-1:-1:-1;24789:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;3298:32:1;;;3280:51;;3268:2;3253:18;24789:221:0;3134:203:1;24312:411:0;;;;;;;;;;-1:-1:-1;24312:411:0;;;;;:::i;:::-;;:::i;53624:96::-;;;;;;;;;;-1:-1:-1;53691:21:0;53624:96;;;3747:25:1;;;3735:2;3720:18;53624:96:0;3601:177:1;50506:42:0;;;;;;;;;;-1:-1:-1;50506:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4146:4:1;4134:17;;;4116:36;;4104:2;4089:18;50506:42:0;3974:184:1;36376:113:0;;;;;;;;;;-1:-1:-1;36464:10:0;:17;36376:113;;52565:82;;;;;;;;;;;;;:::i;25539:339::-;;;;;;;;;;-1:-1:-1;25539:339:0;;;;;:::i;:::-;;:::i;61594:388::-;;;;;;;;;;;;;:::i;55951:609::-;;;;;;:::i;:::-;;:::i;36044:256::-;;;;;;;;;;-1:-1:-1;36044:256:0;;;;;:::i;:::-;;:::i;51990:169::-;;;;;;;;;;-1:-1:-1;51990:169:0;;;;;:::i;:::-;;:::i;53729:258::-;;;;;;;;;;;;;:::i;25949:185::-;;;;;;;;;;-1:-1:-1;25949:185:0;;;;;:::i;:::-;;:::i;51296:117::-;;;;;;;;;;-1:-1:-1;51296:117:0;;;;;:::i;:::-;;:::i;49948:47::-;;;;;;;;;;;;49992:3;49948:47;;36566:233;;;;;;;;;;-1:-1:-1;36566:233:0;;;;;:::i;:::-;;:::i;50112:53::-;;;;;;;;;;-1:-1:-1;50112:53:0;;;;-1:-1:-1;;;50112:53:0;;;;;;;;;6519:6:1;6507:19;;;6489:38;;6477:2;6462:18;50112:53:0;6345:188:1;59021:240:0;;;;;;;;;;-1:-1:-1;59021:240:0;;;;;:::i;:::-;;:::i;50436:44::-;;;;;;;;;;-1:-1:-1;50436:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;59269:298;;;;;;;;;;-1:-1:-1;59269:298:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;22924:239::-;;;;;;;;;;-1:-1:-1;22924:239:0;;;;;:::i;:::-;;:::i;50173:56::-;;;;;;;;;;-1:-1:-1;50173:56:0;;;;-1:-1:-1;;;50173:56:0;;;;;;22654:208;;;;;;;;;;-1:-1:-1;22654:208:0;;;;;:::i;:::-;;:::i;43597:103::-;;;;;;;;;;;;;:::i;52472:85::-;;;;;;;;;;;;;:::i;50237:39::-;;;;;;;;;;;;50272:4;50237:39;;49918:23;;;;;;;;;;-1:-1:-1;49918:23:0;;;;-1:-1:-1;;;49918:23:0;;;;;;54201:172;;;;;;;;;;-1:-1:-1;54201:172:0;;;;;:::i;:::-;;:::i;51724:85::-;;;;;;;;;;-1:-1:-1;51794:7:0;;-1:-1:-1;;;;;51794:7:0;51724:85;;51817:165;;;;;;;;;;-1:-1:-1;51817:165:0;;;;;:::i;:::-;;:::i;50002:30::-;;;;;;;;;;-1:-1:-1;50002:30:0;;;;-1:-1:-1;;;50002:30:0;;;;;;42946:87;;;;;;;;;;-1:-1:-1;43019:6:0;;-1:-1:-1;;;;;43019:6:0;42946:87;;56568:530;;;;;;;;;;-1:-1:-1;56568:530:0;;;;;:::i;:::-;;:::i;23399:104::-;;;;;;;;;;;;;:::i;52753:92::-;;;;;;;;;;;;;:::i;57106:659::-;;;;;;;;;;-1:-1:-1;57106:659:0;;;;;:::i;:::-;;:::i;25082:155::-;;;;;;;;;;-1:-1:-1;25082:155:0;;;;;:::i;:::-;;:::i;51552:164::-;;;;;;;;;;-1:-1:-1;51552:164:0;;;;;:::i;:::-;;:::i;52857:88::-;;;;;;;;;;;;;:::i;54381:689::-;;;;;;;;;;-1:-1:-1;54381:689:0;;;;;:::i;:::-;;:::i;26205:328::-;;;;;;;;;;-1:-1:-1;26205:328:0;;;;;:::i;:::-;;:::i;51421:119::-;;;;;;;;;;-1:-1:-1;51421:119:0;;;;;:::i;:::-;;:::i;58778:235::-;;;;;;;;;;-1:-1:-1;58778:235:0;;;;;:::i;:::-;;:::i;49797:18::-;;;;;;;;;;-1:-1:-1;49797:18:0;;;;-1:-1:-1;;;49797:18:0;;;;;;;;;;;;;:::i;53999:194::-;;;;;;;;;;-1:-1:-1;53999:194:0;;;;;:::i;:::-;;:::i;59578:2008::-;;;;;;;;;;-1:-1:-1;59578:2008:0;;;;;:::i;:::-;;:::i;58244:254::-;;;;;;;;;;-1:-1:-1;58244:254:0;;;;;:::i;:::-;;:::i;58506:264::-;;;;;;;;;;-1:-1:-1;58506:264:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;52953:99::-;;;;;;;;;;-1:-1:-1;53030:14:0;;-1:-1:-1;;;53030:14:0;;;;52953:99;;50342:38;;;;;;;;;;;;;;;;52167:297;;;;;;;;;;-1:-1:-1;52167:297:0;;;;;:::i;:::-;;:::i;57999:237::-;;;;;;;;;;-1:-1:-1;57999:237:0;;;;;:::i;:::-;;:::i;52659:86::-;;;;;;;;;;;;;:::i;25308:164::-;;;;;;;;;;-1:-1:-1;25308:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;25429:25:0;;;25405:4;25429:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25308:164;43855:201;;;;;;;;;;-1:-1:-1;43855:201:0;;;;;:::i;:::-;;:::i;50062:43::-;;;;;;;;;;;;50103:2;50062:43;;55078:865;;;;;;:::i;:::-;;:::i;35736:224::-;35838:4;-1:-1:-1;;;;;;35862:50:0;;-1:-1:-1;;;35862:50:0;;:90;;;35916:36;35940:11;35916:23;:36::i;:::-;35855:97;35736:224;-1:-1:-1;;35736:224:0:o;57773:218::-;46226:1;46824:7;;:19;;46816:63;;;;-1:-1:-1;;;46816:63:0;;;;;;;:::i;:::-;;;;;;;;;46226:1;46957:7;:18;57873:6:::1;57869:115;57883:18:::0;;::::1;57869:115;;;57923:49;20759:10:::0;57954:3:::1;57959:9;;57969:1;57959:12;;;;;;;:::i;:::-;;;;;;;57923:16;:49::i;:::-;57903:3:::0;::::1;::::0;::::1;:::i;:::-;;;;57869:115;;;-1:-1:-1::0;;46182:1:0;47136:7;:22;-1:-1:-1;;57773:218:0:o;23230:100::-;23284:13;23317:5;23310:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23230:100;:::o;24789:221::-;24865:7;24893:16;24901:7;24893;:16::i;:::-;24885:73;;;;-1:-1:-1;;;24885:73:0;;14372:2:1;24885:73:0;;;14354:21:1;14411:2;14391:18;;;14384:30;14450:34;14430:18;;;14423:62;-1:-1:-1;;;14501:18:1;;;14494:42;14553:19;;24885:73:0;14170:408:1;24885:73:0;-1:-1:-1;24978:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24978:24:0;;24789:221::o;24312:411::-;24393:13;24409:23;24424:7;24409:14;:23::i;:::-;24393:39;;24457:5;-1:-1:-1;;;;;24451:11:0;:2;-1:-1:-1;;;;;24451:11:0;;;24443:57;;;;-1:-1:-1;;;24443:57:0;;14785:2:1;24443:57:0;;;14767:21:1;14824:2;14804:18;;;14797:30;14863:34;14843:18;;;14836:62;-1:-1:-1;;;14914:18:1;;;14907:31;14955:19;;24443:57:0;14583:397:1;24443:57:0;20759:10;-1:-1:-1;;;;;24535:21:0;;;;:62;;-1:-1:-1;24560:37:0;24577:5;20759:10;25308:164;:::i;24560:37::-;24513:168;;;;-1:-1:-1;;;24513:168:0;;15187:2:1;24513:168:0;;;15169:21:1;15226:2;15206:18;;;15199:30;15265:34;15245:18;;;15238:62;15336:26;15316:18;;;15309:54;15380:19;;24513:168:0;14985:420:1;24513:168:0;24694:21;24703:2;24707:7;24694:8;:21::i;:::-;24382:341;24312:411;;:::o;52565:82::-;43019:6;;-1:-1:-1;;;;;43019:6:0;20759:10;43166:23;43158:68;;;;-1:-1:-1;;;43158:68:0;;;;;;;:::i;:::-;52620:5:::1;:19:::0;;52628:11:::1;::::0;52620:5;-1:-1:-1;;;;52620:19:0::1;-1:-1:-1::0;;;52628:11:0;52620:19:::1;;;;;;52565:82::o:0;25539:339::-;25734:41;20759:10;25767:7;25734:18;:41::i;:::-;25726:103;;;;-1:-1:-1;;;25726:103:0;;;;;;;:::i;:::-;25842:28;25852:4;25858:2;25862:7;25842:9;:28::i;61594:388::-;61644:5;;61666;;-1:-1:-1;;;61666:5:0;;;;:20;;;;;;;;:::i;:::-;;61662:313;;;-1:-1:-1;61710:1:0;;61594:388::o;61662:313::-;61742:13;61733:5;;-1:-1:-1;;;61733:5:0;;;;:22;;;;;;;;:::i;:::-;;:56;;;;-1:-1:-1;61776:13:0;;;-1:-1:-1;;;61776:13:0;;;;-1:-1:-1;;;61759:14:0;;;;:30;61733:56;61729:246;;;-1:-1:-1;61814:1:0;;61594:388::o;61729:246::-;61846:16;61837:5;;-1:-1:-1;;;61837:5:0;;;;:25;;;;;;;;:::i;:::-;;:59;;;;-1:-1:-1;61883:13:0;;;-1:-1:-1;;;61883:13:0;;;;-1:-1:-1;;;61866:14:0;;;;:30;61837:59;61833:142;;;-1:-1:-1;61921:1:0;;61594:388::o;61833:142::-;-1:-1:-1;61962:1:0;;61594:388::o;55951:609::-;46226:1;46824:7;;:19;;46816:63;;;;-1:-1:-1;;;46816:63:0;;;;;;;:::i;:::-;46226:1;46957:7;:18;;;56033:5:::1;::::0;-1:-1:-1;;;56033:5:0;::::1;;;:25;::::0;::::1;;;;;;:::i;:::-;;56025:73;;;::::0;-1:-1:-1;;;56025:73:0;;16391:2:1;56025:73:0::1;::::0;::::1;16373:21:1::0;16430:2;16410:18;;;16403:30;16469:34;16449:18;;;16442:62;-1:-1:-1;;;16520:18:1;;;16513:33;16563:19;;56025:73:0::1;16189:399:1::0;56025:73:0::1;50103:2;56117:26:::0;::::1;;56109:87;;;;-1:-1:-1::0;;;56109:87:0::1;;;;;;;:::i;:::-;56242:13;::::0;::::1;-1:-1:-1::0;;;56242:13:0;::::1;::::0;::::1;::::0;56215:23:::1;::::0;56232:6;;-1:-1:-1;;;56215:14:0;::::1;;:23;:::i;:::-;:40;;56207:98;;;;-1:-1:-1::0;;;56207:98:0::1;;;;;;;:::i;:::-;56348:9;56338:6;56324:11;;:20;;;;:::i;:::-;:33;56316:90;;;;-1:-1:-1::0;;;56316:90:0::1;;;;;;;:::i;:::-;56424:6;56420:133;56436:6;56434:1;:8;56420:133;;;56472:41;20759:10:::0;56481:12:::1;56495:17;:15;:17::i;:::-;56472:41;;:8;:41::i;:::-;56464:77;;;;-1:-1:-1::0;;;56464:77:0::1;;;;;;;:::i;:::-;56444:3:::0;::::1;::::0;::::1;:::i;:::-;;;;56420:133;;;-1:-1:-1::0;;46182:1:0;47136:7;:22;55951:609::o;36044:256::-;36141:7;36177:23;36194:5;36177:16;:23::i;:::-;36169:5;:31;36161:87;;;;-1:-1:-1;;;36161:87:0;;18697:2:1;36161:87:0;;;18679:21:1;18736:2;18716:18;;;18709:30;18775:34;18755:18;;;18748:62;-1:-1:-1;;;18826:18:1;;;18819:41;18877:19;;36161:87:0;18495:407:1;36161:87:0;-1:-1:-1;;;;;;36266:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36044:256::o;51990:169::-;43019:6;;-1:-1:-1;;;;;43019:6:0;20759:10;43166:23;43158:68;;;;-1:-1:-1;;;43158:68:0;;;;;;;:::i;:::-;52075:11:::1;::::0;-1:-1:-1;;;52075:11:0;::::1;;;52074:12;52066:56;;;::::0;-1:-1:-1;;;52066:56:0;;19109:2:1;52066:56:0::1;::::0;::::1;19091:21:1::0;19148:2;19128:18;;;19121:30;19187:33;19167:18;;;19160:61;19238:18;;52066:56:0::1;18907:355:1::0;52066:56:0::1;52133:18:::0;;::::1;::::0;:11:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51990:169:::0;:::o;53729:258::-;43019:6;;-1:-1:-1;;;;;43019:6:0;20759:10;43166:23;43158:68;;;;-1:-1:-1;;;43158:68:0;;;;;;;:::i;:::-;53845:9:::1;::::0;:33:::1;::::0;53794:21:::1;::::0;53780:11:::1;::::0;-1:-1:-1;;;;;53845:9:0;;::::1;::::0;53794:21;;53780:11;53845:33;53780:11;53845:33;53794:21;53845:9;:33:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53826:52;;;53897:7;53889:40;;;::::0;-1:-1:-1;;;53889:40:0;;19679:2:1;53889:40:0::1;::::0;::::1;19661:21:1::0;19718:2;19698:18;;;19691:30;-1:-1:-1;;;19737:18:1;;;19730:50;19797:18;;53889:40:0::1;19477:344:1::0;53889:40:0::1;53961:9;::::0;53945:34:::1;::::0;;-1:-1:-1;;;;;53961:9:0;;::::1;20000:51:1::0;;20082:2;20067:18;;20060:34;;;53945::0::1;::::0;19973:18:1;53945:34:0::1;;;;;;;53768:219;;53729:258::o:0;25949:185::-;26087:39;26104:4;26110:2;26114:7;26087:39;;;;;;;;;;;;:16;:39::i;51296:117::-;43019:6;;-1:-1:-1;;;;;43019:6:0;20759:10;43166:23;43158:68;;;;-1:-1:-1;;;43158:68:0;;;;;;;:::i;:::-;51382:13:::1;:23:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;51382:23:0::1;-1:-1:-1::0;;;;51382:23:0;;::::1;::::0;;;::::1;::::0;;51296:117::o;36566:233::-;36641:7;36677:30;36464:10;:17;;36376:113;36677:30;36669:5;:38;36661:95;;;;-1:-1:-1;;;36661:95:0;;20307:2:1;36661:95:0;;;20289:21:1;20346:2;20326:18;;;20319:30;20385:34;20365:18;;;20358:62;-1:-1:-1;;;20436:18:1;;;20429:42;20488:19;;36661:95:0;20105:408:1;36661:95:0;36774:10;36785:5;36774:17;;;;;;;;:::i;:::-;;;;;;;;;36767:24;;36566:233;;;:::o;59021:240::-;59076:13;59110:17;59118:8;59110:7;:17::i;:::-;59102:61;;;;-1:-1:-1;;;59102:61:0;;;;;;;:::i;:::-;59201:9;;59229:24;;-1:-1:-1;;;59229:24:0;;;;;3747:25:1;;;-1:-1:-1;;;;;59201:9:0;;;;;;59229:14;;3720:18:1;;59229:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;59229:24:0;;;;;;;;;;;;:::i;:::-;59222:31;59021:240;-1:-1:-1;;;59021:240:0:o;59269:298::-;59326:13;59352:22;59389:19;59399:8;59389:9;:19::i;:::-;-1:-1:-1;;;;;59377:32:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59377:32:0;;59352:57;;59425:6;59420:114;59435:19;59445:8;59435:9;:19::i;:::-;59433:1;:21;59420:114;;;59490:32;59510:8;59520:1;59490:19;:32::i;:::-;59476:8;59485:1;59476:11;;;;;;;;:::i;:::-;;;;;;;;;;:46;59456:3;;;;:::i;:::-;;;;59420:114;;;-1:-1:-1;59551:8:0;59269:298;-1:-1:-1;;59269:298:0:o;22924:239::-;22996:7;23032:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23032:16:0;23067:19;23059:73;;;;-1:-1:-1;;;23059:73:0;;21857:2:1;23059:73:0;;;21839:21:1;21896:2;21876:18;;;21869:30;21935:34;21915:18;;;21908:62;-1:-1:-1;;;21986:18:1;;;21979:39;22035:19;;23059:73:0;21655:405:1;22654:208:0;22726:7;-1:-1:-1;;;;;22754:19:0;;22746:74;;;;-1:-1:-1;;;22746:74:0;;22267:2:1;22746:74:0;;;22249:21:1;22306:2;22286:18;;;22279:30;22345:34;22325:18;;;22318:62;-1:-1:-1;;;22396:18:1;;;22389:40;22446:19;;22746:74:0;22065:406:1;22746:74:0;-1:-1:-1;;;;;;22838:16:0;;;;;:9;:16;;;;;;;22654:208::o;43597:103::-;43019:6;;-1:-1:-1;;;;;43019:6:0;20759:10;43166:23;43158:68;;;;-1:-1:-1;;;43158:68:0;;;;;;;:::i;:::-;43662:30:::1;43689:1;43662:18;:30::i;:::-;43597:103::o:0;52472:85::-;43019:6;;-1:-1:-1;;;;;43019:6:0;20759:10;43166:23;43158:68;;;;-1:-1:-1;;;43158:68:0;;;;;;;:::i;:::-;52531:11:::1;:18:::0;;-1:-1:-1;;;;52531:18:0::1;-1:-1:-1::0;;;52531:18:0::1;::::0;;52472:85::o;54201:172::-;54358:7;;54330:24;;;54306:4;54330:24;;;;;;;;;22703:25:1;;;22776:4;22764:17;;22744:18;;;22737:45;;;;22798:18;;;22791:34;;;22841:18;;;22834:34;;;54306:4:0;;-1:-1:-1;;;;;54358:7:0;;;;22675:19:1;;54330:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;54330:35:0;;54323:42;;54201:172;;;;;;;:::o;51817:165::-;43019:6;;-1:-1:-1;;;;;43019:6:0;20759:10;43166:23;43158:68;;;;-1:-1:-1;;;43158:68:0;;;;;;;:::i;:::-;51895:11:::1;::::0;-1:-1:-1;;;51895:11:0;::::1;;;51894:12;51886:56;;;::::0;-1:-1:-1;;;51886:56:0;;23081:2:1;51886:56:0::1;::::0;::::1;23063:21:1::0;23120:2;23100:18;;;23093:30;23159:33;23139:18;;;23132:61;23210:18;;51886:56:0::1;22879:355:1::0;51886:56:0::1;51953:9;:21:::0;;-1:-1:-1;;;;;;51953:21:0::1;-1:-1:-1::0;;;;;51953:21:0;;;::::1;::::0;;;::::1;::::0;;51817:165::o;56568:530::-;43019:6;;-1:-1:-1;;;;;43019:6:0;20759:10;43166:23;43158:68;;;;-1:-1:-1;;;43158:68:0;;;;;;;:::i;:::-;46226:1:::1;46824:7;;:19;;46816:63;;;;-1:-1:-1::0;;;46816:63:0::1;;;;;;;:::i;:::-;46226:1;46957:7;:18:::0;56660:6:::2;56656:435;56670:18:::0;;::::2;56656:435;;;56710:12;56725:9;;56735:1;56725:12;;;;;;;:::i;:::-;;;;;;;56710:27;;56757:16;56765:7;56757;:16::i;:::-;56752:328;;56812:1;56802:7;:11;56794:20;;;::::0;::::2;;49992:3;56841:30:::0;::::2;;::::0;:57:::2;;-1:-1:-1::0;56885:13:0::2;::::0;-1:-1:-1;;;56885:13:0;::::2;;;56875:23:::0;::::2;56841:57;56833:97;;;::::0;-1:-1:-1;;;56833:97:0;;23441:2:1;56833:97:0::2;::::0;::::2;23423:21:1::0;23480:2;23460:18;;;23453:30;23519:29;23499:18;;;23492:57;23566:18;;56833:97:0::2;23239:351:1::0;56833:97:0::2;50272:4;56957:20:::0;::::2;;56949:29;;;::::0;::::2;;57005:31;20759:10:::0;57014:12:::2;57028:7;57005:8;:31::i;:::-;56997:67;;;;-1:-1:-1::0;;;56997:67:0::2;;;;;;;:::i;:::-;-1:-1:-1::0;56690:3:0;::::2;::::0;::::2;:::i;:::-;;;;56656:435;;;-1:-1:-1::0;;46182:1:0::1;47136:7;:22:::0;-1:-1:-1;56568:530:0:o;23399:104::-;23455:13;23488:7;23481:14;;;;;:::i;52753:92::-;43019:6;;-1:-1:-1;;;;;43019:6:0;20759:10;43166:23;43158:68;;;;-1:-1:-1;;;43158:68:0;;;;;;;:::i;:::-;52813:5:::1;:24:::0;;52821:16:::1;::::0;52813:5;-1:-1:-1;;;;52813:24:0::1;-1:-1:-1::0;;;52821:16:0;52813:24:::1;::::0;57106:659;43019:6;;-1:-1:-1;;;;;43019:6:0;20759:10;43166:23;43158:68;;;;-1:-1:-1;;;43158:68:0;;;;;;;:::i;:::-;46226:1:::1;46824:7;;:19;;46816:63;;;;-1:-1:-1::0;;;46816:63:0::1;;;;;;;:::i;:::-;46226:1;46957:7;:18:::0;57230:31;;::::2;57222:95;;;::::0;-1:-1:-1;;;57222:95:0;;23797:2:1;57222:95:0::2;::::0;::::2;23779:21:1::0;23836:2;23816:18;;;23809:30;23875:34;23855:18;;;23848:62;-1:-1:-1;;;23926:18:1;;;23919:49;23985:19;;57222:95:0::2;23595:415:1::0;57222:95:0::2;57332:6;57328:430;57342:18:::0;;::::2;57328:430;;;57382:12;57397:9;;57407:1;57397:12;;;;;;;:::i;:::-;;;;;;;57382:27;;57429:16;57437:7;57429;:16::i;:::-;57424:323;;57484:1;57474:7;:11;57466:20;;;::::0;::::2;;49992:3;57513:30:::0;::::2;;::::0;:57:::2;;-1:-1:-1::0;57557:13:0::2;::::0;-1:-1:-1;;;57557:13:0;::::2;;;57547:23:::0;::::2;57513:57;57505:97;;;::::0;-1:-1:-1;;;57505:97:0;;23441:2:1;57505:97:0::2;::::0;::::2;23423:21:1::0;23480:2;23460:18;;;23453:30;23519:29;23499:18;;;23492:57;23566:18;;57505:97:0::2;23239:351:1::0;57505:97:0::2;50272:4;57629:20:::0;::::2;;57621:29;;;::::0;::::2;;57677:26;57686:4;;57691:1;57686:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;57677:26::-;57669:62;;;;-1:-1:-1::0;;;57669:62:0::2;;;;;;;:::i;:::-;-1:-1:-1::0;57362:3:0;::::2;::::0;::::2;:::i;:::-;;;;57328:430;;;-1:-1:-1::0;;46182:1:0::1;47136:7;:22:::0;-1:-1:-1;;;57106:659:0:o;25082:155::-;25177:52;20759:10;25210:8;25220;25177:18;:52::i;51552:164::-;43019:6;;-1:-1:-1;;;;;43019:6:0;20759:10;43166:23;43158:68;;;;-1:-1:-1;;;43158:68:0;;;;;;;:::i;:::-;51630:11:::1;::::0;-1:-1:-1;;;51630:11:0;::::1;;;51629:12;51621:51;;;::::0;-1:-1:-1;;;51621:51:0;;24217:2:1;51621:51:0::1;::::0;::::1;24199:21:1::0;24256:2;24236:18;;;24229:30;24295:28;24275:18;;;24268:56;24341:18;;51621:51:0::1;24015:350:1::0;51621:51:0::1;51691:7;:17:::0;;-1:-1:-1;;;;;;51691:17:0::1;-1:-1:-1::0;;;;;51691:17:0;;;::::1;::::0;;;::::1;::::0;;51552:164::o;52857:88::-;43019:6;;-1:-1:-1;;;;;43019:6:0;20759:10;43166:23;43158:68;;;;-1:-1:-1;;;43158:68:0;;;;;;;:::i;:::-;52915:5:::1;:22:::0;;52923:14:::1;::::0;52915:5;-1:-1:-1;;;;52915:22:0::1;-1:-1:-1::0;;;52923:14:0;52915:22:::1;::::0;54381:689;46226:1;46824:7;;:19;;46816:63;;;;-1:-1:-1;;;46816:63:0;;;;;;;:::i;:::-;46226:1;46957:7;:18;54481:13:::1;54472:5;::::0;-1:-1:-1;;;54472:5:0;::::1;;;:22;::::0;::::1;;;;;;:::i;:::-;;:51;;;-1:-1:-1::0;54507:16:0::1;54498:5;::::0;-1:-1:-1;;;54498:5:0;::::1;;;:25;::::0;::::1;;;;;;:::i;:::-;;54472:51;54464:110;;;::::0;-1:-1:-1;;;54464:110:0;;24572:2:1;54464:110:0::1;::::0;::::1;24554:21:1::0;24611:2;24591:18;;;24584:30;24650:34;24630:18;;;24623:62;-1:-1:-1;;;24701:18:1;;;24694:44;24755:19;;54464:110:0::1;24370:410:1::0;54464:110:0::1;54631:13;::::0;::::1;-1:-1:-1::0;;;54631:13:0;::::1;::::0;::::1;::::0;54609:18:::1;::::0;-1:-1:-1;;;54609:14:0;;::::1;;54626:1;54609:18;:::i;:::-;:35;;;;54601:93;;;;-1:-1:-1::0;;;54601:93:0::1;;;;;;;:::i;:::-;20759:10:::0;54713:24:::1;::::0;;;:10:::1;:24;::::0;;;;;::::1;;:29:::0;54705:66:::1;;;::::0;-1:-1:-1;;;54705:66:0;;25216:2:1;54705:66:0::1;::::0;::::1;25198:21:1::0;25255:2;25235:18;;;25228:30;25294:26;25274:18;;;25267:54;25338:18;;54705:66:0::1;25014:348:1::0;54705:66:0::1;54784:12;54799:49;54815:4;20759:10:::0;54799:49:::1;;;;;;;;;;;;;-1:-1:-1::0;;;54799:49:0::1;;::::0;:7:::1;:49::i;:::-;54784:64;;54867:24;54877:4;54883:1;54886;54889;54867:9;:24::i;:::-;54859:74;;;::::0;-1:-1:-1;;;54859:74:0;;25569:2:1;54859:74:0::1;::::0;::::1;25551:21:1::0;25608:2;25588:18;;;25581:30;25647:34;25627:18;;;25620:62;-1:-1:-1;;;25698:18:1;;;25691:35;25743:19;;54859:74:0::1;25367:401:1::0;54859:74:0::1;20759:10:::0;54946:24:::1;::::0;;;:10:::1;:24;::::0;;;;:28;;-1:-1:-1;;54946:28:0::1;54973:1;54946:28;::::0;;54993:41:::1;::::0;55002:12:::1;20679:98:::0;54993:41:::1;54985:77;;;;-1:-1:-1::0;;;54985:77:0::1;;;;;;;:::i;26205:328::-:0;26380:41;20759:10;26413:7;26380:18;:41::i;:::-;26372:103;;;;-1:-1:-1;;;26372:103:0;;;;;;;:::i;:::-;26486:39;26500:4;26506:2;26510:7;26519:5;26486:13;:39::i;:::-;26205:328;;;;:::o;51421:119::-;43019:6;;-1:-1:-1;;;;;43019:6:0;20759:10;43166:23;43158:68;;;;-1:-1:-1;;;43158:68:0;;;;;;;:::i;:::-;51508:11:::1;:24:::0;51421:119::o;58778:235::-;58833:13;58867:17;58875:8;58867:7;:17::i;:::-;58859:61;;;;-1:-1:-1;;;58859:61:0;;;;;;;:::i;:::-;58964:11;58977:18;58986:8;58977;:18::i;:::-;58947:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58933:72;;58778:235;;;:::o;53999:194::-;54109:7;54163:5;54170:7;54179:4;54146:38;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54136:49;;;;;;54129:56;;53999:194;;;;;:::o;59578:2008::-;59641:13;59675:17;59683:8;59675:7;:17::i;:::-;59667:61;;;;-1:-1:-1;;;59667:61:0;;;;;;;:::i;:::-;59739:21;59763:26;59780:8;59763:16;:26::i;:::-;59739:50;;59800:23;;:::i;:::-;59836:47;;;;;;;;;;;;;;;;;;;59905:8;;;;59842:1;;59905:8;;;;:::i;:::-;;;;;;;59894:5;59900:1;59894:8;;;;;;;:::i;:::-;;;;:19;;;;59924:51;;;;;;;;;;;;;;;;;:8;;;:51;59997:8;;;;60003:1;;59997:8;;;;;;:::i;:::-;;;;;;;59986:5;59992:1;59986:8;;;;;;;:::i;:::-;;;;:19;;;;60016:54;;;;;;;;;;;;;;;;;:8;;;:54;60100:8;;;;60106:1;;60100:8;;;;;;:::i;:::-;;;;;;;60089:5;60095:1;60089:8;;;;;;;:::i;:::-;;;;:19;;;;60119:51;;;;;;;;;;;;;;;;;:8;;;:51;60192:8;;;;60198:1;;60192:8;;;;;;:::i;:::-;;;;;;;60181:5;60187:1;60181:8;;;;;;;:::i;:::-;;;;:19;;;;60211:53;;;;;;;;;;;;;;;;;:8;;;:53;60286:8;;;;60292:1;;60286:8;;;;;;:::i;:::-;;;;;;;60275:5;60281:1;60275:8;;;;;;;:::i;:::-;;;;:19;;;;60305:57;;;;;;;;;;;;;;;;;:9;;;:57;60385:8;;;;60391:1;;60385:8;;;;;;:::i;:::-;;;;;;;60373:5;60379:2;60373:9;;;;;;;:::i;:::-;;;;:20;;;;60404:58;;;;;;;;;;;;;;;;;:9;;;:58;60485:8;;;;60491:1;;60485:8;;;;;;:::i;:::-;;;;;;;60473:5;60479:2;60473:9;;;;;;;:::i;:::-;;;;:20;;;;60504:17;;;;;;;;;;;;;-1:-1:-1;;;60504:17:0;;;:5;60510:2;60504:9;;;;;;;:::i;:::-;;;;;;;;;:17;;;;60588:8;;60598;;;;60608;;;;;60618;;;;60628;;;;60638;;;;60648;;;;60571:86;;60542:19;;60571:86;;60588:8;60598;60648;60571:86;;:::i;:::-;;;;;;;-1:-1:-1;;60571:86:0;;;;;;;60708:8;;;;60718;;;;60728;;;;60738:9;;;;60571:86;;-1:-1:-1;60684:64:0;;60571:86;;60738:9;60708:8;60684:64;;:::i;:::-;;;;;;;-1:-1:-1;;60684:64:0;;;;;;;60807:9;;;;60818;;;;60829;;;;60840;;;;60684:64;;-1:-1:-1;60783:67:0;;60684:64;;60840:9;60807;60783:67;;:::i;:::-;;;;-1:-1:-1;;60783:67:0;;;;;;60862:357;;;;;;;;;;60783:67;;-1:-1:-1;60862:25:0;;60783:67;60862:357;60783:67;60862:357;;;;;61230:20;61253:19;61263:8;61253:9;:19::i;:::-;61230:42;;61283:18;61304:193;61382:18;61391:8;61382;:18::i;:::-;61423:5;61451:11;61481:6;61331:163;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61304:13;:193::i;:::-;61283:214;;61572:4;61522:55;;;;;;;;:::i;:::-;;;;;;;;;;;;;61508:70;;;;;;;;59578:2008;;;:::o;58244:254::-;58302:13;58336:17;58344:8;58336:7;:17::i;:::-;58328:61;;;;-1:-1:-1;;;58328:61:0;;;;;;;:::i;:::-;58427:9;;58455:27;;-1:-1:-1;;;58455:27:0;;;;;3747:25:1;;;-1:-1:-1;;;;;58427:9:0;;;;;;58455:17;;3720:18:1;;58455:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;58455:27:0;;;;;;;;;;;;:::i;58506:264::-;58568:15;58604:17;58612:8;58604:7;:17::i;:::-;58596:61;;;;-1:-1:-1;;;58596:61:0;;;;;;;:::i;:::-;58695:9;;58723:31;;-1:-1:-1;;;58723:31:0;;;;;3747:25:1;;;-1:-1:-1;;;;;58695:9:0;;;;;;58723:21;;3720:18:1;;58723:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;58723:31:0;;;;;;;;;;;;:::i;52167:297::-;43019:6;;-1:-1:-1;;;;;43019:6:0;20759:10;43166:23;43158:68;;;;-1:-1:-1;;;43158:68:0;;;;;;;:::i;:::-;52259:14:::1;::::0;::::1;-1:-1:-1::0;;;52259:14:0;;::::1;::::0;::::1;52248:25:::0;;::::1;;;52240:98;;;::::0;-1:-1:-1;;;52240:98:0;;35168:2:1;52240:98:0::1;::::0;::::1;35150:21:1::0;35207:2;35187:18;;;35180:30;35246:34;35226:18;;;35219:62;35317:30;35297:18;;;35290:58;35365:19;;52240:98:0::1;34966:424:1::0;52240:98:0::1;50272:4;52357:20;::::0;::::1;;;52349:73;;;::::0;-1:-1:-1;;;52349:73:0;;35597:2:1;52349:73:0::1;::::0;::::1;35579:21:1::0;35636:2;35616:18;;;35609:30;35675:34;35655:18;;;35648:62;-1:-1:-1;;;35726:18:1;;;35719:38;35774:19;;52349:73:0::1;35395:404:1::0;52349:73:0::1;52433:13;:23:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;52433:23:0::1;-1:-1:-1::0;;;;52433:23:0;;::::1;::::0;;;::::1;::::0;;52167:297::o;57999:237::-;43019:6;;58062:4;;-1:-1:-1;;;;;43019:6:0;20759:10;43166:23;43158:68;;;;-1:-1:-1;;;43158:68:0;;;;;;;:::i;:::-;58087:17:::1;58095:8;58087:7;:17::i;:::-;58079:61;;;;-1:-1:-1::0;;;58079:61:0::1;;;;;;;:::i;:::-;58178:9;::::0;58206:22:::1;::::0;-1:-1:-1;;;58206:22:0;;::::1;::::0;::::1;3747:25:1::0;;;-1:-1:-1;;;;;58178:9:0;;::::1;::::0;;;58206:12:::1;::::0;3720:18:1;;58206:22:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;43237:1::-;57999:237:::0;;;:::o;52659:86::-;43019:6;;-1:-1:-1;;;;;43019:6:0;20759:10;43166:23;43158:68;;;;-1:-1:-1;;;43158:68:0;;;;;;;:::i;:::-;52716:5:::1;:21:::0;;52724:13:::1;::::0;52716:5;-1:-1:-1;;;;52716:21:0::1;-1:-1:-1::0;;;52724:13:0;52716:21:::1;::::0;43855:201;43019:6;;-1:-1:-1;;;;;43019:6:0;20759:10;43166:23;43158:68;;;;-1:-1:-1;;;43158:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43944:22:0;::::1;43936:73;;;::::0;-1:-1:-1;;;43936:73:0;;36195:2:1;43936:73:0::1;::::0;::::1;36177:21:1::0;36234:2;36214:18;;;36207:30;36273:34;36253:18;;;36246:62;-1:-1:-1;;;36324:18:1;;;36317:36;36370:19;;43936:73:0::1;35993:402:1::0;43936:73:0::1;44020:28;44039:8;44020:18;:28::i;:::-;43855:201:::0;:::o;55078:865::-;46226:1;46824:7;;:19;;46816:63;;;;-1:-1:-1;;;46816:63:0;;;;;;;:::i;:::-;46226:1;46957:7;:18;55198:13:::1;55189:5;::::0;-1:-1:-1;;;55189:5:0;::::1;;;:22;::::0;::::1;;;;;;:::i;:::-;;55181:67;;;::::0;-1:-1:-1;;;55181:67:0;;36602:2:1;55181:67:0::1;::::0;::::1;36584:21:1::0;;;36621:18;;;36614:30;36680:34;36660:18;;;36653:62;36732:18;;55181:67:0::1;36400:356:1::0;55181:67:0::1;55310:10;::::0;::::1;-1:-1:-1::0;;;55310:10:0;::::1;::::0;::::1;::::0;55283:23:::1;::::0;::::1;::::0;::::1;::::0;-1:-1:-1;;;55283:14:0;::::1;;:23;:::i;:::-;:37;;;;55275:92;;;::::0;-1:-1:-1;;;55275:92:0;;36963:2:1;55275:92:0::1;::::0;::::1;36945:21:1::0;37002:2;36982:18;;;36975:30;37041:34;37021:18;;;37014:62;-1:-1:-1;;;37092:18:1;;;37085:40;37142:19;;55275:92:0::1;36761:406:1::0;55275:92:0::1;55430:13;::::0;20759:10;55394:22:::1;::::0;;;:8:::1;:22;::::0;;;;;55430:13:::1;-1:-1:-1::0;;;55430:13:0;;::::1;::::0;::::1;::::0;55394:31:::1;::::0;55419:6;;55394:22:::1;:31;:::i;:::-;:49;;;;55386:110;;;;-1:-1:-1::0;;;55386:110:0::1;;;;;;;:::i;:::-;55539:9;55529:6;55515:20;;:11;;:20;;;;:::i;:::-;:33;55507:90;;;;-1:-1:-1::0;;;55507:90:0::1;;;;;;;:::i;:::-;55611:12;55626:47;55642:4;20759:10:::0;55626:47:::1;;;;;;;;;;;;;-1:-1:-1::0;;;55626:47:0::1;;::::0;:7:::1;:47::i;:::-;55611:62;;55692:24;55702:4;55708:1;55711;55714;55692:9;:24::i;:::-;55684:65;;;::::0;-1:-1:-1;;;55684:65:0;;37583:2:1;55684:65:0::1;::::0;::::1;37565:21:1::0;37622:2;37602:18;;;37595:30;37661;37641:18;;;37634:58;37709:18;;55684:65:0::1;37381:352:1::0;55684:65:0::1;55765:6;55760:176;55777:6;55773:10;;:1;:10;55760:176;;;20759:10:::0;55805:22:::1;::::0;;;:8:::1;:22;::::0;;;;:27;;55831:1:::1;::::0;55805:22;:27:::1;::::0;55831:1;;55805:27:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;55855:41;55864:12;20759:10:::0;;20679:98;55855:41:::1;55847:77;;;;-1:-1:-1::0;;;55847:77:0::1;;;;;;;:::i;:::-;55785:3:::0;::::1;::::0;::::1;:::i;:::-;;;;55760:176;;;-1:-1:-1::0;;46182:1:0;47136:7;:22;-1:-1:-1;;;;55078:865:0:o;22285:305::-;22387:4;-1:-1:-1;;;;;;22424:40:0;;-1:-1:-1;;;22424:40:0;;:105;;-1:-1:-1;;;;;;;22481:48:0;;-1:-1:-1;;;22481:48:0;22424:105;:158;;;-1:-1:-1;;;;;;;;;;13197:40:0;;;22546:36;13088:157;28043:127;28108:4;28132:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28132:16:0;:30;;;28043:127::o;32025:174::-;32100:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32100:29:0;-1:-1:-1;;;;;32100:29:0;;;;;;;;:24;;32154:23;32100:24;32154:14;:23::i;:::-;-1:-1:-1;;;;;32145:46:0;;;;;;;;;;;32025:174;;:::o;28337:348::-;28430:4;28455:16;28463:7;28455;:16::i;:::-;28447:73;;;;-1:-1:-1;;;28447:73:0;;37940:2:1;28447:73:0;;;37922:21:1;37979:2;37959:18;;;37952:30;38018:34;37998:18;;;37991:62;-1:-1:-1;;;38069:18:1;;;38062:42;38121:19;;28447:73:0;37738:408:1;28447:73:0;28531:13;28547:23;28562:7;28547:14;:23::i;:::-;28531:39;;28600:5;-1:-1:-1;;;;;28589:16:0;:7;-1:-1:-1;;;;;28589:16:0;;:51;;;;28633:7;-1:-1:-1;;;;;28609:31:0;:20;28621:7;28609:11;:20::i;:::-;-1:-1:-1;;;;;28609:31:0;;28589:51;:87;;;-1:-1:-1;;;;;;25429:25:0;;;25405:4;25429:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28644:32;25308:164;31329:578;31488:4;-1:-1:-1;;;;;31461:31:0;:23;31476:7;31461:14;:23::i;:::-;-1:-1:-1;;;;;31461:31:0;;31453:85;;;;-1:-1:-1;;;31453:85:0;;38353:2:1;31453:85:0;;;38335:21:1;38392:2;38372:18;;;38365:30;38431:34;38411:18;;;38404:62;-1:-1:-1;;;38482:18:1;;;38475:39;38531:19;;31453:85:0;38151:405:1;31453:85:0;-1:-1:-1;;;;;31557:16:0;;31549:65;;;;-1:-1:-1;;;31549:65:0;;38763:2:1;31549:65:0;;;38745:21:1;38802:2;38782:18;;;38775:30;38841:34;38821:18;;;38814:62;-1:-1:-1;;;38892:18:1;;;38885:34;38936:19;;31549:65:0;38561:400:1;31549:65:0;31627:39;31648:4;31654:2;31658:7;31627:20;:39::i;:::-;31731:29;31748:1;31752:7;31731:8;:29::i;:::-;-1:-1:-1;;;;;31773:15:0;;;;;;:9;:15;;;;;:20;;31792:1;;31773:15;:20;;31792:1;;31773:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31804:13:0;;;;;;:9;:13;;;;;:18;;31821:1;;31804:13;:18;;31821:1;;31804:18;:::i;:::-;;;;-1:-1:-1;;31833:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31833:21:0;-1:-1:-1;;;;;31833:21:0;;;;;;;;;31872:27;;31833:16;;31872:27;;;;;;;31329:578;;;:::o;53060:414::-;53143:14;;53104:6;;;;53143:18;;-1:-1:-1;;;53143:14:0;;;;53160:1;53143:18;:::i;:::-;53123:38;;53176:19;53184:10;53176:19;;:7;:19::i;:::-;53172:229;;;53212:178;53233:13;;;-1:-1:-1;;;53233:13:0;;;;;53219:27;;;;53212:178;;53267:15;53281:1;53267:15;;:::i;:::-;;;53306:19;53314:10;53306:19;;:7;:19::i;:::-;53301:74;;53350:5;;53301:74;53212:178;;;53411:14;:27;;-1:-1:-1;;;;53411:27:0;-1:-1:-1;;;53411:27:0;;;;;;;;53428:10;-1:-1:-1;53060:414:0:o;53482:134::-;53545:4;53562:24;53572:3;53577:8;53562:9;:24::i;:::-;-1:-1:-1;53604:4:0;53482:134;;;;:::o;44216:191::-;44309:6;;;-1:-1:-1;;;;;44326:17:0;;;-1:-1:-1;;;;;;44326:17:0;;;;;;;44359:40;;44309:6;;;44326:17;44309:6;;44359:40;;44290:16;;44359:40;44279:128;44216:191;:::o;32341:315::-;32496:8;-1:-1:-1;;;;;32487:17:0;:5;-1:-1:-1;;;;;32487:17:0;;;32479:55;;;;-1:-1:-1;;;32479:55:0;;39298:2:1;32479:55:0;;;39280:21:1;39337:2;39317:18;;;39310:30;39376:27;39356:18;;;39349:55;39421:18;;32479:55:0;39096:349:1;32479:55:0;-1:-1:-1;;;;;32545:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;32545:46:0;;;;;;;;;;32607:41;;1058::1;;;32607::0;;1031:18:1;32607:41:0;;;;;;;32341:315;;;:::o;27415:::-;27572:28;27582:4;27588:2;27592:7;27572:9;:28::i;:::-;27619:48;27642:4;27648:2;27652:7;27661:5;27619:22;:48::i;:::-;27611:111;;;;-1:-1:-1;;;27611:111:0;;;;;;;:::i;61990:715::-;62046:13;62259:10;62255:53;;-1:-1:-1;;62286:10:0;;;;;;;;;;;;-1:-1:-1;;;62286:10:0;;;;;61990:715::o;62255:53::-;62333:5;62318:12;62374:78;62381:9;;62374:78;;62407:8;;;;:::i;:::-;;-1:-1:-1;62430:10:0;;-1:-1:-1;62438:2:0;62430:10;;:::i;:::-;;;62374:78;;;62462:19;62494:6;-1:-1:-1;;;;;62484:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62484:17:0;;62462:39;;62512:154;62519:10;;62512:154;;62546:11;62556:1;62546:11;;:::i;:::-;;-1:-1:-1;62615:10:0;62623:2;62615:5;:10;:::i;:::-;62602:24;;:2;:24;:::i;:::-;62589:39;;62572:6;62579;62572:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;62572:56:0;;;;;;;;-1:-1:-1;62643:11:0;62652:2;62643:11;;:::i;:::-;;;62512:154;;47588:1607;47686:11;;47646:13;;47712:8;47708:23;;-1:-1:-1;;47722:9:0;;;;;;;;;-1:-1:-1;47722:9:0;;;47588:1607;-1:-1:-1;47588:1607:0:o;47708:23::-;47783:18;47821:1;47810:7;:3;47816:1;47810:7;:::i;:::-;47809:13;;;;:::i;:::-;47804:19;;:1;:19;:::i;:::-;47783:40;-1:-1:-1;47881:19:0;47913:15;47783:40;47926:2;47913:15;:::i;:::-;-1:-1:-1;;;;;47903:26:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47903:26:0;;47881:48;;47942:18;47963:5;;;;;;;;;;;;;;;;;47942:26;;48032:1;48025:5;48021:13;48077:2;48069:6;48065:15;48128:1;48096:777;48151:3;48148:1;48145:10;48096:777;;;48206:1;48249:12;;;;;48243:19;48344:4;48332:2;48328:14;;;;;48310:40;;48304:47;48453:2;48449:14;;;48445:25;;48431:40;;48425:47;48582:1;48578:13;;;48574:24;;48560:39;;48554:46;48702:16;;;;48688:31;;48682:38;48380:1;48376:11;;;48474:4;48421:58;;;48412:68;48505:11;;48550:57;;;48541:67;;;;48633:11;;48678:49;;48669:59;48757:3;48753:13;48786:22;;48856:1;48841:17;;;;48199:9;48096:777;;;48100:44;48905:1;48900:3;48896:11;48926:1;48921:84;;;;49024:1;49019:82;;;;48889:212;;48921:84;-1:-1:-1;;;;;48954:17:0;;48947:43;48921:84;;49019:82;-1:-1:-1;;;;;49052:17:0;;49045:41;48889:212;-1:-1:-1;;;49117:26:0;;;49124:6;47588:1607;-1:-1:-1;;;;47588:1607:0:o;37412:589::-;-1:-1:-1;;;;;37618:18:0;;37614:187;;37653:40;37685:7;38828:10;:17;;38801:24;;;;:15;:24;;;;;:44;;;38856:24;;;;;;;;;;;;38724:164;37653:40;37614:187;;;37723:2;-1:-1:-1;;;;;37715:10:0;:4;-1:-1:-1;;;;;37715:10:0;;37711:90;;37742:47;37775:4;37781:7;37742:32;:47::i;:::-;-1:-1:-1;;;;;37815:16:0;;37811:183;;37848:45;37885:7;37848:36;:45::i;37811:183::-;37921:4;-1:-1:-1;;;;;37915:10:0;:2;-1:-1:-1;;;;;37915:10:0;;37911:83;;37942:40;37970:2;37974:7;37942:27;:40::i;29027:110::-;29103:26;29113:2;29117:7;29103:26;;;;;;;;;;;;:9;:26::i;33221:799::-;33376:4;-1:-1:-1;;;;;33397:13:0;;3267:20;3315:8;33393:620;;33433:72;;-1:-1:-1;;;33433:72:0;;-1:-1:-1;;;;;33433:36:0;;;;;:72;;20759:10;;33484:4;;33490:7;;33499:5;;33433:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33433:72:0;;;;;;;;-1:-1:-1;;33433:72:0;;;;;;;;;;;;:::i;:::-;;;33429:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33675:13:0;;33671:272;;33718:60;;-1:-1:-1;;;33718:60:0;;;;;;;:::i;33671:272::-;33893:6;33887:13;33878:6;33874:2;33870:15;33863:38;33429:529;-1:-1:-1;;;;;;33556:51:0;-1:-1:-1;;;33556:51:0;;-1:-1:-1;33549:58:0;;33393:620;-1:-1:-1;33997:4:0;33990:11;;39515:988;39781:22;39831:1;39806:22;39823:4;39806:16;:22::i;:::-;:26;;;;:::i;:::-;39843:18;39864:26;;;:17;:26;;;;;;39781:51;;-1:-1:-1;39997:28:0;;;39993:328;;-1:-1:-1;;;;;40064:18:0;;40042:19;40064:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40115:30;;;;;;:44;;;40232:30;;:17;:30;;;;;:43;;;39993:328;-1:-1:-1;40417:26:0;;;;:17;:26;;;;;;;;40410:33;;;-1:-1:-1;;;;;40461:18:0;;;;;:12;:18;;;;;:34;;;;;;;40454:41;39515:988::o;40798:1079::-;41076:10;:17;41051:22;;41076:21;;41096:1;;41076:21;:::i;:::-;41108:18;41129:24;;;:15;:24;;;;;;41502:10;:26;;41051:46;;-1:-1:-1;41129:24:0;;41051:46;;41502:26;;;;;;:::i;:::-;;;;;;;;;41480:48;;41566:11;41541:10;41552;41541:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;41646:28;;;:15;:28;;;;;;;:41;;;41818:24;;;;;41811:31;41853:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;40869:1008;;;40798:1079;:::o;38302:221::-;38387:14;38404:20;38421:2;38404:16;:20::i;:::-;-1:-1:-1;;;;;38435:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;38480:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38302:221:0:o;29364:321::-;29494:18;29500:2;29504:7;29494:5;:18::i;:::-;29545:54;29576:1;29580:2;29584:7;29593:5;29545:22;:54::i;:::-;29523:154;;;;-1:-1:-1;;;29523:154:0;;;;;;;:::i;30021:382::-;-1:-1:-1;;;;;30101:16:0;;30093:61;;;;-1:-1:-1;;;30093:61:0;;41336:2:1;30093:61:0;;;41318:21:1;;;41355:18;;;41348:30;41414:34;41394:18;;;41387:62;41466:18;;30093:61:0;41134:356:1;30093:61:0;30174:16;30182:7;30174;:16::i;:::-;30173:17;30165:58;;;;-1:-1:-1;;;30165:58:0;;41697:2:1;30165:58:0;;;41679:21:1;41736:2;41716:18;;;41709:30;41775;41755:18;;;41748:58;41823:18;;30165:58:0;41495:352:1;30165:58:0;30236:45;30265:1;30269:2;30273:7;30236:20;:45::i;:::-;-1:-1:-1;;;;;30294:13:0;;;;;;:9;:13;;;;;:18;;30311:1;;30294:13;:18;;30311:1;;30294:18;:::i;:::-;;;;-1:-1:-1;;30323:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30323:21:0;-1:-1:-1;;;;;30323:21:0;;;;;;;;30362:33;;30323:16;;;30362:33;;30323:16;;30362:33;30021:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;532:131:1;-1:-1:-1;;;;;;606:32:1;;596:43;;586:71;;653:1;650;643:12;668:245;726:6;779:2;767:9;758:7;754:23;750:32;747:52;;;795:1;792;785:12;747:52;834:9;821:23;853:30;877:5;853:30;:::i;1110:367::-;1173:8;1183:6;1237:3;1230:4;1222:6;1218:17;1214:27;1204:55;;1255:1;1252;1245:12;1204:55;-1:-1:-1;1278:20:1;;-1:-1:-1;;;;;1310:30:1;;1307:50;;;1353:1;1350;1343:12;1307:50;1390:4;1382:6;1378:17;1366:29;;1450:3;1443:4;1433:6;1430:1;1426:14;1418:6;1414:27;1410:38;1407:47;1404:67;;;1467:1;1464;1457:12;1404:67;1110:367;;;;;:::o;1482:173::-;1550:20;;-1:-1:-1;;;;;1599:31:1;;1589:42;;1579:70;;1645:1;1642;1635:12;1660:511;1755:6;1763;1771;1824:2;1812:9;1803:7;1799:23;1795:32;1792:52;;;1840:1;1837;1830:12;1792:52;1880:9;1867:23;-1:-1:-1;;;;;1905:6:1;1902:30;1899:50;;;1945:1;1942;1935:12;1899:50;1984:70;2046:7;2037:6;2026:9;2022:22;1984:70;:::i;:::-;2073:8;;-1:-1:-1;1958:96:1;-1:-1:-1;2127:38:1;;-1:-1:-1;2161:2:1;2146:18;;2127:38;:::i;:::-;2117:48;;1660:511;;;;;:::o;2176:258::-;2248:1;2258:113;2272:6;2269:1;2266:13;2258:113;;;2348:11;;;2342:18;2329:11;;;2322:39;2294:2;2287:10;2258:113;;;2389:6;2386:1;2383:13;2380:48;;;-1:-1:-1;;2424:1:1;2406:16;;2399:27;2176:258::o;2439:269::-;2492:3;2530:5;2524:12;2557:6;2552:3;2545:19;2573:63;2629:6;2622:4;2617:3;2613:14;2606:4;2599:5;2595:16;2573:63;:::i;:::-;2690:2;2669:15;-1:-1:-1;;2665:29:1;2656:39;;;;2697:4;2652:50;;2439:269;-1:-1:-1;;2439:269:1:o;2713:231::-;2862:2;2851:9;2844:21;2825:4;2882:56;2934:2;2923:9;2919:18;2911:6;2882:56;:::i;2949:180::-;3008:6;3061:2;3049:9;3040:7;3036:23;3032:32;3029:52;;;3077:1;3074;3067:12;3029:52;-1:-1:-1;3100:23:1;;2949:180;-1:-1:-1;2949:180:1:o;3342:254::-;3410:6;3418;3471:2;3459:9;3450:7;3446:23;3442:32;3439:52;;;3487:1;3484;3477:12;3439:52;3510:29;3529:9;3510:29;:::i;:::-;3500:39;3586:2;3571:18;;;;3558:32;;-1:-1:-1;;;3342:254:1:o;3783:186::-;3842:6;3895:2;3883:9;3874:7;3870:23;3866:32;3863:52;;;3911:1;3908;3901:12;3863:52;3934:29;3953:9;3934:29;:::i;4163:328::-;4240:6;4248;4256;4309:2;4297:9;4288:7;4284:23;4280:32;4277:52;;;4325:1;4322;4315:12;4277:52;4348:29;4367:9;4348:29;:::i;:::-;4338:39;;4396:38;4430:2;4419:9;4415:18;4396:38;:::i;:::-;4386:48;;4481:2;4470:9;4466:18;4453:32;4443:42;;4163:328;;;;;:::o;4496:127::-;4557:10;4552:3;4548:20;4545:1;4538:31;4588:4;4585:1;4578:15;4612:4;4609:1;4602:15;4628:275;4699:2;4693:9;4764:2;4745:13;;-1:-1:-1;;4741:27:1;4729:40;;-1:-1:-1;;;;;4784:34:1;;4820:22;;;4781:62;4778:88;;;4846:18;;:::i;:::-;4882:2;4875:22;4628:275;;-1:-1:-1;4628:275:1:o;4908:187::-;4957:4;-1:-1:-1;;;;;4982:6:1;4979:30;4976:56;;;5012:18;;:::i;:::-;-1:-1:-1;5078:2:1;5057:15;-1:-1:-1;;5053:29:1;5084:4;5049:40;;4908:187::o;5100:338::-;5165:5;5194:53;5210:36;5239:6;5210:36;:::i;:::-;5194:53;:::i;:::-;5185:62;;5270:6;5263:5;5256:21;5310:3;5301:6;5296:3;5292:16;5289:25;5286:45;;;5327:1;5324;5317:12;5286:45;5376:6;5371:3;5364:4;5357:5;5353:16;5340:43;5430:1;5423:4;5414:6;5407:5;5403:18;5399:29;5392:40;5100:338;;;;;:::o;5443:222::-;5486:5;5539:3;5532:4;5524:6;5520:17;5516:27;5506:55;;5557:1;5554;5547:12;5506:55;5579:80;5655:3;5646:6;5633:20;5626:4;5618:6;5614:17;5579:80;:::i;5670:322::-;5739:6;5792:2;5780:9;5771:7;5767:23;5763:32;5760:52;;;5808:1;5805;5798:12;5760:52;5848:9;5835:23;-1:-1:-1;;;;;5873:6:1;5870:30;5867:50;;;5913:1;5910;5903:12;5867:50;5936;5978:7;5969:6;5958:9;5954:22;5936:50;:::i;5997:156::-;6063:20;;6123:4;6112:16;;6102:27;;6092:55;;6143:1;6140;6133:12;6158:182;6215:6;6268:2;6256:9;6247:7;6243:23;6239:32;6236:52;;;6284:1;6281;6274:12;6236:52;6307:27;6324:9;6307:27;:::i;6538:632::-;6709:2;6761:21;;;6831:13;;6734:18;;;6853:22;;;6680:4;;6709:2;6932:15;;;;6906:2;6891:18;;;6680:4;6975:169;6989:6;6986:1;6983:13;6975:169;;;7050:13;;7038:26;;7119:15;;;;7084:12;;;;7011:1;7004:9;6975:169;;;-1:-1:-1;7161:3:1;;6538:632;-1:-1:-1;;;;;;6538:632:1:o;7175:387::-;7259:6;7267;7275;7283;7336:3;7324:9;7315:7;7311:23;7307:33;7304:53;;;7353:1;7350;7343:12;7304:53;7389:9;7376:23;7366:33;;7418:36;7450:2;7439:9;7435:18;7418:36;:::i;:::-;7175:387;;7408:46;;-1:-1:-1;;;;7501:2:1;7486:18;;7473:32;;7552:2;7537:18;7524:32;;7175:387::o;7567:437::-;7653:6;7661;7714:2;7702:9;7693:7;7689:23;7685:32;7682:52;;;7730:1;7727;7720:12;7682:52;7770:9;7757:23;-1:-1:-1;;;;;7795:6:1;7792:30;7789:50;;;7835:1;7832;7825:12;7789:50;7874:70;7936:7;7927:6;7916:9;7912:22;7874:70;:::i;:::-;7963:8;;7848:96;;-1:-1:-1;7567:437:1;-1:-1:-1;;;;7567:437:1:o;8009:773::-;8131:6;8139;8147;8155;8208:2;8196:9;8187:7;8183:23;8179:32;8176:52;;;8224:1;8221;8214:12;8176:52;8264:9;8251:23;-1:-1:-1;;;;;8334:2:1;8326:6;8323:14;8320:34;;;8350:1;8347;8340:12;8320:34;8389:70;8451:7;8442:6;8431:9;8427:22;8389:70;:::i;:::-;8478:8;;-1:-1:-1;8363:96:1;-1:-1:-1;8566:2:1;8551:18;;8538:32;;-1:-1:-1;8582:16:1;;;8579:36;;;8611:1;8608;8601:12;8579:36;;8650:72;8714:7;8703:8;8692:9;8688:24;8650:72;:::i;:::-;8009:773;;;;-1:-1:-1;8741:8:1;-1:-1:-1;;;;8009:773:1:o;8787:347::-;8852:6;8860;8913:2;8901:9;8892:7;8888:23;8884:32;8881:52;;;8929:1;8926;8919:12;8881:52;8952:29;8971:9;8952:29;:::i;:::-;8942:39;;9031:2;9020:9;9016:18;9003:32;9078:5;9071:13;9064:21;9057:5;9054:32;9044:60;;9100:1;9097;9090:12;9044:60;9123:5;9113:15;;;8787:347;;;;;:::o;9139:318::-;9214:6;9222;9230;9283:2;9271:9;9262:7;9258:23;9254:32;9251:52;;;9299:1;9296;9289:12;9251:52;9322:27;9339:9;9322:27;:::i;:::-;9312:37;9396:2;9381:18;;9368:32;;-1:-1:-1;9447:2:1;9432:18;;;9419:32;;9139:318;-1:-1:-1;;;9139:318:1:o;9462:667::-;9557:6;9565;9573;9581;9634:3;9622:9;9613:7;9609:23;9605:33;9602:53;;;9651:1;9648;9641:12;9602:53;9674:29;9693:9;9674:29;:::i;:::-;9664:39;;9722:38;9756:2;9745:9;9741:18;9722:38;:::i;:::-;9712:48;;9807:2;9796:9;9792:18;9779:32;9769:42;;9862:2;9851:9;9847:18;9834:32;-1:-1:-1;;;;;9881:6:1;9878:30;9875:50;;;9921:1;9918;9911:12;9875:50;9944:22;;9997:4;9989:13;;9985:27;-1:-1:-1;9975:55:1;;10026:1;10023;10016:12;9975:55;10049:74;10115:7;10110:2;10097:16;10092:2;10088;10084:11;10049:74;:::i;:::-;10039:84;;;9462:667;;;;;;;:::o;10134:127::-;10195:10;10190:3;10186:20;10183:1;10176:31;10226:4;10223:1;10216:15;10250:4;10247:1;10240:15;10266:338;10408:2;10393:18;;10441:1;10430:13;;10420:144;;10486:10;10481:3;10477:20;10474:1;10467:31;10521:4;10518:1;10511:15;10549:4;10546:1;10539:15;10420:144;10573:25;;;10266:338;:::o;10609:470::-;10696:6;10704;10712;10765:2;10753:9;10744:7;10740:23;10736:32;10733:52;;;10781:1;10778;10771:12;10733:52;10804:29;10823:9;10804:29;:::i;:::-;10794:39;;10852:38;10886:2;10875:9;10871:18;10852:38;:::i;:::-;10842:48;;10941:2;10930:9;10926:18;10913:32;-1:-1:-1;;;;;10960:6:1;10957:30;10954:50;;;11000:1;10997;10990:12;10954:50;11023;11065:7;11056:6;11045:9;11041:22;11023:50;:::i;:::-;11013:60;;;10609:470;;;;;:::o;11266:814::-;11428:4;11457:2;11497;11486:9;11482:18;11527:2;11516:9;11509:21;11550:6;11585;11579:13;11616:6;11608;11601:22;11654:2;11643:9;11639:18;11632:25;;11716:2;11706:6;11703:1;11699:14;11688:9;11684:30;11680:39;11666:53;;11754:2;11746:6;11742:15;11775:1;11785:266;11799:6;11796:1;11793:13;11785:266;;;11892:2;11888:7;11876:9;11868:6;11864:22;11860:36;11855:3;11848:49;11920:51;11964:6;11955;11949:13;11920:51;:::i;:::-;11910:61;-1:-1:-1;12029:12:1;;;;11994:15;;;;11821:1;11814:9;11785:266;;;-1:-1:-1;12068:6:1;;11266:814;-1:-1:-1;;;;;;;11266:814:1:o;12085:272::-;12143:6;12196:2;12184:9;12175:7;12171:23;12167:32;12164:52;;;12212:1;12209;12202:12;12164:52;12251:9;12238:23;12301:6;12294:5;12290:18;12283:5;12280:29;12270:57;;12323:1;12320;12313:12;12362:260;12430:6;12438;12491:2;12479:9;12470:7;12466:23;12462:32;12459:52;;;12507:1;12504;12497:12;12459:52;12530:29;12549:9;12530:29;:::i;:::-;12520:39;;12578:38;12612:2;12601:9;12597:18;12578:38;:::i;:::-;12568:48;;12362:260;;;;;:::o;12627:389::-;12709:6;12717;12725;12733;12786:3;12774:9;12765:7;12761:23;12757:33;12754:53;;;12803:1;12800;12793:12;12754:53;12826:27;12843:9;12826:27;:::i;:::-;12816:37;;12900:2;12889:9;12885:18;12872:32;12862:42;;12951:2;12940:9;12936:18;12923:32;12913:42;;12974:36;13006:2;12995:9;12991:18;12974:36;:::i;:::-;12964:46;;12627:389;;;;;;;:::o;13021:355::-;13223:2;13205:21;;;13262:2;13242:18;;;13235:30;13301:33;13296:2;13281:18;;13274:61;13367:2;13352:18;;13021:355::o;13381:127::-;13442:10;13437:3;13433:20;13430:1;13423:31;13473:4;13470:1;13463:15;13497:4;13494:1;13487:15;13513:127;13574:10;13569:3;13565:20;13562:1;13555:31;13605:4;13602:1;13595:15;13629:4;13626:1;13619:15;13645:135;13684:3;-1:-1:-1;;13705:17:1;;13702:43;;;13725:18;;:::i;:::-;-1:-1:-1;13772:1:1;13761:13;;13645:135::o;13785:380::-;13864:1;13860:12;;;;13907;;;13928:61;;13982:4;13974:6;13970:17;13960:27;;13928:61;14035:2;14027:6;14024:14;14004:18;14001:38;13998:161;;;14081:10;14076:3;14072:20;14069:1;14062:31;14116:4;14113:1;14106:15;14144:4;14141:1;14134:15;13998:161;;13785:380;;;:::o;15410:356::-;15612:2;15594:21;;;15631:18;;;15624:30;15690:34;15685:2;15670:18;;15663:62;15757:2;15742:18;;15410:356::o;15771:413::-;15973:2;15955:21;;;16012:2;15992:18;;;15985:30;16051:34;16046:2;16031:18;;16024:62;-1:-1:-1;;;16117:2:1;16102:18;;16095:47;16174:3;16159:19;;15771:413::o;16593:412::-;16795:2;16777:21;;;16834:2;16814:18;;;16807:30;16873:34;16868:2;16853:18;;16846:62;-1:-1:-1;;;16939:2:1;16924:18;;16917:46;16995:3;16980:19;;16593:412::o;17010:128::-;17050:3;17081:1;17077:6;17074:1;17071:13;17068:39;;;17087:18;;:::i;:::-;-1:-1:-1;17123:9:1;;17010:128::o;17143:409::-;17345:2;17327:21;;;17384:2;17364:18;;;17357:30;17423:34;17418:2;17403:18;;17396:62;-1:-1:-1;;;17489:2:1;17474:18;;17467:43;17542:3;17527:19;;17143:409::o;17557:168::-;17597:7;17663:1;17659;17655:6;17651:14;17648:1;17645:21;17640:1;17633:9;17626:17;17622:45;17619:71;;;17670:18;;:::i;:::-;-1:-1:-1;17710:9:1;;17557:168::o;17730:408::-;17932:2;17914:21;;;17971:2;17951:18;;;17944:30;18010:34;18005:2;17990:18;;17983:62;-1:-1:-1;;;18076:2:1;18061:18;;18054:42;18128:3;18113:19;;17730:408::o;18143:347::-;18345:2;18327:21;;;18384:2;18364:18;;;18357:30;18423:25;18418:2;18403:18;;18396:53;18481:2;18466:18;;18143:347::o;20518:355::-;20720:2;20702:21;;;20759:2;20739:18;;;20732:30;20798:33;20793:2;20778:18;;20771:61;20864:2;20849:18;;20518:355::o;20878:430::-;20932:5;20985:3;20978:4;20970:6;20966:17;20962:27;20952:55;;21003:1;21000;20993:12;20952:55;21032:6;21026:13;21063:49;21079:32;21108:2;21079:32;:::i;21063:49::-;21137:2;21128:7;21121:19;21183:3;21176:4;21171:2;21163:6;21159:15;21155:26;21152:35;21149:55;;;21200:1;21197;21190:12;21149:55;21213:64;21274:2;21267:4;21258:7;21254:18;21247:4;21239:6;21235:17;21213:64;:::i;21313:337::-;21393:6;21446:2;21434:9;21425:7;21421:23;21417:32;21414:52;;;21462:1;21459;21452:12;21414:52;21495:9;21489:16;-1:-1:-1;;;;;21520:6:1;21517:30;21514:50;;;21560:1;21557;21550:12;21514:50;21583:61;21636:7;21627:6;21616:9;21612:22;21583:61;:::i;24785:224::-;24824:3;24852:6;24885:2;24882:1;24878:10;24915:2;24912:1;24908:10;24946:3;24942:2;24938:12;24933:3;24930:21;24927:47;;;24954:18;;:::i;:::-;24990:13;;24785:224;-1:-1:-1;;;;24785:224:1:o;25899:185::-;25941:3;25979:5;25973:12;25994:52;26039:6;26034:3;26027:4;26020:5;26016:16;25994:52;:::i;:::-;26062:16;;;;;25899:185;-1:-1:-1;;25899:185:1:o;26211:1306::-;26488:3;26517:1;26550:6;26544:13;26580:3;26602:1;26630:9;26626:2;26622:18;26612:28;;26690:2;26679:9;26675:18;26712;26702:61;;26756:4;26748:6;26744:17;26734:27;;26702:61;26782:2;26830;26822:6;26819:14;26799:18;26796:38;26793:165;;;-1:-1:-1;;;26857:33:1;;26913:4;26910:1;26903:15;26943:4;26864:3;26931:17;26793:165;26974:18;27001:104;;;;27119:1;27114:320;;;;26967:467;;27001:104;-1:-1:-1;;27034:24:1;;27022:37;;27079:16;;;;-1:-1:-1;27001:104:1;;27114:320;25846:1;25839:14;;;25883:4;25870:18;;27209:1;27223:165;27237:6;27234:1;27231:13;27223:165;;;27315:14;;27302:11;;;27295:35;27358:16;;;;27252:10;;27223:165;;;27227:3;;27417:6;27412:3;27408:16;27401:23;;26967:467;;;;;;;27450:61;27480:30;27506:3;27498:6;27480:30;:::i;:::-;-1:-1:-1;;;26154:19:1;;26198:1;26189:11;;26089:117;27450:61;27443:68;26211:1306;-1:-1:-1;;;;;26211:1306:1:o;27522:501::-;27709:3;27741:26;27737:31;27810:2;27801:6;27797:2;27793:15;27789:24;27784:3;27777:37;27865:2;27856:6;27852:2;27848:15;27844:24;27839:2;27834:3;27830:12;27823:46;;27898:6;27892:13;27914:62;27969:6;27964:2;27959:3;27955:12;27948:4;27940:6;27936:17;27914:62;:::i;:::-;27996:16;;;;28014:2;27992:25;;27522:501;-1:-1:-1;;;;27522:501:1:o;28028:1449::-;28447:3;28485:6;28479:13;28511:4;28524:51;28568:6;28563:3;28558:2;28550:6;28546:15;28524:51;:::i;:::-;28638:13;;28597:16;;;;28660:55;28638:13;28597:16;28682:15;;;28660:55;:::i;:::-;28782:13;;28737:20;;;28804:55;28782:13;28737:20;28826:15;;;28804:55;:::i;:::-;28926:13;;28881:20;;;28948:55;28926:13;28881:20;28970:15;;;28948:55;:::i;:::-;29070:13;;29025:20;;;29092:55;29070:13;29025:20;29114:15;;;29092:55;:::i;:::-;29214:13;;29169:20;;;29236:55;29214:13;29169:20;29258:15;;;29236:55;:::i;:::-;29358:13;;29313:20;;;29380:55;29358:13;29313:20;29402:15;;;29380:55;:::i;:::-;29451:20;;;;;28028:1449;-1:-1:-1;;;;;;;;;;28028:1449:1:o;29482:1052::-;29805:3;29843:6;29837:13;29859:53;29905:6;29900:3;29893:4;29885:6;29881:17;29859:53;:::i;:::-;29975:13;;29934:16;;;;29997:57;29975:13;29934:16;30031:4;30019:17;;29997:57;:::i;:::-;30121:13;;30076:20;;;30143:57;30121:13;30076:20;30177:4;30165:17;;30143:57;:::i;:::-;30267:13;;30222:20;;;30289:57;30267:13;30222:20;30323:4;30311:17;;30289:57;:::i;:::-;30413:13;;30368:20;;;30435:57;30413:13;30368:20;30469:4;30457:17;;30435:57;:::i;:::-;30508:20;;29482:1052;-1:-1:-1;;;;;;;29482:1052:1:o;30539:1756::-;31349:66;31344:3;31337:79;31319:3;31445:6;31439:13;31461:62;31516:6;31511:2;31506:3;31502:12;31495:4;31487:6;31483:17;31461:62;:::i;:::-;-1:-1:-1;;;31582:2:1;31542:16;;;31574:11;;;31567:67;31659:13;;31681:63;31659:13;31730:2;31722:11;;31715:4;31703:17;;31681:63;:::i;:::-;-1:-1:-1;;;31804:2:1;31763:17;;;;31796:11;;;31789:69;31883:13;;31905:63;31883:13;31954:2;31946:11;;31939:4;31927:17;;31905:63;:::i;:::-;-1:-1:-1;;;32028:2:1;31987:17;;;;32020:11;;;32013:59;32097:13;;32119:63;32097:13;32168:2;32160:11;;32153:4;32141:17;;32119:63;:::i;:::-;-1:-1:-1;;;32242:2:1;32201:17;;;;32234:11;;;32227:35;32286:2;32278:11;;30539:1756;-1:-1:-1;;;;;;30539:1756:1:o;32300:448::-;32562:31;32557:3;32550:44;32532:3;32623:6;32617:13;32639:62;32694:6;32689:2;32684:3;32680:12;32673:4;32665:6;32661:17;32639:62;:::i;:::-;32721:16;;;;32739:2;32717:25;;32300:448;-1:-1:-1;;32300:448:1:o;32753:183::-;32813:4;-1:-1:-1;;;;;32838:6:1;32835:30;32832:56;;;32868:18;;:::i;:::-;-1:-1:-1;32913:1:1;32909:14;32925:4;32905:25;;32753:183::o;32941:881::-;33036:6;33067:2;33110;33098:9;33089:7;33085:23;33081:32;33078:52;;;33126:1;33123;33116:12;33078:52;33159:9;33153:16;-1:-1:-1;;;;;33184:6:1;33181:30;33178:50;;;33224:1;33221;33214:12;33178:50;33247:22;;33300:4;33292:13;;33288:27;-1:-1:-1;33278:55:1;;33329:1;33326;33319:12;33278:55;33358:2;33352:9;33381:60;33397:43;33437:2;33397:43;:::i;33381:60::-;33475:15;;;33557:1;33553:10;;;;33545:19;;33541:28;;;33506:12;;;;33581:19;;;33578:39;;;33613:1;33610;33603:12;33578:39;33637:11;;;;33657:135;33673:6;33668:3;33665:15;33657:135;;;33739:10;;33727:23;;33690:12;;;;33770;;;;33657:135;;;33811:5;32941:881;-1:-1:-1;;;;;;;32941:881:1:o;33827:1134::-;33932:6;33963:2;34006;33994:9;33985:7;33981:23;33977:32;33974:52;;;34022:1;34019;34012:12;33974:52;34055:9;34049:16;-1:-1:-1;;;;;34125:2:1;34117:6;34114:14;34111:34;;;34141:1;34138;34131:12;34111:34;34179:6;34168:9;34164:22;34154:32;;34224:7;34217:4;34213:2;34209:13;34205:27;34195:55;;34246:1;34243;34236:12;34195:55;34275:2;34269:9;34298:60;34314:43;34354:2;34314:43;:::i;34298:60::-;34392:15;;;34474:1;34470:10;;;;34462:19;;34458:28;;;34423:12;;;;34498:19;;;34495:39;;;34530:1;34527;34520:12;34495:39;34562:2;34558;34554:11;34574:357;34590:6;34585:3;34582:15;34574:357;;;34669:3;34663:10;34705:2;34692:11;34689:19;34686:109;;;34749:1;34778:2;34774;34767:14;34686:109;34820:68;34880:7;34875:2;34861:11;34857:2;34853:20;34849:29;34820:68;:::i;:::-;34808:81;;-1:-1:-1;34909:12:1;;;;34607;;34574:357;;;-1:-1:-1;34950:5:1;33827:1134;-1:-1:-1;;;;;;;;33827:1134:1:o;35804:184::-;35874:6;35927:2;35915:9;35906:7;35902:23;35898:32;35895:52;;;35943:1;35940;35933:12;35895:52;-1:-1:-1;35966:16:1;;35804:184;-1:-1:-1;35804:184:1:o;37172:204::-;37210:3;37246:4;37243:1;37239:12;37278:4;37275:1;37271:12;37313:3;37307:4;37303:14;37298:3;37295:23;37292:49;;;37321:18;;:::i;:::-;37357:13;;37172:204;-1:-1:-1;;;37172:204:1:o;38966:125::-;39006:4;39034:1;39031;39028:8;39025:34;;;39039:18;;:::i;:::-;-1:-1:-1;39076:9:1;;38966:125::o;39450:414::-;39652:2;39634:21;;;39691:2;39671:18;;;39664:30;39730:34;39725:2;39710:18;;39703:62;-1:-1:-1;;;39796:2:1;39781:18;;39774:48;39854:3;39839:19;;39450:414::o;39869:127::-;39930:10;39925:3;39921:20;39918:1;39911:31;39961:4;39958:1;39951:15;39985:4;39982:1;39975:15;40001:120;40041:1;40067;40057:35;;40072:18;;:::i;:::-;-1:-1:-1;40106:9:1;;40001:120::o;40126:112::-;40158:1;40184;40174:35;;40189:18;;:::i;:::-;-1:-1:-1;40223:9:1;;40126:112::o;40243:500::-;-1:-1:-1;;;;;40512:15:1;;;40494:34;;40564:15;;40559:2;40544:18;;40537:43;40611:2;40596:18;;40589:34;;;40659:3;40654:2;40639:18;;40632:31;;;40437:4;;40680:57;;40717:19;;40709:6;40680:57;:::i;:::-;40672:65;40243:500;-1:-1:-1;;;;;;40243:500:1:o;40748:249::-;40817:6;40870:2;40858:9;40849:7;40845:23;40841:32;40838:52;;;40886:1;40883;40876:12;40838:52;40918:9;40912:16;40937:30;40961:5;40937:30;:::i;41002:127::-;41063:10;41058:3;41054:20;41051:1;41044:31;41094:4;41091:1;41084:15;41118:4;41115:1;41108:15

Swarm Source

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