ETH Price: $3,251.80 (+3.51%)
Gas: 5 Gwei

Token

Tanuki Frens (TF)
 

Overview

Max Total Supply

2,620 TF

Holders

389

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 TF
0xc26239d7787ff8042b1e878608c1ef31ab3c7b79
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:
TanukiFrens

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-06
*/

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


// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

// File: contracts/tanukifrens.sol

//SPDX-License-Identifier: MIT
/*
   
*/
pragma solidity ^0.8.0;






contract TanukiFrens is ERC721, Ownable {
    using Counters for Counters.Counter;
    using Strings for uint256;

    Counters.Counter private tokenIdCounter;

    string baseURI;
    string public baseExtension = ".json";
    string public preRevealURI;
    uint256 public currentPrice = 0.02 ether;
    uint256 public totalTanukiFrens = 5555;
    uint256 public maxFreeTanukiFrens = 555;
    bool public paused = true;
    bool public revealed = false;

    constructor(string memory _initBaseURI)
        ERC721("Tanuki Frens", "TF")
    {
        setBaseURI(_initBaseURI);
        
    }

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


    function freeTanukiFren(uint256 mintAmount) public {
        uint256 supply = tokenIdCounter.current();
        require(!paused, "Sale paused");
        require(mintAmount < 6, "You can only mint 5 Tanuki Fren");
        require(supply + mintAmount < maxFreeTanukiFrens, "No more free Tanukis left");
        mintTanukiFren(msg.sender, mintAmount);
    }

    function mint(uint256 mintAmount) external payable {
        uint256 supply = tokenIdCounter.current();
        require(!paused, "Sale paused");
        require(mintAmount < 21, "You can only mint 20 Tanukis");
        require(
            supply + mintAmount < totalTanukiFrens + 1,
            "Exceeds maximum Tanukifren supply"
        );
        require(
            msg.value >= currentPrice * mintAmount,
            "Not enough Ether sent"
        );

        mintTanukiFren(msg.sender, mintAmount);
    }

    function mintTanukiFren(address addr, uint256 mintAmount) private {
        for (uint256 i = 0; i < mintAmount; i++) {
            tokenIdCounter.increment();
            _safeMint(addr, tokenIdCounter.current());
        }
    }

    function getCurrentId() external view returns (uint256) {
        return tokenIdCounter.current();
    }

    function totalSupply() public view returns (uint256) {
        return tokenIdCounter.current();
    }

    
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );


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

    //----------------Owner functions--------------------
    function pause(bool val) public onlyOwner {
        paused = val;
    }

    //dev mint for giveaways

    function ownerMint(uint256 mintAmount) public onlyOwner {
        uint256 supply = tokenIdCounter.current();
        require(supply + mintAmount < totalTanukiFrens + 1,"Exceeds maximum Tanukifren supply");
        mintTanukiFren(msg.sender, mintAmount);
    }

    //one way change, cannot be reverted
    function reveal() public onlyOwner {
        revealed = true;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setMaxFreeTanukiFrens(uint256 _maxFreeTanukiFrens) public onlyOwner {
        maxFreeTanukiFrens = _maxFreeTanukiFrens;
    }

    function setPrice(uint256 _newPrice) public onlyOwner {
        currentPrice = _newPrice;
    }


    function withdraw() public onlyOwner {
        uint256 amount = address(this).balance;
        (bool success, ) = msg.sender.call{value: amount}("");
        require(success, "Failed to send Ether");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"freeTanukiFren","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeTanukiFrens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"mintAmount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preRevealURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreeTanukiFrens","type":"uint256"}],"name":"setMaxFreeTanukiFrens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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":[],"name":"totalTanukiFrens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060099080519060200190620000519291906200034d565b5066470de4df820000600b556115b3600c5561022b600d556001600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff021916908315150217905550348015620000ac57600080fd5b50604051620045fc380380620045fc8339818101604052810190620000d291906200047b565b6040518060400160405280600c81526020017f54616e756b69204672656e7300000000000000000000000000000000000000008152506040518060400160405280600281526020017f54460000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620001569291906200034d565b5080600190805190602001906200016f9291906200034d565b5050506200019262000186620001aa60201b60201c565b620001b260201b60201c565b620001a3816200027860201b60201c565b50620006d3565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000288620001aa60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002ae6200032360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000307576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002fe90620004f3565b60405180910390fd5b80600890805190602001906200031f9291906200034d565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200035b90620005bb565b90600052602060002090601f0160209004810192826200037f5760008555620003cb565b82601f106200039a57805160ff1916838001178555620003cb565b82800160010185558215620003cb579182015b82811115620003ca578251825591602001919060010190620003ad565b5b509050620003da9190620003de565b5090565b5b80821115620003f9576000816000905550600101620003df565b5090565b6000620004146200040e846200053e565b62000515565b9050828152602081018484840111156200043357620004326200068a565b5b6200044084828562000585565b509392505050565b600082601f83011262000460576200045f62000685565b5b815162000472848260208601620003fd565b91505092915050565b60006020828403121562000494576200049362000694565b5b600082015167ffffffffffffffff811115620004b557620004b46200068f565b5b620004c38482850162000448565b91505092915050565b6000620004db60208362000574565b9150620004e882620006aa565b602082019050919050565b600060208201905081810360008301526200050e81620004cc565b9050919050565b60006200052162000534565b90506200052f8282620005f1565b919050565b6000604051905090565b600067ffffffffffffffff8211156200055c576200055b62000656565b5b620005678262000699565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620005a557808201518184015260208101905062000588565b83811115620005b5576000848401525b50505050565b60006002820490506001821680620005d457607f821691505b60208210811415620005eb57620005ea62000627565b5b50919050565b620005fc8262000699565b810181811067ffffffffffffffff821117156200061e576200061d62000656565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613f1980620006e36000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063c66828621161006f578063c6682862146106c6578063c87b56dd146106f1578063e985e9c51461072e578063f19e75d41461076b578063f2fde38b14610794576101f9565b8063a22cb46514610634578063a475b5dd1461065d578063b88d4fde14610674578063be99edbd1461069d576101f9565b806391b7f5ed116100dc57806391b7f5ed1461059957806395d89b41146105c25780639d1b464a146105ed578063a0712d6814610618576101f9565b806370a08231146104ef578063715018a61461052c57806379b6ed36146105435780638da5cb5b1461056e576101f9565b80633ccfd60b11610190578063557270861161015f578063557270861461040857806355f804b3146104335780635c975abb1461045c5780636352211e146104875780636c143862146104c4576101f9565b80633ccfd60b1461037257806342842e0e1461038957806342f2c050146103b257806351830227146103dd576101f9565b8063081812fc116101cc578063081812fc146102b8578063095ea7b3146102f557806318160ddd1461031e57806323b872dd14610349576101f9565b806301ffc9a7146101fe57806302329a291461023b57806306fdde03146102645780630806b7391461028f575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612af9565b6107bd565b604051610232919061310d565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d9190612acc565b61089f565b005b34801561027057600080fd5b50610279610938565b6040516102869190613128565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190612b9c565b6109ca565b005b3480156102c457600080fd5b506102df60048036038101906102da9190612b9c565b610a50565b6040516102ec91906130a6565b60405180910390f35b34801561030157600080fd5b5061031c60048036038101906103179190612a8c565b610ad5565b005b34801561032a57600080fd5b50610333610bed565b604051610340919061342a565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b9190612976565b610bfe565b005b34801561037e57600080fd5b50610387610c5e565b005b34801561039557600080fd5b506103b060048036038101906103ab9190612976565b610d8f565b005b3480156103be57600080fd5b506103c7610daf565b6040516103d4919061342a565b60405180910390f35b3480156103e957600080fd5b506103f2610db5565b6040516103ff919061310d565b60405180910390f35b34801561041457600080fd5b5061041d610dc8565b60405161042a919061342a565b60405180910390f35b34801561043f57600080fd5b5061045a60048036038101906104559190612b53565b610dce565b005b34801561046857600080fd5b50610471610e64565b60405161047e919061310d565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a99190612b9c565b610e77565b6040516104bb91906130a6565b60405180910390f35b3480156104d057600080fd5b506104d9610f29565b6040516104e6919061342a565b60405180910390f35b3480156104fb57600080fd5b5061051660048036038101906105119190612909565b610f3a565b604051610523919061342a565b60405180910390f35b34801561053857600080fd5b50610541610ff2565b005b34801561054f57600080fd5b5061055861107a565b6040516105659190613128565b60405180910390f35b34801561057a57600080fd5b50610583611108565b60405161059091906130a6565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb9190612b9c565b611132565b005b3480156105ce57600080fd5b506105d76111b8565b6040516105e49190613128565b60405180910390f35b3480156105f957600080fd5b5061060261124a565b60405161060f919061342a565b60405180910390f35b610632600480360381019061062d9190612b9c565b611250565b005b34801561064057600080fd5b5061065b60048036038101906106569190612a4c565b6113aa565b005b34801561066957600080fd5b506106726113c0565b005b34801561068057600080fd5b5061069b600480360381019061069691906129c9565b611459565b005b3480156106a957600080fd5b506106c460048036038101906106bf9190612b9c565b6114bb565b005b3480156106d257600080fd5b506106db6115b9565b6040516106e89190613128565b60405180910390f35b3480156106fd57600080fd5b5061071860048036038101906107139190612b9c565b611647565b6040516107259190613128565b60405180910390f35b34801561073a57600080fd5b5061075560048036038101906107509190612936565b6116f1565b604051610762919061310d565b60405180910390f35b34801561077757600080fd5b50610792600480360381019061078d9190612b9c565b611785565b005b3480156107a057600080fd5b506107bb60048036038101906107b69190612909565b611878565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610898575061089782611970565b5b9050919050565b6108a76119da565b73ffffffffffffffffffffffffffffffffffffffff166108c5611108565b73ffffffffffffffffffffffffffffffffffffffff161461091b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109129061334a565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b606060008054610947906136fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610973906136fa565b80156109c05780601f10610995576101008083540402835291602001916109c0565b820191906000526020600020905b8154815290600101906020018083116109a357829003601f168201915b5050505050905090565b6109d26119da565b73ffffffffffffffffffffffffffffffffffffffff166109f0611108565b73ffffffffffffffffffffffffffffffffffffffff1614610a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3d9061334a565b60405180910390fd5b80600d8190555050565b6000610a5b826119e2565b610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a919061332a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ae082610e77565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b48906133aa565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b706119da565b73ffffffffffffffffffffffffffffffffffffffff161480610b9f5750610b9e81610b996119da565b6116f1565b5b610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd59061326a565b60405180910390fd5b610be88383611a4e565b505050565b6000610bf96007611b07565b905090565b610c0f610c096119da565b82611b15565b610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c45906133ca565b60405180910390fd5b610c59838383611bf3565b505050565b610c666119da565b73ffffffffffffffffffffffffffffffffffffffff16610c84611108565b73ffffffffffffffffffffffffffffffffffffffff1614610cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd19061334a565b60405180910390fd5b600047905060003373ffffffffffffffffffffffffffffffffffffffff1682604051610d0590613091565b60006040518083038185875af1925050503d8060008114610d42576040519150601f19603f3d011682016040523d82523d6000602084013e610d47565b606091505b5050905080610d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d82906131ea565b60405180910390fd5b5050565b610daa83838360405180602001604052806000815250611459565b505050565b600c5481565b600e60019054906101000a900460ff1681565b600d5481565b610dd66119da565b73ffffffffffffffffffffffffffffffffffffffff16610df4611108565b73ffffffffffffffffffffffffffffffffffffffff1614610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e419061334a565b60405180910390fd5b8060089080519060200190610e6092919061271d565b5050565b600e60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f17906132aa565b60405180910390fd5b80915050919050565b6000610f356007611b07565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa29061328a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ffa6119da565b73ffffffffffffffffffffffffffffffffffffffff16611018611108565b73ffffffffffffffffffffffffffffffffffffffff161461106e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110659061334a565b60405180910390fd5b6110786000611e4f565b565b600a8054611087906136fa565b80601f01602080910402602001604051908101604052809291908181526020018280546110b3906136fa565b80156111005780601f106110d557610100808354040283529160200191611100565b820191906000526020600020905b8154815290600101906020018083116110e357829003601f168201915b505050505081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61113a6119da565b73ffffffffffffffffffffffffffffffffffffffff16611158611108565b73ffffffffffffffffffffffffffffffffffffffff16146111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a59061334a565b60405180910390fd5b80600b8190555050565b6060600180546111c7906136fa565b80601f01602080910402602001604051908101604052809291908181526020018280546111f3906136fa565b80156112405780601f1061121557610100808354040283529160200191611240565b820191906000526020600020905b81548152906001019060200180831161122357829003601f168201915b5050505050905090565b600b5481565b600061125c6007611b07565b9050600e60009054906101000a900460ff16156112ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a59061314a565b60405180910390fd5b601582106112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e8906132ca565b60405180910390fd5b6001600c54611300919061352f565b828261130c919061352f565b1061134c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113439061340a565b60405180910390fd5b81600b5461135a91906135b6565b34101561139c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113939061316a565b60405180910390fd5b6113a63383611f15565b5050565b6113bc6113b56119da565b8383611f55565b5050565b6113c86119da565b73ffffffffffffffffffffffffffffffffffffffff166113e6611108565b73ffffffffffffffffffffffffffffffffffffffff161461143c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114339061334a565b60405180910390fd5b6001600e60016101000a81548160ff021916908315150217905550565b61146a6114646119da565b83611b15565b6114a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a0906133ca565b60405180910390fd5b6114b5848484846120c2565b50505050565b60006114c76007611b07565b9050600e60009054906101000a900460ff1615611519576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115109061314a565b60405180910390fd5b6006821061155c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115539061330a565b60405180910390fd5b600d54828261156b919061352f565b106115ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a2906133ea565b60405180910390fd5b6115b53383611f15565b5050565b600980546115c6906136fa565b80601f01602080910402602001604051908101604052809291908181526020018280546115f2906136fa565b801561163f5780601f106116145761010080835404028352916020019161163f565b820191906000526020600020905b81548152906001019060200180831161162257829003601f168201915b505050505081565b6060611652826119e2565b611691576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116889061338a565b60405180910390fd5b600061169b61211e565b905060008151116116bb57604051806020016040528060008152506116e9565b806116c5846121b0565b60096040516020016116d993929190613060565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61178d6119da565b73ffffffffffffffffffffffffffffffffffffffff166117ab611108565b73ffffffffffffffffffffffffffffffffffffffff1614611801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f89061334a565b60405180910390fd5b600061180d6007611b07565b90506001600c5461181e919061352f565b828261182a919061352f565b1061186a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118619061340a565b60405180910390fd5b6118743383611f15565b5050565b6118806119da565b73ffffffffffffffffffffffffffffffffffffffff1661189e611108565b73ffffffffffffffffffffffffffffffffffffffff16146118f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118eb9061334a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195b906131aa565b60405180910390fd5b61196d81611e4f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ac183610e77565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611b20826119e2565b611b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b569061324a565b60405180910390fd5b6000611b6a83610e77565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611bd957508373ffffffffffffffffffffffffffffffffffffffff16611bc184610a50565b73ffffffffffffffffffffffffffffffffffffffff16145b80611bea5750611be981856116f1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c1382610e77565b73ffffffffffffffffffffffffffffffffffffffff1614611c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c609061336a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd09061320a565b60405180910390fd5b611ce4838383612311565b611cef600082611a4e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d3f9190613610565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d96919061352f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611f5057611f2a6007612316565b611f3d83611f386007611b07565b61232c565b8080611f489061375d565b915050611f18565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbb9061322a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120b5919061310d565b60405180910390a3505050565b6120cd848484611bf3565b6120d98484848461234a565b612118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210f9061318a565b60405180910390fd5b50505050565b60606008805461212d906136fa565b80601f0160208091040260200160405190810160405280929190818152602001828054612159906136fa565b80156121a65780601f1061217b576101008083540402835291602001916121a6565b820191906000526020600020905b81548152906001019060200180831161218957829003601f168201915b5050505050905090565b606060008214156121f8576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061230c565b600082905060005b6000821461222a5780806122139061375d565b915050600a826122239190613585565b9150612200565b60008167ffffffffffffffff81111561224657612245613893565b5b6040519080825280601f01601f1916602001820160405280156122785781602001600182028036833780820191505090505b5090505b60008514612305576001826122919190613610565b9150600a856122a091906137a6565b60306122ac919061352f565b60f81b8183815181106122c2576122c1613864565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122fe9190613585565b945061227c565b8093505050505b919050565b505050565b6001816000016000828254019250508190555050565b6123468282604051806020016040528060008152506124e1565b5050565b600061236b8473ffffffffffffffffffffffffffffffffffffffff1661253c565b156124d4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123946119da565b8786866040518563ffffffff1660e01b81526004016123b694939291906130c1565b602060405180830381600087803b1580156123d057600080fd5b505af192505050801561240157506040513d601f19601f820116820180604052508101906123fe9190612b26565b60015b612484573d8060008114612431576040519150601f19603f3d011682016040523d82523d6000602084013e612436565b606091505b5060008151141561247c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124739061318a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124d9565b600190505b949350505050565b6124eb838361254f565b6124f8600084848461234a565b612537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252e9061318a565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b6906132ea565b60405180910390fd5b6125c8816119e2565b15612608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ff906131ca565b60405180910390fd5b61261460008383612311565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612664919061352f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612729906136fa565b90600052602060002090601f01602090048101928261274b5760008555612792565b82601f1061276457805160ff1916838001178555612792565b82800160010185558215612792579182015b82811115612791578251825591602001919060010190612776565b5b50905061279f91906127a3565b5090565b5b808211156127bc5760008160009055506001016127a4565b5090565b60006127d36127ce8461346a565b613445565b9050828152602081018484840111156127ef576127ee6138c7565b5b6127fa8482856136b8565b509392505050565b60006128156128108461349b565b613445565b905082815260208101848484011115612831576128306138c7565b5b61283c8482856136b8565b509392505050565b60008135905061285381613e87565b92915050565b60008135905061286881613e9e565b92915050565b60008135905061287d81613eb5565b92915050565b60008151905061289281613eb5565b92915050565b600082601f8301126128ad576128ac6138c2565b5b81356128bd8482602086016127c0565b91505092915050565b600082601f8301126128db576128da6138c2565b5b81356128eb848260208601612802565b91505092915050565b60008135905061290381613ecc565b92915050565b60006020828403121561291f5761291e6138d1565b5b600061292d84828501612844565b91505092915050565b6000806040838503121561294d5761294c6138d1565b5b600061295b85828601612844565b925050602061296c85828601612844565b9150509250929050565b60008060006060848603121561298f5761298e6138d1565b5b600061299d86828701612844565b93505060206129ae86828701612844565b92505060406129bf868287016128f4565b9150509250925092565b600080600080608085870312156129e3576129e26138d1565b5b60006129f187828801612844565b9450506020612a0287828801612844565b9350506040612a13878288016128f4565b925050606085013567ffffffffffffffff811115612a3457612a336138cc565b5b612a4087828801612898565b91505092959194509250565b60008060408385031215612a6357612a626138d1565b5b6000612a7185828601612844565b9250506020612a8285828601612859565b9150509250929050565b60008060408385031215612aa357612aa26138d1565b5b6000612ab185828601612844565b9250506020612ac2858286016128f4565b9150509250929050565b600060208284031215612ae257612ae16138d1565b5b6000612af084828501612859565b91505092915050565b600060208284031215612b0f57612b0e6138d1565b5b6000612b1d8482850161286e565b91505092915050565b600060208284031215612b3c57612b3b6138d1565b5b6000612b4a84828501612883565b91505092915050565b600060208284031215612b6957612b686138d1565b5b600082013567ffffffffffffffff811115612b8757612b866138cc565b5b612b93848285016128c6565b91505092915050565b600060208284031215612bb257612bb16138d1565b5b6000612bc0848285016128f4565b91505092915050565b612bd281613644565b82525050565b612be181613656565b82525050565b6000612bf2826134e1565b612bfc81856134f7565b9350612c0c8185602086016136c7565b612c15816138d6565b840191505092915050565b6000612c2b826134ec565b612c358185613513565b9350612c458185602086016136c7565b612c4e816138d6565b840191505092915050565b6000612c64826134ec565b612c6e8185613524565b9350612c7e8185602086016136c7565b80840191505092915050565b60008154612c97816136fa565b612ca18186613524565b94506001821660008114612cbc5760018114612ccd57612d00565b60ff19831686528186019350612d00565b612cd6856134cc565b60005b83811015612cf857815481890152600182019150602081019050612cd9565b838801955050505b50505092915050565b6000612d16600b83613513565b9150612d21826138e7565b602082019050919050565b6000612d39601583613513565b9150612d4482613910565b602082019050919050565b6000612d5c603283613513565b9150612d6782613939565b604082019050919050565b6000612d7f602683613513565b9150612d8a82613988565b604082019050919050565b6000612da2601c83613513565b9150612dad826139d7565b602082019050919050565b6000612dc5601483613513565b9150612dd082613a00565b602082019050919050565b6000612de8602483613513565b9150612df382613a29565b604082019050919050565b6000612e0b601983613513565b9150612e1682613a78565b602082019050919050565b6000612e2e602c83613513565b9150612e3982613aa1565b604082019050919050565b6000612e51603883613513565b9150612e5c82613af0565b604082019050919050565b6000612e74602a83613513565b9150612e7f82613b3f565b604082019050919050565b6000612e97602983613513565b9150612ea282613b8e565b604082019050919050565b6000612eba601c83613513565b9150612ec582613bdd565b602082019050919050565b6000612edd602083613513565b9150612ee882613c06565b602082019050919050565b6000612f00601f83613513565b9150612f0b82613c2f565b602082019050919050565b6000612f23602c83613513565b9150612f2e82613c58565b604082019050919050565b6000612f46602083613513565b9150612f5182613ca7565b602082019050919050565b6000612f69602983613513565b9150612f7482613cd0565b604082019050919050565b6000612f8c602f83613513565b9150612f9782613d1f565b604082019050919050565b6000612faf602183613513565b9150612fba82613d6e565b604082019050919050565b6000612fd2600083613508565b9150612fdd82613dbd565b600082019050919050565b6000612ff5603183613513565b915061300082613dc0565b604082019050919050565b6000613018601983613513565b915061302382613e0f565b602082019050919050565b600061303b602183613513565b915061304682613e38565b604082019050919050565b61305a816136ae565b82525050565b600061306c8286612c59565b91506130788285612c59565b91506130848284612c8a565b9150819050949350505050565b600061309c82612fc5565b9150819050919050565b60006020820190506130bb6000830184612bc9565b92915050565b60006080820190506130d66000830187612bc9565b6130e36020830186612bc9565b6130f06040830185613051565b81810360608301526131028184612be7565b905095945050505050565b60006020820190506131226000830184612bd8565b92915050565b600060208201905081810360008301526131428184612c20565b905092915050565b6000602082019050818103600083015261316381612d09565b9050919050565b6000602082019050818103600083015261318381612d2c565b9050919050565b600060208201905081810360008301526131a381612d4f565b9050919050565b600060208201905081810360008301526131c381612d72565b9050919050565b600060208201905081810360008301526131e381612d95565b9050919050565b6000602082019050818103600083015261320381612db8565b9050919050565b6000602082019050818103600083015261322381612ddb565b9050919050565b6000602082019050818103600083015261324381612dfe565b9050919050565b6000602082019050818103600083015261326381612e21565b9050919050565b6000602082019050818103600083015261328381612e44565b9050919050565b600060208201905081810360008301526132a381612e67565b9050919050565b600060208201905081810360008301526132c381612e8a565b9050919050565b600060208201905081810360008301526132e381612ead565b9050919050565b6000602082019050818103600083015261330381612ed0565b9050919050565b6000602082019050818103600083015261332381612ef3565b9050919050565b6000602082019050818103600083015261334381612f16565b9050919050565b6000602082019050818103600083015261336381612f39565b9050919050565b6000602082019050818103600083015261338381612f5c565b9050919050565b600060208201905081810360008301526133a381612f7f565b9050919050565b600060208201905081810360008301526133c381612fa2565b9050919050565b600060208201905081810360008301526133e381612fe8565b9050919050565b600060208201905081810360008301526134038161300b565b9050919050565b600060208201905081810360008301526134238161302e565b9050919050565b600060208201905061343f6000830184613051565b92915050565b600061344f613460565b905061345b828261372c565b919050565b6000604051905090565b600067ffffffffffffffff82111561348557613484613893565b5b61348e826138d6565b9050602081019050919050565b600067ffffffffffffffff8211156134b6576134b5613893565b5b6134bf826138d6565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061353a826136ae565b9150613545836136ae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561357a576135796137d7565b5b828201905092915050565b6000613590826136ae565b915061359b836136ae565b9250826135ab576135aa613806565b5b828204905092915050565b60006135c1826136ae565b91506135cc836136ae565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613605576136046137d7565b5b828202905092915050565b600061361b826136ae565b9150613626836136ae565b925082821015613639576136386137d7565b5b828203905092915050565b600061364f8261368e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156136e55780820151818401526020810190506136ca565b838111156136f4576000848401525b50505050565b6000600282049050600182168061371257607f821691505b6020821081141561372657613725613835565b5b50919050565b613735826138d6565b810181811067ffffffffffffffff8211171561375457613753613893565b5b80604052505050565b6000613768826136ae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561379b5761379a6137d7565b5b600182019050919050565b60006137b1826136ae565b91506137bc836136ae565b9250826137cc576137cb613806565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f53616c6520706175736564000000000000000000000000000000000000000000600082015250565b7f4e6f7420656e6f7567682045746865722073656e740000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f596f752063616e206f6e6c79206d696e742032302054616e756b697300000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f596f752063616e206f6e6c79206d696e7420352054616e756b69204672656e00600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f206d6f726520667265652054616e756b6973206c65667400000000000000600082015250565b7f45786365656473206d6178696d756d2054616e756b696672656e20737570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b613e9081613644565b8114613e9b57600080fd5b50565b613ea781613656565b8114613eb257600080fd5b50565b613ebe81613662565b8114613ec957600080fd5b50565b613ed5816136ae565b8114613ee057600080fd5b5056fea2646970667358221220e08c084283a4fa211202dec5e678ad916e1f58953e983bb70f9a925eaa34690364736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d546979574a52457968363273524151474a537a7047664e71547a455255347958773665636d72596a5178504e2f00000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063c66828621161006f578063c6682862146106c6578063c87b56dd146106f1578063e985e9c51461072e578063f19e75d41461076b578063f2fde38b14610794576101f9565b8063a22cb46514610634578063a475b5dd1461065d578063b88d4fde14610674578063be99edbd1461069d576101f9565b806391b7f5ed116100dc57806391b7f5ed1461059957806395d89b41146105c25780639d1b464a146105ed578063a0712d6814610618576101f9565b806370a08231146104ef578063715018a61461052c57806379b6ed36146105435780638da5cb5b1461056e576101f9565b80633ccfd60b11610190578063557270861161015f578063557270861461040857806355f804b3146104335780635c975abb1461045c5780636352211e146104875780636c143862146104c4576101f9565b80633ccfd60b1461037257806342842e0e1461038957806342f2c050146103b257806351830227146103dd576101f9565b8063081812fc116101cc578063081812fc146102b8578063095ea7b3146102f557806318160ddd1461031e57806323b872dd14610349576101f9565b806301ffc9a7146101fe57806302329a291461023b57806306fdde03146102645780630806b7391461028f575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612af9565b6107bd565b604051610232919061310d565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d9190612acc565b61089f565b005b34801561027057600080fd5b50610279610938565b6040516102869190613128565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190612b9c565b6109ca565b005b3480156102c457600080fd5b506102df60048036038101906102da9190612b9c565b610a50565b6040516102ec91906130a6565b60405180910390f35b34801561030157600080fd5b5061031c60048036038101906103179190612a8c565b610ad5565b005b34801561032a57600080fd5b50610333610bed565b604051610340919061342a565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b9190612976565b610bfe565b005b34801561037e57600080fd5b50610387610c5e565b005b34801561039557600080fd5b506103b060048036038101906103ab9190612976565b610d8f565b005b3480156103be57600080fd5b506103c7610daf565b6040516103d4919061342a565b60405180910390f35b3480156103e957600080fd5b506103f2610db5565b6040516103ff919061310d565b60405180910390f35b34801561041457600080fd5b5061041d610dc8565b60405161042a919061342a565b60405180910390f35b34801561043f57600080fd5b5061045a60048036038101906104559190612b53565b610dce565b005b34801561046857600080fd5b50610471610e64565b60405161047e919061310d565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a99190612b9c565b610e77565b6040516104bb91906130a6565b60405180910390f35b3480156104d057600080fd5b506104d9610f29565b6040516104e6919061342a565b60405180910390f35b3480156104fb57600080fd5b5061051660048036038101906105119190612909565b610f3a565b604051610523919061342a565b60405180910390f35b34801561053857600080fd5b50610541610ff2565b005b34801561054f57600080fd5b5061055861107a565b6040516105659190613128565b60405180910390f35b34801561057a57600080fd5b50610583611108565b60405161059091906130a6565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb9190612b9c565b611132565b005b3480156105ce57600080fd5b506105d76111b8565b6040516105e49190613128565b60405180910390f35b3480156105f957600080fd5b5061060261124a565b60405161060f919061342a565b60405180910390f35b610632600480360381019061062d9190612b9c565b611250565b005b34801561064057600080fd5b5061065b60048036038101906106569190612a4c565b6113aa565b005b34801561066957600080fd5b506106726113c0565b005b34801561068057600080fd5b5061069b600480360381019061069691906129c9565b611459565b005b3480156106a957600080fd5b506106c460048036038101906106bf9190612b9c565b6114bb565b005b3480156106d257600080fd5b506106db6115b9565b6040516106e89190613128565b60405180910390f35b3480156106fd57600080fd5b5061071860048036038101906107139190612b9c565b611647565b6040516107259190613128565b60405180910390f35b34801561073a57600080fd5b5061075560048036038101906107509190612936565b6116f1565b604051610762919061310d565b60405180910390f35b34801561077757600080fd5b50610792600480360381019061078d9190612b9c565b611785565b005b3480156107a057600080fd5b506107bb60048036038101906107b69190612909565b611878565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610898575061089782611970565b5b9050919050565b6108a76119da565b73ffffffffffffffffffffffffffffffffffffffff166108c5611108565b73ffffffffffffffffffffffffffffffffffffffff161461091b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109129061334a565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b606060008054610947906136fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610973906136fa565b80156109c05780601f10610995576101008083540402835291602001916109c0565b820191906000526020600020905b8154815290600101906020018083116109a357829003601f168201915b5050505050905090565b6109d26119da565b73ffffffffffffffffffffffffffffffffffffffff166109f0611108565b73ffffffffffffffffffffffffffffffffffffffff1614610a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3d9061334a565b60405180910390fd5b80600d8190555050565b6000610a5b826119e2565b610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a919061332a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ae082610e77565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b48906133aa565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b706119da565b73ffffffffffffffffffffffffffffffffffffffff161480610b9f5750610b9e81610b996119da565b6116f1565b5b610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd59061326a565b60405180910390fd5b610be88383611a4e565b505050565b6000610bf96007611b07565b905090565b610c0f610c096119da565b82611b15565b610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c45906133ca565b60405180910390fd5b610c59838383611bf3565b505050565b610c666119da565b73ffffffffffffffffffffffffffffffffffffffff16610c84611108565b73ffffffffffffffffffffffffffffffffffffffff1614610cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd19061334a565b60405180910390fd5b600047905060003373ffffffffffffffffffffffffffffffffffffffff1682604051610d0590613091565b60006040518083038185875af1925050503d8060008114610d42576040519150601f19603f3d011682016040523d82523d6000602084013e610d47565b606091505b5050905080610d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d82906131ea565b60405180910390fd5b5050565b610daa83838360405180602001604052806000815250611459565b505050565b600c5481565b600e60019054906101000a900460ff1681565b600d5481565b610dd66119da565b73ffffffffffffffffffffffffffffffffffffffff16610df4611108565b73ffffffffffffffffffffffffffffffffffffffff1614610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e419061334a565b60405180910390fd5b8060089080519060200190610e6092919061271d565b5050565b600e60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f17906132aa565b60405180910390fd5b80915050919050565b6000610f356007611b07565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa29061328a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ffa6119da565b73ffffffffffffffffffffffffffffffffffffffff16611018611108565b73ffffffffffffffffffffffffffffffffffffffff161461106e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110659061334a565b60405180910390fd5b6110786000611e4f565b565b600a8054611087906136fa565b80601f01602080910402602001604051908101604052809291908181526020018280546110b3906136fa565b80156111005780601f106110d557610100808354040283529160200191611100565b820191906000526020600020905b8154815290600101906020018083116110e357829003601f168201915b505050505081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61113a6119da565b73ffffffffffffffffffffffffffffffffffffffff16611158611108565b73ffffffffffffffffffffffffffffffffffffffff16146111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a59061334a565b60405180910390fd5b80600b8190555050565b6060600180546111c7906136fa565b80601f01602080910402602001604051908101604052809291908181526020018280546111f3906136fa565b80156112405780601f1061121557610100808354040283529160200191611240565b820191906000526020600020905b81548152906001019060200180831161122357829003601f168201915b5050505050905090565b600b5481565b600061125c6007611b07565b9050600e60009054906101000a900460ff16156112ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a59061314a565b60405180910390fd5b601582106112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e8906132ca565b60405180910390fd5b6001600c54611300919061352f565b828261130c919061352f565b1061134c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113439061340a565b60405180910390fd5b81600b5461135a91906135b6565b34101561139c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113939061316a565b60405180910390fd5b6113a63383611f15565b5050565b6113bc6113b56119da565b8383611f55565b5050565b6113c86119da565b73ffffffffffffffffffffffffffffffffffffffff166113e6611108565b73ffffffffffffffffffffffffffffffffffffffff161461143c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114339061334a565b60405180910390fd5b6001600e60016101000a81548160ff021916908315150217905550565b61146a6114646119da565b83611b15565b6114a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a0906133ca565b60405180910390fd5b6114b5848484846120c2565b50505050565b60006114c76007611b07565b9050600e60009054906101000a900460ff1615611519576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115109061314a565b60405180910390fd5b6006821061155c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115539061330a565b60405180910390fd5b600d54828261156b919061352f565b106115ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a2906133ea565b60405180910390fd5b6115b53383611f15565b5050565b600980546115c6906136fa565b80601f01602080910402602001604051908101604052809291908181526020018280546115f2906136fa565b801561163f5780601f106116145761010080835404028352916020019161163f565b820191906000526020600020905b81548152906001019060200180831161162257829003601f168201915b505050505081565b6060611652826119e2565b611691576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116889061338a565b60405180910390fd5b600061169b61211e565b905060008151116116bb57604051806020016040528060008152506116e9565b806116c5846121b0565b60096040516020016116d993929190613060565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61178d6119da565b73ffffffffffffffffffffffffffffffffffffffff166117ab611108565b73ffffffffffffffffffffffffffffffffffffffff1614611801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f89061334a565b60405180910390fd5b600061180d6007611b07565b90506001600c5461181e919061352f565b828261182a919061352f565b1061186a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118619061340a565b60405180910390fd5b6118743383611f15565b5050565b6118806119da565b73ffffffffffffffffffffffffffffffffffffffff1661189e611108565b73ffffffffffffffffffffffffffffffffffffffff16146118f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118eb9061334a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195b906131aa565b60405180910390fd5b61196d81611e4f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ac183610e77565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611b20826119e2565b611b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b569061324a565b60405180910390fd5b6000611b6a83610e77565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611bd957508373ffffffffffffffffffffffffffffffffffffffff16611bc184610a50565b73ffffffffffffffffffffffffffffffffffffffff16145b80611bea5750611be981856116f1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c1382610e77565b73ffffffffffffffffffffffffffffffffffffffff1614611c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c609061336a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd09061320a565b60405180910390fd5b611ce4838383612311565b611cef600082611a4e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d3f9190613610565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d96919061352f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611f5057611f2a6007612316565b611f3d83611f386007611b07565b61232c565b8080611f489061375d565b915050611f18565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbb9061322a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120b5919061310d565b60405180910390a3505050565b6120cd848484611bf3565b6120d98484848461234a565b612118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210f9061318a565b60405180910390fd5b50505050565b60606008805461212d906136fa565b80601f0160208091040260200160405190810160405280929190818152602001828054612159906136fa565b80156121a65780601f1061217b576101008083540402835291602001916121a6565b820191906000526020600020905b81548152906001019060200180831161218957829003601f168201915b5050505050905090565b606060008214156121f8576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061230c565b600082905060005b6000821461222a5780806122139061375d565b915050600a826122239190613585565b9150612200565b60008167ffffffffffffffff81111561224657612245613893565b5b6040519080825280601f01601f1916602001820160405280156122785781602001600182028036833780820191505090505b5090505b60008514612305576001826122919190613610565b9150600a856122a091906137a6565b60306122ac919061352f565b60f81b8183815181106122c2576122c1613864565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122fe9190613585565b945061227c565b8093505050505b919050565b505050565b6001816000016000828254019250508190555050565b6123468282604051806020016040528060008152506124e1565b5050565b600061236b8473ffffffffffffffffffffffffffffffffffffffff1661253c565b156124d4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123946119da565b8786866040518563ffffffff1660e01b81526004016123b694939291906130c1565b602060405180830381600087803b1580156123d057600080fd5b505af192505050801561240157506040513d601f19601f820116820180604052508101906123fe9190612b26565b60015b612484573d8060008114612431576040519150601f19603f3d011682016040523d82523d6000602084013e612436565b606091505b5060008151141561247c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124739061318a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124d9565b600190505b949350505050565b6124eb838361254f565b6124f8600084848461234a565b612537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252e9061318a565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b6906132ea565b60405180910390fd5b6125c8816119e2565b15612608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ff906131ca565b60405180910390fd5b61261460008383612311565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612664919061352f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612729906136fa565b90600052602060002090601f01602090048101928261274b5760008555612792565b82601f1061276457805160ff1916838001178555612792565b82800160010185558215612792579182015b82811115612791578251825591602001919060010190612776565b5b50905061279f91906127a3565b5090565b5b808211156127bc5760008160009055506001016127a4565b5090565b60006127d36127ce8461346a565b613445565b9050828152602081018484840111156127ef576127ee6138c7565b5b6127fa8482856136b8565b509392505050565b60006128156128108461349b565b613445565b905082815260208101848484011115612831576128306138c7565b5b61283c8482856136b8565b509392505050565b60008135905061285381613e87565b92915050565b60008135905061286881613e9e565b92915050565b60008135905061287d81613eb5565b92915050565b60008151905061289281613eb5565b92915050565b600082601f8301126128ad576128ac6138c2565b5b81356128bd8482602086016127c0565b91505092915050565b600082601f8301126128db576128da6138c2565b5b81356128eb848260208601612802565b91505092915050565b60008135905061290381613ecc565b92915050565b60006020828403121561291f5761291e6138d1565b5b600061292d84828501612844565b91505092915050565b6000806040838503121561294d5761294c6138d1565b5b600061295b85828601612844565b925050602061296c85828601612844565b9150509250929050565b60008060006060848603121561298f5761298e6138d1565b5b600061299d86828701612844565b93505060206129ae86828701612844565b92505060406129bf868287016128f4565b9150509250925092565b600080600080608085870312156129e3576129e26138d1565b5b60006129f187828801612844565b9450506020612a0287828801612844565b9350506040612a13878288016128f4565b925050606085013567ffffffffffffffff811115612a3457612a336138cc565b5b612a4087828801612898565b91505092959194509250565b60008060408385031215612a6357612a626138d1565b5b6000612a7185828601612844565b9250506020612a8285828601612859565b9150509250929050565b60008060408385031215612aa357612aa26138d1565b5b6000612ab185828601612844565b9250506020612ac2858286016128f4565b9150509250929050565b600060208284031215612ae257612ae16138d1565b5b6000612af084828501612859565b91505092915050565b600060208284031215612b0f57612b0e6138d1565b5b6000612b1d8482850161286e565b91505092915050565b600060208284031215612b3c57612b3b6138d1565b5b6000612b4a84828501612883565b91505092915050565b600060208284031215612b6957612b686138d1565b5b600082013567ffffffffffffffff811115612b8757612b866138cc565b5b612b93848285016128c6565b91505092915050565b600060208284031215612bb257612bb16138d1565b5b6000612bc0848285016128f4565b91505092915050565b612bd281613644565b82525050565b612be181613656565b82525050565b6000612bf2826134e1565b612bfc81856134f7565b9350612c0c8185602086016136c7565b612c15816138d6565b840191505092915050565b6000612c2b826134ec565b612c358185613513565b9350612c458185602086016136c7565b612c4e816138d6565b840191505092915050565b6000612c64826134ec565b612c6e8185613524565b9350612c7e8185602086016136c7565b80840191505092915050565b60008154612c97816136fa565b612ca18186613524565b94506001821660008114612cbc5760018114612ccd57612d00565b60ff19831686528186019350612d00565b612cd6856134cc565b60005b83811015612cf857815481890152600182019150602081019050612cd9565b838801955050505b50505092915050565b6000612d16600b83613513565b9150612d21826138e7565b602082019050919050565b6000612d39601583613513565b9150612d4482613910565b602082019050919050565b6000612d5c603283613513565b9150612d6782613939565b604082019050919050565b6000612d7f602683613513565b9150612d8a82613988565b604082019050919050565b6000612da2601c83613513565b9150612dad826139d7565b602082019050919050565b6000612dc5601483613513565b9150612dd082613a00565b602082019050919050565b6000612de8602483613513565b9150612df382613a29565b604082019050919050565b6000612e0b601983613513565b9150612e1682613a78565b602082019050919050565b6000612e2e602c83613513565b9150612e3982613aa1565b604082019050919050565b6000612e51603883613513565b9150612e5c82613af0565b604082019050919050565b6000612e74602a83613513565b9150612e7f82613b3f565b604082019050919050565b6000612e97602983613513565b9150612ea282613b8e565b604082019050919050565b6000612eba601c83613513565b9150612ec582613bdd565b602082019050919050565b6000612edd602083613513565b9150612ee882613c06565b602082019050919050565b6000612f00601f83613513565b9150612f0b82613c2f565b602082019050919050565b6000612f23602c83613513565b9150612f2e82613c58565b604082019050919050565b6000612f46602083613513565b9150612f5182613ca7565b602082019050919050565b6000612f69602983613513565b9150612f7482613cd0565b604082019050919050565b6000612f8c602f83613513565b9150612f9782613d1f565b604082019050919050565b6000612faf602183613513565b9150612fba82613d6e565b604082019050919050565b6000612fd2600083613508565b9150612fdd82613dbd565b600082019050919050565b6000612ff5603183613513565b915061300082613dc0565b604082019050919050565b6000613018601983613513565b915061302382613e0f565b602082019050919050565b600061303b602183613513565b915061304682613e38565b604082019050919050565b61305a816136ae565b82525050565b600061306c8286612c59565b91506130788285612c59565b91506130848284612c8a565b9150819050949350505050565b600061309c82612fc5565b9150819050919050565b60006020820190506130bb6000830184612bc9565b92915050565b60006080820190506130d66000830187612bc9565b6130e36020830186612bc9565b6130f06040830185613051565b81810360608301526131028184612be7565b905095945050505050565b60006020820190506131226000830184612bd8565b92915050565b600060208201905081810360008301526131428184612c20565b905092915050565b6000602082019050818103600083015261316381612d09565b9050919050565b6000602082019050818103600083015261318381612d2c565b9050919050565b600060208201905081810360008301526131a381612d4f565b9050919050565b600060208201905081810360008301526131c381612d72565b9050919050565b600060208201905081810360008301526131e381612d95565b9050919050565b6000602082019050818103600083015261320381612db8565b9050919050565b6000602082019050818103600083015261322381612ddb565b9050919050565b6000602082019050818103600083015261324381612dfe565b9050919050565b6000602082019050818103600083015261326381612e21565b9050919050565b6000602082019050818103600083015261328381612e44565b9050919050565b600060208201905081810360008301526132a381612e67565b9050919050565b600060208201905081810360008301526132c381612e8a565b9050919050565b600060208201905081810360008301526132e381612ead565b9050919050565b6000602082019050818103600083015261330381612ed0565b9050919050565b6000602082019050818103600083015261332381612ef3565b9050919050565b6000602082019050818103600083015261334381612f16565b9050919050565b6000602082019050818103600083015261336381612f39565b9050919050565b6000602082019050818103600083015261338381612f5c565b9050919050565b600060208201905081810360008301526133a381612f7f565b9050919050565b600060208201905081810360008301526133c381612fa2565b9050919050565b600060208201905081810360008301526133e381612fe8565b9050919050565b600060208201905081810360008301526134038161300b565b9050919050565b600060208201905081810360008301526134238161302e565b9050919050565b600060208201905061343f6000830184613051565b92915050565b600061344f613460565b905061345b828261372c565b919050565b6000604051905090565b600067ffffffffffffffff82111561348557613484613893565b5b61348e826138d6565b9050602081019050919050565b600067ffffffffffffffff8211156134b6576134b5613893565b5b6134bf826138d6565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061353a826136ae565b9150613545836136ae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561357a576135796137d7565b5b828201905092915050565b6000613590826136ae565b915061359b836136ae565b9250826135ab576135aa613806565b5b828204905092915050565b60006135c1826136ae565b91506135cc836136ae565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613605576136046137d7565b5b828202905092915050565b600061361b826136ae565b9150613626836136ae565b925082821015613639576136386137d7565b5b828203905092915050565b600061364f8261368e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156136e55780820151818401526020810190506136ca565b838111156136f4576000848401525b50505050565b6000600282049050600182168061371257607f821691505b6020821081141561372657613725613835565b5b50919050565b613735826138d6565b810181811067ffffffffffffffff8211171561375457613753613893565b5b80604052505050565b6000613768826136ae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561379b5761379a6137d7565b5b600182019050919050565b60006137b1826136ae565b91506137bc836136ae565b9250826137cc576137cb613806565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f53616c6520706175736564000000000000000000000000000000000000000000600082015250565b7f4e6f7420656e6f7567682045746865722073656e740000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f596f752063616e206f6e6c79206d696e742032302054616e756b697300000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f596f752063616e206f6e6c79206d696e7420352054616e756b69204672656e00600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f206d6f726520667265652054616e756b6973206c65667400000000000000600082015250565b7f45786365656473206d6178696d756d2054616e756b696672656e20737570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b613e9081613644565b8114613e9b57600080fd5b50565b613ea781613656565b8114613eb257600080fd5b50565b613ebe81613662565b8114613ec957600080fd5b50565b613ed5816136ae565b8114613ee057600080fd5b5056fea2646970667358221220e08c084283a4fa211202dec5e678ad916e1f58953e983bb70f9a925eaa34690364736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d546979574a52457968363273524151474a537a7047664e71547a455255347958773665636d72596a5178504e2f00000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmTiyWJREyh62sRAQGJSzpGfNqTzERU4yXw6ecmrYjQxPN/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d546979574a52457968363273524151474a537a7047664e
Arg [3] : 71547a455255347958773665636d72596a5178504e2f00000000000000000000


Deployed Bytecode Sourcemap

37767:3895:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25207:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40584:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26152:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41199:136;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27711:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27234:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39756:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28461:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41450:209;;;;;;;;;;;;;:::i;:::-;;28871:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38083:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38206:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38128:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41087:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38174:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25846:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39642:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25576:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6195:103;;;;;;;;;;;;;:::i;:::-;;38003:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5544:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41343:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26321:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38036:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38865:527;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28004:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41010:69;;;;;;;;;;;;;:::i;:::-;;29127:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38497:360;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37959:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39873:644;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28230:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40697:263;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6453:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25207:305;25309:4;25361:25;25346:40;;;:11;:40;;;;:105;;;;25418:33;25403:48;;;:11;:48;;;;25346:105;:158;;;;25468:36;25492:11;25468:23;:36::i;:::-;25346:158;25326:178;;25207:305;;;:::o;40584:73::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40646:3:::1;40637:6;;:12;;;;;;;;;;;;;;;;;;40584:73:::0;:::o;26152:100::-;26206:13;26239:5;26232:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26152:100;:::o;41199:136::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41308:19:::1;41287:18;:40;;;;41199:136:::0;:::o;27711:221::-;27787:7;27815:16;27823:7;27815;:16::i;:::-;27807:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27900:15;:24;27916:7;27900:24;;;;;;;;;;;;;;;;;;;;;27893:31;;27711:221;;;:::o;27234:411::-;27315:13;27331:23;27346:7;27331:14;:23::i;:::-;27315:39;;27379:5;27373:11;;:2;:11;;;;27365:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27473:5;27457:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27482:37;27499:5;27506:12;:10;:12::i;:::-;27482:16;:37::i;:::-;27457:62;27435:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27616:21;27625:2;27629:7;27616:8;:21::i;:::-;27304:341;27234:411;;:::o;39756:103::-;39800:7;39827:24;:14;:22;:24::i;:::-;39820:31;;39756:103;:::o;28461:339::-;28656:41;28675:12;:10;:12::i;:::-;28689:7;28656:18;:41::i;:::-;28648:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28764:28;28774:4;28780:2;28784:7;28764:9;:28::i;:::-;28461:339;;;:::o;41450:209::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41498:14:::1;41515:21;41498:38;;41548:12;41566:10;:15;;41589:6;41566:34;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41547:53;;;41619:7;41611:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;41487:172;;41450:209::o:0;28871:185::-;29009:39;29026:4;29032:2;29036:7;29009:39;;;;;;;;;;;;:16;:39::i;:::-;28871:185;;;:::o;38083:38::-;;;;:::o;38206:28::-;;;;;;;;;;;;;:::o;38128:39::-;;;;:::o;41087:104::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41172:11:::1;41162:7;:21;;;;;;;;;;;;:::i;:::-;;41087:104:::0;:::o;38174:25::-;;;;;;;;;;;;;:::o;25846:239::-;25918:7;25938:13;25954:7;:16;25962:7;25954:16;;;;;;;;;;;;;;;;;;;;;25938:32;;26006:1;25989:19;;:5;:19;;;;25981:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26072:5;26065:12;;;25846:239;;;:::o;39642:106::-;39689:7;39716:24;:14;:22;:24::i;:::-;39709:31;;39642:106;:::o;25576:208::-;25648:7;25693:1;25676:19;;:5;:19;;;;25668:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25760:9;:16;25770:5;25760:16;;;;;;;;;;;;;;;;25753:23;;25576:208;;;:::o;6195:103::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;38003:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5544:87::-;5590:7;5617:6;;;;;;;;;;;5610:13;;5544:87;:::o;41343:97::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41423:9:::1;41408:12;:24;;;;41343:97:::0;:::o;26321:104::-;26377:13;26410:7;26403:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26321:104;:::o;38036:40::-;;;;:::o;38865:527::-;38927:14;38944:24;:14;:22;:24::i;:::-;38927:41;;38988:6;;;;;;;;;;;38987:7;38979:31;;;;;;;;;;;;:::i;:::-;;;;;;;;;39042:2;39029:10;:15;39021:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;39151:1;39132:16;;:20;;;;:::i;:::-;39119:10;39110:6;:19;;;;:::i;:::-;:42;39088:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;39274:10;39259:12;;:25;;;;:::i;:::-;39246:9;:38;;39224:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;39346:38;39361:10;39373;39346:14;:38::i;:::-;38916:476;38865:527;:::o;28004:155::-;28099:52;28118:12;:10;:12::i;:::-;28132:8;28142;28099:18;:52::i;:::-;28004:155;;:::o;41010:69::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41067:4:::1;41056:8;;:15;;;;;;;;;;;;;;;;;;41010:69::o:0;29127:328::-;29302:41;29321:12;:10;:12::i;:::-;29335:7;29302:18;:41::i;:::-;29294:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29408:39;29422:4;29428:2;29432:7;29441:5;29408:13;:39::i;:::-;29127:328;;;;:::o;38497:360::-;38559:14;38576:24;:14;:22;:24::i;:::-;38559:41;;38620:6;;;;;;;;;;;38619:7;38611:31;;;;;;;;;;;;:::i;:::-;;;;;;;;;38674:1;38661:10;:14;38653:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;38752:18;;38739:10;38730:6;:19;;;;:::i;:::-;:40;38722:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;38811:38;38826:10;38838;38811:14;:38::i;:::-;38548:309;38497:360;:::o;37959:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39873:644::-;39991:13;40044:16;40052:7;40044;:16::i;:::-;40022:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;40150:28;40181:10;:8;:10::i;:::-;40150:41;;40253:1;40228:14;40222:28;:32;:287;;;;;;;;;;;;;;;;;40346:14;40387:18;:7;:16;:18::i;:::-;40432:13;40303:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40222:287;40202:307;;;39873:644;;;:::o;28230:164::-;28327:4;28351:18;:25;28370:5;28351:25;;;;;;;;;;;;;;;:35;28377:8;28351:35;;;;;;;;;;;;;;;;;;;;;;;;;28344:42;;28230:164;;;;:::o;40697:263::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40764:14:::1;40781:24;:14;:22;:24::i;:::-;40764:41;;40865:1;40846:16;;:20;;;;:::i;:::-;40833:10;40824:6;:19;;;;:::i;:::-;:42;40816:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;40914:38;40929:10;40941;40914:14;:38::i;:::-;40753:207;40697:263:::0;:::o;6453:201::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6562:1:::1;6542:22;;:8;:22;;;;6534:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6618:28;6637:8;6618:18;:28::i;:::-;6453:201:::0;:::o;17976:157::-;18061:4;18100:25;18085:40;;;:11;:40;;;;18078:47;;17976:157;;;:::o;4268:98::-;4321:7;4348:10;4341:17;;4268:98;:::o;30965:127::-;31030:4;31082:1;31054:30;;:7;:16;31062:7;31054:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31047:37;;30965:127;;;:::o;34947:174::-;35049:2;35022:15;:24;35038:7;35022:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35105:7;35101:2;35067:46;;35076:23;35091:7;35076:14;:23::i;:::-;35067:46;;;;;;;;;;;;34947:174;;:::o;872:114::-;937:7;964;:14;;;957:21;;872:114;;;:::o;31259:348::-;31352:4;31377:16;31385:7;31377;:16::i;:::-;31369:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31453:13;31469:23;31484:7;31469:14;:23::i;:::-;31453:39;;31522:5;31511:16;;:7;:16;;;:51;;;;31555:7;31531:31;;:20;31543:7;31531:11;:20::i;:::-;:31;;;31511:51;:87;;;;31566:32;31583:5;31590:7;31566:16;:32::i;:::-;31511:87;31503:96;;;31259:348;;;;:::o;34251:578::-;34410:4;34383:31;;:23;34398:7;34383:14;:23::i;:::-;:31;;;34375:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;34493:1;34479:16;;:2;:16;;;;34471:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34549:39;34570:4;34576:2;34580:7;34549:20;:39::i;:::-;34653:29;34670:1;34674:7;34653:8;:29::i;:::-;34714:1;34695:9;:15;34705:4;34695:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34743:1;34726:9;:13;34736:2;34726:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34774:2;34755:7;:16;34763:7;34755:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34813:7;34809:2;34794:27;;34803:4;34794:27;;;;;;;;;;;;34251:578;;;:::o;6814:191::-;6888:16;6907:6;;;;;;;;;;;6888:25;;6933:8;6924:6;;:17;;;;;;;;;;;;;;;;;;6988:8;6957:40;;6978:8;6957:40;;;;;;;;;;;;6877:128;6814:191;:::o;39400:234::-;39482:9;39477:150;39501:10;39497:1;:14;39477:150;;;39533:26;:14;:24;:26::i;:::-;39574:41;39584:4;39590:24;:14;:22;:24::i;:::-;39574:9;:41::i;:::-;39513:3;;;;;:::i;:::-;;;;39477:150;;;;39400:234;;:::o;35263:315::-;35418:8;35409:17;;:5;:17;;;;35401:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;35505:8;35467:18;:25;35486:5;35467:25;;;;;;;;;;;;;;;:35;35493:8;35467:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35551:8;35529:41;;35544:5;35529:41;;;35561:8;35529:41;;;;;;:::i;:::-;;;;;;;;35263:315;;;:::o;30337:::-;30494:28;30504:4;30510:2;30514:7;30494:9;:28::i;:::-;30541:48;30564:4;30570:2;30574:7;30583:5;30541:22;:48::i;:::-;30533:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30337:315;;;;:::o;38387:100::-;38439:13;38472:7;38465:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38387:100;:::o;1830:723::-;1886:13;2116:1;2107:5;:10;2103:53;;;2134:10;;;;;;;;;;;;;;;;;;;;;2103:53;2166:12;2181:5;2166:20;;2197:14;2222:78;2237:1;2229:4;:9;2222:78;;2255:8;;;;;:::i;:::-;;;;2286:2;2278:10;;;;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2310:39;;2360:154;2376:1;2367:5;:10;2360:154;;2404:1;2394:11;;;;;:::i;:::-;;;2471:2;2463:5;:10;;;;:::i;:::-;2450:2;:24;;;;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2500:2;2491:11;;;;;:::i;:::-;;;2360:154;;;2538:6;2524:21;;;;;1830:723;;;;:::o;37514:126::-;;;;:::o;994:127::-;1101:1;1083:7;:14;;;:19;;;;;;;;;;;994:127;:::o;31949:110::-;32025:26;32035:2;32039:7;32025:26;;;;;;;;;;;;:9;:26::i;:::-;31949:110;;:::o;36143:799::-;36298:4;36319:15;:2;:13;;;:15::i;:::-;36315:620;;;36371:2;36355:36;;;36392:12;:10;:12::i;:::-;36406:4;36412:7;36421:5;36355:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36351:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36614:1;36597:6;:13;:18;36593:272;;;36640:60;;;;;;;;;;:::i;:::-;;;;;;;;36593:272;36815:6;36809:13;36800:6;36796:2;36792:15;36785:38;36351:529;36488:41;;;36478:51;;;:6;:51;;;;36471:58;;;;;36315:620;36919:4;36912:11;;36143:799;;;;;;;:::o;32286:321::-;32416:18;32422:2;32426:7;32416:5;:18::i;:::-;32467:54;32498:1;32502:2;32506:7;32515:5;32467:22;:54::i;:::-;32445:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32286:321;;;:::o;7832:387::-;7892:4;8100:12;8167:7;8155:20;8147:28;;8210:1;8203:4;:8;8196:15;;;7832:387;;;:::o;32943:382::-;33037:1;33023:16;;:2;:16;;;;33015:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33096:16;33104:7;33096;:16::i;:::-;33095:17;33087:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33158:45;33187:1;33191:2;33195:7;33158:20;:45::i;:::-;33233:1;33216:9;:13;33226:2;33216:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33264:2;33245:7;:16;33253:7;33245:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33309:7;33305:2;33284:33;;33301:1;33284:33;;;;;;;;;;;;32943:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410: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:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8869:845::-;8972:3;9009:5;9003:12;9038:36;9064:9;9038:36;:::i;:::-;9090:89;9172:6;9167:3;9090:89;:::i;:::-;9083:96;;9210:1;9199:9;9195:17;9226:1;9221:137;;;;9372:1;9367:341;;;;9188:520;;9221:137;9305:4;9301:9;9290;9286:25;9281:3;9274:38;9341:6;9336:3;9332:16;9325:23;;9221:137;;9367:341;9434:38;9466:5;9434:38;:::i;:::-;9494:1;9508:154;9522:6;9519:1;9516:13;9508:154;;;9596:7;9590:14;9586:1;9581:3;9577:11;9570:35;9646:1;9637:7;9633:15;9622:26;;9544:4;9541:1;9537:12;9532:17;;9508:154;;;9691:6;9686:3;9682:16;9675:23;;9374:334;;9188:520;;8976:738;;8869:845;;;;:::o;9720:366::-;9862:3;9883:67;9947:2;9942:3;9883:67;:::i;:::-;9876:74;;9959:93;10048:3;9959:93;:::i;:::-;10077:2;10072:3;10068:12;10061:19;;9720:366;;;:::o;10092:::-;10234:3;10255:67;10319:2;10314:3;10255:67;:::i;:::-;10248:74;;10331:93;10420:3;10331:93;:::i;:::-;10449:2;10444:3;10440:12;10433:19;;10092:366;;;:::o;10464:::-;10606:3;10627:67;10691:2;10686:3;10627:67;:::i;:::-;10620:74;;10703:93;10792:3;10703:93;:::i;:::-;10821:2;10816:3;10812:12;10805:19;;10464:366;;;:::o;10836:::-;10978:3;10999:67;11063:2;11058:3;10999:67;:::i;:::-;10992:74;;11075:93;11164:3;11075:93;:::i;:::-;11193:2;11188:3;11184:12;11177:19;;10836:366;;;:::o;11208:::-;11350:3;11371:67;11435:2;11430:3;11371:67;:::i;:::-;11364:74;;11447:93;11536:3;11447:93;:::i;:::-;11565:2;11560:3;11556:12;11549:19;;11208:366;;;:::o;11580:::-;11722:3;11743:67;11807:2;11802:3;11743:67;:::i;:::-;11736:74;;11819:93;11908:3;11819:93;:::i;:::-;11937:2;11932:3;11928:12;11921:19;;11580:366;;;:::o;11952:::-;12094:3;12115:67;12179:2;12174:3;12115:67;:::i;:::-;12108:74;;12191:93;12280:3;12191:93;:::i;:::-;12309:2;12304:3;12300:12;12293:19;;11952:366;;;:::o;12324:::-;12466:3;12487:67;12551:2;12546:3;12487:67;:::i;:::-;12480:74;;12563:93;12652:3;12563:93;:::i;:::-;12681:2;12676:3;12672:12;12665:19;;12324:366;;;:::o;12696:::-;12838:3;12859:67;12923:2;12918:3;12859:67;:::i;:::-;12852:74;;12935:93;13024:3;12935:93;:::i;:::-;13053:2;13048:3;13044:12;13037:19;;12696:366;;;:::o;13068:::-;13210:3;13231:67;13295:2;13290:3;13231:67;:::i;:::-;13224:74;;13307:93;13396:3;13307:93;:::i;:::-;13425:2;13420:3;13416:12;13409:19;;13068:366;;;:::o;13440:::-;13582:3;13603:67;13667:2;13662:3;13603:67;:::i;:::-;13596:74;;13679:93;13768:3;13679:93;:::i;:::-;13797:2;13792:3;13788:12;13781:19;;13440:366;;;:::o;13812:::-;13954:3;13975:67;14039:2;14034:3;13975:67;:::i;:::-;13968:74;;14051:93;14140:3;14051:93;:::i;:::-;14169:2;14164:3;14160:12;14153:19;;13812:366;;;:::o;14184:::-;14326:3;14347:67;14411:2;14406:3;14347:67;:::i;:::-;14340:74;;14423:93;14512:3;14423:93;:::i;:::-;14541:2;14536:3;14532:12;14525:19;;14184:366;;;:::o;14556:::-;14698:3;14719:67;14783:2;14778:3;14719:67;:::i;:::-;14712:74;;14795:93;14884:3;14795:93;:::i;:::-;14913:2;14908:3;14904:12;14897:19;;14556:366;;;:::o;14928:::-;15070:3;15091:67;15155:2;15150:3;15091:67;:::i;:::-;15084:74;;15167:93;15256:3;15167:93;:::i;:::-;15285:2;15280:3;15276:12;15269:19;;14928:366;;;:::o;15300:::-;15442:3;15463:67;15527:2;15522:3;15463:67;:::i;:::-;15456:74;;15539:93;15628:3;15539:93;:::i;:::-;15657:2;15652:3;15648:12;15641:19;;15300:366;;;:::o;15672:::-;15814:3;15835:67;15899:2;15894:3;15835:67;:::i;:::-;15828:74;;15911:93;16000:3;15911:93;:::i;:::-;16029:2;16024:3;16020:12;16013:19;;15672:366;;;:::o;16044:::-;16186:3;16207:67;16271:2;16266:3;16207:67;:::i;:::-;16200:74;;16283:93;16372:3;16283:93;:::i;:::-;16401:2;16396:3;16392:12;16385:19;;16044:366;;;:::o;16416:::-;16558:3;16579:67;16643:2;16638:3;16579:67;:::i;:::-;16572:74;;16655:93;16744:3;16655:93;:::i;:::-;16773:2;16768:3;16764:12;16757:19;;16416:366;;;:::o;16788:::-;16930:3;16951:67;17015:2;17010:3;16951:67;:::i;:::-;16944:74;;17027:93;17116:3;17027:93;:::i;:::-;17145:2;17140:3;17136:12;17129:19;;16788:366;;;:::o;17160:398::-;17319:3;17340:83;17421:1;17416:3;17340:83;:::i;:::-;17333:90;;17432:93;17521:3;17432:93;:::i;:::-;17550:1;17545:3;17541:11;17534:18;;17160:398;;;:::o;17564:366::-;17706:3;17727:67;17791:2;17786:3;17727:67;:::i;:::-;17720:74;;17803:93;17892:3;17803:93;:::i;:::-;17921:2;17916:3;17912:12;17905:19;;17564:366;;;:::o;17936:::-;18078:3;18099:67;18163:2;18158:3;18099:67;:::i;:::-;18092:74;;18175:93;18264:3;18175:93;:::i;:::-;18293:2;18288:3;18284:12;18277:19;;17936:366;;;:::o;18308:::-;18450:3;18471:67;18535:2;18530:3;18471:67;:::i;:::-;18464:74;;18547:93;18636:3;18547:93;:::i;:::-;18665:2;18660:3;18656:12;18649:19;;18308:366;;;:::o;18680:118::-;18767:24;18785:5;18767:24;:::i;:::-;18762:3;18755:37;18680:118;;:::o;18804:589::-;19029:3;19051:95;19142:3;19133:6;19051:95;:::i;:::-;19044:102;;19163:95;19254:3;19245:6;19163:95;:::i;:::-;19156:102;;19275:92;19363:3;19354:6;19275:92;:::i;:::-;19268:99;;19384:3;19377:10;;18804:589;;;;;;:::o;19399:379::-;19583:3;19605:147;19748:3;19605:147;:::i;:::-;19598:154;;19769:3;19762:10;;19399:379;;;:::o;19784:222::-;19877:4;19915:2;19904:9;19900:18;19892:26;;19928:71;19996:1;19985:9;19981:17;19972:6;19928:71;:::i;:::-;19784:222;;;;:::o;20012:640::-;20207:4;20245:3;20234:9;20230:19;20222:27;;20259:71;20327:1;20316:9;20312:17;20303:6;20259:71;:::i;:::-;20340:72;20408:2;20397:9;20393:18;20384:6;20340:72;:::i;:::-;20422;20490:2;20479:9;20475:18;20466:6;20422:72;:::i;:::-;20541:9;20535:4;20531:20;20526:2;20515:9;20511:18;20504:48;20569:76;20640:4;20631:6;20569:76;:::i;:::-;20561:84;;20012:640;;;;;;;:::o;20658:210::-;20745:4;20783:2;20772:9;20768:18;20760:26;;20796:65;20858:1;20847:9;20843:17;20834:6;20796:65;:::i;:::-;20658:210;;;;:::o;20874:313::-;20987:4;21025:2;21014:9;21010:18;21002:26;;21074:9;21068:4;21064:20;21060:1;21049:9;21045:17;21038:47;21102:78;21175:4;21166:6;21102:78;:::i;:::-;21094:86;;20874:313;;;;:::o;21193:419::-;21359:4;21397:2;21386:9;21382:18;21374:26;;21446:9;21440:4;21436:20;21432:1;21421:9;21417:17;21410:47;21474:131;21600:4;21474:131;:::i;:::-;21466:139;;21193:419;;;:::o;21618:::-;21784:4;21822:2;21811:9;21807:18;21799:26;;21871:9;21865:4;21861:20;21857:1;21846:9;21842:17;21835:47;21899:131;22025:4;21899:131;:::i;:::-;21891:139;;21618:419;;;:::o;22043:::-;22209:4;22247:2;22236:9;22232:18;22224:26;;22296:9;22290:4;22286:20;22282:1;22271:9;22267:17;22260:47;22324:131;22450:4;22324:131;:::i;:::-;22316:139;;22043:419;;;:::o;22468:::-;22634:4;22672:2;22661:9;22657:18;22649:26;;22721:9;22715:4;22711:20;22707:1;22696:9;22692:17;22685:47;22749:131;22875:4;22749:131;:::i;:::-;22741:139;;22468:419;;;:::o;22893:::-;23059:4;23097:2;23086:9;23082:18;23074:26;;23146:9;23140:4;23136:20;23132:1;23121:9;23117:17;23110:47;23174:131;23300:4;23174:131;:::i;:::-;23166:139;;22893:419;;;:::o;23318:::-;23484:4;23522:2;23511:9;23507:18;23499:26;;23571:9;23565:4;23561:20;23557:1;23546:9;23542:17;23535:47;23599:131;23725:4;23599:131;:::i;:::-;23591:139;;23318:419;;;:::o;23743:::-;23909:4;23947:2;23936:9;23932:18;23924:26;;23996:9;23990:4;23986:20;23982:1;23971:9;23967:17;23960:47;24024:131;24150:4;24024:131;:::i;:::-;24016:139;;23743:419;;;:::o;24168:::-;24334:4;24372:2;24361:9;24357:18;24349:26;;24421:9;24415:4;24411:20;24407:1;24396:9;24392:17;24385:47;24449:131;24575:4;24449:131;:::i;:::-;24441:139;;24168:419;;;:::o;24593:::-;24759:4;24797:2;24786:9;24782:18;24774:26;;24846:9;24840:4;24836:20;24832:1;24821:9;24817:17;24810:47;24874:131;25000:4;24874:131;:::i;:::-;24866:139;;24593:419;;;:::o;25018:::-;25184:4;25222:2;25211:9;25207:18;25199:26;;25271:9;25265:4;25261:20;25257:1;25246:9;25242:17;25235:47;25299:131;25425:4;25299:131;:::i;:::-;25291:139;;25018:419;;;:::o;25443:::-;25609:4;25647:2;25636:9;25632:18;25624:26;;25696:9;25690:4;25686:20;25682:1;25671:9;25667:17;25660:47;25724:131;25850:4;25724:131;:::i;:::-;25716:139;;25443:419;;;:::o;25868:::-;26034:4;26072:2;26061:9;26057:18;26049:26;;26121:9;26115:4;26111:20;26107:1;26096:9;26092:17;26085:47;26149:131;26275:4;26149:131;:::i;:::-;26141:139;;25868:419;;;:::o;26293:::-;26459:4;26497:2;26486:9;26482:18;26474:26;;26546:9;26540:4;26536:20;26532:1;26521:9;26517:17;26510:47;26574:131;26700:4;26574:131;:::i;:::-;26566:139;;26293:419;;;:::o;26718:::-;26884:4;26922:2;26911:9;26907:18;26899:26;;26971:9;26965:4;26961:20;26957:1;26946:9;26942:17;26935:47;26999:131;27125:4;26999:131;:::i;:::-;26991:139;;26718:419;;;:::o;27143:::-;27309:4;27347:2;27336:9;27332:18;27324:26;;27396:9;27390:4;27386:20;27382:1;27371:9;27367:17;27360:47;27424:131;27550:4;27424:131;:::i;:::-;27416:139;;27143:419;;;:::o;27568:::-;27734:4;27772:2;27761:9;27757:18;27749:26;;27821:9;27815:4;27811:20;27807:1;27796:9;27792:17;27785:47;27849:131;27975:4;27849:131;:::i;:::-;27841:139;;27568:419;;;:::o;27993:::-;28159:4;28197:2;28186:9;28182:18;28174:26;;28246:9;28240:4;28236:20;28232:1;28221:9;28217:17;28210:47;28274:131;28400:4;28274:131;:::i;:::-;28266:139;;27993:419;;;:::o;28418:::-;28584:4;28622:2;28611:9;28607:18;28599:26;;28671:9;28665:4;28661:20;28657:1;28646:9;28642:17;28635:47;28699:131;28825:4;28699:131;:::i;:::-;28691:139;;28418:419;;;:::o;28843:::-;29009:4;29047:2;29036:9;29032:18;29024:26;;29096:9;29090:4;29086:20;29082:1;29071:9;29067:17;29060:47;29124:131;29250:4;29124:131;:::i;:::-;29116:139;;28843:419;;;:::o;29268:::-;29434:4;29472:2;29461:9;29457:18;29449:26;;29521:9;29515:4;29511:20;29507:1;29496:9;29492:17;29485:47;29549:131;29675:4;29549:131;:::i;:::-;29541:139;;29268:419;;;:::o;29693:::-;29859:4;29897:2;29886:9;29882:18;29874:26;;29946:9;29940:4;29936:20;29932:1;29921:9;29917:17;29910:47;29974:131;30100:4;29974:131;:::i;:::-;29966:139;;29693:419;;;:::o;30118:::-;30284:4;30322:2;30311:9;30307:18;30299:26;;30371:9;30365:4;30361:20;30357:1;30346:9;30342:17;30335:47;30399:131;30525:4;30399:131;:::i;:::-;30391:139;;30118:419;;;:::o;30543:::-;30709:4;30747:2;30736:9;30732:18;30724:26;;30796:9;30790:4;30786:20;30782:1;30771:9;30767:17;30760:47;30824:131;30950:4;30824:131;:::i;:::-;30816:139;;30543:419;;;:::o;30968:222::-;31061:4;31099:2;31088:9;31084:18;31076:26;;31112:71;31180:1;31169:9;31165:17;31156:6;31112:71;:::i;:::-;30968:222;;;;:::o;31196:129::-;31230:6;31257:20;;:::i;:::-;31247:30;;31286:33;31314:4;31306:6;31286:33;:::i;:::-;31196:129;;;:::o;31331:75::-;31364:6;31397:2;31391:9;31381:19;;31331:75;:::o;31412:307::-;31473:4;31563:18;31555:6;31552:30;31549:56;;;31585:18;;:::i;:::-;31549:56;31623:29;31645:6;31623:29;:::i;:::-;31615:37;;31707:4;31701;31697:15;31689:23;;31412:307;;;:::o;31725:308::-;31787:4;31877:18;31869:6;31866:30;31863:56;;;31899:18;;:::i;:::-;31863:56;31937:29;31959:6;31937:29;:::i;:::-;31929:37;;32021:4;32015;32011:15;32003:23;;31725:308;;;:::o;32039:141::-;32088:4;32111:3;32103:11;;32134:3;32131:1;32124:14;32168:4;32165:1;32155:18;32147:26;;32039:141;;;:::o;32186:98::-;32237:6;32271:5;32265:12;32255:22;;32186:98;;;:::o;32290:99::-;32342:6;32376:5;32370:12;32360:22;;32290:99;;;:::o;32395:168::-;32478:11;32512:6;32507:3;32500:19;32552:4;32547:3;32543:14;32528:29;;32395:168;;;;:::o;32569:147::-;32670:11;32707:3;32692:18;;32569:147;;;;:::o;32722:169::-;32806:11;32840:6;32835:3;32828:19;32880:4;32875:3;32871:14;32856:29;;32722:169;;;;:::o;32897:148::-;32999:11;33036:3;33021:18;;32897:148;;;;:::o;33051:305::-;33091:3;33110:20;33128:1;33110:20;:::i;:::-;33105:25;;33144:20;33162:1;33144:20;:::i;:::-;33139:25;;33298:1;33230:66;33226:74;33223:1;33220:81;33217:107;;;33304:18;;:::i;:::-;33217:107;33348:1;33345;33341:9;33334:16;;33051:305;;;;:::o;33362:185::-;33402:1;33419:20;33437:1;33419:20;:::i;:::-;33414:25;;33453:20;33471:1;33453:20;:::i;:::-;33448:25;;33492:1;33482:35;;33497:18;;:::i;:::-;33482:35;33539:1;33536;33532:9;33527:14;;33362:185;;;;:::o;33553:348::-;33593:7;33616:20;33634:1;33616:20;:::i;:::-;33611:25;;33650:20;33668:1;33650:20;:::i;:::-;33645:25;;33838:1;33770:66;33766:74;33763:1;33760:81;33755:1;33748:9;33741:17;33737:105;33734:131;;;33845:18;;:::i;:::-;33734:131;33893:1;33890;33886:9;33875:20;;33553:348;;;;:::o;33907:191::-;33947:4;33967:20;33985:1;33967:20;:::i;:::-;33962:25;;34001:20;34019:1;34001:20;:::i;:::-;33996:25;;34040:1;34037;34034:8;34031:34;;;34045:18;;:::i;:::-;34031:34;34090:1;34087;34083:9;34075:17;;33907:191;;;;:::o;34104:96::-;34141:7;34170:24;34188:5;34170:24;:::i;:::-;34159:35;;34104:96;;;:::o;34206:90::-;34240:7;34283:5;34276:13;34269:21;34258:32;;34206:90;;;:::o;34302:149::-;34338:7;34378:66;34371:5;34367:78;34356:89;;34302:149;;;:::o;34457:126::-;34494:7;34534:42;34527:5;34523:54;34512:65;;34457:126;;;:::o;34589:77::-;34626:7;34655:5;34644:16;;34589:77;;;:::o;34672:154::-;34756:6;34751:3;34746;34733:30;34818:1;34809:6;34804:3;34800:16;34793:27;34672:154;;;:::o;34832:307::-;34900:1;34910:113;34924:6;34921:1;34918:13;34910:113;;;35009:1;35004:3;35000:11;34994:18;34990:1;34985:3;34981:11;34974:39;34946:2;34943:1;34939:10;34934:15;;34910:113;;;35041:6;35038:1;35035:13;35032:101;;;35121:1;35112:6;35107:3;35103:16;35096:27;35032:101;34881:258;34832:307;;;:::o;35145:320::-;35189:6;35226:1;35220:4;35216:12;35206:22;;35273:1;35267:4;35263:12;35294:18;35284:81;;35350:4;35342:6;35338:17;35328:27;;35284:81;35412:2;35404:6;35401:14;35381:18;35378:38;35375:84;;;35431:18;;:::i;:::-;35375:84;35196:269;35145:320;;;:::o;35471:281::-;35554:27;35576:4;35554:27;:::i;:::-;35546:6;35542:40;35684:6;35672:10;35669:22;35648:18;35636:10;35633:34;35630:62;35627:88;;;35695:18;;:::i;:::-;35627:88;35735:10;35731:2;35724:22;35514:238;35471:281;;:::o;35758:233::-;35797:3;35820:24;35838:5;35820:24;:::i;:::-;35811:33;;35866:66;35859:5;35856:77;35853:103;;;35936:18;;:::i;:::-;35853:103;35983:1;35976:5;35972:13;35965:20;;35758:233;;;:::o;35997:176::-;36029:1;36046:20;36064:1;36046:20;:::i;:::-;36041:25;;36080:20;36098:1;36080:20;:::i;:::-;36075:25;;36119:1;36109:35;;36124:18;;:::i;:::-;36109:35;36165:1;36162;36158:9;36153:14;;35997:176;;;;:::o;36179:180::-;36227:77;36224:1;36217:88;36324:4;36321:1;36314:15;36348:4;36345:1;36338:15;36365:180;36413:77;36410:1;36403:88;36510:4;36507:1;36500:15;36534:4;36531:1;36524:15;36551:180;36599:77;36596:1;36589:88;36696:4;36693:1;36686:15;36720:4;36717:1;36710:15;36737:180;36785:77;36782:1;36775:88;36882:4;36879:1;36872:15;36906:4;36903:1;36896:15;36923:180;36971:77;36968:1;36961:88;37068:4;37065:1;37058:15;37092:4;37089:1;37082:15;37109:117;37218:1;37215;37208:12;37232:117;37341:1;37338;37331:12;37355:117;37464:1;37461;37454:12;37478:117;37587:1;37584;37577:12;37601:102;37642:6;37693:2;37689:7;37684:2;37677:5;37673:14;37669:28;37659:38;;37601:102;;;:::o;37709:161::-;37849:13;37845:1;37837:6;37833:14;37826:37;37709:161;:::o;37876:171::-;38016:23;38012:1;38004:6;38000:14;37993:47;37876:171;:::o;38053:237::-;38193:34;38189:1;38181:6;38177:14;38170:58;38262:20;38257:2;38249:6;38245:15;38238:45;38053:237;:::o;38296:225::-;38436:34;38432:1;38424:6;38420:14;38413:58;38505:8;38500:2;38492:6;38488:15;38481:33;38296:225;:::o;38527:178::-;38667:30;38663:1;38655:6;38651:14;38644:54;38527:178;:::o;38711:170::-;38851:22;38847:1;38839:6;38835:14;38828:46;38711:170;:::o;38887:223::-;39027:34;39023:1;39015:6;39011:14;39004:58;39096:6;39091:2;39083:6;39079:15;39072:31;38887:223;:::o;39116:175::-;39256:27;39252:1;39244:6;39240:14;39233:51;39116:175;:::o;39297:231::-;39437:34;39433:1;39425:6;39421:14;39414:58;39506:14;39501:2;39493:6;39489:15;39482:39;39297:231;:::o;39534:243::-;39674:34;39670:1;39662:6;39658:14;39651:58;39743:26;39738:2;39730:6;39726:15;39719:51;39534:243;:::o;39783:229::-;39923:34;39919:1;39911:6;39907:14;39900:58;39992:12;39987:2;39979:6;39975:15;39968:37;39783:229;:::o;40018:228::-;40158:34;40154:1;40146:6;40142:14;40135:58;40227:11;40222:2;40214:6;40210:15;40203:36;40018:228;:::o;40252:178::-;40392:30;40388:1;40380:6;40376:14;40369:54;40252:178;:::o;40436:182::-;40576:34;40572:1;40564:6;40560:14;40553:58;40436:182;:::o;40624:181::-;40764:33;40760:1;40752:6;40748:14;40741:57;40624:181;:::o;40811:231::-;40951:34;40947:1;40939:6;40935:14;40928:58;41020:14;41015:2;41007:6;41003:15;40996:39;40811:231;:::o;41048:182::-;41188:34;41184:1;41176:6;41172:14;41165:58;41048:182;:::o;41236:228::-;41376:34;41372:1;41364:6;41360:14;41353:58;41445:11;41440:2;41432:6;41428:15;41421:36;41236:228;:::o;41470:234::-;41610:34;41606:1;41598:6;41594:14;41587:58;41679:17;41674:2;41666:6;41662:15;41655:42;41470:234;:::o;41710:220::-;41850:34;41846:1;41838:6;41834:14;41827:58;41919:3;41914:2;41906:6;41902:15;41895:28;41710:220;:::o;41936:114::-;;:::o;42056:236::-;42196:34;42192:1;42184:6;42180:14;42173:58;42265:19;42260:2;42252:6;42248:15;42241:44;42056:236;:::o;42298:175::-;42438:27;42434:1;42426:6;42422:14;42415:51;42298:175;:::o;42479:220::-;42619:34;42615:1;42607:6;42603:14;42596:58;42688:3;42683:2;42675:6;42671:15;42664:28;42479:220;:::o;42705:122::-;42778:24;42796:5;42778:24;:::i;:::-;42771:5;42768:35;42758:63;;42817:1;42814;42807:12;42758:63;42705:122;:::o;42833:116::-;42903:21;42918:5;42903:21;:::i;:::-;42896:5;42893:32;42883:60;;42939:1;42936;42929:12;42883:60;42833:116;:::o;42955:120::-;43027:23;43044:5;43027:23;:::i;:::-;43020:5;43017:34;43007:62;;43065:1;43062;43055:12;43007:62;42955:120;:::o;43081:122::-;43154:24;43172:5;43154:24;:::i;:::-;43147:5;43144:35;43134:63;;43193:1;43190;43183:12;43134:63;43081:122;:::o

Swarm Source

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