ETH Price: $2,919.80 (-3.65%)
Gas: 1 Gwei

Token

FirstPenguin (TITLE)
 

Overview

Max Total Supply

0 TITLE

Holders

233

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
satoshi3104.eth
Balance
1 TITLE
0xc4b84Ee1Cf1765Bf907ab59859B6a7d7a879d08f
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:
TitleFirstPenguin

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: FirstPenguin.sol
// SPDX-License-Identifier: NONE

pragma solidity ^0.8.0;

import "./OpenzeppelinERC721.sol";

interface metaaniGEN {
    function ownerOf(uint256 tokenID) external view returns(address);
}


contract TitleFirstPenguin is  ERC721URIStorage {

    address public owner;

    string ipfs_base;

    bool mint_started = false;


    mapping(uint => bool) public minted;


    address metawallet = 0x60a89BB4C35A62DE53e4E1852E2d4037a008aC5b;
    address metaanigenaddress = 0xa467AB9447AfA5Db0c70325348D810d2058DDe18;
    mapping(address  => uint) priceCandidates;


    function checkMetaaniGEN(uint256 _nftid) public view returns(address){
        return metaaniGEN(metaanigenaddress).ownerOf(_nftid);
    }


    function claim(uint256 _nftid) public {
        require( mint_started );
        require( _nftid <= 10000);
        require( metaaniGEN(metaanigenaddress).ownerOf(_nftid) == msg.sender);
        _safeMint( msg.sender , _nftid);
        minted[_nftid] = true;
    }


    function mintStart() public {
        require(msg.sender == owner );
        mint_started = true;
    }


    function mintStop() public {
        require(msg.sender == metawallet);
        mint_started = false;
    }

    function withdraw() public {
        require(msg.sender == metawallet);
        uint balance = address(this).balance;
        payable(metawallet).transfer(balance);
    }


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



    function burn(uint256 _id) public {
        require( msg.sender == ownerOf(_id));
        _burn(_id);
    }

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

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



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

    function getTitle(uint256 tokenId) public pure returns (string memory) {
        tokenId;
        return "First Penguin";
    }

    constructor() ERC721("FirstPenguin" , "TITLE" ) {
        owner = msg.sender;

        //title_first_penguin
        ipfs_base = "ipfs://QmTmrvQJMBtaEVzpnuzNimgdSQnrSi9tRcvYCdsi6oJR7U/";

    } 

}


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":[{"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":"_nftid","type":"uint256"}],"name":"checkMetaaniGEN","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftid","type":"uint256"}],"name":"claim","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":"uint256","name":"tokenId","type":"uint256"}],"name":"getTitle","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintStop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"minted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600960006101000a81548160ff0219169083151502179055507360a89bb4c35a62de53e4e1852e2d4037a008ac5b600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a467ab9447afa5db0c70325348d810d2058dde18600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000d657600080fd5b506040518060400160405280600c81526020017f466972737450656e6775696e00000000000000000000000000000000000000008152506040518060400160405280600581526020017f5449544c4500000000000000000000000000000000000000000000000000000081525081600090805190602001906200015b929190620001f0565b50806001908051906020019062000174929190620001f0565b50505033600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604051806060016040528060368152602001620036876036913960089080519060200190620001e9929190620001f0565b5062000305565b828054620001fe90620002a0565b90600052602060002090601f0160209004810192826200022257600085556200026e565b82601f106200023d57805160ff19168380011785556200026e565b828001600101855582156200026e579182015b828111156200026d57825182559160200191906001019062000250565b5b5090506200027d919062000281565b5090565b5b808211156200029c57600081600090555060010162000282565b5090565b60006002820490506001821680620002b957607f821691505b60208210811415620002d057620002cf620002d6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61337280620003156000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806343807d68116100c3578063929a79b11161007c578063929a79b11461037457806395d89b41146103a4578063a22cb465146103c2578063b88d4fde146103de578063c87b56dd146103fa578063e985e9c51461042a5761014d565b806343807d681461027a5780634a44f379146102aa5780636352211e146102c657806370a08231146102f65780637dc0bf3f146103265780638da5cb5b146103565761014d565b8063255e468511610115578063255e468514610208578063379607f51461021257806339d64bce1461022e5780633ccfd60b1461023857806342842e0e1461024257806342966c681461025e5761014d565b806301ffc9a71461015257806306fdde0314610182578063081812fc146101a0578063095ea7b3146101d057806323b872dd146101ec575b600080fd5b61016c60048036038101906101679190612419565b61045a565b6040516101799190612851565b60405180910390f35b61018a61046c565b604051610197919061286c565b60405180910390f35b6101ba60048036038101906101b591906124bc565b6104fe565b6040516101c791906127ea565b60405180910390f35b6101ea60048036038101906101e591906123d9565b610583565b005b610206600480360381019061020191906122c3565b61069b565b005b6102106106fb565b005b61022c600480360381019061022791906124bc565b610772565b005b6102366108b5565b005b61024061092c565b005b61025c600480360381019061025791906122c3565b6109f7565b005b610278600480360381019061027391906124bc565b610a17565b005b610294600480360381019061028f91906124bc565b610a63565b6040516102a191906127ea565b60405180910390f35b6102c460048036038101906102bf9190612473565b610b17565b005b6102e060048036038101906102db91906124bc565b610b8b565b6040516102ed91906127ea565b60405180910390f35b610310600480360381019061030b9190612229565b610c3d565b60405161031d9190612a6e565b60405180910390f35b610340600480360381019061033b91906124bc565b610cf5565b60405161034d9190612851565b60405180910390f35b61035e610d15565b60405161036b91906127ea565b60405180910390f35b61038e600480360381019061038991906124bc565b610d3b565b60405161039b919061286c565b60405180910390f35b6103ac610d7a565b6040516103b9919061286c565b60405180910390f35b6103dc60048036038101906103d79190612399565b610e0c565b005b6103f860048036038101906103f39190612316565b610f8d565b005b610414600480360381019061040f91906124bc565b610fef565b604051610421919061286c565b60405180910390f35b610444600480360381019061043f9190612283565b611141565b6040516104519190612851565b60405180910390f35b6000610465826111d5565b9050919050565b60606000805461047b90612cc4565b80601f01602080910402602001604051908101604052809291908181526020018280546104a790612cc4565b80156104f45780601f106104c9576101008083540402835291602001916104f4565b820191906000526020600020905b8154815290600101906020018083116104d757829003601f168201915b5050505050905090565b6000610509826112b7565b610548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053f906129ce565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061058e82610b8b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156105ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f690612a2e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661061e611323565b73ffffffffffffffffffffffffffffffffffffffff16148061064d575061064c81610647611323565b611141565b5b61068c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106839061292e565b60405180910390fd5b610696838361132b565b505050565b6106ac6106a6611323565b826113e4565b6106eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e290612a4e565b60405180910390fd5b6106f68383836114c2565b505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461075557600080fd5b6001600960006101000a81548160ff021916908315150217905550565b600960009054906101000a900460ff1661078b57600080fd5b61271081111561079a57600080fd5b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b815260040161080c9190612a6e565b60206040518083038186803b15801561082457600080fd5b505afa158015610838573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061085c9190612256565b73ffffffffffffffffffffffffffffffffffffffff161461087c57600080fd5b610886338261171e565b6001600a600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461090f57600080fd5b6000600960006101000a81548160ff021916908315150217905550565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461098657600080fd5b6000479050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156109f3573d6000803e3d6000fd5b5050565b610a1283838360405180602001604052806000815250610f8d565b505050565b610a2081610b8b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a5757600080fd5b610a608161173c565b50565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401610ac09190612a6e565b60206040518083038186803b158015610ad857600080fd5b505afa158015610aec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b109190612256565b9050919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b7157600080fd5b8060089080519060200190610b87929190611fe8565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b9061296e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca59061294e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600a6020528060005260406000206000915054906101000a900460ff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606040518060400160405280600d81526020017f46697273742050656e6775696e000000000000000000000000000000000000008152509050919050565b606060018054610d8990612cc4565b80601f0160208091040260200160405190810160405280929190818152602001828054610db590612cc4565b8015610e025780601f10610dd757610100808354040283529160200191610e02565b820191906000526020600020905b815481529060010190602001808311610de557829003601f168201915b5050505050905090565b610e14611323565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e79906128ee565b60405180910390fd5b8060056000610e8f611323565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f3c611323565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f819190612851565b60405180910390a35050565b610f9e610f98611323565b836113e4565b610fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd490612a4e565b60405180910390fd5b610fe98484848461178f565b50505050565b6060610ffa826112b7565b611039576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611030906129ae565b60405180910390fd5b600060066000848152602001908152602001600020805461105990612cc4565b80601f016020809104026020016040519081016040528092919081815260200182805461108590612cc4565b80156110d25780601f106110a7576101008083540402835291602001916110d2565b820191906000526020600020905b8154815290600101906020018083116110b557829003601f168201915b5050505050905060006110e36117eb565b90506000815114156110f957819250505061113c565b60008251111561112e5780826040516020016111169291906127c6565b6040516020818303038152906040529250505061113c565b6111378461187d565b925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806112a057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806112b057506112af82611924565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661139e83610b8b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006113ef826112b7565b61142e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114259061290e565b60405180910390fd5b600061143983610b8b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114a857508373ffffffffffffffffffffffffffffffffffffffff16611490846104fe565b73ffffffffffffffffffffffffffffffffffffffff16145b806114b957506114b88185611141565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166114e282610b8b565b73ffffffffffffffffffffffffffffffffffffffff1614611538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152f906129ee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f906128ce565b60405180910390fd5b6115b383838361198e565b6115be60008261132b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461160e9190612bda565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116659190612b53565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61173882826040518060200160405280600081525061199e565b5050565b611745816119f9565b600060066000838152602001908152602001600020805461176590612cc4565b90501461178c5760066000828152602001908152602001600020600061178b919061206e565b5b50565b61179a8484846114c2565b6117a684848484611b0a565b6117e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dc9061288e565b60405180910390fd5b50505050565b6060600880546117fa90612cc4565b80601f016020809104026020016040519081016040528092919081815260200182805461182690612cc4565b80156118735780601f1061184857610100808354040283529160200191611873565b820191906000526020600020905b81548152906001019060200180831161185657829003601f168201915b5050505050905090565b6060611888826112b7565b6118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be90612a0e565b60405180910390fd5b60006118d16117eb565b905060008151116118f1576040518060200160405280600081525061191c565b806118fb84611ca1565b60405160200161190c9291906127c6565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611999838383611e02565b505050565b6119a88383611e07565b6119b56000848484611b0a565b6119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb9061288e565b60405180910390fd5b505050565b6000611a0482610b8b565b9050611a128160008461198e565b611a1d60008361132b565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a6d9190612bda565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000611b2b8473ffffffffffffffffffffffffffffffffffffffff16611fd5565b15611c94578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b54611323565b8786866040518563ffffffff1660e01b8152600401611b769493929190612805565b602060405180830381600087803b158015611b9057600080fd5b505af1925050508015611bc157506040513d601f19601f82011682018060405250810190611bbe9190612446565b60015b611c44573d8060008114611bf1576040519150601f19603f3d011682016040523d82523d6000602084013e611bf6565b606091505b50600081511415611c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c339061288e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611c99565b600190505b949350505050565b60606000821415611ce9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611dfd565b600082905060005b60008214611d1b578080611d0490612d27565b915050600a82611d149190612ba9565b9150611cf1565b60008167ffffffffffffffff811115611d3757611d36612e5d565b5b6040519080825280601f01601f191660200182016040528015611d695781602001600182028036833780820191505090505b5090505b60008514611df657600182611d829190612bda565b9150600a85611d919190612d70565b6030611d9d9190612b53565b60f81b818381518110611db357611db2612e2e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611def9190612ba9565b9450611d6d565b8093505050505b919050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6e9061298e565b60405180910390fd5b611e80816112b7565b15611ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb7906128ae565b60405180910390fd5b611ecc6000838361198e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f1c9190612b53565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054611ff490612cc4565b90600052602060002090601f016020900481019282612016576000855561205d565b82601f1061202f57805160ff191683800117855561205d565b8280016001018555821561205d579182015b8281111561205c578251825591602001919060010190612041565b5b50905061206a91906120ae565b5090565b50805461207a90612cc4565b6000825580601f1061208c57506120ab565b601f0160209004906000526020600020908101906120aa91906120ae565b5b50565b5b808211156120c75760008160009055506001016120af565b5090565b60006120de6120d984612aae565b612a89565b9050828152602081018484840111156120fa576120f9612e91565b5b612105848285612c82565b509392505050565b600061212061211b84612adf565b612a89565b90508281526020810184848401111561213c5761213b612e91565b5b612147848285612c82565b509392505050565b60008135905061215e816132e0565b92915050565b600081519050612173816132e0565b92915050565b600081359050612188816132f7565b92915050565b60008135905061219d8161330e565b92915050565b6000815190506121b28161330e565b92915050565b600082601f8301126121cd576121cc612e8c565b5b81356121dd8482602086016120cb565b91505092915050565b600082601f8301126121fb576121fa612e8c565b5b813561220b84826020860161210d565b91505092915050565b60008135905061222381613325565b92915050565b60006020828403121561223f5761223e612e9b565b5b600061224d8482850161214f565b91505092915050565b60006020828403121561226c5761226b612e9b565b5b600061227a84828501612164565b91505092915050565b6000806040838503121561229a57612299612e9b565b5b60006122a88582860161214f565b92505060206122b98582860161214f565b9150509250929050565b6000806000606084860312156122dc576122db612e9b565b5b60006122ea8682870161214f565b93505060206122fb8682870161214f565b925050604061230c86828701612214565b9150509250925092565b600080600080608085870312156123305761232f612e9b565b5b600061233e8782880161214f565b945050602061234f8782880161214f565b935050604061236087828801612214565b925050606085013567ffffffffffffffff81111561238157612380612e96565b5b61238d878288016121b8565b91505092959194509250565b600080604083850312156123b0576123af612e9b565b5b60006123be8582860161214f565b92505060206123cf85828601612179565b9150509250929050565b600080604083850312156123f0576123ef612e9b565b5b60006123fe8582860161214f565b925050602061240f85828601612214565b9150509250929050565b60006020828403121561242f5761242e612e9b565b5b600061243d8482850161218e565b91505092915050565b60006020828403121561245c5761245b612e9b565b5b600061246a848285016121a3565b91505092915050565b60006020828403121561248957612488612e9b565b5b600082013567ffffffffffffffff8111156124a7576124a6612e96565b5b6124b3848285016121e6565b91505092915050565b6000602082840312156124d2576124d1612e9b565b5b60006124e084828501612214565b91505092915050565b6124f281612c0e565b82525050565b61250181612c20565b82525050565b600061251282612b10565b61251c8185612b26565b935061252c818560208601612c91565b61253581612ea0565b840191505092915050565b600061254b82612b1b565b6125558185612b37565b9350612565818560208601612c91565b61256e81612ea0565b840191505092915050565b600061258482612b1b565b61258e8185612b48565b935061259e818560208601612c91565b80840191505092915050565b60006125b7603283612b37565b91506125c282612eb1565b604082019050919050565b60006125da601c83612b37565b91506125e582612f00565b602082019050919050565b60006125fd602483612b37565b915061260882612f29565b604082019050919050565b6000612620601983612b37565b915061262b82612f78565b602082019050919050565b6000612643602c83612b37565b915061264e82612fa1565b604082019050919050565b6000612666603883612b37565b915061267182612ff0565b604082019050919050565b6000612689602a83612b37565b91506126948261303f565b604082019050919050565b60006126ac602983612b37565b91506126b78261308e565b604082019050919050565b60006126cf602083612b37565b91506126da826130dd565b602082019050919050565b60006126f2603183612b37565b91506126fd82613106565b604082019050919050565b6000612715602c83612b37565b915061272082613155565b604082019050919050565b6000612738602983612b37565b9150612743826131a4565b604082019050919050565b600061275b602f83612b37565b9150612766826131f3565b604082019050919050565b600061277e602183612b37565b915061278982613242565b604082019050919050565b60006127a1603183612b37565b91506127ac82613291565b604082019050919050565b6127c081612c78565b82525050565b60006127d28285612579565b91506127de8284612579565b91508190509392505050565b60006020820190506127ff60008301846124e9565b92915050565b600060808201905061281a60008301876124e9565b61282760208301866124e9565b61283460408301856127b7565b81810360608301526128468184612507565b905095945050505050565b600060208201905061286660008301846124f8565b92915050565b600060208201905081810360008301526128868184612540565b905092915050565b600060208201905081810360008301526128a7816125aa565b9050919050565b600060208201905081810360008301526128c7816125cd565b9050919050565b600060208201905081810360008301526128e7816125f0565b9050919050565b6000602082019050818103600083015261290781612613565b9050919050565b6000602082019050818103600083015261292781612636565b9050919050565b6000602082019050818103600083015261294781612659565b9050919050565b600060208201905081810360008301526129678161267c565b9050919050565b600060208201905081810360008301526129878161269f565b9050919050565b600060208201905081810360008301526129a7816126c2565b9050919050565b600060208201905081810360008301526129c7816126e5565b9050919050565b600060208201905081810360008301526129e781612708565b9050919050565b60006020820190508181036000830152612a078161272b565b9050919050565b60006020820190508181036000830152612a278161274e565b9050919050565b60006020820190508181036000830152612a4781612771565b9050919050565b60006020820190508181036000830152612a6781612794565b9050919050565b6000602082019050612a8360008301846127b7565b92915050565b6000612a93612aa4565b9050612a9f8282612cf6565b919050565b6000604051905090565b600067ffffffffffffffff821115612ac957612ac8612e5d565b5b612ad282612ea0565b9050602081019050919050565b600067ffffffffffffffff821115612afa57612af9612e5d565b5b612b0382612ea0565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612b5e82612c78565b9150612b6983612c78565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b9e57612b9d612da1565b5b828201905092915050565b6000612bb482612c78565b9150612bbf83612c78565b925082612bcf57612bce612dd0565b5b828204905092915050565b6000612be582612c78565b9150612bf083612c78565b925082821015612c0357612c02612da1565b5b828203905092915050565b6000612c1982612c58565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612caf578082015181840152602081019050612c94565b83811115612cbe576000848401525b50505050565b60006002820490506001821680612cdc57607f821691505b60208210811415612cf057612cef612dff565b5b50919050565b612cff82612ea0565b810181811067ffffffffffffffff82111715612d1e57612d1d612e5d565b5b80604052505050565b6000612d3282612c78565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612d6557612d64612da1565b5b600182019050919050565b6000612d7b82612c78565b9150612d8683612c78565b925082612d9657612d95612dd0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6132e981612c0e565b81146132f457600080fd5b50565b61330081612c20565b811461330b57600080fd5b50565b61331781612c2c565b811461332257600080fd5b50565b61332e81612c78565b811461333957600080fd5b5056fea2646970667358221220bfaddad310e7678043c14a9d43dc0b28e90a13dda7d7c3ba9f2d705d9fc57d1a64736f6c63430008070033697066733a2f2f516d546d7276514a4d42746145567a706e757a4e696d676453516e72536939745263765943647369366f4a5237552f

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806343807d68116100c3578063929a79b11161007c578063929a79b11461037457806395d89b41146103a4578063a22cb465146103c2578063b88d4fde146103de578063c87b56dd146103fa578063e985e9c51461042a5761014d565b806343807d681461027a5780634a44f379146102aa5780636352211e146102c657806370a08231146102f65780637dc0bf3f146103265780638da5cb5b146103565761014d565b8063255e468511610115578063255e468514610208578063379607f51461021257806339d64bce1461022e5780633ccfd60b1461023857806342842e0e1461024257806342966c681461025e5761014d565b806301ffc9a71461015257806306fdde0314610182578063081812fc146101a0578063095ea7b3146101d057806323b872dd146101ec575b600080fd5b61016c60048036038101906101679190612419565b61045a565b6040516101799190612851565b60405180910390f35b61018a61046c565b604051610197919061286c565b60405180910390f35b6101ba60048036038101906101b591906124bc565b6104fe565b6040516101c791906127ea565b60405180910390f35b6101ea60048036038101906101e591906123d9565b610583565b005b610206600480360381019061020191906122c3565b61069b565b005b6102106106fb565b005b61022c600480360381019061022791906124bc565b610772565b005b6102366108b5565b005b61024061092c565b005b61025c600480360381019061025791906122c3565b6109f7565b005b610278600480360381019061027391906124bc565b610a17565b005b610294600480360381019061028f91906124bc565b610a63565b6040516102a191906127ea565b60405180910390f35b6102c460048036038101906102bf9190612473565b610b17565b005b6102e060048036038101906102db91906124bc565b610b8b565b6040516102ed91906127ea565b60405180910390f35b610310600480360381019061030b9190612229565b610c3d565b60405161031d9190612a6e565b60405180910390f35b610340600480360381019061033b91906124bc565b610cf5565b60405161034d9190612851565b60405180910390f35b61035e610d15565b60405161036b91906127ea565b60405180910390f35b61038e600480360381019061038991906124bc565b610d3b565b60405161039b919061286c565b60405180910390f35b6103ac610d7a565b6040516103b9919061286c565b60405180910390f35b6103dc60048036038101906103d79190612399565b610e0c565b005b6103f860048036038101906103f39190612316565b610f8d565b005b610414600480360381019061040f91906124bc565b610fef565b604051610421919061286c565b60405180910390f35b610444600480360381019061043f9190612283565b611141565b6040516104519190612851565b60405180910390f35b6000610465826111d5565b9050919050565b60606000805461047b90612cc4565b80601f01602080910402602001604051908101604052809291908181526020018280546104a790612cc4565b80156104f45780601f106104c9576101008083540402835291602001916104f4565b820191906000526020600020905b8154815290600101906020018083116104d757829003601f168201915b5050505050905090565b6000610509826112b7565b610548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053f906129ce565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061058e82610b8b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156105ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f690612a2e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661061e611323565b73ffffffffffffffffffffffffffffffffffffffff16148061064d575061064c81610647611323565b611141565b5b61068c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106839061292e565b60405180910390fd5b610696838361132b565b505050565b6106ac6106a6611323565b826113e4565b6106eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e290612a4e565b60405180910390fd5b6106f68383836114c2565b505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461075557600080fd5b6001600960006101000a81548160ff021916908315150217905550565b600960009054906101000a900460ff1661078b57600080fd5b61271081111561079a57600080fd5b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b815260040161080c9190612a6e565b60206040518083038186803b15801561082457600080fd5b505afa158015610838573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061085c9190612256565b73ffffffffffffffffffffffffffffffffffffffff161461087c57600080fd5b610886338261171e565b6001600a600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461090f57600080fd5b6000600960006101000a81548160ff021916908315150217905550565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461098657600080fd5b6000479050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156109f3573d6000803e3d6000fd5b5050565b610a1283838360405180602001604052806000815250610f8d565b505050565b610a2081610b8b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a5757600080fd5b610a608161173c565b50565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401610ac09190612a6e565b60206040518083038186803b158015610ad857600080fd5b505afa158015610aec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b109190612256565b9050919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b7157600080fd5b8060089080519060200190610b87929190611fe8565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b9061296e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca59061294e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600a6020528060005260406000206000915054906101000a900460ff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606040518060400160405280600d81526020017f46697273742050656e6775696e000000000000000000000000000000000000008152509050919050565b606060018054610d8990612cc4565b80601f0160208091040260200160405190810160405280929190818152602001828054610db590612cc4565b8015610e025780601f10610dd757610100808354040283529160200191610e02565b820191906000526020600020905b815481529060010190602001808311610de557829003601f168201915b5050505050905090565b610e14611323565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e79906128ee565b60405180910390fd5b8060056000610e8f611323565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f3c611323565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f819190612851565b60405180910390a35050565b610f9e610f98611323565b836113e4565b610fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd490612a4e565b60405180910390fd5b610fe98484848461178f565b50505050565b6060610ffa826112b7565b611039576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611030906129ae565b60405180910390fd5b600060066000848152602001908152602001600020805461105990612cc4565b80601f016020809104026020016040519081016040528092919081815260200182805461108590612cc4565b80156110d25780601f106110a7576101008083540402835291602001916110d2565b820191906000526020600020905b8154815290600101906020018083116110b557829003601f168201915b5050505050905060006110e36117eb565b90506000815114156110f957819250505061113c565b60008251111561112e5780826040516020016111169291906127c6565b6040516020818303038152906040529250505061113c565b6111378461187d565b925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806112a057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806112b057506112af82611924565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661139e83610b8b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006113ef826112b7565b61142e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114259061290e565b60405180910390fd5b600061143983610b8b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114a857508373ffffffffffffffffffffffffffffffffffffffff16611490846104fe565b73ffffffffffffffffffffffffffffffffffffffff16145b806114b957506114b88185611141565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166114e282610b8b565b73ffffffffffffffffffffffffffffffffffffffff1614611538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152f906129ee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f906128ce565b60405180910390fd5b6115b383838361198e565b6115be60008261132b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461160e9190612bda565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116659190612b53565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61173882826040518060200160405280600081525061199e565b5050565b611745816119f9565b600060066000838152602001908152602001600020805461176590612cc4565b90501461178c5760066000828152602001908152602001600020600061178b919061206e565b5b50565b61179a8484846114c2565b6117a684848484611b0a565b6117e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dc9061288e565b60405180910390fd5b50505050565b6060600880546117fa90612cc4565b80601f016020809104026020016040519081016040528092919081815260200182805461182690612cc4565b80156118735780601f1061184857610100808354040283529160200191611873565b820191906000526020600020905b81548152906001019060200180831161185657829003601f168201915b5050505050905090565b6060611888826112b7565b6118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be90612a0e565b60405180910390fd5b60006118d16117eb565b905060008151116118f1576040518060200160405280600081525061191c565b806118fb84611ca1565b60405160200161190c9291906127c6565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611999838383611e02565b505050565b6119a88383611e07565b6119b56000848484611b0a565b6119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb9061288e565b60405180910390fd5b505050565b6000611a0482610b8b565b9050611a128160008461198e565b611a1d60008361132b565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a6d9190612bda565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000611b2b8473ffffffffffffffffffffffffffffffffffffffff16611fd5565b15611c94578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b54611323565b8786866040518563ffffffff1660e01b8152600401611b769493929190612805565b602060405180830381600087803b158015611b9057600080fd5b505af1925050508015611bc157506040513d601f19601f82011682018060405250810190611bbe9190612446565b60015b611c44573d8060008114611bf1576040519150601f19603f3d011682016040523d82523d6000602084013e611bf6565b606091505b50600081511415611c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c339061288e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611c99565b600190505b949350505050565b60606000821415611ce9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611dfd565b600082905060005b60008214611d1b578080611d0490612d27565b915050600a82611d149190612ba9565b9150611cf1565b60008167ffffffffffffffff811115611d3757611d36612e5d565b5b6040519080825280601f01601f191660200182016040528015611d695781602001600182028036833780820191505090505b5090505b60008514611df657600182611d829190612bda565b9150600a85611d919190612d70565b6030611d9d9190612b53565b60f81b818381518110611db357611db2612e2e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611def9190612ba9565b9450611d6d565b8093505050505b919050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6e9061298e565b60405180910390fd5b611e80816112b7565b15611ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb7906128ae565b60405180910390fd5b611ecc6000838361198e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f1c9190612b53565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054611ff490612cc4565b90600052602060002090601f016020900481019282612016576000855561205d565b82601f1061202f57805160ff191683800117855561205d565b8280016001018555821561205d579182015b8281111561205c578251825591602001919060010190612041565b5b50905061206a91906120ae565b5090565b50805461207a90612cc4565b6000825580601f1061208c57506120ab565b601f0160209004906000526020600020908101906120aa91906120ae565b5b50565b5b808211156120c75760008160009055506001016120af565b5090565b60006120de6120d984612aae565b612a89565b9050828152602081018484840111156120fa576120f9612e91565b5b612105848285612c82565b509392505050565b600061212061211b84612adf565b612a89565b90508281526020810184848401111561213c5761213b612e91565b5b612147848285612c82565b509392505050565b60008135905061215e816132e0565b92915050565b600081519050612173816132e0565b92915050565b600081359050612188816132f7565b92915050565b60008135905061219d8161330e565b92915050565b6000815190506121b28161330e565b92915050565b600082601f8301126121cd576121cc612e8c565b5b81356121dd8482602086016120cb565b91505092915050565b600082601f8301126121fb576121fa612e8c565b5b813561220b84826020860161210d565b91505092915050565b60008135905061222381613325565b92915050565b60006020828403121561223f5761223e612e9b565b5b600061224d8482850161214f565b91505092915050565b60006020828403121561226c5761226b612e9b565b5b600061227a84828501612164565b91505092915050565b6000806040838503121561229a57612299612e9b565b5b60006122a88582860161214f565b92505060206122b98582860161214f565b9150509250929050565b6000806000606084860312156122dc576122db612e9b565b5b60006122ea8682870161214f565b93505060206122fb8682870161214f565b925050604061230c86828701612214565b9150509250925092565b600080600080608085870312156123305761232f612e9b565b5b600061233e8782880161214f565b945050602061234f8782880161214f565b935050604061236087828801612214565b925050606085013567ffffffffffffffff81111561238157612380612e96565b5b61238d878288016121b8565b91505092959194509250565b600080604083850312156123b0576123af612e9b565b5b60006123be8582860161214f565b92505060206123cf85828601612179565b9150509250929050565b600080604083850312156123f0576123ef612e9b565b5b60006123fe8582860161214f565b925050602061240f85828601612214565b9150509250929050565b60006020828403121561242f5761242e612e9b565b5b600061243d8482850161218e565b91505092915050565b60006020828403121561245c5761245b612e9b565b5b600061246a848285016121a3565b91505092915050565b60006020828403121561248957612488612e9b565b5b600082013567ffffffffffffffff8111156124a7576124a6612e96565b5b6124b3848285016121e6565b91505092915050565b6000602082840312156124d2576124d1612e9b565b5b60006124e084828501612214565b91505092915050565b6124f281612c0e565b82525050565b61250181612c20565b82525050565b600061251282612b10565b61251c8185612b26565b935061252c818560208601612c91565b61253581612ea0565b840191505092915050565b600061254b82612b1b565b6125558185612b37565b9350612565818560208601612c91565b61256e81612ea0565b840191505092915050565b600061258482612b1b565b61258e8185612b48565b935061259e818560208601612c91565b80840191505092915050565b60006125b7603283612b37565b91506125c282612eb1565b604082019050919050565b60006125da601c83612b37565b91506125e582612f00565b602082019050919050565b60006125fd602483612b37565b915061260882612f29565b604082019050919050565b6000612620601983612b37565b915061262b82612f78565b602082019050919050565b6000612643602c83612b37565b915061264e82612fa1565b604082019050919050565b6000612666603883612b37565b915061267182612ff0565b604082019050919050565b6000612689602a83612b37565b91506126948261303f565b604082019050919050565b60006126ac602983612b37565b91506126b78261308e565b604082019050919050565b60006126cf602083612b37565b91506126da826130dd565b602082019050919050565b60006126f2603183612b37565b91506126fd82613106565b604082019050919050565b6000612715602c83612b37565b915061272082613155565b604082019050919050565b6000612738602983612b37565b9150612743826131a4565b604082019050919050565b600061275b602f83612b37565b9150612766826131f3565b604082019050919050565b600061277e602183612b37565b915061278982613242565b604082019050919050565b60006127a1603183612b37565b91506127ac82613291565b604082019050919050565b6127c081612c78565b82525050565b60006127d28285612579565b91506127de8284612579565b91508190509392505050565b60006020820190506127ff60008301846124e9565b92915050565b600060808201905061281a60008301876124e9565b61282760208301866124e9565b61283460408301856127b7565b81810360608301526128468184612507565b905095945050505050565b600060208201905061286660008301846124f8565b92915050565b600060208201905081810360008301526128868184612540565b905092915050565b600060208201905081810360008301526128a7816125aa565b9050919050565b600060208201905081810360008301526128c7816125cd565b9050919050565b600060208201905081810360008301526128e7816125f0565b9050919050565b6000602082019050818103600083015261290781612613565b9050919050565b6000602082019050818103600083015261292781612636565b9050919050565b6000602082019050818103600083015261294781612659565b9050919050565b600060208201905081810360008301526129678161267c565b9050919050565b600060208201905081810360008301526129878161269f565b9050919050565b600060208201905081810360008301526129a7816126c2565b9050919050565b600060208201905081810360008301526129c7816126e5565b9050919050565b600060208201905081810360008301526129e781612708565b9050919050565b60006020820190508181036000830152612a078161272b565b9050919050565b60006020820190508181036000830152612a278161274e565b9050919050565b60006020820190508181036000830152612a4781612771565b9050919050565b60006020820190508181036000830152612a6781612794565b9050919050565b6000602082019050612a8360008301846127b7565b92915050565b6000612a93612aa4565b9050612a9f8282612cf6565b919050565b6000604051905090565b600067ffffffffffffffff821115612ac957612ac8612e5d565b5b612ad282612ea0565b9050602081019050919050565b600067ffffffffffffffff821115612afa57612af9612e5d565b5b612b0382612ea0565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612b5e82612c78565b9150612b6983612c78565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b9e57612b9d612da1565b5b828201905092915050565b6000612bb482612c78565b9150612bbf83612c78565b925082612bcf57612bce612dd0565b5b828204905092915050565b6000612be582612c78565b9150612bf083612c78565b925082821015612c0357612c02612da1565b5b828203905092915050565b6000612c1982612c58565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612caf578082015181840152602081019050612c94565b83811115612cbe576000848401525b50505050565b60006002820490506001821680612cdc57607f821691505b60208210811415612cf057612cef612dff565b5b50919050565b612cff82612ea0565b810181811067ffffffffffffffff82111715612d1e57612d1d612e5d565b5b80604052505050565b6000612d3282612c78565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612d6557612d64612da1565b5b600182019050919050565b6000612d7b82612c78565b9150612d8683612c78565b925082612d9657612d95612dd0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6132e981612c0e565b81146132f457600080fd5b50565b61330081612c20565b811461330b57600080fd5b50565b61331781612c2c565b811461332257600080fd5b50565b61332e81612c78565b811461333957600080fd5b5056fea2646970667358221220bfaddad310e7678043c14a9d43dc0b28e90a13dda7d7c3ba9f2d705d9fc57d1a64736f6c63430008070033

