ETH Price: $2,611.07 (+0.42%)
Gas: 2 Gwei

Token

ion Islands (IONISLAND)
 

Overview

Max Total Supply

43 IONISLAND

Holders

14

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
wock.evilempire.eth
Balance
1 IONISLAND
0x09871e0C8fe10476f496163CD1415C48cD971e53
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
ionIslands

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: UNLICENSED
//www.ionislands.org
// File: @openzeppelin/contracts/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/token/ERC721/IERC721.sol

/**
 * @dev Required interface of an ERC721 compliant contract.https://bafybeihtl7sst4jza7r3myipylg5z5ywktt2zritdqnvxbqrvaw5qpvkmu.ipfs.infura-ipfs.io/0.png
 */
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/IERC721Receiver.sol

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: contracts/ionIslands.sol

contract ionIslands is ERC721, Ownable, Pausable {

    uint256 public constant MAX_PER_CALL = 20;
    uint256 public constant MAX_SUPPLY = 1500;
    uint256 public constant NFT_PRICE = 0.070e18;

    string internal baseURI;

    uint256 public totalSupply;

    constructor() ERC721("ion Islands", "IONISLAND") {
        _pause();
    }

    function mint(uint256 amount) external payable whenNotPaused {
        require(amount <= MAX_PER_CALL, "Amount exceeds max per tx");

        uint256 newSupply = totalSupply + amount;

        require(newSupply <= MAX_SUPPLY, "Amount exceeds max supply");
        require(msg.value == NFT_PRICE * amount, "Wrong eth amount");

        for (uint256 i = 0; i < amount; i++) {
            _mint(msg.sender, totalSupply + i);
        }

        totalSupply = newSupply;
    }

    function mintOwner(uint256 amount) external onlyOwner {
        uint256 newSupply = totalSupply + amount;
        require(newSupply <= MAX_SUPPLY, "Amount exceeds max supply");

        for (uint256 i = 0; i < amount; i++) {
            _mint(msg.sender, totalSupply + i);
        }

        totalSupply = newSupply;
    }

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

    function unpause() external onlyOwner {
        _unpause();
    }

    function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_PER_CALL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600b81526020017f696f6e2049736c616e64730000000000000000000000000000000000000000008152506040518060400160405280600981526020017f494f4e49534c414e440000000000000000000000000000000000000000000000815250816000908051906020019062000096929190620002a0565b508060019080519060200190620000af929190620002a0565b505050620000d2620000c66200010360201b60201c565b6200010b60201b60201c565b6000600660146101000a81548160ff021916908315150217905550620000fd620001d160201b60201c565b6200049a565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620001e16200028960201b60201c565b1562000224576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200021b90620003a5565b60405180910390fd5b6001600660146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620002706200010360201b60201c565b6040516200027f919062000388565b60405180910390a1565b6000600660149054906101000a900460ff16905090565b828054620002ae906200040c565b90600052602060002090601f016020900481019282620002d257600085556200031e565b82601f10620002ed57805160ff19168380011785556200031e565b828001600101855582156200031e579182015b828111156200031d57825182559160200191906001019062000300565b5b5090506200032d919062000331565b5090565b5b808211156200034c57600081600090555060010162000332565b5090565b6200035b81620003d8565b82525050565b600062000370601083620003c7565b91506200037d8262000471565b602082019050919050565b60006020820190506200039f600083018462000350565b92915050565b60006020820190508181036000830152620003c08162000361565b9050919050565b600082825260208201905092915050565b6000620003e582620003ec565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200042557607f821691505b602082108114156200043c576200043b62000442565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6136a280620004aa6000396000f3fe6080604052600436106101815760003560e01c80636352211e116100d1578063a0712d681161008a578063c87b56dd11610064578063c87b56dd14610527578063e985e9c514610564578063ea156a9b146105a1578063f2fde38b146105cc57610181565b8063a0712d68146104b9578063a22cb465146104d5578063b88d4fde146104fe57610181565b80636352211e146103a7578063676dd563146103e457806370a082311461040f578063715018a61461044c5780638da5cb5b1461046357806395d89b411461048e57610181565b806332cb6b0c1161013e5780633f4ba83a116101185780633f4ba83a1461031357806342842e0e1461032a57806355f804b3146103535780635c975abb1461037c57610181565b806332cb6b0c146102a857806333f88d22146102d35780633ccfd60b146102fc57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd1461025457806323b872dd1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a891906124be565b6105f5565b6040516101ba91906129b4565b60405180910390f35b3480156101cf57600080fd5b506101d86106d7565b6040516101e591906129cf565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612551565b610769565b604051610222919061294d565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d9190612482565b6107ee565b005b34801561026057600080fd5b50610269610906565b6040516102769190612c91565b60405180910390f35b34801561028b57600080fd5b506102a660048036038101906102a1919061237c565b61090c565b005b3480156102b457600080fd5b506102bd61096c565b6040516102ca9190612c91565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f59190612551565b610972565b005b34801561030857600080fd5b50610311610a86565b005b34801561031f57600080fd5b50610328610b4b565b005b34801561033657600080fd5b50610351600480360381019061034c919061237c565b610bd1565b005b34801561035f57600080fd5b5061037a60048036038101906103759190612510565b610bf1565b005b34801561038857600080fd5b50610391610c87565b60405161039e91906129b4565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c99190612551565b610c9e565b6040516103db919061294d565b60405180910390f35b3480156103f057600080fd5b506103f9610d50565b6040516104069190612c91565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190612317565b610d5b565b6040516104439190612c91565b60405180910390f35b34801561045857600080fd5b50610461610e13565b005b34801561046f57600080fd5b50610478610e9b565b604051610485919061294d565b60405180910390f35b34801561049a57600080fd5b506104a3610ec5565b6040516104b091906129cf565b60405180910390f35b6104d360048036038101906104ce9190612551565b610f57565b005b3480156104e157600080fd5b506104fc60048036038101906104f79190612446565b6110cf565b005b34801561050a57600080fd5b50610525600480360381019061052091906123cb565b611250565b005b34801561053357600080fd5b5061054e60048036038101906105499190612551565b6112b2565b60405161055b91906129cf565b60405180910390f35b34801561057057600080fd5b5061058b60048036038101906105869190612340565b611359565b60405161059891906129b4565b60405180910390f35b3480156105ad57600080fd5b506105b66113ed565b6040516105c39190612c91565b60405180910390f35b3480156105d857600080fd5b506105f360048036038101906105ee9190612317565b6113f2565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106c057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106d057506106cf826114ea565b5b9050919050565b6060600080546106e690612f41565b80601f016020809104026020016040519081016040528092919081815260200182805461071290612f41565b801561075f5780601f106107345761010080835404028352916020019161075f565b820191906000526020600020905b81548152906001019060200180831161074257829003601f168201915b5050505050905090565b600061077482611554565b6107b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107aa90612bb1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107f982610c9e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561086a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086190612c31565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108896115c0565b73ffffffffffffffffffffffffffffffffffffffff1614806108b857506108b7816108b26115c0565b611359565b5b6108f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ee90612b31565b60405180910390fd5b61090183836115c8565b505050565b60085481565b61091d6109176115c0565b82611681565b61095c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095390612c51565b60405180910390fd5b61096783838361175f565b505050565b6105dc81565b61097a6115c0565b73ffffffffffffffffffffffffffffffffffffffff16610998610e9b565b73ffffffffffffffffffffffffffffffffffffffff16146109ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e590612bd1565b60405180910390fd5b6000816008546109fe9190612d76565b90506105dc811115610a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3c90612c71565b60405180910390fd5b60005b82811015610a7a57610a673382600854610a629190612d76565b6119bb565b8080610a7290612fa4565b915050610a48565b50806008819055505050565b610a8e6115c0565b73ffffffffffffffffffffffffffffffffffffffff16610aac610e9b565b73ffffffffffffffffffffffffffffffffffffffff1614610b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af990612bd1565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b48573d6000803e3d6000fd5b50565b610b536115c0565b73ffffffffffffffffffffffffffffffffffffffff16610b71610e9b565b73ffffffffffffffffffffffffffffffffffffffff1614610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe90612bd1565b60405180910390fd5b610bcf611b89565b565b610bec83838360405180602001604052806000815250611250565b505050565b610bf96115c0565b73ffffffffffffffffffffffffffffffffffffffff16610c17610e9b565b73ffffffffffffffffffffffffffffffffffffffff1614610c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6490612bd1565b60405180910390fd5b8060079080519060200190610c8392919061213b565b5050565b6000600660149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3e90612b71565b60405180910390fd5b80915050919050565b66f8b0a10e47000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc390612b51565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e1b6115c0565b73ffffffffffffffffffffffffffffffffffffffff16610e39610e9b565b73ffffffffffffffffffffffffffffffffffffffff1614610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690612bd1565b60405180910390fd5b610e996000611c2b565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610ed490612f41565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0090612f41565b8015610f4d5780601f10610f2257610100808354040283529160200191610f4d565b820191906000526020600020905b815481529060010190602001808311610f3057829003601f168201915b5050505050905090565b610f5f610c87565b15610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9690612b11565b60405180910390fd5b6014811115610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda90612ad1565b60405180910390fd5b600081600854610ff39190612d76565b90506105dc81111561103a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103190612c71565b60405180910390fd5b8166f8b0a10e47000061104d9190612dfd565b341461108e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108590612a71565b60405180910390fd5b60005b828110156110c3576110b033826008546110ab9190612d76565b6119bb565b80806110bb90612fa4565b915050611091565b50806008819055505050565b6110d76115c0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c90612ab1565b60405180910390fd5b80600560006111526115c0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111ff6115c0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161124491906129b4565b60405180910390a35050565b61126161125b6115c0565b83611681565b6112a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129790612c51565b60405180910390fd5b6112ac84848484611cf1565b50505050565b60606112bd82611554565b6112fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f390612c11565b60405180910390fd5b6000611306611d4d565b905060008151116113265760405180602001604052806000815250611351565b8061133084611ddf565b604051602001611341929190612929565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601481565b6113fa6115c0565b73ffffffffffffffffffffffffffffffffffffffff16611418610e9b565b73ffffffffffffffffffffffffffffffffffffffff161461146e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146590612bd1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d590612a31565b60405180910390fd5b6114e781611c2b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661163b83610c9e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061168c82611554565b6116cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c290612af1565b60405180910390fd5b60006116d683610c9e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061174557508373ffffffffffffffffffffffffffffffffffffffff1661172d84610769565b73ffffffffffffffffffffffffffffffffffffffff16145b8061175657506117558185611359565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661177f82610c9e565b73ffffffffffffffffffffffffffffffffffffffff16146117d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cc90612bf1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183c90612a91565b60405180910390fd5b611850838383611f8c565b61185b6000826115c8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118ab9190612e57565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119029190612d76565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2290612b91565b60405180910390fd5b611a3481611554565b15611a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6b90612a51565b60405180910390fd5b611a8060008383611f8c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ad09190612d76565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b611b91610c87565b611bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc7906129f1565b60405180910390fd5b6000600660146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611c146115c0565b604051611c21919061294d565b60405180910390a1565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611cfc84848461175f565b611d0884848484611f91565b611d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3e90612a11565b60405180910390fd5b50505050565b606060078054611d5c90612f41565b80601f0160208091040260200160405190810160405280929190818152602001828054611d8890612f41565b8015611dd55780601f10611daa57610100808354040283529160200191611dd5565b820191906000526020600020905b815481529060010190602001808311611db857829003601f168201915b5050505050905090565b60606000821415611e27576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f87565b600082905060005b60008214611e59578080611e4290612fa4565b915050600a82611e529190612dcc565b9150611e2f565b60008167ffffffffffffffff811115611e9b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ecd5781602001600182028036833780820191505090505b5090505b60008514611f8057600182611ee69190612e57565b9150600a85611ef59190612fed565b6030611f019190612d76565b60f81b818381518110611f3d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f799190612dcc565b9450611ed1565b8093505050505b919050565b505050565b6000611fb28473ffffffffffffffffffffffffffffffffffffffff16612128565b1561211b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fdb6115c0565b8786866040518563ffffffff1660e01b8152600401611ffd9493929190612968565b602060405180830381600087803b15801561201757600080fd5b505af192505050801561204857506040513d601f19601f8201168201806040525081019061204591906124e7565b60015b6120cb573d8060008114612078576040519150601f19603f3d011682016040523d82523d6000602084013e61207d565b606091505b506000815114156120c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ba90612a11565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612120565b600190505b949350505050565b600080823b905060008111915050919050565b82805461214790612f41565b90600052602060002090601f01602090048101928261216957600085556121b0565b82601f1061218257805160ff19168380011785556121b0565b828001600101855582156121b0579182015b828111156121af578251825591602001919060010190612194565b5b5090506121bd91906121c1565b5090565b5b808211156121da5760008160009055506001016121c2565b5090565b60006121f16121ec84612cd1565b612cac565b90508281526020810184848401111561220957600080fd5b612214848285612eff565b509392505050565b600061222f61222a84612d02565b612cac565b90508281526020810184848401111561224757600080fd5b612252848285612eff565b509392505050565b60008135905061226981613610565b92915050565b60008135905061227e81613627565b92915050565b6000813590506122938161363e565b92915050565b6000815190506122a88161363e565b92915050565b600082601f8301126122bf57600080fd5b81356122cf8482602086016121de565b91505092915050565b600082601f8301126122e957600080fd5b81356122f984826020860161221c565b91505092915050565b60008135905061231181613655565b92915050565b60006020828403121561232957600080fd5b60006123378482850161225a565b91505092915050565b6000806040838503121561235357600080fd5b60006123618582860161225a565b92505060206123728582860161225a565b9150509250929050565b60008060006060848603121561239157600080fd5b600061239f8682870161225a565b93505060206123b08682870161225a565b92505060406123c186828701612302565b9150509250925092565b600080600080608085870312156123e157600080fd5b60006123ef8782880161225a565b94505060206124008782880161225a565b935050604061241187828801612302565b925050606085013567ffffffffffffffff81111561242e57600080fd5b61243a878288016122ae565b91505092959194509250565b6000806040838503121561245957600080fd5b60006124678582860161225a565b92505060206124788582860161226f565b9150509250929050565b6000806040838503121561249557600080fd5b60006124a38582860161225a565b92505060206124b485828601612302565b9150509250929050565b6000602082840312156124d057600080fd5b60006124de84828501612284565b91505092915050565b6000602082840312156124f957600080fd5b600061250784828501612299565b91505092915050565b60006020828403121561252257600080fd5b600082013567ffffffffffffffff81111561253c57600080fd5b612548848285016122d8565b91505092915050565b60006020828403121561256357600080fd5b600061257184828501612302565b91505092915050565b61258381612e8b565b82525050565b61259281612e9d565b82525050565b60006125a382612d33565b6125ad8185612d49565b93506125bd818560208601612f0e565b6125c6816130da565b840191505092915050565b60006125dc82612d3e565b6125e68185612d5a565b93506125f6818560208601612f0e565b6125ff816130da565b840191505092915050565b600061261582612d3e565b61261f8185612d6b565b935061262f818560208601612f0e565b80840191505092915050565b6000612648601483612d5a565b9150612653826130eb565b602082019050919050565b600061266b603283612d5a565b915061267682613114565b604082019050919050565b600061268e602683612d5a565b915061269982613163565b604082019050919050565b60006126b1601c83612d5a565b91506126bc826131b2565b602082019050919050565b60006126d4601083612d5a565b91506126df826131db565b602082019050919050565b60006126f7602483612d5a565b915061270282613204565b604082019050919050565b600061271a601983612d5a565b915061272582613253565b602082019050919050565b600061273d601983612d5a565b91506127488261327c565b602082019050919050565b6000612760602c83612d5a565b915061276b826132a5565b604082019050919050565b6000612783601083612d5a565b915061278e826132f4565b602082019050919050565b60006127a6603883612d5a565b91506127b18261331d565b604082019050919050565b60006127c9602a83612d5a565b91506127d48261336c565b604082019050919050565b60006127ec602983612d5a565b91506127f7826133bb565b604082019050919050565b600061280f602083612d5a565b915061281a8261340a565b602082019050919050565b6000612832602c83612d5a565b915061283d82613433565b604082019050919050565b6000612855602083612d5a565b915061286082613482565b602082019050919050565b6000612878602983612d5a565b9150612883826134ab565b604082019050919050565b600061289b602f83612d5a565b91506128a6826134fa565b604082019050919050565b60006128be602183612d5a565b91506128c982613549565b604082019050919050565b60006128e1603183612d5a565b91506128ec82613598565b604082019050919050565b6000612904601983612d5a565b915061290f826135e7565b602082019050919050565b61292381612ef5565b82525050565b6000612935828561260a565b9150612941828461260a565b91508190509392505050565b6000602082019050612962600083018461257a565b92915050565b600060808201905061297d600083018761257a565b61298a602083018661257a565b612997604083018561291a565b81810360608301526129a98184612598565b905095945050505050565b60006020820190506129c96000830184612589565b92915050565b600060208201905081810360008301526129e981846125d1565b905092915050565b60006020820190508181036000830152612a0a8161263b565b9050919050565b60006020820190508181036000830152612a2a8161265e565b9050919050565b60006020820190508181036000830152612a4a81612681565b9050919050565b60006020820190508181036000830152612a6a816126a4565b9050919050565b60006020820190508181036000830152612a8a816126c7565b9050919050565b60006020820190508181036000830152612aaa816126ea565b9050919050565b60006020820190508181036000830152612aca8161270d565b9050919050565b60006020820190508181036000830152612aea81612730565b9050919050565b60006020820190508181036000830152612b0a81612753565b9050919050565b60006020820190508181036000830152612b2a81612776565b9050919050565b60006020820190508181036000830152612b4a81612799565b9050919050565b60006020820190508181036000830152612b6a816127bc565b9050919050565b60006020820190508181036000830152612b8a816127df565b9050919050565b60006020820190508181036000830152612baa81612802565b9050919050565b60006020820190508181036000830152612bca81612825565b9050919050565b60006020820190508181036000830152612bea81612848565b9050919050565b60006020820190508181036000830152612c0a8161286b565b9050919050565b60006020820190508181036000830152612c2a8161288e565b9050919050565b60006020820190508181036000830152612c4a816128b1565b9050919050565b60006020820190508181036000830152612c6a816128d4565b9050919050565b60006020820190508181036000830152612c8a816128f7565b9050919050565b6000602082019050612ca6600083018461291a565b92915050565b6000612cb6612cc7565b9050612cc28282612f73565b919050565b6000604051905090565b600067ffffffffffffffff821115612cec57612ceb6130ab565b5b612cf5826130da565b9050602081019050919050565b600067ffffffffffffffff821115612d1d57612d1c6130ab565b5b612d26826130da565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d8182612ef5565b9150612d8c83612ef5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612dc157612dc061301e565b5b828201905092915050565b6000612dd782612ef5565b9150612de283612ef5565b925082612df257612df161304d565b5b828204905092915050565b6000612e0882612ef5565b9150612e1383612ef5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e4c57612e4b61301e565b5b828202905092915050565b6000612e6282612ef5565b9150612e6d83612ef5565b925082821015612e8057612e7f61301e565b5b828203905092915050565b6000612e9682612ed5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f2c578082015181840152602081019050612f11565b83811115612f3b576000848401525b50505050565b60006002820490506001821680612f5957607f821691505b60208210811415612f6d57612f6c61307c565b5b50919050565b612f7c826130da565b810181811067ffffffffffffffff82111715612f9b57612f9a6130ab565b5b80604052505050565b6000612faf82612ef5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612fe257612fe161301e565b5b600182019050919050565b6000612ff882612ef5565b915061300383612ef5565b9250826130135761301261304d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f57726f6e672065746820616d6f756e7400000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416d6f756e742065786365656473206d61782070657220747800000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f416d6f756e742065786365656473206d617820737570706c7900000000000000600082015250565b61361981612e8b565b811461362457600080fd5b50565b61363081612e9d565b811461363b57600080fd5b50565b61364781612ea9565b811461365257600080fd5b50565b61365e81612ef5565b811461366957600080fd5b5056fea2646970667358221220ca34fdb56046c740b9f2d5e7d49df5058d8dfe7ce154457006ac2a028535d3b064736f6c63430008040033

Deployed Bytecode

0x6080604052600436106101815760003560e01c80636352211e116100d1578063a0712d681161008a578063c87b56dd11610064578063c87b56dd14610527578063e985e9c514610564578063ea156a9b146105a1578063f2fde38b146105cc57610181565b8063a0712d68146104b9578063a22cb465146104d5578063b88d4fde146104fe57610181565b80636352211e146103a7578063676dd563146103e457806370a082311461040f578063715018a61461044c5780638da5cb5b1461046357806395d89b411461048e57610181565b806332cb6b0c1161013e5780633f4ba83a116101185780633f4ba83a1461031357806342842e0e1461032a57806355f804b3146103535780635c975abb1461037c57610181565b806332cb6b0c146102a857806333f88d22146102d35780633ccfd60b146102fc57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd1461025457806323b872dd1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a891906124be565b6105f5565b6040516101ba91906129b4565b60405180910390f35b3480156101cf57600080fd5b506101d86106d7565b6040516101e591906129cf565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612551565b610769565b604051610222919061294d565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d9190612482565b6107ee565b005b34801561026057600080fd5b50610269610906565b6040516102769190612c91565b60405180910390f35b34801561028b57600080fd5b506102a660048036038101906102a1919061237c565b61090c565b005b3480156102b457600080fd5b506102bd61096c565b6040516102ca9190612c91565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f59190612551565b610972565b005b34801561030857600080fd5b50610311610a86565b005b34801561031f57600080fd5b50610328610b4b565b005b34801561033657600080fd5b50610351600480360381019061034c919061237c565b610bd1565b005b34801561035f57600080fd5b5061037a60048036038101906103759190612510565b610bf1565b005b34801561038857600080fd5b50610391610c87565b60405161039e91906129b4565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c99190612551565b610c9e565b6040516103db919061294d565b60405180910390f35b3480156103f057600080fd5b506103f9610d50565b6040516104069190612c91565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190612317565b610d5b565b6040516104439190612c91565b60405180910390f35b34801561045857600080fd5b50610461610e13565b005b34801561046f57600080fd5b50610478610e9b565b604051610485919061294d565b60405180910390f35b34801561049a57600080fd5b506104a3610ec5565b6040516104b091906129cf565b60405180910390f35b6104d360048036038101906104ce9190612551565b610f57565b005b3480156104e157600080fd5b506104fc60048036038101906104f79190612446565b6110cf565b005b34801561050a57600080fd5b50610525600480360381019061052091906123cb565b611250565b005b34801561053357600080fd5b5061054e60048036038101906105499190612551565b6112b2565b60405161055b91906129cf565b60405180910390f35b34801561057057600080fd5b5061058b60048036038101906105869190612340565b611359565b60405161059891906129b4565b60405180910390f35b3480156105ad57600080fd5b506105b66113ed565b6040516105c39190612c91565b60405180910390f35b3480156105d857600080fd5b506105f360048036038101906105ee9190612317565b6113f2565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106c057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106d057506106cf826114ea565b5b9050919050565b6060600080546106e690612f41565b80601f016020809104026020016040519081016040528092919081815260200182805461071290612f41565b801561075f5780601f106107345761010080835404028352916020019161075f565b820191906000526020600020905b81548152906001019060200180831161074257829003601f168201915b5050505050905090565b600061077482611554565b6107b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107aa90612bb1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107f982610c9e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561086a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086190612c31565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108896115c0565b73ffffffffffffffffffffffffffffffffffffffff1614806108b857506108b7816108b26115c0565b611359565b5b6108f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ee90612b31565b60405180910390fd5b61090183836115c8565b505050565b60085481565b61091d6109176115c0565b82611681565b61095c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095390612c51565b60405180910390fd5b61096783838361175f565b505050565b6105dc81565b61097a6115c0565b73ffffffffffffffffffffffffffffffffffffffff16610998610e9b565b73ffffffffffffffffffffffffffffffffffffffff16146109ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e590612bd1565b60405180910390fd5b6000816008546109fe9190612d76565b90506105dc811115610a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3c90612c71565b60405180910390fd5b60005b82811015610a7a57610a673382600854610a629190612d76565b6119bb565b8080610a7290612fa4565b915050610a48565b50806008819055505050565b610a8e6115c0565b73ffffffffffffffffffffffffffffffffffffffff16610aac610e9b565b73ffffffffffffffffffffffffffffffffffffffff1614610b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af990612bd1565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b48573d6000803e3d6000fd5b50565b610b536115c0565b73ffffffffffffffffffffffffffffffffffffffff16610b71610e9b565b73ffffffffffffffffffffffffffffffffffffffff1614610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe90612bd1565b60405180910390fd5b610bcf611b89565b565b610bec83838360405180602001604052806000815250611250565b505050565b610bf96115c0565b73ffffffffffffffffffffffffffffffffffffffff16610c17610e9b565b73ffffffffffffffffffffffffffffffffffffffff1614610c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6490612bd1565b60405180910390fd5b8060079080519060200190610c8392919061213b565b5050565b6000600660149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3e90612b71565b60405180910390fd5b80915050919050565b66f8b0a10e47000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc390612b51565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e1b6115c0565b73ffffffffffffffffffffffffffffffffffffffff16610e39610e9b565b73ffffffffffffffffffffffffffffffffffffffff1614610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690612bd1565b60405180910390fd5b610e996000611c2b565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610ed490612f41565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0090612f41565b8015610f4d5780601f10610f2257610100808354040283529160200191610f4d565b820191906000526020600020905b815481529060010190602001808311610f3057829003601f168201915b5050505050905090565b610f5f610c87565b15610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9690612b11565b60405180910390fd5b6014811115610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda90612ad1565b60405180910390fd5b600081600854610ff39190612d76565b90506105dc81111561103a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103190612c71565b60405180910390fd5b8166f8b0a10e47000061104d9190612dfd565b341461108e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108590612a71565b60405180910390fd5b60005b828110156110c3576110b033826008546110ab9190612d76565b6119bb565b80806110bb90612fa4565b915050611091565b50806008819055505050565b6110d76115c0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c90612ab1565b60405180910390fd5b80600560006111526115c0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111ff6115c0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161124491906129b4565b60405180910390a35050565b61126161125b6115c0565b83611681565b6112a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129790612c51565b60405180910390fd5b6112ac84848484611cf1565b50505050565b60606112bd82611554565b6112fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f390612c11565b60405180910390fd5b6000611306611d4d565b905060008151116113265760405180602001604052806000815250611351565b8061133084611ddf565b604051602001611341929190612929565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601481565b6113fa6115c0565b73ffffffffffffffffffffffffffffffffffffffff16611418610e9b565b73ffffffffffffffffffffffffffffffffffffffff161461146e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146590612bd1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d590612a31565b60405180910390fd5b6114e781611c2b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661163b83610c9e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061168c82611554565b6116cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c290612af1565b60405180910390fd5b60006116d683610c9e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061174557508373ffffffffffffffffffffffffffffffffffffffff1661172d84610769565b73ffffffffffffffffffffffffffffffffffffffff16145b8061175657506117558185611359565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661177f82610c9e565b73ffffffffffffffffffffffffffffffffffffffff16146117d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cc90612bf1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183c90612a91565b60405180910390fd5b611850838383611f8c565b61185b6000826115c8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118ab9190612e57565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119029190612d76565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2290612b91565b60405180910390fd5b611a3481611554565b15611a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6b90612a51565b60405180910390fd5b611a8060008383611f8c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ad09190612d76565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b611b91610c87565b611bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc7906129f1565b60405180910390fd5b6000600660146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611c146115c0565b604051611c21919061294d565b60405180910390a1565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611cfc84848461175f565b611d0884848484611f91565b611d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3e90612a11565b60405180910390fd5b50505050565b606060078054611d5c90612f41565b80601f0160208091040260200160405190810160405280929190818152602001828054611d8890612f41565b8015611dd55780601f10611daa57610100808354040283529160200191611dd5565b820191906000526020600020905b815481529060010190602001808311611db857829003601f168201915b5050505050905090565b60606000821415611e27576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f87565b600082905060005b60008214611e59578080611e4290612fa4565b915050600a82611e529190612dcc565b9150611e2f565b60008167ffffffffffffffff811115611e9b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ecd5781602001600182028036833780820191505090505b5090505b60008514611f8057600182611ee69190612e57565b9150600a85611ef59190612fed565b6030611f019190612d76565b60f81b818381518110611f3d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f799190612dcc565b9450611ed1565b8093505050505b919050565b505050565b6000611fb28473ffffffffffffffffffffffffffffffffffffffff16612128565b1561211b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fdb6115c0565b8786866040518563ffffffff1660e01b8152600401611ffd9493929190612968565b602060405180830381600087803b15801561201757600080fd5b505af192505050801561204857506040513d601f19601f8201168201806040525081019061204591906124e7565b60015b6120cb573d8060008114612078576040519150601f19603f3d011682016040523d82523d6000602084013e61207d565b606091505b506000815114156120c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ba90612a11565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612120565b600190505b949350505050565b600080823b905060008111915050919050565b82805461214790612f41565b90600052602060002090601f01602090048101928261216957600085556121b0565b82601f1061218257805160ff19168380011785556121b0565b828001600101855582156121b0579182015b828111156121af578251825591602001919060010190612194565b5b5090506121bd91906121c1565b5090565b5b808211156121da5760008160009055506001016121c2565b5090565b60006121f16121ec84612cd1565b612cac565b90508281526020810184848401111561220957600080fd5b612214848285612eff565b509392505050565b600061222f61222a84612d02565b612cac565b90508281526020810184848401111561224757600080fd5b612252848285612eff565b509392505050565b60008135905061226981613610565b92915050565b60008135905061227e81613627565b92915050565b6000813590506122938161363e565b92915050565b6000815190506122a88161363e565b92915050565b600082601f8301126122bf57600080fd5b81356122cf8482602086016121de565b91505092915050565b600082601f8301126122e957600080fd5b81356122f984826020860161221c565b91505092915050565b60008135905061231181613655565b92915050565b60006020828403121561232957600080fd5b60006123378482850161225a565b91505092915050565b6000806040838503121561235357600080fd5b60006123618582860161225a565b92505060206123728582860161225a565b9150509250929050565b60008060006060848603121561239157600080fd5b600061239f8682870161225a565b93505060206123b08682870161225a565b92505060406123c186828701612302565b9150509250925092565b600080600080608085870312156123e157600080fd5b60006123ef8782880161225a565b94505060206124008782880161225a565b935050604061241187828801612302565b925050606085013567ffffffffffffffff81111561242e57600080fd5b61243a878288016122ae565b91505092959194509250565b6000806040838503121561245957600080fd5b60006124678582860161225a565b92505060206124788582860161226f565b9150509250929050565b6000806040838503121561249557600080fd5b60006124a38582860161225a565b92505060206124b485828601612302565b9150509250929050565b6000602082840312156124d057600080fd5b60006124de84828501612284565b91505092915050565b6000602082840312156124f957600080fd5b600061250784828501612299565b91505092915050565b60006020828403121561252257600080fd5b600082013567ffffffffffffffff81111561253c57600080fd5b612548848285016122d8565b91505092915050565b60006020828403121561256357600080fd5b600061257184828501612302565b91505092915050565b61258381612e8b565b82525050565b61259281612e9d565b82525050565b60006125a382612d33565b6125ad8185612d49565b93506125bd818560208601612f0e565b6125c6816130da565b840191505092915050565b60006125dc82612d3e565b6125e68185612d5a565b93506125f6818560208601612f0e565b6125ff816130da565b840191505092915050565b600061261582612d3e565b61261f8185612d6b565b935061262f818560208601612f0e565b80840191505092915050565b6000612648601483612d5a565b9150612653826130eb565b602082019050919050565b600061266b603283612d5a565b915061267682613114565b604082019050919050565b600061268e602683612d5a565b915061269982613163565b604082019050919050565b60006126b1601c83612d5a565b91506126bc826131b2565b602082019050919050565b60006126d4601083612d5a565b91506126df826131db565b602082019050919050565b60006126f7602483612d5a565b915061270282613204565b604082019050919050565b600061271a601983612d5a565b915061272582613253565b602082019050919050565b600061273d601983612d5a565b91506127488261327c565b602082019050919050565b6000612760602c83612d5a565b915061276b826132a5565b604082019050919050565b6000612783601083612d5a565b915061278e826132f4565b602082019050919050565b60006127a6603883612d5a565b91506127b18261331d565b604082019050919050565b60006127c9602a83612d5a565b91506127d48261336c565b604082019050919050565b60006127ec602983612d5a565b91506127f7826133bb565b604082019050919050565b600061280f602083612d5a565b915061281a8261340a565b602082019050919050565b6000612832602c83612d5a565b915061283d82613433565b604082019050919050565b6000612855602083612d5a565b915061286082613482565b602082019050919050565b6000612878602983612d5a565b9150612883826134ab565b604082019050919050565b600061289b602f83612d5a565b91506128a6826134fa565b604082019050919050565b60006128be602183612d5a565b91506128c982613549565b604082019050919050565b60006128e1603183612d5a565b91506128ec82613598565b604082019050919050565b6000612904601983612d5a565b915061290f826135e7565b602082019050919050565b61292381612ef5565b82525050565b6000612935828561260a565b9150612941828461260a565b91508190509392505050565b6000602082019050612962600083018461257a565b92915050565b600060808201905061297d600083018761257a565b61298a602083018661257a565b612997604083018561291a565b81810360608301526129a98184612598565b905095945050505050565b60006020820190506129c96000830184612589565b92915050565b600060208201905081810360008301526129e981846125d1565b905092915050565b60006020820190508181036000830152612a0a8161263b565b9050919050565b60006020820190508181036000830152612a2a8161265e565b9050919050565b60006020820190508181036000830152612a4a81612681565b9050919050565b60006020820190508181036000830152612a6a816126a4565b9050919050565b60006020820190508181036000830152612a8a816126c7565b9050919050565b60006020820190508181036000830152612aaa816126ea565b9050919050565b60006020820190508181036000830152612aca8161270d565b9050919050565b60006020820190508181036000830152612aea81612730565b9050919050565b60006020820190508181036000830152612b0a81612753565b9050919050565b60006020820190508181036000830152612b2a81612776565b9050919050565b60006020820190508181036000830152612b4a81612799565b9050919050565b60006020820190508181036000830152612b6a816127bc565b9050919050565b60006020820190508181036000830152612b8a816127df565b9050919050565b60006020820190508181036000830152612baa81612802565b9050919050565b60006020820190508181036000830152612bca81612825565b9050919050565b60006020820190508181036000830152612bea81612848565b9050919050565b60006020820190508181036000830152612c0a8161286b565b9050919050565b60006020820190508181036000830152612c2a8161288e565b9050919050565b60006020820190508181036000830152612c4a816128b1565b9050919050565b60006020820190508181036000830152612c6a816128d4565b9050919050565b60006020820190508181036000830152612c8a816128f7565b9050919050565b6000602082019050612ca6600083018461291a565b92915050565b6000612cb6612cc7565b9050612cc28282612f73565b919050565b6000604051905090565b600067ffffffffffffffff821115612cec57612ceb6130ab565b5b612cf5826130da565b9050602081019050919050565b600067ffffffffffffffff821115612d1d57612d1c6130ab565b5b612d26826130da565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d8182612ef5565b9150612d8c83612ef5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612dc157612dc061301e565b5b828201905092915050565b6000612dd782612ef5565b9150612de283612ef5565b925082612df257612df161304d565b5b828204905092915050565b6000612e0882612ef5565b9150612e1383612ef5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e4c57612e4b61301e565b5b828202905092915050565b6000612e6282612ef5565b9150612e6d83612ef5565b925082821015612e8057612e7f61301e565b5b828203905092915050565b6000612e9682612ed5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f2c578082015181840152602081019050612f11565b83811115612f3b576000848401525b50505050565b60006002820490506001821680612f5957607f821691505b60208210811415612f6d57612f6c61307c565b5b50919050565b612f7c826130da565b810181811067ffffffffffffffff82111715612f9b57612f9a6130ab565b5b80604052505050565b6000612faf82612ef5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612fe257612fe161301e565b5b600182019050919050565b6000612ff882612ef5565b915061300383612ef5565b9250826130135761301261304d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f57726f6e672065746820616d6f756e7400000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416d6f756e742065786365656473206d61782070657220747800000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f416d6f756e742065786365656473206d617820737570706c7900000000000000600082015250565b61361981612e8b565b811461362457600080fd5b50565b61363081612e9d565b811461363b57600080fd5b50565b61364781612ea9565b811461365257600080fd5b50565b61365e81612ef5565b811461366957600080fd5b5056fea2646970667358221220ca34fdb56046c740b9f2d5e7d49df5058d8dfe7ce154457006ac2a028535d3b064736f6c63430008040033

Deployed Bytecode Sourcemap

37160:1581:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20528:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21473:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23032:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22555:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37399:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23922:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37266:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38010:331;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38522:109;;;;;;;;;;;;;:::i;:::-;;38447:67;;;;;;;;;;;;;:::i;:::-;;24332:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38349:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35937:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21167:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37314:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20897:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34267:94;;;;;;;;;;;;;:::i;:::-;;33616:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21642:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37518:484;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23325:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24588:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21817:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23691:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37218:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34516:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20528:305;20630:4;20682:25;20667:40;;;:11;:40;;;;:105;;;;20739:33;20724:48;;;:11;:48;;;;20667:105;:158;;;;20789:36;20813:11;20789:23;:36::i;:::-;20667:158;20647:178;;20528:305;;;:::o;21473:100::-;21527:13;21560:5;21553:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21473:100;:::o;23032:221::-;23108:7;23136:16;23144:7;23136;:16::i;:::-;23128:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23221:15;:24;23237:7;23221:24;;;;;;;;;;;;;;;;;;;;;23214:31;;23032:221;;;:::o;22555:411::-;22636:13;22652:23;22667:7;22652:14;:23::i;:::-;22636:39;;22700:5;22694:11;;:2;:11;;;;22686:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22794:5;22778:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22803:37;22820:5;22827:12;:10;:12::i;:::-;22803:16;:37::i;:::-;22778:62;22756:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;22937:21;22946:2;22950:7;22937:8;:21::i;:::-;22555:411;;;:::o;37399:26::-;;;;:::o;23922:339::-;24117:41;24136:12;:10;:12::i;:::-;24150:7;24117:18;:41::i;:::-;24109:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24225:28;24235:4;24241:2;24245:7;24225:9;:28::i;:::-;23922:339;;;:::o;37266:41::-;37303:4;37266:41;:::o;38010:331::-;33847:12;:10;:12::i;:::-;33836:23;;:7;:5;:7::i;:::-;:23;;;33828:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38075:17:::1;38109:6;38095:11;;:20;;;;:::i;:::-;38075:40;;37303:4;38134:9;:23;;38126:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;38205:9;38200:98;38224:6;38220:1;:10;38200:98;;;38252:34;38258:10;38284:1;38270:11;;:15;;;;:::i;:::-;38252:5;:34::i;:::-;38232:3;;;;;:::i;:::-;;;;38200:98;;;;38324:9;38310:11;:23;;;;33907:1;38010:331:::0;:::o;38522:109::-;33847:12;:10;:12::i;:::-;33836:23;;:7;:5;:7::i;:::-;:23;;;33828:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38580:10:::1;38572:28;;:51;38601:21;38572:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;38522:109::o:0;38447:67::-;33847:12;:10;:12::i;:::-;33836:23;;:7;:5;:7::i;:::-;:23;;;33828:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38496:10:::1;:8;:10::i;:::-;38447:67::o:0;24332:185::-;24470:39;24487:4;24493:2;24497:7;24470:39;;;;;;;;;;;;:16;:39::i;:::-;24332:185;;;:::o;38349:90::-;33847:12;:10;:12::i;:::-;33836:23;;:7;:5;:7::i;:::-;:23;;;33828:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38428:3:::1;38418:7;:13;;;;;;;;;;;;:::i;:::-;;38349:90:::0;:::o;35937:86::-;35984:4;36008:7;;;;;;;;;;;36001:14;;35937:86;:::o;21167:239::-;21239:7;21259:13;21275:7;:16;21283:7;21275:16;;;;;;;;;;;;;;;;;;;;;21259:32;;21327:1;21310:19;;:5;:19;;;;21302:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21393:5;21386:12;;;21167:239;;;:::o;37314:44::-;37350:8;37314:44;:::o;20897:208::-;20969:7;21014:1;20997:19;;:5;:19;;;;20989:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21081:9;:16;21091:5;21081:16;;;;;;;;;;;;;;;;21074:23;;20897:208;;;:::o;34267:94::-;33847:12;:10;:12::i;:::-;33836:23;;:7;:5;:7::i;:::-;:23;;;33828:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34332:21:::1;34350:1;34332:9;:21::i;:::-;34267:94::o:0;33616:87::-;33662:7;33689:6;;;;;;;;;;;33682:13;;33616:87;:::o;21642:104::-;21698:13;21731:7;21724:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21642:104;:::o;37518:484::-;36263:8;:6;:8::i;:::-;36262:9;36254:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;37257:2:::1;37598:6;:22;;37590:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;37663:17;37697:6;37683:11;;:20;;;;:::i;:::-;37663:40;;37303:4;37724:9;:23;;37716:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;37821:6;37350:8;37809:18;;;;:::i;:::-;37796:9;:31;37788:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;37866:9;37861:98;37885:6;37881:1;:10;37861:98;;;37913:34;37919:10;37945:1;37931:11;;:15;;;;:::i;:::-;37913:5;:34::i;:::-;37893:3;;;;;:::i;:::-;;;;37861:98;;;;37985:9;37971:11;:23;;;;36303:1;37518:484:::0;:::o;23325:295::-;23440:12;:10;:12::i;:::-;23428:24;;:8;:24;;;;23420:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23540:8;23495:18;:32;23514:12;:10;:12::i;:::-;23495:32;;;;;;;;;;;;;;;:42;23528:8;23495:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23593:8;23564:48;;23579:12;:10;:12::i;:::-;23564:48;;;23603:8;23564:48;;;;;;:::i;:::-;;;;;;;;23325:295;;:::o;24588:328::-;24763:41;24782:12;:10;:12::i;:::-;24796:7;24763:18;:41::i;:::-;24755:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24869:39;24883:4;24889:2;24893:7;24902:5;24869:13;:39::i;:::-;24588:328;;;;:::o;21817:334::-;21890:13;21924:16;21932:7;21924;:16::i;:::-;21916:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22005:21;22029:10;:8;:10::i;:::-;22005:34;;22081:1;22063:7;22057:21;:25;:86;;;;;;;;;;;;;;;;;22109:7;22118:18;:7;:16;:18::i;:::-;22092:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22057:86;22050:93;;;21817:334;;;:::o;23691:164::-;23788:4;23812:18;:25;23831:5;23812:25;;;;;;;;;;;;;;;:35;23838:8;23812:35;;;;;;;;;;;;;;;;;;;;;;;;;23805:42;;23691:164;;;;:::o;37218:41::-;37257:2;37218:41;:::o;34516:192::-;33847:12;:10;:12::i;:::-;33836:23;;:7;:5;:7::i;:::-;:23;;;33828:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34625:1:::1;34605:22;;:8;:22;;;;34597:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;34681:19;34691:8;34681:9;:19::i;:::-;34516:192:::0;:::o;19077:157::-;19162:4;19201:25;19186:40;;;:11;:40;;;;19179:47;;19077:157;;;:::o;26426:127::-;26491:4;26543:1;26515:30;;:7;:16;26523:7;26515:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26508:37;;26426:127;;;:::o;16059:98::-;16112:7;16139:10;16132:17;;16059:98;:::o;30408:174::-;30510:2;30483:15;:24;30499:7;30483:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30566:7;30562:2;30528:46;;30537:23;30552:7;30537:14;:23::i;:::-;30528:46;;;;;;;;;;;;30408:174;;:::o;26720:348::-;26813:4;26838:16;26846:7;26838;:16::i;:::-;26830:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26914:13;26930:23;26945:7;26930:14;:23::i;:::-;26914:39;;26983:5;26972:16;;:7;:16;;;:51;;;;27016:7;26992:31;;:20;27004:7;26992:11;:20::i;:::-;:31;;;26972:51;:87;;;;27027:32;27044:5;27051:7;27027:16;:32::i;:::-;26972:87;26964:96;;;26720:348;;;;:::o;29712:578::-;29871:4;29844:31;;:23;29859:7;29844:14;:23::i;:::-;:31;;;29836:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29954:1;29940:16;;:2;:16;;;;29932:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30010:39;30031:4;30037:2;30041:7;30010:20;:39::i;:::-;30114:29;30131:1;30135:7;30114:8;:29::i;:::-;30175:1;30156:9;:15;30166:4;30156:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30204:1;30187:9;:13;30197:2;30187:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30235:2;30216:7;:16;30224:7;30216:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30274:7;30270:2;30255:27;;30264:4;30255:27;;;;;;;;;;;;29712:578;;;:::o;28404:382::-;28498:1;28484:16;;:2;:16;;;;28476:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28557:16;28565:7;28557;:16::i;:::-;28556:17;28548:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28619:45;28648:1;28652:2;28656:7;28619:20;:45::i;:::-;28694:1;28677:9;:13;28687:2;28677:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28725:2;28706:7;:16;28714:7;28706:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28770:7;28766:2;28745:33;;28762:1;28745:33;;;;;;;;;;;;28404:382;;:::o;36996:120::-;36540:8;:6;:8::i;:::-;36532:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;37065:5:::1;37055:7;;:15;;;;;;;;;;;;;;;;;;37086:22;37095:12;:10;:12::i;:::-;37086:22;;;;;;:::i;:::-;;;;;;;;36996:120::o:0;34716:173::-;34772:16;34791:6;;;;;;;;;;;34772:25;;34817:8;34808:6;;:17;;;;;;;;;;;;;;;;;;34872:8;34841:40;;34862:8;34841:40;;;;;;;;;;;;34716:173;;:::o;25798:315::-;25955:28;25965:4;25971:2;25975:7;25955:9;:28::i;:::-;26002:48;26025:4;26031:2;26035:7;26044:5;26002:22;:48::i;:::-;25994:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25798:315;;;;:::o;38639:99::-;38690:13;38723:7;38716:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38639:99;:::o;16553:723::-;16609:13;16839:1;16830:5;:10;16826:53;;;16857:10;;;;;;;;;;;;;;;;;;;;;16826:53;16889:12;16904:5;16889:20;;16920:14;16945:78;16960:1;16952:4;:9;16945:78;;16978:8;;;;;:::i;:::-;;;;17009:2;17001:10;;;;;:::i;:::-;;;16945:78;;;17033:19;17065:6;17055:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17033:39;;17083:154;17099:1;17090:5;:10;17083:154;;17127:1;17117:11;;;;;:::i;:::-;;;17194:2;17186:5;:10;;;;:::i;:::-;17173:2;:24;;;;:::i;:::-;17160:39;;17143:6;17150;17143:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;17223:2;17214:11;;;;;:::i;:::-;;;17083:154;;;17261:6;17247:21;;;;;16553:723;;;;:::o;32518:126::-;;;;:::o;31147:799::-;31302:4;31323:15;:2;:13;;;:15::i;:::-;31319:620;;;31375:2;31359:36;;;31396:12;:10;:12::i;:::-;31410:4;31416:7;31425:5;31359:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31355:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31618:1;31601:6;:13;:18;31597:272;;;31644:60;;;;;;;;;;:::i;:::-;;;;;;;;31597:272;31819:6;31813:13;31804:6;31800:2;31796:15;31789:38;31355:529;31492:41;;;31482:51;;;:6;:51;;;;31475:58;;;;;31319:620;31923:4;31916:11;;31147:799;;;;;;;:::o;8134:387::-;8194:4;8402:12;8469:7;8457:20;8449:28;;8512:1;8505:4;:8;8498:15;;;8134:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:260::-;4941:6;4990:2;4978:9;4969:7;4965:23;4961:32;4958:2;;;5006:1;5003;4996:12;4958:2;5049:1;5074:52;5118:7;5109:6;5098:9;5094:22;5074:52;:::i;:::-;5064:62;;5020:116;4948:195;;;;:::o;5149:282::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:2;;;5283:1;5280;5273:12;5235:2;5326:1;5351:63;5406:7;5397:6;5386:9;5382:22;5351:63;:::i;:::-;5341:73;;5297:127;5225:206;;;;:::o;5437:375::-;5506:6;5555:2;5543:9;5534:7;5530:23;5526:32;5523:2;;;5571:1;5568;5561:12;5523:2;5642:1;5631:9;5627:17;5614:31;5672:18;5664:6;5661:30;5658:2;;;5704:1;5701;5694:12;5658:2;5732:63;5787:7;5778:6;5767:9;5763:22;5732:63;:::i;:::-;5722:73;;5585:220;5513:299;;;;:::o;5818:262::-;5877:6;5926:2;5914:9;5905:7;5901:23;5897:32;5894:2;;;5942:1;5939;5932:12;5894:2;5985:1;6010:53;6055:7;6046:6;6035:9;6031:22;6010:53;:::i;:::-;6000:63;;5956:117;5884:196;;;;:::o;6086:118::-;6173:24;6191:5;6173:24;:::i;:::-;6168:3;6161:37;6151:53;;:::o;6210:109::-;6291:21;6306:5;6291:21;:::i;:::-;6286:3;6279:34;6269:50;;:::o;6325:360::-;6411:3;6439:38;6471:5;6439:38;:::i;:::-;6493:70;6556:6;6551:3;6493:70;:::i;:::-;6486:77;;6572:52;6617:6;6612:3;6605:4;6598:5;6594:16;6572:52;:::i;:::-;6649:29;6671:6;6649:29;:::i;:::-;6644:3;6640:39;6633:46;;6415:270;;;;;:::o;6691:364::-;6779:3;6807:39;6840:5;6807:39;:::i;:::-;6862:71;6926:6;6921:3;6862:71;:::i;:::-;6855:78;;6942:52;6987:6;6982:3;6975:4;6968:5;6964:16;6942:52;:::i;:::-;7019:29;7041:6;7019:29;:::i;:::-;7014:3;7010:39;7003:46;;6783:272;;;;;:::o;7061:377::-;7167:3;7195:39;7228:5;7195:39;:::i;:::-;7250:89;7332:6;7327:3;7250:89;:::i;:::-;7243:96;;7348:52;7393:6;7388:3;7381:4;7374:5;7370:16;7348:52;:::i;:::-;7425:6;7420:3;7416:16;7409:23;;7171:267;;;;;:::o;7444:366::-;7586:3;7607:67;7671:2;7666:3;7607:67;:::i;:::-;7600:74;;7683:93;7772:3;7683:93;:::i;:::-;7801:2;7796:3;7792:12;7785:19;;7590:220;;;:::o;7816:366::-;7958:3;7979:67;8043:2;8038:3;7979:67;:::i;:::-;7972:74;;8055:93;8144:3;8055:93;:::i;:::-;8173:2;8168:3;8164:12;8157:19;;7962:220;;;:::o;8188:366::-;8330:3;8351:67;8415:2;8410:3;8351:67;:::i;:::-;8344:74;;8427:93;8516:3;8427:93;:::i;:::-;8545:2;8540:3;8536:12;8529:19;;8334:220;;;:::o;8560:366::-;8702:3;8723:67;8787:2;8782:3;8723:67;:::i;:::-;8716:74;;8799:93;8888:3;8799:93;:::i;:::-;8917:2;8912:3;8908:12;8901:19;;8706:220;;;:::o;8932:366::-;9074:3;9095:67;9159:2;9154:3;9095:67;:::i;:::-;9088:74;;9171:93;9260:3;9171:93;:::i;:::-;9289:2;9284:3;9280:12;9273:19;;9078:220;;;:::o;9304:366::-;9446:3;9467:67;9531:2;9526:3;9467:67;:::i;:::-;9460:74;;9543:93;9632:3;9543:93;:::i;:::-;9661:2;9656:3;9652:12;9645:19;;9450:220;;;:::o;9676:366::-;9818:3;9839:67;9903:2;9898:3;9839:67;:::i;:::-;9832:74;;9915:93;10004:3;9915:93;:::i;:::-;10033:2;10028:3;10024:12;10017:19;;9822:220;;;:::o;10048:366::-;10190:3;10211:67;10275:2;10270:3;10211:67;:::i;:::-;10204:74;;10287:93;10376:3;10287:93;:::i;:::-;10405:2;10400:3;10396:12;10389:19;;10194:220;;;:::o;10420:366::-;10562:3;10583:67;10647:2;10642:3;10583:67;:::i;:::-;10576:74;;10659:93;10748:3;10659:93;:::i;:::-;10777:2;10772:3;10768:12;10761:19;;10566:220;;;:::o;10792:366::-;10934:3;10955:67;11019:2;11014:3;10955:67;:::i;:::-;10948:74;;11031:93;11120:3;11031:93;:::i;:::-;11149:2;11144:3;11140:12;11133:19;;10938:220;;;:::o;11164:366::-;11306:3;11327:67;11391:2;11386:3;11327:67;:::i;:::-;11320:74;;11403:93;11492:3;11403:93;:::i;:::-;11521:2;11516:3;11512:12;11505:19;;11310:220;;;:::o;11536:366::-;11678:3;11699:67;11763:2;11758:3;11699:67;:::i;:::-;11692:74;;11775:93;11864:3;11775:93;:::i;:::-;11893:2;11888:3;11884:12;11877:19;;11682:220;;;:::o;11908:366::-;12050:3;12071:67;12135:2;12130:3;12071:67;:::i;:::-;12064:74;;12147:93;12236:3;12147:93;:::i;:::-;12265:2;12260:3;12256:12;12249:19;;12054:220;;;:::o;12280:366::-;12422:3;12443:67;12507:2;12502:3;12443:67;:::i;:::-;12436:74;;12519:93;12608:3;12519:93;:::i;:::-;12637:2;12632:3;12628:12;12621:19;;12426:220;;;:::o;12652:366::-;12794:3;12815:67;12879:2;12874:3;12815:67;:::i;:::-;12808:74;;12891:93;12980:3;12891:93;:::i;:::-;13009:2;13004:3;13000:12;12993:19;;12798:220;;;:::o;13024:366::-;13166:3;13187:67;13251:2;13246:3;13187:67;:::i;:::-;13180:74;;13263:93;13352:3;13263:93;:::i;:::-;13381:2;13376:3;13372:12;13365:19;;13170:220;;;:::o;13396:366::-;13538:3;13559:67;13623:2;13618:3;13559:67;:::i;:::-;13552:74;;13635:93;13724:3;13635:93;:::i;:::-;13753:2;13748:3;13744:12;13737:19;;13542:220;;;:::o;13768:366::-;13910:3;13931:67;13995:2;13990:3;13931:67;:::i;:::-;13924:74;;14007:93;14096:3;14007:93;:::i;:::-;14125:2;14120:3;14116:12;14109:19;;13914:220;;;:::o;14140:366::-;14282:3;14303:67;14367:2;14362:3;14303:67;:::i;:::-;14296:74;;14379:93;14468:3;14379:93;:::i;:::-;14497:2;14492:3;14488:12;14481:19;;14286:220;;;:::o;14512:366::-;14654:3;14675:67;14739:2;14734:3;14675:67;:::i;:::-;14668:74;;14751:93;14840:3;14751:93;:::i;:::-;14869:2;14864:3;14860:12;14853:19;;14658:220;;;:::o;14884:366::-;15026:3;15047:67;15111:2;15106:3;15047:67;:::i;:::-;15040:74;;15123:93;15212:3;15123:93;:::i;:::-;15241:2;15236:3;15232:12;15225:19;;15030:220;;;:::o;15256:118::-;15343:24;15361:5;15343:24;:::i;:::-;15338:3;15331:37;15321:53;;:::o;15380:435::-;15560:3;15582:95;15673:3;15664:6;15582:95;:::i;:::-;15575:102;;15694:95;15785:3;15776:6;15694:95;:::i;:::-;15687:102;;15806:3;15799:10;;15564:251;;;;;:::o;15821:222::-;15914:4;15952:2;15941:9;15937:18;15929:26;;15965:71;16033:1;16022:9;16018:17;16009:6;15965:71;:::i;:::-;15919:124;;;;:::o;16049:640::-;16244:4;16282:3;16271:9;16267:19;16259:27;;16296:71;16364:1;16353:9;16349:17;16340:6;16296:71;:::i;:::-;16377:72;16445:2;16434:9;16430:18;16421:6;16377:72;:::i;:::-;16459;16527:2;16516:9;16512:18;16503:6;16459:72;:::i;:::-;16578:9;16572:4;16568:20;16563:2;16552:9;16548:18;16541:48;16606:76;16677:4;16668:6;16606:76;:::i;:::-;16598:84;;16249:440;;;;;;;:::o;16695:210::-;16782:4;16820:2;16809:9;16805:18;16797:26;;16833:65;16895:1;16884:9;16880:17;16871:6;16833:65;:::i;:::-;16787:118;;;;:::o;16911:313::-;17024:4;17062:2;17051:9;17047:18;17039:26;;17111:9;17105:4;17101:20;17097:1;17086:9;17082:17;17075:47;17139:78;17212:4;17203:6;17139:78;:::i;:::-;17131:86;;17029:195;;;;:::o;17230:419::-;17396:4;17434:2;17423:9;17419:18;17411:26;;17483:9;17477:4;17473:20;17469:1;17458:9;17454:17;17447:47;17511:131;17637:4;17511:131;:::i;:::-;17503:139;;17401:248;;;:::o;17655:419::-;17821:4;17859:2;17848:9;17844:18;17836:26;;17908:9;17902:4;17898:20;17894:1;17883:9;17879:17;17872:47;17936:131;18062:4;17936:131;:::i;:::-;17928:139;;17826:248;;;:::o;18080:419::-;18246:4;18284:2;18273:9;18269:18;18261:26;;18333:9;18327:4;18323:20;18319:1;18308:9;18304:17;18297:47;18361:131;18487:4;18361:131;:::i;:::-;18353:139;;18251:248;;;:::o;18505:419::-;18671:4;18709:2;18698:9;18694:18;18686:26;;18758:9;18752:4;18748:20;18744:1;18733:9;18729:17;18722:47;18786:131;18912:4;18786:131;:::i;:::-;18778:139;;18676:248;;;:::o;18930:419::-;19096:4;19134:2;19123:9;19119:18;19111:26;;19183:9;19177:4;19173:20;19169:1;19158:9;19154:17;19147:47;19211:131;19337:4;19211:131;:::i;:::-;19203:139;;19101:248;;;:::o;19355:419::-;19521:4;19559:2;19548:9;19544:18;19536:26;;19608:9;19602:4;19598:20;19594:1;19583:9;19579:17;19572:47;19636:131;19762:4;19636:131;:::i;:::-;19628:139;;19526:248;;;:::o;19780:419::-;19946:4;19984:2;19973:9;19969:18;19961:26;;20033:9;20027:4;20023:20;20019:1;20008:9;20004:17;19997:47;20061:131;20187:4;20061:131;:::i;:::-;20053:139;;19951:248;;;:::o;20205:419::-;20371:4;20409:2;20398:9;20394:18;20386:26;;20458:9;20452:4;20448:20;20444:1;20433:9;20429:17;20422:47;20486:131;20612:4;20486:131;:::i;:::-;20478:139;;20376:248;;;:::o;20630:419::-;20796:4;20834:2;20823:9;20819:18;20811:26;;20883:9;20877:4;20873:20;20869:1;20858:9;20854:17;20847:47;20911:131;21037:4;20911:131;:::i;:::-;20903:139;;20801:248;;;:::o;21055:419::-;21221:4;21259:2;21248:9;21244:18;21236:26;;21308:9;21302:4;21298:20;21294:1;21283:9;21279:17;21272:47;21336:131;21462:4;21336:131;:::i;:::-;21328:139;;21226:248;;;:::o;21480:419::-;21646:4;21684:2;21673:9;21669:18;21661:26;;21733:9;21727:4;21723:20;21719:1;21708:9;21704:17;21697:47;21761:131;21887:4;21761:131;:::i;:::-;21753:139;;21651:248;;;:::o;21905:419::-;22071:4;22109:2;22098:9;22094:18;22086:26;;22158:9;22152:4;22148:20;22144:1;22133:9;22129:17;22122:47;22186:131;22312:4;22186:131;:::i;:::-;22178:139;;22076:248;;;:::o;22330:419::-;22496:4;22534:2;22523:9;22519:18;22511:26;;22583:9;22577:4;22573:20;22569:1;22558:9;22554:17;22547:47;22611:131;22737:4;22611:131;:::i;:::-;22603:139;;22501:248;;;:::o;22755:419::-;22921:4;22959:2;22948:9;22944:18;22936:26;;23008:9;23002:4;22998:20;22994:1;22983:9;22979:17;22972:47;23036:131;23162:4;23036:131;:::i;:::-;23028:139;;22926:248;;;:::o;23180:419::-;23346:4;23384:2;23373:9;23369:18;23361:26;;23433:9;23427:4;23423:20;23419:1;23408:9;23404:17;23397:47;23461:131;23587:4;23461:131;:::i;:::-;23453:139;;23351:248;;;:::o;23605:419::-;23771:4;23809:2;23798:9;23794:18;23786:26;;23858:9;23852:4;23848:20;23844:1;23833:9;23829:17;23822:47;23886:131;24012:4;23886:131;:::i;:::-;23878:139;;23776:248;;;:::o;24030:419::-;24196:4;24234:2;24223:9;24219:18;24211:26;;24283:9;24277:4;24273:20;24269:1;24258:9;24254:17;24247:47;24311:131;24437:4;24311:131;:::i;:::-;24303:139;;24201:248;;;:::o;24455:419::-;24621:4;24659:2;24648:9;24644:18;24636:26;;24708:9;24702:4;24698:20;24694:1;24683:9;24679:17;24672:47;24736:131;24862:4;24736:131;:::i;:::-;24728:139;;24626:248;;;:::o;24880:419::-;25046:4;25084:2;25073:9;25069:18;25061:26;;25133:9;25127:4;25123:20;25119:1;25108:9;25104:17;25097:47;25161:131;25287:4;25161:131;:::i;:::-;25153:139;;25051:248;;;:::o;25305:419::-;25471:4;25509:2;25498:9;25494:18;25486:26;;25558:9;25552:4;25548:20;25544:1;25533:9;25529:17;25522:47;25586:131;25712:4;25586:131;:::i;:::-;25578:139;;25476:248;;;:::o;25730:419::-;25896:4;25934:2;25923:9;25919:18;25911:26;;25983:9;25977:4;25973:20;25969:1;25958:9;25954:17;25947:47;26011:131;26137:4;26011:131;:::i;:::-;26003:139;;25901:248;;;:::o;26155:222::-;26248:4;26286:2;26275:9;26271:18;26263:26;;26299:71;26367:1;26356:9;26352:17;26343:6;26299:71;:::i;:::-;26253:124;;;;:::o;26383:129::-;26417:6;26444:20;;:::i;:::-;26434:30;;26473:33;26501:4;26493:6;26473:33;:::i;:::-;26424:88;;;:::o;26518:75::-;26551:6;26584:2;26578:9;26568:19;;26558:35;:::o;26599:307::-;26660:4;26750:18;26742:6;26739:30;26736:2;;;26772:18;;:::i;:::-;26736:2;26810:29;26832:6;26810:29;:::i;:::-;26802:37;;26894:4;26888;26884:15;26876:23;;26665:241;;;:::o;26912:308::-;26974:4;27064:18;27056:6;27053:30;27050:2;;;27086:18;;:::i;:::-;27050:2;27124:29;27146:6;27124:29;:::i;:::-;27116:37;;27208:4;27202;27198:15;27190:23;;26979:241;;;:::o;27226:98::-;27277:6;27311:5;27305:12;27295:22;;27284:40;;;:::o;27330:99::-;27382:6;27416:5;27410:12;27400:22;;27389:40;;;:::o;27435:168::-;27518:11;27552:6;27547:3;27540:19;27592:4;27587:3;27583:14;27568:29;;27530:73;;;;:::o;27609:169::-;27693:11;27727:6;27722:3;27715:19;27767:4;27762:3;27758:14;27743:29;;27705:73;;;;:::o;27784:148::-;27886:11;27923:3;27908:18;;27898:34;;;;:::o;27938:305::-;27978:3;27997:20;28015:1;27997:20;:::i;:::-;27992:25;;28031:20;28049:1;28031:20;:::i;:::-;28026:25;;28185:1;28117:66;28113:74;28110:1;28107:81;28104:2;;;28191:18;;:::i;:::-;28104:2;28235:1;28232;28228:9;28221:16;;27982:261;;;;:::o;28249:185::-;28289:1;28306:20;28324:1;28306:20;:::i;:::-;28301:25;;28340:20;28358:1;28340:20;:::i;:::-;28335:25;;28379:1;28369:2;;28384:18;;:::i;:::-;28369:2;28426:1;28423;28419:9;28414:14;;28291:143;;;;:::o;28440:348::-;28480:7;28503:20;28521:1;28503:20;:::i;:::-;28498:25;;28537:20;28555:1;28537:20;:::i;:::-;28532:25;;28725:1;28657:66;28653:74;28650:1;28647:81;28642:1;28635:9;28628:17;28624:105;28621:2;;;28732:18;;:::i;:::-;28621:2;28780:1;28777;28773:9;28762:20;;28488:300;;;;:::o;28794:191::-;28834:4;28854:20;28872:1;28854:20;:::i;:::-;28849:25;;28888:20;28906:1;28888:20;:::i;:::-;28883:25;;28927:1;28924;28921:8;28918:2;;;28932:18;;:::i;:::-;28918:2;28977:1;28974;28970:9;28962:17;;28839:146;;;;:::o;28991:96::-;29028:7;29057:24;29075:5;29057:24;:::i;:::-;29046:35;;29036:51;;;:::o;29093:90::-;29127:7;29170:5;29163:13;29156:21;29145:32;;29135:48;;;:::o;29189:149::-;29225:7;29265:66;29258:5;29254:78;29243:89;;29233:105;;;:::o;29344:126::-;29381:7;29421:42;29414:5;29410:54;29399:65;;29389:81;;;:::o;29476:77::-;29513:7;29542:5;29531:16;;29521:32;;;:::o;29559:154::-;29643:6;29638:3;29633;29620:30;29705:1;29696:6;29691:3;29687:16;29680:27;29610:103;;;:::o;29719:307::-;29787:1;29797:113;29811:6;29808:1;29805:13;29797:113;;;29896:1;29891:3;29887:11;29881:18;29877:1;29872:3;29868:11;29861:39;29833:2;29830:1;29826:10;29821:15;;29797:113;;;29928:6;29925:1;29922:13;29919:2;;;30008:1;29999:6;29994:3;29990:16;29983:27;29919:2;29768:258;;;;:::o;30032:320::-;30076:6;30113:1;30107:4;30103:12;30093:22;;30160:1;30154:4;30150:12;30181:18;30171:2;;30237:4;30229:6;30225:17;30215:27;;30171:2;30299;30291:6;30288:14;30268:18;30265:38;30262:2;;;30318:18;;:::i;:::-;30262:2;30083:269;;;;:::o;30358:281::-;30441:27;30463:4;30441:27;:::i;:::-;30433:6;30429:40;30571:6;30559:10;30556:22;30535:18;30523:10;30520:34;30517:62;30514:2;;;30582:18;;:::i;:::-;30514:2;30622:10;30618:2;30611:22;30401:238;;;:::o;30645:233::-;30684:3;30707:24;30725:5;30707:24;:::i;:::-;30698:33;;30753:66;30746:5;30743:77;30740:2;;;30823:18;;:::i;:::-;30740:2;30870:1;30863:5;30859:13;30852:20;;30688:190;;;:::o;30884:176::-;30916:1;30933:20;30951:1;30933:20;:::i;:::-;30928:25;;30967:20;30985:1;30967:20;:::i;:::-;30962:25;;31006:1;30996:2;;31011:18;;:::i;:::-;30996:2;31052:1;31049;31045:9;31040:14;;30918:142;;;;:::o;31066:180::-;31114:77;31111:1;31104:88;31211:4;31208:1;31201:15;31235:4;31232:1;31225:15;31252:180;31300:77;31297:1;31290:88;31397:4;31394:1;31387:15;31421:4;31418:1;31411:15;31438:180;31486:77;31483:1;31476:88;31583:4;31580:1;31573:15;31607:4;31604:1;31597:15;31624:180;31672:77;31669:1;31662:88;31769:4;31766:1;31759:15;31793:4;31790:1;31783:15;31810:102;31851:6;31902:2;31898:7;31893:2;31886:5;31882:14;31878:28;31868:38;;31858:54;;;:::o;31918:170::-;32058:22;32054:1;32046:6;32042:14;32035:46;32024:64;:::o;32094:237::-;32234:34;32230:1;32222:6;32218:14;32211:58;32303:20;32298:2;32290:6;32286:15;32279:45;32200:131;:::o;32337:225::-;32477:34;32473:1;32465:6;32461:14;32454:58;32546:8;32541:2;32533:6;32529:15;32522:33;32443:119;:::o;32568:178::-;32708:30;32704:1;32696:6;32692:14;32685:54;32674:72;:::o;32752:166::-;32892:18;32888:1;32880:6;32876:14;32869:42;32858:60;:::o;32924:223::-;33064:34;33060:1;33052:6;33048:14;33041:58;33133:6;33128:2;33120:6;33116:15;33109:31;33030:117;:::o;33153:175::-;33293:27;33289:1;33281:6;33277:14;33270:51;33259:69;:::o;33334:175::-;33474:27;33470:1;33462:6;33458:14;33451:51;33440:69;:::o;33515:231::-;33655:34;33651:1;33643:6;33639:14;33632:58;33724:14;33719:2;33711:6;33707:15;33700:39;33621:125;:::o;33752:166::-;33892:18;33888:1;33880:6;33876:14;33869:42;33858:60;:::o;33924:243::-;34064:34;34060:1;34052:6;34048:14;34041:58;34133:26;34128:2;34120:6;34116:15;34109:51;34030:137;:::o;34173:229::-;34313:34;34309:1;34301:6;34297:14;34290:58;34382:12;34377:2;34369:6;34365:15;34358:37;34279:123;:::o;34408:228::-;34548:34;34544:1;34536:6;34532:14;34525:58;34617:11;34612:2;34604:6;34600:15;34593:36;34514:122;:::o;34642:182::-;34782:34;34778:1;34770:6;34766:14;34759:58;34748:76;:::o;34830:231::-;34970:34;34966:1;34958:6;34954:14;34947:58;35039:14;35034:2;35026:6;35022:15;35015:39;34936:125;:::o;35067:182::-;35207:34;35203:1;35195:6;35191:14;35184:58;35173:76;:::o;35255:228::-;35395:34;35391:1;35383:6;35379:14;35372:58;35464:11;35459:2;35451:6;35447:15;35440:36;35361:122;:::o;35489:234::-;35629:34;35625:1;35617:6;35613:14;35606:58;35698:17;35693:2;35685:6;35681:15;35674:42;35595:128;:::o;35729:220::-;35869:34;35865:1;35857:6;35853:14;35846:58;35938:3;35933:2;35925:6;35921:15;35914:28;35835:114;:::o;35955:236::-;36095:34;36091:1;36083:6;36079:14;36072:58;36164:19;36159:2;36151:6;36147:15;36140:44;36061:130;:::o;36197:175::-;36337:27;36333:1;36325:6;36321:14;36314:51;36303:69;:::o;36378:122::-;36451:24;36469:5;36451:24;:::i;:::-;36444:5;36441:35;36431:2;;36490:1;36487;36480:12;36431:2;36421:79;:::o;36506:116::-;36576:21;36591:5;36576:21;:::i;:::-;36569:5;36566:32;36556:2;;36612:1;36609;36602:12;36556:2;36546:76;:::o;36628:120::-;36700:23;36717:5;36700:23;:::i;:::-;36693:5;36690:34;36680:2;;36738:1;36735;36728:12;36680:2;36670:78;:::o;36754:122::-;36827:24;36845:5;36827:24;:::i;:::-;36820:5;36817:35;36807:2;;36866:1;36863;36856:12;36807:2;36797:79;:::o

Swarm Source

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