ETH Price: $3,269.75 (-1.23%)
Gas: 9 Gwei

Token

MetaaniKizunaAI (MTANAI)
 

Overview

Max Total Supply

200 MTANAI

Holders

154

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 MTANAI
0x5f753e32ed75d5739274255578d7aea43b34125c
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:
MetaaniKizunaAI

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 1 of 2: MetaaniKizunaAI.sol
// SPDX-License-Identifier: NONE

pragma solidity ^0.8.0;


import "./OpenzeppelinERC721.sol";

contract MetaaniKizunaAI is  ERC721URIStorage , ERC721Enumerable {

    address metaani = 0xeecE4544101f7C7198157c74A1cBfE12aa86718B;
    address kizunaai_metaani = 0xD56F0b3D880b3321692661a4b0AcC5Cd5039ECfb;
    string ipfs_base;
    address public owner;
    uint256 public nftid;
    event Mint();

    function mint(uint256 _qty) public {
        require( msg.sender == metaani );
        for (uint i = 1 ; i <= _qty ; i++){
        nftid++;
        require( nftid <= 200 );
        _safeMint( kizunaai_metaani , nftid);
        emit Mint();
        }
    }



    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
        internal
        override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }


    function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }

    function burn(uint256 _id) public {
        require( _msgSender() == ownerOf(_id));
        _burn(_id);
    }

    function setbaseURI(string memory _ipfs_base) public {
        require(msg.sender == metaani );
        ipfs_base = _ipfs_base;
    }

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


    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721, ERC721URIStorage)
        returns (string memory)
    {
        return super.tokenURI(tokenId);
    }


    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    constructor() ERC721("MetaaniKizunaAI" , "MTANAI" ) {
        owner = _msgSender();
        ipfs_base = "ipfs://QmTYKXWWg8jQV21mcvvqTyd3qf8BreBG8iyffabLvvvo5q/";
    } 


}


File 2 of 2: OpenzeppelinERC721.sol
// SPDX-License-Identifier: MIT

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);
}






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




/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}









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







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