Deployed Bytecode Sourcemap

203:2362:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2020:194;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20770:100:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22230:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21767:397;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23120:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1025:106:0;;;:::i;:::-;;745:270;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1141:110;;;:::i;:::-;;1259:174;;;:::i;:::-;;23496:151:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1641:110:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;595:140;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1869:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20464:239:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20194:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;350:35:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;260:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2222:130;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20939:104:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22523:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23718:285;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39820:679;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22889:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2020:194:0;2141:4;2170:36;2194:11;2170:23;:36::i;:::-;2163:43;;2020:194;;;:::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;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;1025:106:0:-;1086:5;;;;;;;;;;;1072:19;;:10;:19;;;1064:29;;;;;;1119:4;1104:12;;:19;;;;;;;;;;;;;;;;;;1025:106::o;745:270::-;803:12;;;;;;;;;;;794:23;;;;;;847:5;837:6;:15;;828:25;;;;;;922:10;873:59;;884:17;;;;;;;;;;;873:37;;;911:6;873:45;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:59;;;864:69;;;;;;944:31;955:10;968:6;944:9;:31::i;:::-;1003:4;986:6;:14;993:6;986:14;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;745:270;:::o;1141:110::-;1201:10;;;;;;;;;;;1187:24;;:10;:24;;;1179:33;;;;;;1238:5;1223:12;;:20;;;;;;;;;;;;;;;;;;1141:110::o;1259:174::-;1319:10;;;;;;;;;;;1305:24;;:10;:24;;;1297:33;;;;;;1341:12;1356:21;1341:36;;1396:10;;;;;;;;;;;1388:28;;:37;1417:7;1388:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1286:147;1259:174::o;23496:151:1:-;23600:39;23617:4;23623:2;23627:7;23600:39;;;;;;;;;;;;:16;:39::i;:::-;23496:151;;;:::o;1641:110:0:-;1709:12;1717:3;1709:7;:12::i;:::-;1695:26;;:10;:26;;;1686:36;;;;;;1733:10;1739:3;1733:5;:10::i;:::-;1641:110;:::o;595:140::-;656:7;693:17;;;;;;;;;;;682:37;;;720:6;682:45;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;675:52;;595:140;;;:::o;1869:139::-;1955:10;;;;;;;;;;;1941:24;;:10;:24;;;1933:34;;;;;;1990:10;1978:9;:22;;;;;;;;;;;;:::i;:::-;;1869:139;:::o;20464:239:1:-;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;20194:208::-;20266:7;20311:1;20294:19;;:5;:19;;;;20286:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;20378:9;:16;20388:5;20378:16;;;;;;;;;;;;;;;;20371:23;;20194:208;;;:::o;350:35:0:-;;;;;;;;;;;;;;;;;;;;;;:::o;260:20::-;;;;;;;;;;;;;:::o;2222:130::-;2278:13;2322:22;;;;;;;;;;;;;;;;;;;2222:130;;;:::o;20939:104:1:-;20995:13;21028:7;21021:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20939:104;:::o;22523:295::-;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;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;22889:164::-;22986:4;23010:18;:25;23029:5;23010:25;;;;;;;;;;;;;;;:35;23036:8;23010:35;;;;;;;;;;;;;;;;;;;;;;;;;23003:42;;22889:164;;;;:::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;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;26454:110::-;26530:26;26540:2;26544:7;26530:26;;;;;;;;;;;;:9;:26::i;:::-;26454:110;;:::o;41101:206::-;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;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;1759:102:0:-;1811:13;1844:9;1837:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1759: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;1443:186:0:-;1576:45;1603:4;1609:2;1613:7;1576:26;:45::i;:::-;1443:186;;;:::o;26791:250:1:-;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;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;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;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;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;-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:143::-;1043:5;1074:6;1068:13;1059:22;;1090:33;1117:5;1090:33;:::i;:::-;986:143;;;;:::o;1135:133::-;1178:5;1216:6;1203:20;1194:29;;1232:30;1256:5;1232:30;:::i;:::-;1135:133;;;;:::o;1274:137::-;1319:5;1357:6;1344:20;1335:29;;1373:32;1399:5;1373:32;:::i;:::-;1274:137;;;;:::o;1417:141::-;1473:5;1504:6;1498:13;1489:22;;1520:32;1546:5;1520:32;:::i;:::-;1417:141;;;;:::o;1577:338::-;1632:5;1681:3;1674:4;1666:6;1662:17;1658:27;1648:122;;1689:79;;:::i;:::-;1648:122;1806:6;1793:20;1831:78;1905:3;1897:6;1890:4;1882:6;1878:17;1831:78;:::i;:::-;1822:87;;1638:277;1577:338;;;;:::o;1935:340::-;1991:5;2040:3;2033:4;2025:6;2021:17;2017:27;2007:122;;2048:79;;:::i;:::-;2007:122;2165:6;2152:20;2190:79;2265:3;2257:6;2250:4;2242:6;2238:17;2190:79;:::i;:::-;2181:88;;1997:278;1935:340;;;;:::o;2281:139::-;2327:5;2365:6;2352:20;2343:29;;2381:33;2408:5;2381:33;:::i;:::-;2281:139;;;;:::o;2426:329::-;2485:6;2534:2;2522:9;2513:7;2509:23;2505:32;2502:119;;;2540:79;;:::i;:::-;2502:119;2660:1;2685:53;2730:7;2721:6;2710:9;2706:22;2685:53;:::i;:::-;2675:63;;2631:117;2426:329;;;;:::o;2761:351::-;2831:6;2880:2;2868:9;2859:7;2855:23;2851:32;2848:119;;;2886:79;;:::i;:::-;2848:119;3006:1;3031:64;3087:7;3078:6;3067:9;3063:22;3031:64;:::i;:::-;3021:74;;2977:128;2761:351;;;;:::o;3118:474::-;3186:6;3194;3243:2;3231:9;3222:7;3218:23;3214:32;3211:119;;;3249:79;;:::i;:::-;3211:119;3369:1;3394:53;3439:7;3430:6;3419:9;3415:22;3394:53;:::i;:::-;3384:63;;3340:117;3496:2;3522:53;3567:7;3558:6;3547:9;3543:22;3522:53;:::i;:::-;3512:63;;3467:118;3118:474;;;;;:::o;3598:619::-;3675:6;3683;3691;3740:2;3728:9;3719:7;3715:23;3711:32;3708:119;;;3746:79;;:::i;:::-;3708:119;3866:1;3891:53;3936:7;3927:6;3916:9;3912:22;3891:53;:::i;:::-;3881:63;;3837:117;3993:2;4019:53;4064:7;4055:6;4044:9;4040:22;4019:53;:::i;:::-;4009:63;;3964:118;4121:2;4147:53;4192:7;4183:6;4172:9;4168:22;4147:53;:::i;:::-;4137:63;;4092:118;3598:619;;;;;:::o;4223:943::-;4318:6;4326;4334;4342;4391:3;4379:9;4370:7;4366:23;4362:33;4359:120;;;4398:79;;:::i;:::-;4359:120;4518:1;4543:53;4588:7;4579:6;4568:9;4564:22;4543:53;:::i;:::-;4533:63;;4489:117;4645:2;4671:53;4716:7;4707:6;4696:9;4692:22;4671:53;:::i;:::-;4661:63;;4616:118;4773:2;4799:53;4844:7;4835:6;4824:9;4820:22;4799:53;:::i;:::-;4789:63;;4744:118;4929:2;4918:9;4914:18;4901:32;4960:18;4952:6;4949:30;4946:117;;;4982:79;;:::i;:::-;4946:117;5087:62;5141:7;5132:6;5121:9;5117:22;5087:62;:::i;:::-;5077:72;;4872:287;4223:943;;;;;;;:::o;5172:468::-;5237:6;5245;5294:2;5282:9;5273:7;5269:23;5265:32;5262:119;;;5300:79;;:::i;:::-;5262:119;5420:1;5445:53;5490:7;5481:6;5470:9;5466:22;5445:53;:::i;:::-;5435:63;;5391:117;5547:2;5573:50;5615:7;5606:6;5595:9;5591:22;5573:50;:::i;:::-;5563:60;;5518:115;5172:468;;;;;:::o;5646:474::-;5714:6;5722;5771:2;5759:9;5750:7;5746:23;5742:32;5739:119;;;5777:79;;:::i;:::-;5739:119;5897:1;5922:53;5967:7;5958:6;5947:9;5943:22;5922:53;:::i;:::-;5912:63;;5868:117;6024:2;6050:53;6095:7;6086:6;6075:9;6071:22;6050:53;:::i;:::-;6040:63;;5995:118;5646:474;;;;;:::o;6126:327::-;6184:6;6233:2;6221:9;6212:7;6208:23;6204:32;6201:119;;;6239:79;;:::i;:::-;6201:119;6359:1;6384:52;6428:7;6419:6;6408:9;6404:22;6384:52;:::i;:::-;6374:62;;6330:116;6126:327;;;;:::o;6459:349::-;6528:6;6577:2;6565:9;6556:7;6552:23;6548:32;6545:119;;;6583:79;;:::i;:::-;6545:119;6703:1;6728:63;6783:7;6774:6;6763:9;6759:22;6728:63;:::i;:::-;6718:73;;6674:127;6459:349;;;;:::o;6814:509::-;6883:6;6932:2;6920:9;6911:7;6907:23;6903:32;6900:119;;;6938:79;;:::i;:::-;6900:119;7086:1;7075:9;7071:17;7058:31;7116:18;7108:6;7105:30;7102:117;;;7138:79;;:::i;:::-;7102:117;7243:63;7298:7;7289:6;7278:9;7274:22;7243:63;:::i;:::-;7233:73;;7029:287;6814:509;;;;:::o;7329:329::-;7388:6;7437:2;7425:9;7416:7;7412:23;7408:32;7405:119;;;7443:79;;:::i;:::-;7405:119;7563:1;7588:53;7633:7;7624:6;7613:9;7609:22;7588:53;:::i;:::-;7578:63;;7534:117;7329:329;;;;:::o;7664:118::-;7751:24;7769:5;7751:24;:::i;:::-;7746:3;7739:37;7664:118;;:::o;7788:109::-;7869:21;7884:5;7869:21;:::i;:::-;7864:3;7857:34;7788:109;;:::o;7903:360::-;7989:3;8017:38;8049:5;8017:38;:::i;:::-;8071:70;8134:6;8129:3;8071:70;:::i;:::-;8064:77;;8150:52;8195:6;8190:3;8183:4;8176:5;8172:16;8150:52;:::i;:::-;8227:29;8249:6;8227:29;:::i;:::-;8222:3;8218:39;8211:46;;7993:270;7903:360;;;;:::o;8269:364::-;8357:3;8385:39;8418:5;8385:39;:::i;:::-;8440:71;8504:6;8499:3;8440:71;:::i;:::-;8433:78;;8520:52;8565:6;8560:3;8553:4;8546:5;8542:16;8520:52;:::i;:::-;8597:29;8619:6;8597:29;:::i;:::-;8592:3;8588:39;8581:46;;8361:272;8269:364;;;;:::o;8639:377::-;8745:3;8773:39;8806:5;8773:39;:::i;:::-;8828:89;8910:6;8905:3;8828:89;:::i;:::-;8821:96;;8926:52;8971:6;8966:3;8959:4;8952:5;8948:16;8926:52;:::i;:::-;9003:6;8998:3;8994:16;8987:23;;8749:267;8639:377;;;;:::o;9022:366::-;9164:3;9185:67;9249:2;9244:3;9185:67;:::i;:::-;9178:74;;9261:93;9350:3;9261:93;:::i;:::-;9379:2;9374:3;9370:12;9363:19;;9022:366;;;:::o;9394:::-;9536:3;9557:67;9621:2;9616:3;9557:67;:::i;:::-;9550:74;;9633:93;9722:3;9633:93;:::i;:::-;9751:2;9746:3;9742:12;9735:19;;9394:366;;;:::o;9766:::-;9908:3;9929:67;9993:2;9988:3;9929:67;:::i;:::-;9922:74;;10005:93;10094:3;10005:93;:::i;:::-;10123:2;10118:3;10114:12;10107:19;;9766:366;;;:::o;10138:::-;10280:3;10301:67;10365:2;10360:3;10301:67;:::i;:::-;10294:74;;10377:93;10466:3;10377:93;:::i;:::-;10495:2;10490:3;10486:12;10479:19;;10138:366;;;:::o;10510:::-;10652:3;10673:67;10737:2;10732:3;10673:67;:::i;:::-;10666:74;;10749:93;10838:3;10749:93;:::i;:::-;10867:2;10862:3;10858:12;10851:19;;10510:366;;;:::o;10882:::-;11024:3;11045:67;11109:2;11104:3;11045:67;:::i;:::-;11038:74;;11121:93;11210:3;11121:93;:::i;:::-;11239:2;11234:3;11230:12;11223:19;;10882:366;;;:::o;11254:::-;11396:3;11417:67;11481:2;11476:3;11417:67;:::i;:::-;11410:74;;11493:93;11582:3;11493:93;:::i;:::-;11611:2;11606:3;11602:12;11595:19;;11254:366;;;:::o;11626:::-;11768:3;11789:67;11853:2;11848:3;11789:67;:::i;:::-;11782:74;;11865:93;11954:3;11865:93;:::i;:::-;11983:2;11978:3;11974:12;11967:19;;11626:366;;;:::o;11998:::-;12140:3;12161:67;12225:2;12220:3;12161:67;:::i;:::-;12154:74;;12237:93;12326:3;12237:93;:::i;:::-;12355:2;12350:3;12346:12;12339:19;;11998:366;;;:::o;12370:::-;12512:3;12533:67;12597:2;12592:3;12533:67;:::i;:::-;12526:74;;12609:93;12698:3;12609:93;:::i;:::-;12727:2;12722:3;12718:12;12711:19;;12370:366;;;:::o;12742:::-;12884:3;12905:67;12969:2;12964:3;12905:67;:::i;:::-;12898:74;;12981:93;13070:3;12981:93;:::i;:::-;13099:2;13094:3;13090:12;13083:19;;12742:366;;;:::o;13114:::-;13256:3;13277:67;13341:2;13336:3;13277:67;:::i;:::-;13270:74;;13353:93;13442:3;13353:93;:::i;:::-;13471:2;13466:3;13462:12;13455:19;;13114:366;;;:::o;13486:::-;13628:3;13649:67;13713:2;13708:3;13649:67;:::i;:::-;13642:74;;13725:93;13814:3;13725:93;:::i;:::-;13843:2;13838:3;13834:12;13827:19;;13486:366;;;:::o;13858:::-;14000:3;14021:67;14085:2;14080:3;14021:67;:::i;:::-;14014:74;;14097:93;14186:3;14097:93;:::i;:::-;14215:2;14210:3;14206:12;14199:19;;13858:366;;;:::o;14230:::-;14372:3;14393:67;14457:2;14452:3;14393:67;:::i;:::-;14386:74;;14469:93;14558:3;14469:93;:::i;:::-;14587:2;14582:3;14578:12;14571:19;;14230:366;;;:::o;14602:118::-;14689:24;14707:5;14689:24;:::i;:::-;14684:3;14677:37;14602:118;;:::o;14726:435::-;14906:3;14928:95;15019:3;15010:6;14928:95;:::i;:::-;14921:102;;15040:95;15131:3;15122:6;15040:95;:::i;:::-;15033:102;;15152:3;15145:10;;14726:435;;;;;:::o;15167:222::-;15260:4;15298:2;15287:9;15283:18;15275:26;;15311:71;15379:1;15368:9;15364:17;15355:6;15311:71;:::i;:::-;15167:222;;;;:::o;15395:640::-;15590:4;15628:3;15617:9;15613:19;15605:27;;15642:71;15710:1;15699:9;15695:17;15686:6;15642:71;:::i;:::-;15723:72;15791:2;15780:9;15776:18;15767:6;15723:72;:::i;:::-;15805;15873:2;15862:9;15858:18;15849:6;15805:72;:::i;:::-;15924:9;15918:4;15914:20;15909:2;15898:9;15894:18;15887:48;15952:76;16023:4;16014:6;15952:76;:::i;:::-;15944:84;;15395:640;;;;;;;:::o;16041:210::-;16128:4;16166:2;16155:9;16151:18;16143:26;;16179:65;16241:1;16230:9;16226:17;16217:6;16179:65;:::i;:::-;16041:210;;;;:::o;16257:313::-;16370:4;16408:2;16397:9;16393:18;16385:26;;16457:9;16451:4;16447:20;16443:1;16432:9;16428:17;16421:47;16485:78;16558:4;16549:6;16485:78;:::i;:::-;16477:86;;16257:313;;;;:::o;16576:419::-;16742:4;16780:2;16769:9;16765:18;16757:26;;16829:9;16823:4;16819:20;16815:1;16804:9;16800:17;16793:47;16857:131;16983:4;16857:131;:::i;:::-;16849:139;;16576:419;;;:::o;17001:::-;17167:4;17205:2;17194:9;17190:18;17182:26;;17254:9;17248:4;17244:20;17240:1;17229:9;17225:17;17218:47;17282:131;17408:4;17282:131;:::i;:::-;17274:139;;17001:419;;;:::o;17426:::-;17592:4;17630:2;17619:9;17615:18;17607:26;;17679:9;17673:4;17669:20;17665:1;17654:9;17650:17;17643:47;17707:131;17833:4;17707:131;:::i;:::-;17699:139;;17426:419;;;:::o;17851:::-;18017:4;18055:2;18044:9;18040:18;18032:26;;18104:9;18098:4;18094:20;18090:1;18079:9;18075:17;18068:47;18132:131;18258:4;18132:131;:::i;:::-;18124:139;;17851:419;;;:::o;18276:::-;18442:4;18480:2;18469:9;18465:18;18457:26;;18529:9;18523:4;18519:20;18515:1;18504:9;18500:17;18493:47;18557:131;18683:4;18557:131;:::i;:::-;18549:139;;18276:419;;;:::o;18701:::-;18867:4;18905:2;18894:9;18890:18;18882:26;;18954:9;18948:4;18944:20;18940:1;18929:9;18925:17;18918:47;18982:131;19108:4;18982:131;:::i;:::-;18974:139;;18701:419;;;:::o;19126:::-;19292:4;19330:2;19319:9;19315:18;19307:26;;19379:9;19373:4;19369:20;19365:1;19354:9;19350:17;19343:47;19407:131;19533:4;19407:131;:::i;:::-;19399:139;;19126:419;;;:::o;19551:::-;19717:4;19755:2;19744:9;19740:18;19732:26;;19804:9;19798:4;19794:20;19790:1;19779:9;19775:17;19768:47;19832:131;19958:4;19832:131;:::i;:::-;19824:139;;19551:419;;;:::o;19976:::-;20142:4;20180:2;20169:9;20165:18;20157:26;;20229:9;20223:4;20219:20;20215:1;20204:9;20200:17;20193:47;20257:131;20383:4;20257:131;:::i;:::-;20249:139;;19976:419;;;:::o;20401:::-;20567:4;20605:2;20594:9;20590:18;20582:26;;20654:9;20648:4;20644:20;20640:1;20629:9;20625:17;20618:47;20682:131;20808:4;20682:131;:::i;:::-;20674:139;;20401:419;;;:::o;20826:::-;20992:4;21030:2;21019:9;21015:18;21007:26;;21079:9;21073:4;21069:20;21065:1;21054:9;21050:17;21043:47;21107:131;21233:4;21107:131;:::i;:::-;21099:139;;20826:419;;;:::o;21251:::-;21417:4;21455:2;21444:9;21440:18;21432:26;;21504:9;21498:4;21494:20;21490:1;21479:9;21475:17;21468:47;21532:131;21658:4;21532:131;:::i;:::-;21524:139;;21251:419;;;:::o;21676:::-;21842:4;21880:2;21869:9;21865:18;21857:26;;21929:9;21923:4;21919:20;21915:1;21904:9;21900:17;21893:47;21957:131;22083:4;21957:131;:::i;:::-;21949:139;;21676:419;;;:::o;22101:::-;22267:4;22305:2;22294:9;22290:18;22282:26;;22354:9;22348:4;22344:20;22340:1;22329:9;22325:17;22318:47;22382:131;22508:4;22382:131;:::i;:::-;22374:139;;22101:419;;;:::o;22526:::-;22692:4;22730:2;22719:9;22715:18;22707:26;;22779:9;22773:4;22769:20;22765:1;22754:9;22750:17;22743:47;22807:131;22933:4;22807:131;:::i;:::-;22799:139;;22526:419;;;:::o;22951:222::-;23044:4;23082:2;23071:9;23067:18;23059:26;;23095:71;23163:1;23152:9;23148:17;23139:6;23095:71;:::i;:::-;22951:222;;;;:::o;23179:129::-;23213:6;23240:20;;:::i;:::-;23230:30;;23269:33;23297:4;23289:6;23269:33;:::i;:::-;23179:129;;;:::o;23314:75::-;23347:6;23380:2;23374:9;23364:19;;23314:75;:::o;23395:307::-;23456:4;23546:18;23538:6;23535:30;23532:56;;;23568:18;;:::i;:::-;23532:56;23606:29;23628:6;23606:29;:::i;:::-;23598:37;;23690:4;23684;23680:15;23672:23;;23395:307;;;:::o;23708:308::-;23770:4;23860:18;23852:6;23849:30;23846:56;;;23882:18;;:::i;:::-;23846:56;23920:29;23942:6;23920:29;:::i;:::-;23912:37;;24004:4;23998;23994:15;23986:23;;23708:308;;;:::o;24022:98::-;24073:6;24107:5;24101:12;24091:22;;24022:98;;;:::o;24126:99::-;24178:6;24212:5;24206:12;24196:22;;24126:99;;;:::o;24231:168::-;24314:11;24348:6;24343:3;24336:19;24388:4;24383:3;24379:14;24364:29;;24231:168;;;;:::o;24405:169::-;24489:11;24523:6;24518:3;24511:19;24563:4;24558:3;24554:14;24539:29;;24405:169;;;;:::o;24580:148::-;24682:11;24719:3;24704:18;;24580:148;;;;:::o;24734:305::-;24774:3;24793:20;24811:1;24793:20;:::i;:::-;24788:25;;24827:20;24845:1;24827:20;:::i;:::-;24822:25;;24981:1;24913:66;24909:74;24906:1;24903:81;24900:107;;;24987:18;;:::i;:::-;24900:107;25031:1;25028;25024:9;25017:16;;24734:305;;;;:::o;25045:185::-;25085:1;25102:20;25120:1;25102:20;:::i;:::-;25097:25;;25136:20;25154:1;25136:20;:::i;:::-;25131:25;;25175:1;25165:35;;25180:18;;:::i;:::-;25165:35;25222:1;25219;25215:9;25210:14;;25045:185;;;;:::o;25236:191::-;25276:4;25296:20;25314:1;25296:20;:::i;:::-;25291:25;;25330:20;25348:1;25330:20;:::i;:::-;25325:25;;25369:1;25366;25363:8;25360:34;;;25374:18;;:::i;:::-;25360:34;25419:1;25416;25412:9;25404:17;;25236:191;;;;:::o;25433:96::-;25470:7;25499:24;25517:5;25499:24;:::i;:::-;25488:35;;25433:96;;;:::o;25535:90::-;25569:7;25612:5;25605:13;25598:21;25587:32;;25535:90;;;:::o;25631:149::-;25667:7;25707:66;25700:5;25696:78;25685:89;;25631:149;;;:::o;25786:126::-;25823:7;25863:42;25856:5;25852:54;25841:65;;25786:126;;;:::o;25918:77::-;25955:7;25984:5;25973:16;;25918:77;;;:::o;26001:154::-;26085:6;26080:3;26075;26062:30;26147:1;26138:6;26133:3;26129:16;26122:27;26001:154;;;:::o;26161:307::-;26229:1;26239:113;26253:6;26250:1;26247:13;26239:113;;;26338:1;26333:3;26329:11;26323:18;26319:1;26314:3;26310:11;26303:39;26275:2;26272:1;26268:10;26263:15;;26239:113;;;26370:6;26367:1;26364:13;26361:101;;;26450:1;26441:6;26436:3;26432:16;26425:27;26361:101;26210:258;26161:307;;;:::o;26474:320::-;26518:6;26555:1;26549:4;26545:12;26535:22;;26602:1;26596:4;26592:12;26623:18;26613:81;;26679:4;26671:6;26667:17;26657:27;;26613:81;26741:2;26733:6;26730:14;26710:18;26707:38;26704:84;;;26760:18;;:::i;:::-;26704:84;26525:269;26474:320;;;:::o;26800:281::-;26883:27;26905:4;26883:27;:::i;:::-;26875:6;26871:40;27013:6;27001:10;26998:22;26977:18;26965:10;26962:34;26959:62;26956:88;;;27024:18;;:::i;:::-;26956:88;27064:10;27060:2;27053:22;26843:238;26800:281;;:::o;27087:233::-;27126:3;27149:24;27167:5;27149:24;:::i;:::-;27140:33;;27195:66;27188:5;27185:77;27182:103;;;27265:18;;:::i;:::-;27182:103;27312:1;27305:5;27301:13;27294:20;;27087:233;;;:::o;27326:176::-;27358:1;27375:20;27393:1;27375:20;:::i;:::-;27370:25;;27409:20;27427:1;27409:20;:::i;:::-;27404:25;;27448:1;27438:35;;27453:18;;:::i;:::-;27438:35;27494:1;27491;27487:9;27482:14;;27326:176;;;;:::o;27508:180::-;27556:77;27553:1;27546:88;27653:4;27650:1;27643:15;27677:4;27674:1;27667:15;27694:180;27742:77;27739:1;27732:88;27839:4;27836:1;27829:15;27863:4;27860:1;27853:15;27880:180;27928:77;27925:1;27918:88;28025:4;28022:1;28015:15;28049:4;28046:1;28039:15;28066:180;28114:77;28111:1;28104:88;28211:4;28208:1;28201:15;28235:4;28232:1;28225:15;28252:180;28300:77;28297:1;28290:88;28397:4;28394:1;28387:15;28421:4;28418:1;28411:15;28438:117;28547:1;28544;28537:12;28561:117;28670:1;28667;28660:12;28684:117;28793:1;28790;28783:12;28807:117;28916:1;28913;28906:12;28930:102;28971:6;29022:2;29018:7;29013:2;29006:5;29002:14;28998:28;28988:38;;28930:102;;;:::o;29038:237::-;29178:34;29174:1;29166:6;29162:14;29155:58;29247:20;29242:2;29234:6;29230:15;29223:45;29038:237;:::o;29281:178::-;29421:30;29417:1;29409:6;29405:14;29398:54;29281:178;:::o;29465:223::-;29605:34;29601:1;29593:6;29589:14;29582:58;29674:6;29669:2;29661:6;29657:15;29650:31;29465:223;:::o;29694:175::-;29834:27;29830:1;29822:6;29818:14;29811:51;29694:175;:::o;29875:231::-;30015:34;30011:1;30003:6;29999:14;29992:58;30084:14;30079:2;30071:6;30067:15;30060:39;29875:231;:::o;30112:243::-;30252:34;30248:1;30240:6;30236:14;30229:58;30321:26;30316:2;30308:6;30304:15;30297:51;30112:243;:::o;30361:229::-;30501:34;30497:1;30489:6;30485:14;30478:58;30570:12;30565:2;30557:6;30553:15;30546:37;30361:229;:::o;30596:228::-;30736:34;30732:1;30724:6;30720:14;30713:58;30805:11;30800:2;30792:6;30788:15;30781:36;30596:228;:::o;30830:182::-;30970:34;30966:1;30958:6;30954:14;30947:58;30830:182;:::o;31018:236::-;31158:34;31154:1;31146:6;31142:14;31135:58;31227:19;31222:2;31214:6;31210:15;31203:44;31018:236;:::o;31260:231::-;31400:34;31396:1;31388:6;31384:14;31377:58;31469:14;31464:2;31456:6;31452:15;31445:39;31260:231;:::o;31497:228::-;31637:34;31633:1;31625:6;31621:14;31614:58;31706:11;31701:2;31693:6;31689:15;31682:36;31497:228;:::o;31731:234::-;31871:34;31867:1;31859:6;31855:14;31848:58;31940:17;31935:2;31927:6;31923:15;31916:42;31731:234;:::o;31971:220::-;32111:34;32107:1;32099:6;32095:14;32088:58;32180:3;32175:2;32167:6;32163:15;32156:28;31971:220;:::o;32197:236::-;32337:34;32333:1;32325:6;32321:14;32314:58;32406:19;32401:2;32393:6;32389:15;32382:44;32197:236;:::o;32439:122::-;32512:24;32530:5;32512:24;:::i;:::-;32505:5;32502:35;32492:63;;32551:1;32548;32541:12;32492:63;32439:122;:::o;32567:116::-;32637:21;32652:5;32637:21;:::i;:::-;32630:5;32627:32;32617:60;;32673:1;32670;32663:12;32617:60;32567:116;:::o;32689:120::-;32761:23;32778:5;32761:23;:::i;:::-;32754:5;32751:34;32741:62;;32799:1;32796;32789:12;32741:62;32689:120;:::o;32815:122::-;32888:24;32906:5;32888:24;:::i;:::-;32881:5;32878:35;32868:63;;32927:1;32924;32917:12;32868:63;32815:122;:::o

Swarm Source

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