/**
 * @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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}





/*
 * @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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}








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


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        private returns (bool)
    {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { }
}















/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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







/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping (uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}


Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[],"name":"Mint","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":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"burn","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"_ipfs_base","type":"string"}],"name":"setbaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273eece4544101f7c7198157c74a1cbfe12aa86718b600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073d56f0b3d880b3321692661a4b0acc5cd5039ecfb600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000bb57600080fd5b506040518060400160405280600f81526020017f4d657461616e694b697a756e61414900000000000000000000000000000000008152506040518060400160405280600681526020017f4d54414e41490000000000000000000000000000000000000000000000000000815250816000908051906020019062000140929190620001ec565b50806001908051906020019062000159929190620001ec565b5050506200016c620001e460201b60201c565b600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060405180606001604052806036815260200162003a4060369139600d9080519060200190620001dd929190620001ec565b5062000301565b600033905090565b828054620001fa906200029c565b90600052602060002090601f0160209004810192826200021e57600085556200026a565b82601f106200023957805160ff19168380011785556200026a565b828001600101855582156200026a579182015b82811115620002695782518255916020019190600101906200024c565b5b5090506200027991906200027d565b5090565b5b80821115620002985760008160009055506001016200027e565b5090565b60006002820490506001821680620002b557607f821691505b60208210811415620002cc57620002cb620002d2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61372f80620003116000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c80634f6ccce7116100b857806395d89b411161007c57806395d89b4114610360578063a0712d681461037e578063a22cb4651461039a578063b88d4fde146103b6578063c87b56dd146103d2578063e985e9c51461040257610137565b80634f6ccce7146102945780636352211e146102c45780636fd976bc146102f457806370a08231146103125780638da5cb5b1461034257610137565b806323b872dd116100ff57806323b872dd146101f45780632f745c591461021057806342842e0e1461024057806342966c681461025c5780634a44f3791461027857610137565b806301ffc9a71461013c57806306fdde031461016c578063081812fc1461018a578063095ea7b3146101ba57806318160ddd146101d6575b600080fd5b61015660048036038101906101519190612683565b610432565b6040516101639190612b01565b60405180910390f35b610174610444565b6040516101819190612b1c565b60405180910390f35b6101a4600480360381019061019f9190612726565b6104d6565b6040516101b19190612a9a565b60405180910390f35b6101d460048036038101906101cf9190612643565b61055b565b005b6101de610673565b6040516101eb9190612d5e565b60405180910390f35b61020e6004803603810190610209919061252d565b610680565b005b61022a60048036038101906102259190612643565b6106e0565b6040516102379190612d5e565b60405180910390f35b61025a6004803603810190610255919061252d565b610785565b005b61027660048036038101906102719190612726565b6107a5565b005b610292600480360381019061028d91906126dd565b6107f8565b005b6102ae60048036038101906102a99190612726565b61086c565b6040516102bb9190612d5e565b60405180910390f35b6102de60048036038101906102d99190612726565b6108dd565b6040516102eb9190612a9a565b60405180910390f35b6102fc61098f565b6040516103099190612d5e565b60405180910390f35b61032c600480360381019061032791906124c0565b610995565b6040516103399190612d5e565b60405180910390f35b61034a610a4d565b6040516103579190612a9a565b60405180910390f35b610368610a73565b6040516103759190612b1c565b60405180910390f35b61039860048036038101906103939190612726565b610b05565b005b6103b460048036038101906103af9190612603565b610c06565b005b6103d060048036038101906103cb9190612580565b610d87565b005b6103ec60048036038101906103e79190612726565b610de9565b6040516103f99190612b1c565b60405180910390f35b61041c600480360381019061041791906124ed565b610dfb565b6040516104299190612b01565b60405180910390f35b600061043d82610e8f565b9050919050565b60606000805461045390612fb4565b80601f016020809104026020016040519081016040528092919081815260200182805461047f90612fb4565b80156104cc5780601f106104a1576101008083540402835291602001916104cc565b820191906000526020600020905b8154815290600101906020018083116104af57829003601f168201915b5050505050905090565b60006104e182610f09565b610520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051790612c9e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610566826108dd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156105d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ce90612cfe565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166105f6610f75565b73ffffffffffffffffffffffffffffffffffffffff16148061062557506106248161061f610f75565b610dfb565b5b610664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065b90612bfe565b60405180910390fd5b61066e8383610f7d565b505050565b6000600980549050905090565b61069161068b610f75565b82611036565b6106d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c790612d1e565b60405180910390fd5b6106db838383611114565b505050565b60006106eb83610995565b821061072c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072390612b3e565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6107a083838360405180602001604052806000815250610d87565b505050565b6107ae816108dd565b73ffffffffffffffffffffffffffffffffffffffff166107cc610f75565b73ffffffffffffffffffffffffffffffffffffffff16146107ec57600080fd5b6107f581611370565b50565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461085257600080fd5b80600d9080519060200190610868929190612294565b5050565b6000610876610673565b82106108b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ae90612d3e565b60405180910390fd5b600982815481106108cb576108ca61314d565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097d90612c3e565b60405180910390fd5b80915050919050565b600f5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fd90612c1e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060018054610a8290612fb4565b80601f0160208091040260200160405190810160405280929190818152602001828054610aae90612fb4565b8015610afb5780601f10610ad057610100808354040283529160200191610afb565b820191906000526020600020905b815481529060010190602001808311610ade57829003601f168201915b5050505050905090565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b5f57600080fd5b6000600190505b818111610c0257600f6000815480929190610b8090613017565b919050555060c8600f541115610b9557600080fd5b610bc3600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600f5461137c565b7f34c73884fbbb790762253ae313e57da96c00670344647f0cb8d41ee92b9f197160405160405180910390a18080610bfa90613017565b915050610b66565b5050565b610c0e610f75565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7390612bbe565b60405180910390fd5b8060056000610c89610f75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610d36610f75565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d7b9190612b01565b60405180910390a35050565b610d98610d92610f75565b83611036565b610dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dce90612d1e565b60405180910390fd5b610de38484848461139a565b50505050565b6060610df4826113f6565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610f025750610f0182611548565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610ff0836108dd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061104182610f09565b611080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107790612bde565b60405180910390fd5b600061108b836108dd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806110fa57508373ffffffffffffffffffffffffffffffffffffffff166110e2846104d6565b73ffffffffffffffffffffffffffffffffffffffff16145b8061110b575061110a8185610dfb565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611134826108dd565b73ffffffffffffffffffffffffffffffffffffffff161461118a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118190612cbe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f190612b9e565b60405180910390fd5b61120583838361162a565b611210600082610f7d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112609190612eca565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112b79190612e43565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6113798161163a565b50565b61139682826040518060200160405280600081525061168d565b5050565b6113a5848484611114565b6113b1848484846116e8565b6113f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e790612b5e565b60405180910390fd5b50505050565b606061140182610f09565b611440576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143790612c7e565b60405180910390fd5b600060066000848152602001908152602001600020805461146090612fb4565b80601f016020809104026020016040519081016040528092919081815260200182805461148c90612fb4565b80156114d95780601f106114ae576101008083540402835291602001916114d9565b820191906000526020600020905b8154815290600101906020018083116114bc57829003601f168201915b5050505050905060006114ea61187f565b9050600081511415611500578192505050611543565b60008251111561153557808260405160200161151d929190612a76565b60405160208183030381529060405292505050611543565b61153e84611911565b925050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061161357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806116235750611622826119b8565b5b9050919050565b611635838383611a22565b505050565b61164381611b36565b600060066000838152602001908152602001600020805461166390612fb4565b90501461168a57600660008281526020019081526020016000206000611689919061231a565b5b50565b6116978383611c47565b6116a460008484846116e8565b6116e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116da90612b5e565b60405180910390fd5b505050565b60006117098473ffffffffffffffffffffffffffffffffffffffff16611e15565b15611872578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611732610f75565b8786866040518563ffffffff1660e01b81526004016117549493929190612ab5565b602060405180830381600087803b15801561176e57600080fd5b505af192505050801561179f57506040513d601f19601f8201168201806040525081019061179c91906126b0565b60015b611822573d80600081146117cf576040519150601f19603f3d011682016040523d82523d6000602084013e6117d4565b606091505b5060008151141561181a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181190612b5e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611877565b600190505b949350505050565b6060600d805461188e90612fb4565b80601f01602080910402602001604051908101604052809291908181526020018280546118ba90612fb4565b80156119075780601f106118dc57610100808354040283529160200191611907565b820191906000526020600020905b8154815290600101906020018083116118ea57829003601f168201915b5050505050905090565b606061191c82610f09565b61195b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195290612cde565b60405180910390fd5b600061196561187f565b9050600081511161198557604051806020016040528060008152506119b0565b8061198f84611e28565b6040516020016119a0929190612a76565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611a2d838383611f89565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a7057611a6b81611f8e565b611aaf565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611aae57611aad8382611fd7565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611af257611aed81612144565b611b31565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611b3057611b2f8282612215565b5b5b505050565b6000611b41826108dd565b9050611b4f8160008461162a565b611b5a600083610f7d565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611baa9190612eca565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cae90612c5e565b60405180910390fd5b611cc081610f09565b15611d00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf790612b7e565b60405180910390fd5b611d0c6000838361162a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d5c9190612e43565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606000821415611e70576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f84565b600082905060005b60008214611ea2578080611e8b90613017565b915050600a82611e9b9190612e99565b9150611e78565b60008167ffffffffffffffff811115611ebe57611ebd61317c565b5b6040519080825280601f01601f191660200182016040528015611ef05781602001600182028036833780820191505090505b5090505b60008514611f7d57600182611f099190612eca565b9150600a85611f189190613060565b6030611f249190612e43565b60f81b818381518110611f3a57611f3961314d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f769190612e99565b9450611ef4565b8093505050505b919050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001611fe484610995565b611fee9190612eca565b90506000600860008481526020019081526020016000205490508181146120d3576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506121589190612eca565b90506000600a60008481526020019081526020016000205490506000600983815481106121885761218761314d565b5b9060005260206000200154905080600983815481106121aa576121a961314d565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a60008581526020019081526020016000206000905560098054806121f9576121f861311e565b5b6001900381819060005260206000200160009055905550505050565b600061222083610995565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b8280546122a090612fb4565b90600052602060002090601f0160209004810192826122c25760008555612309565b82601f106122db57805160ff1916838001178555612309565b82800160010185558215612309579182015b828111156123085782518255916020019190600101906122ed565b5b509050612316919061235a565b5090565b50805461232690612fb4565b6000825580601f106123385750612357565b601f016020900490600052602060002090810190612356919061235a565b5b50565b5b8082111561237357600081600090555060010161235b565b5090565b600061238a61238584612d9e565b612d79565b9050828152602081018484840111156123a6576123a56131b0565b5b6123b1848285612f72565b509392505050565b60006123cc6123c784612dcf565b612d79565b9050828152602081018484840111156123e8576123e76131b0565b5b6123f3848285612f72565b509392505050565b60008135905061240a8161369d565b92915050565b60008135905061241f816136b4565b92915050565b600081359050612434816136cb565b92915050565b600081519050612449816136cb565b92915050565b600082601f830112612464576124636131ab565b5b8135612474848260208601612377565b91505092915050565b600082601f830112612492576124916131ab565b5b81356124a28482602086016123b9565b91505092915050565b6000813590506124ba816136e2565b92915050565b6000602082840312156124d6576124d56131ba565b5b60006124e4848285016123fb565b91505092915050565b60008060408385031215612504576125036131ba565b5b6000612512858286016123fb565b9250506020612523858286016123fb565b9150509250929050565b600080600060608486031215612546576125456131ba565b5b6000612554868287016123fb565b9350506020612565868287016123fb565b9250506040612576868287016124ab565b9150509250925092565b6000806000806080858703121561259a576125996131ba565b5b60006125a8878288016123fb565b94505060206125b9878288016123fb565b93505060406125ca878288016124ab565b925050606085013567ffffffffffffffff8111156125eb576125ea6131b5565b5b6125f78782880161244f565b91505092959194509250565b6000806040838503121561261a576126196131ba565b5b6000612628858286016123fb565b925050602061263985828601612410565b9150509250929050565b6000806040838503121561265a576126596131ba565b5b6000612668858286016123fb565b9250506020612679858286016124ab565b9150509250929050565b600060208284031215612699576126986131ba565b5b60006126a784828501612425565b91505092915050565b6000602082840312156126c6576126c56131ba565b5b60006126d48482850161243a565b91505092915050565b6000602082840312156126f3576126f26131ba565b5b600082013567ffffffffffffffff811115612711576127106131b5565b5b61271d8482850161247d565b91505092915050565b60006020828403121561273c5761273b6131ba565b5b600061274a848285016124ab565b91505092915050565b61275c81612efe565b82525050565b61276b81612f10565b82525050565b600061277c82612e00565b6127868185612e16565b9350612796818560208601612f81565b61279f816131bf565b840191505092915050565b60006127b582612e0b565b6127bf8185612e27565b93506127cf818560208601612f81565b6127d8816131bf565b840191505092915050565b60006127ee82612e0b565b6127f88185612e38565b9350612808818560208601612f81565b80840191505092915050565b6000612821602b83612e27565b915061282c826131d0565b604082019050919050565b6000612844603283612e27565b915061284f8261321f565b604082019050919050565b6000612867601c83612e27565b91506128728261326e565b602082019050919050565b600061288a602483612e27565b915061289582613297565b604082019050919050565b60006128ad601983612e27565b91506128b8826132e6565b602082019050919050565b60006128d0602c83612e27565b91506128db8261330f565b604082019050919050565b60006128f3603883612e27565b91506128fe8261335e565b604082019050919050565b6000612916602a83612e27565b9150612921826133ad565b604082019050919050565b6000612939602983612e27565b9150612944826133fc565b604082019050919050565b600061295c602083612e27565b91506129678261344b565b602082019050919050565b600061297f603183612e27565b915061298a82613474565b604082019050919050565b60006129a2602c83612e27565b91506129ad826134c3565b604082019050919050565b60006129c5602983612e27565b91506129d082613512565b604082019050919050565b60006129e8602f83612e27565b91506129f382613561565b604082019050919050565b6000612a0b602183612e27565b9150612a16826135b0565b604082019050919050565b6000612a2e603183612e27565b9150612a39826135ff565b604082019050919050565b6000612a51602c83612e27565b9150612a5c8261364e565b604082019050919050565b612a7081612f68565b82525050565b6000612a8282856127e3565b9150612a8e82846127e3565b91508190509392505050565b6000602082019050612aaf6000830184612753565b92915050565b6000608082019050612aca6000830187612753565b612ad76020830186612753565b612ae46040830185612a67565b8181036060830152612af68184612771565b905095945050505050565b6000602082019050612b166000830184612762565b92915050565b60006020820190508181036000830152612b3681846127aa565b905092915050565b60006020820190508181036000830152612b5781612814565b9050919050565b60006020820190508181036000830152612b7781612837565b9050919050565b60006020820190508181036000830152612b978161285a565b9050919050565b60006020820190508181036000830152612bb78161287d565b9050919050565b60006020820190508181036000830152612bd7816128a0565b9050919050565b60006020820190508181036000830152612bf7816128c3565b9050919050565b60006020820190508181036000830152612c17816128e6565b9050919050565b60006020820190508181036000830152612c3781612909565b9050919050565b60006020820190508181036000830152612c578161292c565b9050919050565b60006020820190508181036000830152612c778161294f565b9050919050565b60006020820190508181036000830152612c9781612972565b9050919050565b60006020820190508181036000830152612cb781612995565b9050919050565b60006020820190508181036000830152612cd7816129b8565b9050919050565b60006020820190508181036000830152612cf7816129db565b9050919050565b60006020820190508181036000830152612d17816129fe565b9050919050565b60006020820190508181036000830152612d3781612a21565b9050919050565b60006020820190508181036000830152612d5781612a44565b9050919050565b6000602082019050612d736000830184612a67565b92915050565b6000612d83612d94565b9050612d8f8282612fe6565b919050565b6000604051905090565b600067ffffffffffffffff821115612db957612db861317c565b5b612dc2826131bf565b9050602081019050919050565b600067ffffffffffffffff821115612dea57612de961317c565b5b612df3826131bf565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612e4e82612f68565b9150612e5983612f68565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e8e57612e8d613091565b5b828201905092915050565b6000612ea482612f68565b9150612eaf83612f68565b925082612ebf57612ebe6130c0565b5b828204905092915050565b6000612ed582612f68565b9150612ee083612f68565b925082821015612ef357612ef2613091565b5b828203905092915050565b6000612f0982612f48565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f9f578082015181840152602081019050612f84565b83811115612fae576000848401525b50505050565b60006002820490506001821680612fcc57607f821691505b60208210811415612fe057612fdf6130ef565b5b50919050565b612fef826131bf565b810181811067ffffffffffffffff8211171561300e5761300d61317c565b5b80604052505050565b600061302282612f68565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561305557613054613091565b5b600182019050919050565b600061306b82612f68565b915061307683612f68565b925082613086576130856130c0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6136a681612efe565b81146136b157600080fd5b50565b6136bd81612f10565b81146136c857600080fd5b50565b6136d481612f1c565b81146136df57600080fd5b50565b6136eb81612f68565b81146136f657600080fd5b5056fea2646970667358221220562080679f167895e83929fe5ec2b060c70ebc600d62fd3da4306d7c33b5dadc64736f6c63430008070033697066733a2f2f516d54594b58575767386a515632316d63767671547964337166384272654247386979666661624c7676766f35712f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c80634f6ccce7116100b857806395d89b411161007c57806395d89b4114610360578063a0712d681461037e578063a22cb4651461039a578063b88d4fde146103b6578063c87b56dd146103d2578063e985e9c51461040257610137565b80634f6ccce7146102945780636352211e146102c45780636fd976bc146102f457806370a08231146103125780638da5cb5b1461034257610137565b806323b872dd116100ff57806323b872dd146101f45780632f745c591461021057806342842e0e1461024057806342966c681461025c5780634a44f3791461027857610137565b806301ffc9a71461013c57806306fdde031461016c578063081812fc1461018a578063095ea7b3146101ba57806318160ddd146101d6575b600080fd5b61015660048036038101906101519190612683565b610432565b6040516101639190612b01565b60405180910390f35b610174610444565b6040516101819190612b1c565b60405180910390f35b6101a4600480360381019061019f9190612726565b6104d6565b6040516101b19190612a9a565b60405180910390f35b6101d460048036038101906101cf9190612643565b61055b565b005b6101de610673565b6040516101eb9190612d5e565b60405180910390f35b61020e6004803603810190610209919061252d565b610680565b005b61022a60048036038101906102259190612643565b6106e0565b6040516102379190612d5e565b60405180910390f35b61025a6004803603810190610255919061252d565b610785565b005b61027660048036038101906102719190612726565b6107a5565b005b610292600480360381019061028d91906126dd565b6107f8565b005b6102ae60048036038101906102a99190612726565b61086c565b6040516102bb9190612d5e565b60405180910390f35b6102de60048036038101906102d99190612726565b6108dd565b6040516102eb9190612a9a565b60405180910390f35b6102fc61098f565b6040516103099190612d5e565b60405180910390f35b61032c600480360381019061032791906124c0565b610995565b6040516103399190612d5e565b60405180910390f35b61034a610a4d565b6040516103579190612a9a565b60405180910390f35b610368610a73565b6040516103759190612b1c565b60405180910390f35b61039860048036038101906103939190612726565b610b05565b005b6103b460048036038101906103af9190612603565b610c06565b005b6103d060048036038101906103cb9190612580565b610d87565b005b6103ec60048036038101906103e79190612726565b610de9565b6040516103f99190612b1c565b60405180910390f35b61041c600480360381019061041791906124ed565b610dfb565b6040516104299190612b01565b60405180910390f35b600061043d82610e8f565b9050919050565b60606000805461045390612fb4565b80601f016020809104026020016040519081016040528092919081815260200182805461047f90612fb4565b80156104cc5780601f106104a1576101008083540402835291602001916104cc565b820191906000526020600020905b8154815290600101906020018083116104af57829003601f168201915b5050505050905090565b60006104e182610f09565b610520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051790612c9e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610566826108dd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156105d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ce90612cfe565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166105f6610f75565b73ffffffffffffffffffffffffffffffffffffffff16148061062557506106248161061f610f75565b610dfb565b5b610664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065b90612bfe565b60405180910390fd5b61066e8383610f7d565b505050565b6000600980549050905090565b61069161068b610f75565b82611036565b6106d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c790612d1e565b60405180910390fd5b6106db838383611114565b505050565b60006106eb83610995565b821061072c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072390612b3e565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6107a083838360405180602001604052806000815250610d87565b505050565b6107ae816108dd565b73ffffffffffffffffffffffffffffffffffffffff166107cc610f75565b73ffffffffffffffffffffffffffffffffffffffff16146107ec57600080fd5b6107f581611370565b50565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461085257600080fd5b80600d9080519060200190610868929190612294565b5050565b6000610876610673565b82106108b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ae90612d3e565b60405180910390fd5b600982815481106108cb576108ca61314d565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097d90612c3e565b60405180910390fd5b80915050919050565b600f5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fd90612c1e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060018054610a8290612fb4565b80601f0160208091040260200160405190810160405280929190818152602001828054610aae90612fb4565b8015610afb5780601f10610ad057610100808354040283529160200191610afb565b820191906000526020600020905b815481529060010190602001808311610ade57829003601f168201915b5050505050905090565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b5f57600080fd5b6000600190505b818111610c0257600f6000815480929190610b8090613017565b919050555060c8600f541115610b9557600080fd5b610bc3600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600f5461137c565b7f34c73884fbbb790762253ae313e57da96c00670344647f0cb8d41ee92b9f197160405160405180910390a18080610bfa90613017565b915050610b66565b5050565b610c0e610f75565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7390612bbe565b60405180910390fd5b8060056000610c89610f75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610d36610f75565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d7b9190612b01565b60405180910390a35050565b610d98610d92610f75565b83611036565b610dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dce90612d1e565b60405180910390fd5b610de38484848461139a565b50505050565b6060610df4826113f6565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610f025750610f0182611548565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610ff0836108dd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061104182610f09565b611080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107790612bde565b60405180910390fd5b600061108b836108dd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806110fa57508373ffffffffffffffffffffffffffffffffffffffff166110e2846104d6565b73ffffffffffffffffffffffffffffffffffffffff16145b8061110b575061110a8185610dfb565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611134826108dd565b73ffffffffffffffffffffffffffffffffffffffff161461118a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118190612cbe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f190612b9e565b60405180910390fd5b61120583838361162a565b611210600082610f7d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112609190612eca565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112b79190612e43565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6113798161163a565b50565b61139682826040518060200160405280600081525061168d565b5050565b6113a5848484611114565b6113b1848484846116e8565b6113f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e790612b5e565b60405180910390fd5b50505050565b606061140182610f09565b611440576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143790612c7e565b60405180910390fd5b600060066000848152602001908152602001600020805461146090612fb4565b80601f016020809104026020016040519081016040528092919081815260200182805461148c90612fb4565b80156114d95780601f106114ae576101008083540402835291602001916114d9565b820191906000526020600020905b8154815290600101906020018083116114bc57829003601f168201915b5050505050905060006114ea61187f565b9050600081511415611500578192505050611543565b60008251111561153557808260405160200161151d929190612a76565b60405160208183030381529060405292505050611543565b61153e84611911565b925050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061161357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806116235750611622826119b8565b5b9050919050565b611635838383611a22565b505050565b61164381611b36565b600060066000838152602001908152602001600020805461166390612fb4565b90501461168a57600660008281526020019081526020016000206000611689919061231a565b5b50565b6116978383611c47565b6116a460008484846116e8565b6116e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116da90612b5e565b60405180910390fd5b505050565b60006117098473ffffffffffffffffffffffffffffffffffffffff16611e15565b15611872578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611732610f75565b8786866040518563ffffffff1660e01b81526004016117549493929190612ab5565b602060405180830381600087803b15801561176e57600080fd5b505af192505050801561179f57506040513d601f19601f8201168201806040525081019061179c91906126b0565b60015b611822573d80600081146117cf576040519150601f19603f3d011682016040523d82523d6000602084013e6117d4565b606091505b5060008151141561181a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181190612b5e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611877565b600190505b949350505050565b6060600d805461188e90612fb4565b80601f01602080910402602001604051908101604052809291908181526020018280546118ba90612fb4565b80156119075780601f106118dc57610100808354040283529160200191611907565b820191906000526020600020905b8154815290600101906020018083116118ea57829003601f168201915b5050505050905090565b606061191c82610f09565b61195b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195290612cde565b60405180910390fd5b600061196561187f565b9050600081511161198557604051806020016040528060008152506119b0565b8061198f84611e28565b6040516020016119a0929190612a76565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611a2d838383611f89565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a7057611a6b81611f8e565b611aaf565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611aae57611aad8382611fd7565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611af257611aed81612144565b611b31565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611b3057611b2f8282612215565b5b5b505050565b6000611b41826108dd565b9050611b4f8160008461162a565b611b5a600083610f7d565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611baa9190612eca565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cae90612c5e565b60405180910390fd5b611cc081610f09565b15611d00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf790612b7e565b60405180910390fd5b611d0c6000838361162a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d5c9190612e43565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606000821415611e70576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f84565b600082905060005b60008214611ea2578080611e8b90613017565b915050600a82611e9b9190612e99565b9150611e78565b60008167ffffffffffffffff811115611ebe57611ebd61317c565b5b6040519080825280601f01601f191660200182016040528015611ef05781602001600182028036833780820191505090505b5090505b60008514611f7d57600182611f099190612eca565b9150600a85611f189190613060565b6030611f249190612e43565b60f81b818381518110611f3a57611f3961314d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f769190612e99565b9450611ef4565b8093505050505b919050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001611fe484610995565b611fee9190612eca565b90506000600860008481526020019081526020016000205490508181146120d3576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506121589190612eca565b90506000600a60008481526020019081526020016000205490506000600983815481106121885761218761314d565b5b9060005260206000200154905080600983815481106121aa576121a961314d565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a60008581526020019081526020016000206000905560098054806121f9576121f861311e565b5b6001900381819060005260206000200160009055905550505050565b600061222083610995565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b8280546122a090612fb4565b90600052602060002090601f0160209004810192826122c25760008555612309565b82601f106122db57805160ff1916838001178555612309565b82800160010185558215612309579182015b828111156123085782518255916020019190600101906122ed565b5b509050612316919061235a565b5090565b50805461232690612fb4565b6000825580601f106123385750612357565b601f016020900490600052602060002090810190612356919061235a565b5b50565b5b8082111561237357600081600090555060010161235b565b5090565b600061238a61238584612d9e565b612d79565b9050828152602081018484840111156123a6576123a56131b0565b5b6123b1848285612f72565b509392505050565b60006123cc6123c784612dcf565b612d79565b9050828152602081018484840111156123e8576123e76131b0565b5b6123f3848285612f72565b509392505050565b60008135905061240a8161369d565b92915050565b60008135905061241f816136b4565b92915050565b600081359050612434816136cb565b92915050565b600081519050612449816136cb565b92915050565b600082601f830112612464576124636131ab565b5b8135612474848260208601612377565b91505092915050565b600082601f830112612492576124916131ab565b5b81356124a28482602086016123b9565b91505092915050565b6000813590506124ba816136e2565b92915050565b6000602082840312156124d6576124d56131ba565b5b60006124e4848285016123fb565b91505092915050565b60008060408385031215612504576125036131ba565b5b6000612512858286016123fb565b9250506020612523858286016123fb565b9150509250929050565b600080600060608486031215612546576125456131ba565b5b6000612554868287016123fb565b9350506020612565868287016123fb565b9250506040612576868287016124ab565b9150509250925092565b6000806000806080858703121561259a576125996131ba565b5b60006125a8878288016123fb565b94505060206125b9878288016123fb565b93505060406125ca878288016124ab565b925050606085013567ffffffffffffffff8111156125eb576125ea6131b5565b5b6125f78782880161244f565b91505092959194509250565b6000806040838503121561261a576126196131ba565b5b6000612628858286016123fb565b925050602061263985828601612410565b9150509250929050565b6000806040838503121561265a576126596131ba565b5b6000612668858286016123fb565b9250506020612679858286016124ab565b9150509250929050565b600060208284031215612699576126986131ba565b5b60006126a784828501612425565b91505092915050565b6000602082840312156126c6576126c56131ba565b5b60006126d48482850161243a565b91505092915050565b6000602082840312156126f3576126f26131ba565b5b600082013567ffffffffffffffff811115612711576127106131b5565b5b61271d8482850161247d565b91505092915050565b60006020828403121561273c5761273b6131ba565b5b600061274a848285016124ab565b91505092915050565b61275c81612efe565b82525050565b61276b81612f10565b82525050565b600061277c82612e00565b6127868185612e16565b9350612796818560208601612f81565b61279f816131bf565b840191505092915050565b60006127b582612e0b565b6127bf8185612e27565b93506127cf818560208601612f81565b6127d8816131bf565b840191505092915050565b60006127ee82612e0b565b6127f88185612e38565b9350612808818560208601612f81565b80840191505092915050565b6000612821602b83612e27565b915061282c826131d0565b604082019050919050565b6000612844603283612e27565b915061284f8261321f565b604082019050919050565b6000612867601c83612e27565b91506128728261326e565b602082019050919050565b600061288a602483612e27565b915061289582613297565b604082019050919050565b60006128ad601983612e27565b91506128b8826132e6565b602082019050919050565b60006128d0602c83612e27565b91506128db8261330f565b604082019050919050565b60006128f3603883612e27565b91506128fe8261335e565b604082019050919050565b6000612916602a83612e27565b9150612921826133ad565b604082019050919050565b6000612939602983612e27565b9150612944826133fc565b604082019050919050565b600061295c602083612e27565b91506129678261344b565b602082019050919050565b600061297f603183612e27565b915061298a82613474565b604082019050919050565b60006129a2602c83612e27565b91506129ad826134c3565b604082019050919050565b60006129c5602983612e27565b91506129d082613512565b604082019050919050565b60006129e8602f83612e27565b91506129f382613561565b604082019050919050565b6000612a0b602183612e27565b9150612a16826135b0565b604082019050919050565b6000612a2e603183612e27565b9150612a39826135ff565b604082019050919050565b6000612a51602c83612e27565b9150612a5c8261364e565b604082019050919050565b612a7081612f68565b82525050565b6000612a8282856127e3565b9150612a8e82846127e3565b91508190509392505050565b6000602082019050612aaf6000830184612753565b92915050565b6000608082019050612aca6000830187612753565b612ad76020830186612753565b612ae46040830185612a67565b8181036060830152612af68184612771565b905095945050505050565b6000602082019050612b166000830184612762565b92915050565b60006020820190508181036000830152612b3681846127aa565b905092915050565b60006020820190508181036000830152612b5781612814565b9050919050565b60006020820190508181036000830152612b7781612837565b9050919050565b60006020820190508181036000830152612b978161285a565b9050919050565b60006020820190508181036000830152612bb78161287d565b9050919050565b60006020820190508181036000830152612bd7816128a0565b9050919050565b60006020820190508181036000830152612bf7816128c3565b9050919050565b60006020820190508181036000830152612c17816128e6565b9050919050565b60006020820190508181036000830152612c3781612909565b9050919050565b60006020820190508181036000830152612c578161292c565b9050919050565b60006020820190508181036000830152612c778161294f565b9050919050565b60006020820190508181036000830152612c9781612972565b9050919050565b60006020820190508181036000830152612cb781612995565b9050919050565b60006020820190508181036000830152612cd7816129b8565b9050919050565b60006020820190508181036000830152612cf7816129db565b9050919050565b60006020820190508181036000830152612d17816129fe565b9050919050565b60006020820190508181036000830152612d3781612a21565b9050919050565b60006020820190508181036000830152612d5781612a44565b9050919050565b6000602082019050612d736000830184612a67565b92915050565b6000612d83612d94565b9050612d8f8282612fe6565b919050565b6000604051905090565b600067ffffffffffffffff821115612db957612db861317c565b5b612dc2826131bf565b9050602081019050919050565b600067ffffffffffffffff821115612dea57612de961317c565b5b612df3826131bf565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612e4e82612f68565b9150612e5983612f68565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e8e57612e8d613091565b5b828201905092915050565b6000612ea482612f68565b9150612eaf83612f68565b925082612ebf57612ebe6130c0565b5b828204905092915050565b6000612ed582612f68565b9150612ee083612f68565b925082821015612ef357612ef2613091565b5b828203905092915050565b6000612f0982612f48565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f9f578082015181840152602081019050612f84565b83811115612fae576000848401525b50505050565b60006002820490506001821680612fcc57607f821691505b60208210811415612fe057612fdf6130ef565b5b50919050565b612fef826131bf565b810181811067ffffffffffffffff8211171561300e5761300d61317c565b5b80604052505050565b600061302282612f68565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561305557613054613091565b5b600182019050919050565b600061306b82612f68565b915061307683612f68565b925082613086576130856130c0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6136a681612efe565b81146136b157600080fd5b50565b6136bd81612f10565b81146136c857600080fd5b50565b6136d481612f1c565b81146136df57600080fd5b50565b6136eb81612f68565b81146136f657600080fd5b5056fea2646970667358221220562080679f167895e83929fe5ec2b060c70ebc600d62fd3da4306d7c33b5dadc64736f6c63430008070033

Deployed Bytecode Sourcemap

103:1907:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1612:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20770:100:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22230:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21767:397;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34017:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23120:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33685:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23496:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1030:112:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1150:136;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34207:233:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20464:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;370:20:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20194:208:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;343:20:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20939:104:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;418:263:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22523:295:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23718:285;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1406:196:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22889:164:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1612:212:0;1751:4;1780:36;1804:11;1780:23;:36::i;:::-;1773:43;;1612:212;;;:::o;20770:100:1:-;20824:13;20857:5;20850:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20770:100;:::o;22230:221::-;22306:7;22334:16;22342:7;22334;:16::i;:::-;22326:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22419:15;:24;22435:7;22419:24;;;;;;;;;;;;;;;;;;;;;22412:31;;22230:221;;;:::o;21767:397::-;21848:13;21864:23;21879:7;21864:14;:23::i;:::-;21848:39;;21912:5;21906:11;;:2;:11;;;;21898:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;21992:5;21976:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22001:37;22018:5;22025:12;:10;:12::i;:::-;22001:16;:37::i;:::-;21976:62;21968:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;22135:21;22144:2;22148:7;22135:8;:21::i;:::-;21837:327;21767:397;;:::o;34017:113::-;34078:7;34105:10;:17;;;;34098:24;;34017:113;:::o;23120:305::-;23281:41;23300:12;:10;:12::i;:::-;23314:7;23281:18;:41::i;:::-;23273:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23389:28;23399:4;23405:2;23409:7;23389:9;:28::i;:::-;23120:305;;;:::o;33685:256::-;33782:7;33818:23;33835:5;33818:16;:23::i;:::-;33810:5;:31;33802:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;33907:12;:19;33920:5;33907:19;;;;;;;;;;;;;;;:26;33927:5;33907:26;;;;;;;;;;;;33900:33;;33685:256;;;;:::o;23496:151::-;23600:39;23617:4;23623:2;23627:7;23600:39;;;;;;;;;;;;:16;:39::i;:::-;23496:151;;;:::o;1030:112:0:-;1100:12;1108:3;1100:7;:12::i;:::-;1084:28;;:12;:10;:12::i;:::-;:28;;;1075:38;;;;;;1124:10;1130:3;1124:5;:10::i;:::-;1030:112;:::o;1150:136::-;1236:7;;;;;;;;;;;1222:21;;:10;:21;;;1214:31;;;;;;1268:10;1256:9;:22;;;;;;;;;;;;:::i;:::-;;1150:136;:::o;34207:233:1:-;34282:7;34318:30;:28;:30::i;:::-;34310:5;:38;34302:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;34415:10;34426:5;34415:17;;;;;;;;:::i;:::-;;;;;;;;;;34408:24;;34207:233;;;:::o;20464:239::-;20536:7;20556:13;20572:7;:16;20580:7;20572:16;;;;;;;;;;;;;;;;;;;;;20556:32;;20624:1;20607:19;;:5;:19;;;;20599:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20690:5;20683:12;;;20464:239;;;:::o;370:20:0:-;;;;:::o;20194:208:1:-;20266:7;20311:1;20294:19;;:5;:19;;;;20286:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;20378:9;:16;20388:5;20378:16;;;;;;;;;;;;;;;;20371:23;;20194:208;;;:::o;343:20:0:-;;;;;;;;;;;;;:::o;20939:104:1:-;20995:13;21028:7;21021:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20939:104;:::o;418:263:0:-;487:7;;;;;;;;;;;473:21;;:10;:21;;;464:32;;;;;;512:6;521:1;512:10;;507:167;530:4;525:1;:9;507:167;;552:5;;:7;;;;;;;;;:::i;:::-;;;;;;588:3;579:5;;:12;;570:23;;;;;;604:36;615:16;;;;;;;;;;;634:5;;604:9;:36::i;:::-;656:6;;;;;;;;;;537:3;;;;;:::i;:::-;;;;507:167;;;;418:263;:::o;22523:295:1:-;22638:12;:10;:12::i;:::-;22626:24;;:8;:24;;;;22618:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;22738:8;22693:18;:32;22712:12;:10;:12::i;:::-;22693:32;;;;;;;;;;;;;;;:42;22726:8;22693:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;22791:8;22762:48;;22777:12;:10;:12::i;:::-;22762:48;;;22801:8;22762:48;;;;;;:::i;:::-;;;;;;;;22523:295;;:::o;23718:285::-;23850:41;23869:12;:10;:12::i;:::-;23883:7;23850:18;:41::i;:::-;23842:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23956:39;23970:4;23976:2;23980:7;23989:5;23956:13;:39::i;:::-;23718:285;;;;:::o;1406:196:0:-;1533:13;1571:23;1586:7;1571:14;:23::i;:::-;1564:30;;1406:196;;;:::o;22889:164:1:-;22986:4;23010:18;:25;23029:5;23010:25;;;;;;;;;;;;;;;:35;23036:8;23010:35;;;;;;;;;;;;;;;;;;;;;;;;;23003:42;;22889:164;;;;:::o;33364:237::-;33466:4;33505:35;33490:50;;;:11;:50;;;;:103;;;;33557:36;33581:11;33557:23;:36::i;:::-;33490:103;33483:110;;33364:237;;;:::o;25470:127::-;25535:4;25587:1;25559:30;;:7;:16;25567:7;25559:16;;;;;;;;;;;;;;;;;;;;;:30;;;;25552:37;;25470:127;;;:::o;17379:98::-;17432:7;17459:10;17452:17;;17379:98;:::o;29347:174::-;29449:2;29422:15;:24;29438:7;29422:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;29505:7;29501:2;29467:46;;29476:23;29491:7;29476:14;:23::i;:::-;29467:46;;;;;;;;;;;;29347:174;;:::o;25764:348::-;25857:4;25882:16;25890:7;25882;:16::i;:::-;25874:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25958:13;25974:23;25989:7;25974:14;:23::i;:::-;25958:39;;26027:5;26016:16;;:7;:16;;;:51;;;;26060:7;26036:31;;:20;26048:7;26036:11;:20::i;:::-;:31;;;26016:51;:87;;;;26071:32;26088:5;26095:7;26071:16;:32::i;:::-;26016:87;26008:96;;;25764:348;;;;:::o;28685:544::-;28810:4;28783:31;;:23;28798:7;28783:14;:23::i;:::-;:31;;;28775:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;28893:1;28879:16;;:2;:16;;;;28871:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;28949:39;28970:4;28976:2;28980:7;28949:20;:39::i;:::-;29053:29;29070:1;29074:7;29053:8;:29::i;:::-;29114:1;29095:9;:15;29105:4;29095:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29143:1;29126:9;:13;29136:2;29126:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29174:2;29155:7;:16;29163:7;29155:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29213:7;29209:2;29194:27;;29203:4;29194:27;;;;;;;;;;;;28685:544;;;:::o;907:115:0:-;994:20;1006:7;994:11;:20::i;:::-;907:115;:::o;26454:110:1:-;26530:26;26540:2;26544:7;26530:26;;;;;;;;;;;;:9;:26::i;:::-;26454:110;;:::o;24885:272::-;24999:28;25009:4;25015:2;25019:7;24999:9;:28::i;:::-;25046:48;25069:4;25075:2;25079:7;25088:5;25046:22;:48::i;:::-;25038:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;24885:272;;;;:::o;39820:679::-;39893:13;39927:16;39935:7;39927;:16::i;:::-;39919:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;40010:23;40036:10;:19;40047:7;40036:19;;;;;;;;;;;40010:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40066:18;40087:10;:8;:10::i;:::-;40066:31;;40195:1;40179:4;40173:18;:23;40169:72;;;40220:9;40213:16;;;;;;40169:72;40371:1;40351:9;40345:23;:27;40341:108;;;40420:4;40426:9;40403:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40389:48;;;;;;40341:108;40468:23;40483:7;40468:14;:23::i;:::-;40461:30;;;;39820:679;;;;:::o;19838:292::-;19940:4;19979:25;19964:40;;;:11;:40;;;;:105;;;;20036:33;20021:48;;;:11;:48;;;;19964:105;:158;;;;20086:36;20110:11;20086:23;:36::i;:::-;19964:158;19957:165;;19838:292;;;:::o;693:204:0:-;844:45;871:4;877:2;881:7;844:26;:45::i;:::-;693:204;;;:::o;41101:206:1:-;41170:20;41182:7;41170:11;:20::i;:::-;41244:1;41213:10;:19;41224:7;41213:19;;;;;;;;;;;41207:33;;;;;:::i;:::-;;;:38;41203:97;;41269:10;:19;41280:7;41269:19;;;;;;;;;;;;41262:26;;;;:::i;:::-;41203:97;41101:206;:::o;26791:250::-;26887:18;26893:2;26897:7;26887:5;:18::i;:::-;26924:54;26955:1;26959:2;26963:7;26972:5;26924:22;:54::i;:::-;26916:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;26791:250;;;:::o;30086:843::-;30207:4;30233:15;:2;:13;;;:15::i;:::-;30229:693;;;30285:2;30269:36;;;30306:12;:10;:12::i;:::-;30320:4;30326:7;30335:5;30269:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;30265:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30532:1;30515:6;:13;:18;30511:341;;;30558:60;;;;;;;;;;:::i;:::-;;;;;;;;30511:341;30802:6;30796:13;30787:6;30783:2;30779:15;30772:38;30265:602;30402:45;;;30392:55;;;:6;:55;;;;30385:62;;;;;30229:693;30906:4;30899:11;;30086:843;;;;;;;:::o;1294:102:0:-;1346:13;1379:9;1372:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1294:102;:::o;21114:360:1:-;21187:13;21221:16;21229:7;21221;:16::i;:::-;21213:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;21302:21;21326:10;:8;:10::i;:::-;21302:34;;21378:1;21360:7;21354:21;:25;:112;;;;;;;;;;;;;;;;;21419:7;21428:18;:7;:16;:18::i;:::-;21402:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21354:112;21347:119;;;21114:360;;;:::o;18439:157::-;18524:4;18563:25;18548:40;;;:11;:40;;;;18541:47;;18439:157;;;:::o;35053:555::-;35163:45;35190:4;35196:2;35200:7;35163:26;:45::i;:::-;35241:1;35225:18;;:4;:18;;;35221:187;;;35260:40;35292:7;35260:31;:40::i;:::-;35221:187;;;35330:2;35322:10;;:4;:10;;;35318:90;;35349:47;35382:4;35388:7;35349:32;:47::i;:::-;35318:90;35221:187;35436:1;35422:16;;:2;:16;;;35418:183;;;35455:45;35492:7;35455:36;:45::i;:::-;35418:183;;;35528:4;35522:10;;:2;:10;;;35518:83;;35549:40;35577:2;35581:7;35549:27;:40::i;:::-;35518:83;35418:183;35053:555;;;:::o;27988:360::-;28048:13;28064:23;28079:7;28064:14;:23::i;:::-;28048:39;;28100:48;28121:5;28136:1;28140:7;28100:20;:48::i;:::-;28189:29;28206:1;28210:7;28189:8;:29::i;:::-;28251:1;28231:9;:16;28241:5;28231:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;28270:7;:16;28278:7;28270:16;;;;;;;;;;;;28263:23;;;;;;;;;;;28332:7;28328:1;28304:36;;28313:5;28304:36;;;;;;;;;;;;28037:311;27988:360;:::o;27377:382::-;27471:1;27457:16;;:2;:16;;;;27449:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;27530:16;27538:7;27530;:16::i;:::-;27529:17;27521:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27592:45;27621:1;27625:2;27629:7;27592:20;:45::i;:::-;27667:1;27650:9;:13;27660:2;27650:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;27698:2;27679:7;:16;27687:7;27679:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;27743:7;27739:2;27718:33;;27735:1;27718:33;;;;;;;;;;;;27377:382;;:::o;9573:422::-;9633:4;9841:12;9952:7;9940:20;9932:28;;9986:1;9979:4;:8;9972:15;;;9573:422;;;:::o;5658:723::-;5714:13;5944:1;5935:5;:10;5931:53;;;5962:10;;;;;;;;;;;;;;;;;;;;;5931:53;5994:12;6009:5;5994:20;;6025:14;6050:78;6065:1;6057:4;:9;6050:78;;6083:8;;;;;:::i;:::-;;;;6114:2;6106:10;;;;;:::i;:::-;;;6050:78;;;6138:19;6170:6;6160:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6138:39;;6188:154;6204:1;6195:5;:10;6188:154;;6232:1;6222:11;;;;;:::i;:::-;;;6299:2;6291:5;:10;;;;:::i;:::-;6278:2;:24;;;;:::i;:::-;6265:39;;6248:6;6255;6248:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6328:2;6319:11;;;;;:::i;:::-;;;6188:154;;;6366:6;6352:21;;;;;5658:723;;;;:::o;31542:93::-;;;;:::o;36331:164::-;36435:10;:17;;;;36408:15;:24;36424:7;36408:24;;;;;;;;;;;:44;;;;36463:10;36479:7;36463:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36331:164;:::o;37122:988::-;37388:22;37438:1;37413:22;37430:4;37413:16;:22::i;:::-;:26;;;;:::i;:::-;37388:51;;37450:18;37471:17;:26;37489:7;37471:26;;;;;;;;;;;;37450:47;;37618:14;37604:10;:28;37600:328;;37649:19;37671:12;:18;37684:4;37671:18;;;;;;;;;;;;;;;:34;37690:14;37671:34;;;;;;;;;;;;37649:56;;37755:11;37722:12;:18;37735:4;37722:18;;;;;;;;;;;;;;;:30;37741:10;37722:30;;;;;;;;;;;:44;;;;37872:10;37839:17;:30;37857:11;37839:30;;;;;;;;;;;:43;;;;37634:294;37600:328;38024:17;:26;38042:7;38024:26;;;;;;;;;;;38017:33;;;38068:12;:18;38081:4;38068:18;;;;;;;;;;;;;;;:34;38087:14;38068:34;;;;;;;;;;;38061:41;;;37203:907;;37122:988;;:::o;38405:1079::-;38658:22;38703:1;38683:10;:17;;;;:21;;;;:::i;:::-;38658:46;;38715:18;38736:15;:24;38752:7;38736:24;;;;;;;;;;;;38715:45;;39087:19;39109:10;39120:14;39109:26;;;;;;;;:::i;:::-;;;;;;;;;;39087:48;;39173:11;39148:10;39159;39148:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;39284:10;39253:15;:28;39269:11;39253:28;;;;;;;;;;;:41;;;;39425:15;:24;39441:7;39425:24;;;;;;;;;;;39418:31;;;39460:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38476:1008;;;38405:1079;:::o;35909:221::-;35994:14;36011:20;36028:2;36011:16;:20::i;:::-;35994:37;;36069:7;36042:12;:16;36055:2;36042:16;;;;;;;;;;;;;;;:24;36059:6;36042:24;;;;;;;;;;;:34;;;;36116:6;36087:17;:26;36105:7;36087:26;;;;;;;;;;;:35;;;;35983:147;35909:221;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:2:-;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:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:::-;9030:3;9051:67;9115:2;9110:3;9051:67;:::i;:::-;9044:74;;9127:93;9216:3;9127:93;:::i;:::-;9245:2;9240:3;9236:12;9229:19;;8888:366;;;:::o;9260:::-;9402:3;9423:67;9487:2;9482:3;9423:67;:::i;:::-;9416:74;;9499:93;9588:3;9499:93;:::i;:::-;9617:2;9612:3;9608:12;9601:19;;9260:366;;;:::o;9632:::-;9774:3;9795:67;9859:2;9854:3;9795:67;:::i;:::-;9788:74;;9871:93;9960:3;9871:93;:::i;:::-;9989:2;9984:3;9980:12;9973:19;;9632:366;;;:::o;10004:::-;10146:3;10167:67;10231:2;10226:3;10167:67;:::i;:::-;10160:74;;10243:93;10332:3;10243:93;:::i;:::-;10361:2;10356:3;10352:12;10345:19;;10004:366;;;:::o;10376:::-;10518:3;10539:67;10603:2;10598:3;10539:67;:::i;:::-;10532:74;;10615:93;10704:3;10615:93;:::i;:::-;10733:2;10728:3;10724:12;10717:19;;10376:366;;;:::o;10748:::-;10890:3;10911:67;10975:2;10970:3;10911:67;:::i;:::-;10904:74;;10987:93;11076:3;10987:93;:::i;:::-;11105:2;11100:3;11096:12;11089:19;;10748:366;;;:::o;11120:::-;11262:3;11283:67;11347:2;11342:3;11283:67;:::i;:::-;11276:74;;11359:93;11448:3;11359:93;:::i;:::-;11477:2;11472:3;11468:12;11461:19;;11120:366;;;:::o;11492:::-;11634:3;11655:67;11719:2;11714:3;11655:67;:::i;:::-;11648:74;;11731:93;11820:3;11731:93;:::i;:::-;11849:2;11844:3;11840:12;11833:19;;11492:366;;;:::o;11864:::-;12006:3;12027:67;12091:2;12086:3;12027:67;:::i;:::-;12020:74;;12103:93;12192:3;12103:93;:::i;:::-;12221:2;12216:3;12212:12;12205:19;;11864:366;;;:::o;12236:::-;12378:3;12399:67;12463:2;12458:3;12399:67;:::i;:::-;12392:74;;12475:93;12564:3;12475:93;:::i;:::-;12593:2;12588:3;12584:12;12577:19;;12236:366;;;:::o;12608:::-;12750:3;12771:67;12835:2;12830:3;12771:67;:::i;:::-;12764:74;;12847:93;12936:3;12847:93;:::i;:::-;12965:2;12960:3;12956:12;12949:19;;12608:366;;;:::o;12980:::-;13122:3;13143:67;13207:2;13202:3;13143:67;:::i;:::-;13136:74;;13219:93;13308:3;13219:93;:::i;:::-;13337:2;13332:3;13328:12;13321:19;;12980:366;;;:::o;13352:::-;13494:3;13515:67;13579:2;13574:3;13515:67;:::i;:::-;13508:74;;13591:93;13680:3;13591:93;:::i;:::-;13709:2;13704:3;13700:12;13693:19;;13352:366;;;:::o;13724:::-;13866:3;13887:67;13951:2;13946:3;13887:67;:::i;:::-;13880:74;;13963:93;14052:3;13963:93;:::i;:::-;14081:2;14076:3;14072:12;14065:19;;13724:366;;;:::o;14096:::-;14238:3;14259:67;14323:2;14318:3;14259:67;:::i;:::-;14252:74;;14335:93;14424:3;14335:93;:::i;:::-;14453:2;14448:3;14444:12;14437:19;;14096:366;;;:::o;14468:::-;14610:3;14631:67;14695:2;14690:3;14631:67;:::i;:::-;14624:74;;14707:93;14796:3;14707:93;:::i;:::-;14825:2;14820:3;14816:12;14809:19;;14468:366;;;:::o;14840:118::-;14927:24;14945:5;14927:24;:::i;:::-;14922:3;14915:37;14840:118;;:::o;14964:435::-;15144:3;15166:95;15257:3;15248:6;15166:95;:::i;:::-;15159:102;;15278:95;15369:3;15360:6;15278:95;:::i;:::-;15271:102;;15390:3;15383:10;;14964:435;;;;;:::o;15405:222::-;15498:4;15536:2;15525:9;15521:18;15513:26;;15549:71;15617:1;15606:9;15602:17;15593:6;15549:71;:::i;:::-;15405:222;;;;:::o;15633:640::-;15828:4;15866:3;15855:9;15851:19;15843:27;;15880:71;15948:1;15937:9;15933:17;15924:6;15880:71;:::i;:::-;15961:72;16029:2;16018:9;16014:18;16005:6;15961:72;:::i;:::-;16043;16111:2;16100:9;16096:18;16087:6;16043:72;:::i;:::-;16162:9;16156:4;16152:20;16147:2;16136:9;16132:18;16125:48;16190:76;16261:4;16252:6;16190:76;:::i;:::-;16182:84;;15633:640;;;;;;;:::o;16279:210::-;16366:4;16404:2;16393:9;16389:18;16381:26;;16417:65;16479:1;16468:9;16464:17;16455:6;16417:65;:::i;:::-;16279:210;;;;:::o;16495:313::-;16608:4;16646:2;16635:9;16631:18;16623:26;;16695:9;16689:4;16685:20;16681:1;16670:9;16666:17;16659:47;16723:78;16796:4;16787:6;16723:78;:::i;:::-;16715:86;;16495:313;;;;:::o;16814:419::-;16980:4;17018:2;17007:9;17003:18;16995:26;;17067:9;17061:4;17057:20;17053:1;17042:9;17038:17;17031:47;17095:131;17221:4;17095:131;:::i;:::-;17087:139;;16814:419;;;:::o;17239:::-;17405:4;17443:2;17432:9;17428:18;17420:26;;17492:9;17486:4;17482:20;17478:1;17467:9;17463:17;17456:47;17520:131;17646:4;17520:131;:::i;:::-;17512:139;;17239:419;;;:::o;17664:::-;17830:4;17868:2;17857:9;17853:18;17845:26;;17917:9;17911:4;17907:20;17903:1;17892:9;17888:17;17881:47;17945:131;18071:4;17945:131;:::i;:::-;17937:139;;17664:419;;;:::o;18089:::-;18255:4;18293:2;18282:9;18278:18;18270:26;;18342:9;18336:4;18332:20;18328:1;18317:9;18313:17;18306:47;18370:131;18496:4;18370:131;:::i;:::-;18362:139;;18089:419;;;:::o;18514:::-;18680:4;18718:2;18707:9;18703:18;18695:26;;18767:9;18761:4;18757:20;18753:1;18742:9;18738:17;18731:47;18795:131;18921:4;18795:131;:::i;:::-;18787:139;;18514:419;;;:::o;18939:::-;19105:4;19143:2;19132:9;19128:18;19120:26;;19192:9;19186:4;19182:20;19178:1;19167:9;19163:17;19156:47;19220:131;19346:4;19220:131;:::i;:::-;19212:139;;18939:419;;;:::o;19364:::-;19530:4;19568:2;19557:9;19553:18;19545:26;;19617:9;19611:4;19607:20;19603:1;19592:9;19588:17;19581:47;19645:131;19771:4;19645:131;:::i;:::-;19637:139;;19364:419;;;:::o;19789:::-;19955:4;19993:2;19982:9;19978:18;19970:26;;20042:9;20036:4;20032:20;20028:1;20017:9;20013:17;20006:47;20070:131;20196:4;20070:131;:::i;:::-;20062:139;;19789:419;;;:::o;20214:::-;20380:4;20418:2;20407:9;20403:18;20395:26;;20467:9;20461:4;20457:20;20453:1;20442:9;20438:17;20431:47;20495:131;20621:4;20495:131;:::i;:::-;20487:139;;20214:419;;;:::o;20639:::-;20805:4;20843:2;20832:9;20828:18;20820:26;;20892:9;20886:4;20882:20;20878:1;20867:9;20863:17;20856:47;20920:131;21046:4;20920:131;:::i;:::-;20912:139;;20639:419;;;:::o;21064:::-;21230:4;21268:2;21257:9;21253:18;21245:26;;21317:9;21311:4;21307:20;21303:1;21292:9;21288:17;21281:47;21345:131;21471:4;21345:131;:::i;:::-;21337:139;;21064:419;;;:::o;21489:::-;21655:4;21693:2;21682:9;21678:18;21670:26;;21742:9;21736:4;21732:20;21728:1;21717:9;21713:17;21706:47;21770:131;21896:4;21770:131;:::i;:::-;21762:139;;21489:419;;;:::o;21914:::-;22080:4;22118:2;22107:9;22103:18;22095:26;;22167:9;22161:4;22157:20;22153:1;22142:9;22138:17;22131:47;22195:131;22321:4;22195:131;:::i;:::-;22187:139;;21914:419;;;:::o;22339:::-;22505:4;22543:2;22532:9;22528:18;22520:26;;22592:9;22586:4;22582:20;22578:1;22567:9;22563:17;22556:47;22620:131;22746:4;22620:131;:::i;:::-;22612:139;;22339:419;;;:::o;22764:::-;22930:4;22968:2;22957:9;22953:18;22945:26;;23017:9;23011:4;23007:20;23003:1;22992:9;22988:17;22981:47;23045:131;23171:4;23045:131;:::i;:::-;23037:139;;22764:419;;;:::o;23189:::-;23355:4;23393:2;23382:9;23378:18;23370:26;;23442:9;23436:4;23432:20;23428:1;23417:9;23413:17;23406:47;23470:131;23596:4;23470:131;:::i;:::-;23462:139;;23189:419;;;:::o;23614:::-;23780:4;23818:2;23807:9;23803:18;23795:26;;23867:9;23861:4;23857:20;23853:1;23842:9;23838:17;23831:47;23895:131;24021:4;23895:131;:::i;:::-;23887:139;;23614:419;;;:::o;24039:222::-;24132:4;24170:2;24159:9;24155:18;24147:26;;24183:71;24251:1;24240:9;24236:17;24227:6;24183:71;:::i;:::-;24039:222;;;;:::o;24267:129::-;24301:6;24328:20;;:::i;:::-;24318:30;;24357:33;24385:4;24377:6;24357:33;:::i;:::-;24267:129;;;:::o;24402:75::-;24435:6;24468:2;24462:9;24452:19;;24402:75;:::o;24483:307::-;24544:4;24634:18;24626:6;24623:30;24620:56;;;24656:18;;:::i;:::-;24620:56;24694:29;24716:6;24694:29;:::i;:::-;24686:37;;24778:4;24772;24768:15;24760:23;;24483:307;;;:::o;24796:308::-;24858:4;24948:18;24940:6;24937:30;24934:56;;;24970:18;;:::i;:::-;24934:56;25008:29;25030:6;25008:29;:::i;:::-;25000:37;;25092:4;25086;25082:15;25074:23;;24796:308;;;:::o;25110:98::-;25161:6;25195:5;25189:12;25179:22;;25110:98;;;:::o;25214:99::-;25266:6;25300:5;25294:12;25284:22;;25214:99;;;:::o;25319:168::-;25402:11;25436:6;25431:3;25424:19;25476:4;25471:3;25467:14;25452:29;;25319:168;;;;:::o;25493:169::-;25577:11;25611:6;25606:3;25599:19;25651:4;25646:3;25642:14;25627:29;;25493:169;;;;:::o;25668:148::-;25770:11;25807:3;25792:18;;25668:148;;;;:::o;25822:305::-;25862:3;25881:20;25899:1;25881:20;:::i;:::-;25876:25;;25915:20;25933:1;25915:20;:::i;:::-;25910:25;;26069:1;26001:66;25997:74;25994:1;25991:81;25988:107;;;26075:18;;:::i;:::-;25988:107;26119:1;26116;26112:9;26105:16;;25822:305;;;;:::o;26133:185::-;26173:1;26190:20;26208:1;26190:20;:::i;:::-;26185:25;;26224:20;26242:1;26224:20;:::i;:::-;26219:25;;26263:1;26253:35;;26268:18;;:::i;:::-;26253:35;26310:1;26307;26303:9;26298:14;;26133:185;;;;:::o;26324:191::-;26364:4;26384:20;26402:1;26384:20;:::i;:::-;26379:25;;26418:20;26436:1;26418:20;:::i;:::-;26413:25;;26457:1;26454;26451:8;26448:34;;;26462:18;;:::i;:::-;26448:34;26507:1;26504;26500:9;26492:17;;26324:191;;;;:::o;26521:96::-;26558:7;26587:24;26605:5;26587:24;:::i;:::-;26576:35;;26521:96;;;:::o;26623:90::-;26657:7;26700:5;26693:13;26686:21;26675:32;;26623:90;;;:::o;26719:149::-;26755:7;26795:66;26788:5;26784:78;26773:89;;26719:149;;;:::o;26874:126::-;26911:7;26951:42;26944:5;26940:54;26929:65;;26874:126;;;:::o;27006:77::-;27043:7;27072:5;27061:16;;27006:77;;;:::o;27089:154::-;27173:6;27168:3;27163;27150:30;27235:1;27226:6;27221:3;27217:16;27210:27;27089:154;;;:::o;27249:307::-;27317:1;27327:113;27341:6;27338:1;27335:13;27327:113;;;27426:1;27421:3;27417:11;27411:18;27407:1;27402:3;27398:11;27391:39;27363:2;27360:1;27356:10;27351:15;;27327:113;;;27458:6;27455:1;27452:13;27449:101;;;27538:1;27529:6;27524:3;27520:16;27513:27;27449:101;27298:258;27249:307;;;:::o;27562:320::-;27606:6;27643:1;27637:4;27633:12;27623:22;;27690:1;27684:4;27680:12;27711:18;27701:81;;27767:4;27759:6;27755:17;27745:27;;27701:81;27829:2;27821:6;27818:14;27798:18;27795:38;27792:84;;;27848:18;;:::i;:::-;27792:84;27613:269;27562:320;;;:::o;27888:281::-;27971:27;27993:4;27971:27;:::i;:::-;27963:6;27959:40;28101:6;28089:10;28086:22;28065:18;28053:10;28050:34;28047:62;28044:88;;;28112:18;;:::i;:::-;28044:88;28152:10;28148:2;28141:22;27931:238;27888:281;;:::o;28175:233::-;28214:3;28237:24;28255:5;28237:24;:::i;:::-;28228:33;;28283:66;28276:5;28273:77;28270:103;;;28353:18;;:::i;:::-;28270:103;28400:1;28393:5;28389:13;28382:20;;28175:233;;;:::o;28414:176::-;28446:1;28463:20;28481:1;28463:20;:::i;:::-;28458:25;;28497:20;28515:1;28497:20;:::i;:::-;28492:25;;28536:1;28526:35;;28541:18;;:::i;:::-;28526:35;28582:1;28579;28575:9;28570:14;;28414:176;;;;:::o;28596:180::-;28644:77;28641:1;28634:88;28741:4;28738:1;28731:15;28765:4;28762:1;28755:15;28782:180;28830:77;28827:1;28820:88;28927:4;28924:1;28917:15;28951:4;28948:1;28941:15;28968:180;29016:77;29013:1;29006:88;29113:4;29110:1;29103:15;29137:4;29134:1;29127:15;29154:180;29202:77;29199:1;29192:88;29299:4;29296:1;29289:15;29323:4;29320:1;29313:15;29340:180;29388:77;29385:1;29378:88;29485:4;29482:1;29475:15;29509:4;29506:1;29499:15;29526:180;29574:77;29571:1;29564:88;29671:4;29668:1;29661:15;29695:4;29692:1;29685:15;29712:117;29821:1;29818;29811:12;29835:117;29944:1;29941;29934:12;29958:117;30067:1;30064;30057:12;30081:117;30190:1;30187;30180:12;30204:102;30245:6;30296:2;30292:7;30287:2;30280:5;30276:14;30272:28;30262:38;;30204:102;;;:::o;30312:230::-;30452:34;30448:1;30440:6;30436:14;30429:58;30521:13;30516:2;30508:6;30504:15;30497:38;30312:230;:::o;30548:237::-;30688:34;30684:1;30676:6;30672:14;30665:58;30757:20;30752:2;30744:6;30740:15;30733:45;30548:237;:::o;30791:178::-;30931:30;30927:1;30919:6;30915:14;30908:54;30791:178;:::o;30975:223::-;31115:34;31111:1;31103:6;31099:14;31092:58;31184:6;31179:2;31171:6;31167:15;31160:31;30975:223;:::o;31204:175::-;31344:27;31340:1;31332:6;31328:14;31321:51;31204:175;:::o;31385:231::-;31525:34;31521:1;31513:6;31509:14;31502:58;31594:14;31589:2;31581:6;31577:15;31570:39;31385:231;:::o;31622:243::-;31762:34;31758:1;31750:6;31746:14;31739:58;31831:26;31826:2;31818:6;31814:15;31807:51;31622:243;:::o;31871:229::-;32011:34;32007:1;31999:6;31995:14;31988:58;32080:12;32075:2;32067:6;32063:15;32056:37;31871:229;:::o;32106:228::-;32246:34;32242:1;32234:6;32230:14;32223:58;32315:11;32310:2;32302:6;32298:15;32291:36;32106:228;:::o;32340:182::-;32480:34;32476:1;32468:6;32464:14;32457:58;32340:182;:::o;32528:236::-;32668:34;32664:1;32656:6;32652:14;32645:58;32737:19;32732:2;32724:6;32720:15;32713:44;32528:236;:::o;32770:231::-;32910:34;32906:1;32898:6;32894:14;32887:58;32979:14;32974:2;32966:6;32962:15;32955:39;32770:231;:::o;33007:228::-;33147:34;33143:1;33135:6;33131:14;33124:58;33216:11;33211:2;33203:6;33199:15;33192:36;33007:228;:::o;33241:234::-;33381:34;33377:1;33369:6;33365:14;33358:58;33450:17;33445:2;33437:6;33433:15;33426:42;33241:234;:::o;33481:220::-;33621:34;33617:1;33609:6;33605:14;33598:58;33690:3;33685:2;33677:6;33673:15;33666:28;33481:220;:::o;33707:236::-;33847:34;33843:1;33835:6;33831:14;33824:58;33916:19;33911:2;33903:6;33899:15;33892:44;33707:236;:::o;33949:231::-;34089:34;34085:1;34077:6;34073:14;34066:58;34158:14;34153:2;34145:6;34141:15;34134:39;33949:231;:::o;34186:122::-;34259:24;34277:5;34259:24;:::i;:::-;34252:5;34249:35;34239:63;;34298:1;34295;34288:12;34239:63;34186:122;:::o;34314:116::-;34384:21;34399:5;34384:21;:::i;:::-;34377:5;34374:32;34364:60;;34420:1;34417;34410:12;34364:60;34314:116;:::o;34436:120::-;34508:23;34525:5;34508:23;:::i;:::-;34501:5;34498:34;34488:62;;34546:1;34543;34536:12;34488:62;34436:120;:::o;34562:122::-;34635:24;34653:5;34635:24;:::i;:::-;34628:5;34625:35;34615:63;;34674:1;34671;34664:12;34615:63;34562:122;:::o

Swarm Source

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