ETH Price: $2,516.67 (+3.10%)

Token

Rich imma (imma)
 

Overview

Max Total Supply

0 imma

Holders

116

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
aromaq.eth
Balance
1 imma
0x1Cfa8cf9ADcbfA163c7cf9Ff4Fd7dA936C77a310
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:
RichImma

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

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

pragma solidity >=0.8.10 <=0.8.10;

import "./OpenzeppelinERC721.sol";

contract RichImma is  ERC721URIStorage {

    address public owner;
    uint256 public nftid = 1;
    bool minton = true;
    string richimma = "ipfs://QmdciiPPEkQTEKEyx9Gc1jJY2weKjJJwf9XVC71o2x5Q9Q";

    function mintOff() public{
        require( _msgSender() == owner );
        minton = false;
    }

    function multiMint(uint qty) public {
        require( minton );
        require( _msgSender() == owner );
        uint target = nftid - 1 + qty;
        for (uint i = nftid; i <= target; i++ ){
            _safeMint( owner , nftid);
            nftid++;
        }
    }


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


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

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

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721URIStorage)
        returns (string memory)
    {
            tokenId;
            return richimma;
    }


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

    constructor() ERC721("Rich imma" , "imma" ) {
        owner = _msgSender();
    } 
}


File 1 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":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintOff","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"multiMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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"}]

608060405260016008556001600960006101000a81548160ff02191690831515021790555060405180606001604052806035815260200162002adc60359139600a90805190602001906200005592919062000162565b503480156200006357600080fd5b506040518060400160405280600981526020017f5269636820696d6d6100000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f696d6d61000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000e892919062000162565b5080600190805190602001906200010192919062000162565b505050620001146200015a60201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000277565b600033905090565b828054620001709062000241565b90600052602060002090601f016020900481019282620001945760008555620001e0565b82601f10620001af57805160ff1916838001178555620001e0565b82800160010185558215620001e0579182015b82811115620001df578251825591602001919060010190620001c2565b5b509050620001ef9190620001f3565b5090565b5b808211156200020e576000816000905550600101620001f4565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200025a57607f821691505b6020821081141562000271576200027062000212565b5b50919050565b61285580620002876000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c80636fd976bc116100a2578063a22cb46511610071578063a22cb465146102cd578063ab00492f146102e9578063b88d4fde14610305578063c87b56dd14610321578063e985e9c51461035157610116565b80636fd976bc1461024357806370a08231146102615780638da5cb5b1461029157806395d89b41146102af57610116565b806323b872dd116100e957806323b872dd146101b557806342842e0e146101d157806342966c68146101ed5780636352211e146102095780636876a8461461023957610116565b806301ffc9a71461011b57806306fdde031461014b578063081812fc14610169578063095ea7b314610199575b600080fd5b6101356004803603810190610130919061198a565b610381565b60405161014291906119d2565b60405180910390f35b610153610393565b6040516101609190611a86565b60405180910390f35b610183600480360381019061017e9190611ade565b610425565b6040516101909190611b4c565b60405180910390f35b6101b360048036038101906101ae9190611b93565b6104aa565b005b6101cf60048036038101906101ca9190611bd3565b6105c2565b005b6101eb60048036038101906101e69190611bd3565b610622565b005b61020760048036038101906102029190611ade565b610642565b005b610223600480360381019061021e9190611ade565b610695565b6040516102309190611b4c565b60405180910390f35b610241610747565b005b61024b6107c5565b6040516102589190611c35565b60405180910390f35b61027b60048036038101906102769190611c50565b6107cb565b6040516102889190611c35565b60405180910390f35b610299610883565b6040516102a69190611b4c565b60405180910390f35b6102b76108a9565b6040516102c49190611a86565b60405180910390f35b6102e760048036038101906102e29190611ca9565b61093b565b005b61030360048036038101906102fe9190611ade565b610abc565b005b61031f600480360381019061031a9190611e1e565b610bc1565b005b61033b60048036038101906103369190611ade565b610c23565b6040516103489190611a86565b60405180910390f35b61036b60048036038101906103669190611ea1565b610cb7565b60405161037891906119d2565b60405180910390f35b600061038c82610d4b565b9050919050565b6060600080546103a290611f10565b80601f01602080910402602001604051908101604052809291908181526020018280546103ce90611f10565b801561041b5780601f106103f05761010080835404028352916020019161041b565b820191906000526020600020905b8154815290600101906020018083116103fe57829003601f168201915b5050505050905090565b600061043082610e2d565b61046f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161046690611fb4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006104b582610695565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051d90612046565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610545610e99565b73ffffffffffffffffffffffffffffffffffffffff16148061057457506105738161056e610e99565b610cb7565b5b6105b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105aa906120d8565b60405180910390fd5b6105bd8383610ea1565b505050565b6105d36105cd610e99565b82610f5a565b610612576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106099061216a565b60405180910390fd5b61061d838383611038565b505050565b61063d83838360405180602001604052806000815250610bc1565b505050565b61064b81610695565b73ffffffffffffffffffffffffffffffffffffffff16610669610e99565b73ffffffffffffffffffffffffffffffffffffffff161461068957600080fd5b61069281611294565b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561073e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610735906121fc565b60405180910390fd5b80915050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610788610e99565b73ffffffffffffffffffffffffffffffffffffffff16146107a857600080fd5b6000600960006101000a81548160ff021916908315150217905550565b60085481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561083c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108339061228e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600180546108b890611f10565b80601f01602080910402602001604051908101604052809291908181526020018280546108e490611f10565b80156109315780601f1061090657610100808354040283529160200191610931565b820191906000526020600020905b81548152906001019060200180831161091457829003601f168201915b5050505050905090565b610943610e99565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a8906122fa565b60405180910390fd5b80600560006109be610e99565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610a6b610e99565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ab091906119d2565b60405180910390a35050565b600960009054906101000a900460ff16610ad557600080fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610b16610e99565b73ffffffffffffffffffffffffffffffffffffffff1614610b3657600080fd5b6000816001600854610b489190612349565b610b52919061237d565b9050600060085490505b818111610bbc57610b91600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008546112a0565b60086000815480929190610ba4906123d3565b91905055508080610bb4906123d3565b915050610b5c565b505050565b610bd2610bcc610e99565b83610f5a565b610c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c089061216a565b60405180910390fd5b610c1d848484846112be565b50505050565b6060600a8054610c3290611f10565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5e90611f10565b8015610cab5780601f10610c8057610100808354040283529160200191610cab565b820191906000526020600020905b815481529060010190602001808311610c8e57829003601f168201915b50505050509050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e1657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e265750610e258261131a565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610f1483610695565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610f6582610e2d565b610fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9b9061248e565b60405180910390fd5b6000610faf83610695565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061101e57508373ffffffffffffffffffffffffffffffffffffffff1661100684610425565b73ffffffffffffffffffffffffffffffffffffffff16145b8061102f575061102e8185610cb7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661105882610695565b73ffffffffffffffffffffffffffffffffffffffff16146110ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a590612520565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561111e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611115906125b2565b60405180910390fd5b611129838383611384565b611134600082610ea1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111849190612349565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111db919061237d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61129d81611394565b50565b6112ba8282604051806020016040528060008152506113e7565b5050565b6112c9848484611038565b6112d584848484611442565b611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b90612644565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61138f8383836115ca565b505050565b61139d816115cf565b60006006600083815260200190815260200160002080546113bd90611f10565b9050146113e4576006600082815260200190815260200160002060006113e391906118c1565b5b50565b6113f183836116e0565b6113fe6000848484611442565b61143d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143490612644565b60405180910390fd5b505050565b60006114638473ffffffffffffffffffffffffffffffffffffffff166118ae565b156115bd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261148c610e99565b8786866040518563ffffffff1660e01b81526004016114ae94939291906126b9565b6020604051808303816000875af19250505080156114ea57506040513d601f19601f820116820180604052508101906114e7919061271a565b60015b61156d573d806000811461151a576040519150601f19603f3d011682016040523d82523d6000602084013e61151f565b606091505b50600081511415611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155c90612644565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506115c2565b600190505b949350505050565b505050565b60006115da82610695565b90506115e881600084611384565b6115f3600083610ea1565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116439190612349565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174790612793565b60405180910390fd5b61175981610e2d565b15611799576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611790906127ff565b60405180910390fd5b6117a560008383611384565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117f5919061237d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b5080546118cd90611f10565b6000825580601f106118df57506118fe565b601f0160209004906000526020600020908101906118fd9190611901565b5b50565b5b8082111561191a576000816000905550600101611902565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61196781611932565b811461197257600080fd5b50565b6000813590506119848161195e565b92915050565b6000602082840312156119a05761199f611928565b5b60006119ae84828501611975565b91505092915050565b60008115159050919050565b6119cc816119b7565b82525050565b60006020820190506119e760008301846119c3565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a27578082015181840152602081019050611a0c565b83811115611a36576000848401525b50505050565b6000601f19601f8301169050919050565b6000611a58826119ed565b611a6281856119f8565b9350611a72818560208601611a09565b611a7b81611a3c565b840191505092915050565b60006020820190508181036000830152611aa08184611a4d565b905092915050565b6000819050919050565b611abb81611aa8565b8114611ac657600080fd5b50565b600081359050611ad881611ab2565b92915050565b600060208284031215611af457611af3611928565b5b6000611b0284828501611ac9565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b3682611b0b565b9050919050565b611b4681611b2b565b82525050565b6000602082019050611b616000830184611b3d565b92915050565b611b7081611b2b565b8114611b7b57600080fd5b50565b600081359050611b8d81611b67565b92915050565b60008060408385031215611baa57611ba9611928565b5b6000611bb885828601611b7e565b9250506020611bc985828601611ac9565b9150509250929050565b600080600060608486031215611bec57611beb611928565b5b6000611bfa86828701611b7e565b9350506020611c0b86828701611b7e565b9250506040611c1c86828701611ac9565b9150509250925092565b611c2f81611aa8565b82525050565b6000602082019050611c4a6000830184611c26565b92915050565b600060208284031215611c6657611c65611928565b5b6000611c7484828501611b7e565b91505092915050565b611c86816119b7565b8114611c9157600080fd5b50565b600081359050611ca381611c7d565b92915050565b60008060408385031215611cc057611cbf611928565b5b6000611cce85828601611b7e565b9250506020611cdf85828601611c94565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611d2b82611a3c565b810181811067ffffffffffffffff82111715611d4a57611d49611cf3565b5b80604052505050565b6000611d5d61191e565b9050611d698282611d22565b919050565b600067ffffffffffffffff821115611d8957611d88611cf3565b5b611d9282611a3c565b9050602081019050919050565b82818337600083830152505050565b6000611dc1611dbc84611d6e565b611d53565b905082815260208101848484011115611ddd57611ddc611cee565b5b611de8848285611d9f565b509392505050565b600082601f830112611e0557611e04611ce9565b5b8135611e15848260208601611dae565b91505092915050565b60008060008060808587031215611e3857611e37611928565b5b6000611e4687828801611b7e565b9450506020611e5787828801611b7e565b9350506040611e6887828801611ac9565b925050606085013567ffffffffffffffff811115611e8957611e8861192d565b5b611e9587828801611df0565b91505092959194509250565b60008060408385031215611eb857611eb7611928565b5b6000611ec685828601611b7e565b9250506020611ed785828601611b7e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611f2857607f821691505b60208210811415611f3c57611f3b611ee1565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000611f9e602c836119f8565b9150611fa982611f42565b604082019050919050565b60006020820190508181036000830152611fcd81611f91565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006120306021836119f8565b915061203b82611fd4565b604082019050919050565b6000602082019050818103600083015261205f81612023565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006120c26038836119f8565b91506120cd82612066565b604082019050919050565b600060208201905081810360008301526120f1816120b5565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006121546031836119f8565b915061215f826120f8565b604082019050919050565b6000602082019050818103600083015261218381612147565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006121e66029836119f8565b91506121f18261218a565b604082019050919050565b60006020820190508181036000830152612215816121d9565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612278602a836119f8565b91506122838261221c565b604082019050919050565b600060208201905081810360008301526122a78161226b565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006122e46019836119f8565b91506122ef826122ae565b602082019050919050565b60006020820190508181036000830152612313816122d7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061235482611aa8565b915061235f83611aa8565b9250828210156123725761237161231a565b5b828203905092915050565b600061238882611aa8565b915061239383611aa8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156123c8576123c761231a565b5b828201905092915050565b60006123de82611aa8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156124115761241061231a565b5b600182019050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612478602c836119f8565b91506124838261241c565b604082019050919050565b600060208201905081810360008301526124a78161246b565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b600061250a6029836119f8565b9150612515826124ae565b604082019050919050565b60006020820190508181036000830152612539816124fd565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061259c6024836119f8565b91506125a782612540565b604082019050919050565b600060208201905081810360008301526125cb8161258f565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061262e6032836119f8565b9150612639826125d2565b604082019050919050565b6000602082019050818103600083015261265d81612621565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061268b82612664565b612695818561266f565b93506126a5818560208601611a09565b6126ae81611a3c565b840191505092915050565b60006080820190506126ce6000830187611b3d565b6126db6020830186611b3d565b6126e86040830185611c26565b81810360608301526126fa8184612680565b905095945050505050565b6000815190506127148161195e565b92915050565b6000602082840312156127305761272f611928565b5b600061273e84828501612705565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061277d6020836119f8565b915061278882612747565b602082019050919050565b600060208201905081810360008301526127ac81612770565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006127e9601c836119f8565b91506127f4826127b3565b602082019050919050565b60006020820190508181036000830152612818816127dc565b905091905056fea26469706673582212201b47736637a3a6761b245a7ae743b55a9693de6fc33bf6f758c9d76074ae1b1864736f6c634300080a0033697066733a2f2f516d646369695050456b5154454b457978394763316a4a593277654b6a4a4a77663958564337316f327835513951

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c80636fd976bc116100a2578063a22cb46511610071578063a22cb465146102cd578063ab00492f146102e9578063b88d4fde14610305578063c87b56dd14610321578063e985e9c51461035157610116565b80636fd976bc1461024357806370a08231146102615780638da5cb5b1461029157806395d89b41146102af57610116565b806323b872dd116100e957806323b872dd146101b557806342842e0e146101d157806342966c68146101ed5780636352211e146102095780636876a8461461023957610116565b806301ffc9a71461011b57806306fdde031461014b578063081812fc14610169578063095ea7b314610199575b600080fd5b6101356004803603810190610130919061198a565b610381565b60405161014291906119d2565b60405180910390f35b610153610393565b6040516101609190611a86565b60405180910390f35b610183600480360381019061017e9190611ade565b610425565b6040516101909190611b4c565b60405180910390f35b6101b360048036038101906101ae9190611b93565b6104aa565b005b6101cf60048036038101906101ca9190611bd3565b6105c2565b005b6101eb60048036038101906101e69190611bd3565b610622565b005b61020760048036038101906102029190611ade565b610642565b005b610223600480360381019061021e9190611ade565b610695565b6040516102309190611b4c565b60405180910390f35b610241610747565b005b61024b6107c5565b6040516102589190611c35565b60405180910390f35b61027b60048036038101906102769190611c50565b6107cb565b6040516102889190611c35565b60405180910390f35b610299610883565b6040516102a69190611b4c565b60405180910390f35b6102b76108a9565b6040516102c49190611a86565b60405180910390f35b6102e760048036038101906102e29190611ca9565b61093b565b005b61030360048036038101906102fe9190611ade565b610abc565b005b61031f600480360381019061031a9190611e1e565b610bc1565b005b61033b60048036038101906103369190611ade565b610c23565b6040516103489190611a86565b60405180910390f35b61036b60048036038101906103669190611ea1565b610cb7565b60405161037891906119d2565b60405180910390f35b600061038c82610d4b565b9050919050565b6060600080546103a290611f10565b80601f01602080910402602001604051908101604052809291908181526020018280546103ce90611f10565b801561041b5780601f106103f05761010080835404028352916020019161041b565b820191906000526020600020905b8154815290600101906020018083116103fe57829003601f168201915b5050505050905090565b600061043082610e2d565b61046f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161046690611fb4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006104b582610695565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051d90612046565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610545610e99565b73ffffffffffffffffffffffffffffffffffffffff16148061057457506105738161056e610e99565b610cb7565b5b6105b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105aa906120d8565b60405180910390fd5b6105bd8383610ea1565b505050565b6105d36105cd610e99565b82610f5a565b610612576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106099061216a565b60405180910390fd5b61061d838383611038565b505050565b61063d83838360405180602001604052806000815250610bc1565b505050565b61064b81610695565b73ffffffffffffffffffffffffffffffffffffffff16610669610e99565b73ffffffffffffffffffffffffffffffffffffffff161461068957600080fd5b61069281611294565b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561073e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610735906121fc565b60405180910390fd5b80915050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610788610e99565b73ffffffffffffffffffffffffffffffffffffffff16146107a857600080fd5b6000600960006101000a81548160ff021916908315150217905550565b60085481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561083c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108339061228e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600180546108b890611f10565b80601f01602080910402602001604051908101604052809291908181526020018280546108e490611f10565b80156109315780601f1061090657610100808354040283529160200191610931565b820191906000526020600020905b81548152906001019060200180831161091457829003601f168201915b5050505050905090565b610943610e99565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a8906122fa565b60405180910390fd5b80600560006109be610e99565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610a6b610e99565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ab091906119d2565b60405180910390a35050565b600960009054906101000a900460ff16610ad557600080fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610b16610e99565b73ffffffffffffffffffffffffffffffffffffffff1614610b3657600080fd5b6000816001600854610b489190612349565b610b52919061237d565b9050600060085490505b818111610bbc57610b91600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008546112a0565b60086000815480929190610ba4906123d3565b91905055508080610bb4906123d3565b915050610b5c565b505050565b610bd2610bcc610e99565b83610f5a565b610c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c089061216a565b60405180910390fd5b610c1d848484846112be565b50505050565b6060600a8054610c3290611f10565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5e90611f10565b8015610cab5780601f10610c8057610100808354040283529160200191610cab565b820191906000526020600020905b815481529060010190602001808311610c8e57829003601f168201915b50505050509050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e1657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e265750610e258261131a565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610f1483610695565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610f6582610e2d565b610fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9b9061248e565b60405180910390fd5b6000610faf83610695565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061101e57508373ffffffffffffffffffffffffffffffffffffffff1661100684610425565b73ffffffffffffffffffffffffffffffffffffffff16145b8061102f575061102e8185610cb7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661105882610695565b73ffffffffffffffffffffffffffffffffffffffff16146110ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a590612520565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561111e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611115906125b2565b60405180910390fd5b611129838383611384565b611134600082610ea1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111849190612349565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111db919061237d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61129d81611394565b50565b6112ba8282604051806020016040528060008152506113e7565b5050565b6112c9848484611038565b6112d584848484611442565b611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b90612644565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61138f8383836115ca565b505050565b61139d816115cf565b60006006600083815260200190815260200160002080546113bd90611f10565b9050146113e4576006600082815260200190815260200160002060006113e391906118c1565b5b50565b6113f183836116e0565b6113fe6000848484611442565b61143d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143490612644565b60405180910390fd5b505050565b60006114638473ffffffffffffffffffffffffffffffffffffffff166118ae565b156115bd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261148c610e99565b8786866040518563ffffffff1660e01b81526004016114ae94939291906126b9565b6020604051808303816000875af19250505080156114ea57506040513d601f19601f820116820180604052508101906114e7919061271a565b60015b61156d573d806000811461151a576040519150601f19603f3d011682016040523d82523d6000602084013e61151f565b606091505b50600081511415611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155c90612644565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506115c2565b600190505b949350505050565b505050565b60006115da82610695565b90506115e881600084611384565b6115f3600083610ea1565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116439190612349565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174790612793565b60405180910390fd5b61175981610e2d565b15611799576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611790906127ff565b60405180910390fd5b6117a560008383611384565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117f5919061237d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b5080546118cd90611f10565b6000825580601f106118df57506118fe565b601f0160209004906000526020600020908101906118fd9190611901565b5b50565b5b8082111561191a576000816000905550600101611902565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61196781611932565b811461197257600080fd5b50565b6000813590506119848161195e565b92915050565b6000602082840312156119a05761199f611928565b5b60006119ae84828501611975565b91505092915050565b60008115159050919050565b6119cc816119b7565b82525050565b60006020820190506119e760008301846119c3565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a27578082015181840152602081019050611a0c565b83811115611a36576000848401525b50505050565b6000601f19601f8301169050919050565b6000611a58826119ed565b611a6281856119f8565b9350611a72818560208601611a09565b611a7b81611a3c565b840191505092915050565b60006020820190508181036000830152611aa08184611a4d565b905092915050565b6000819050919050565b611abb81611aa8565b8114611ac657600080fd5b50565b600081359050611ad881611ab2565b92915050565b600060208284031215611af457611af3611928565b5b6000611b0284828501611ac9565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b3682611b0b565b9050919050565b611b4681611b2b565b82525050565b6000602082019050611b616000830184611b3d565b92915050565b611b7081611b2b565b8114611b7b57600080fd5b50565b600081359050611b8d81611b67565b92915050565b60008060408385031215611baa57611ba9611928565b5b6000611bb885828601611b7e565b9250506020611bc985828601611ac9565b9150509250929050565b600080600060608486031215611bec57611beb611928565b5b6000611bfa86828701611b7e565b9350506020611c0b86828701611b7e565b9250506040611c1c86828701611ac9565b9150509250925092565b611c2f81611aa8565b82525050565b6000602082019050611c4a6000830184611c26565b92915050565b600060208284031215611c6657611c65611928565b5b6000611c7484828501611b7e565b91505092915050565b611c86816119b7565b8114611c9157600080fd5b50565b600081359050611ca381611c7d565b92915050565b60008060408385031215611cc057611cbf611928565b5b6000611cce85828601611b7e565b9250506020611cdf85828601611c94565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611d2b82611a3c565b810181811067ffffffffffffffff82111715611d4a57611d49611cf3565b5b80604052505050565b6000611d5d61191e565b9050611d698282611d22565b919050565b600067ffffffffffffffff821115611d8957611d88611cf3565b5b611d9282611a3c565b9050602081019050919050565b82818337600083830152505050565b6000611dc1611dbc84611d6e565b611d53565b905082815260208101848484011115611ddd57611ddc611cee565b5b611de8848285611d9f565b509392505050565b600082601f830112611e0557611e04611ce9565b5b8135611e15848260208601611dae565b91505092915050565b60008060008060808587031215611e3857611e37611928565b5b6000611e4687828801611b7e565b9450506020611e5787828801611b7e565b9350506040611e6887828801611ac9565b925050606085013567ffffffffffffffff811115611e8957611e8861192d565b5b611e9587828801611df0565b91505092959194509250565b60008060408385031215611eb857611eb7611928565b5b6000611ec685828601611b7e565b9250506020611ed785828601611b7e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611f2857607f821691505b60208210811415611f3c57611f3b611ee1565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000611f9e602c836119f8565b9150611fa982611f42565b604082019050919050565b60006020820190508181036000830152611fcd81611f91565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006120306021836119f8565b915061203b82611fd4565b604082019050919050565b6000602082019050818103600083015261205f81612023565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006120c26038836119f8565b91506120cd82612066565b604082019050919050565b600060208201905081810360008301526120f1816120b5565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006121546031836119f8565b915061215f826120f8565b604082019050919050565b6000602082019050818103600083015261218381612147565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006121e66029836119f8565b91506121f18261218a565b604082019050919050565b60006020820190508181036000830152612215816121d9565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612278602a836119f8565b91506122838261221c565b604082019050919050565b600060208201905081810360008301526122a78161226b565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006122e46019836119f8565b91506122ef826122ae565b602082019050919050565b60006020820190508181036000830152612313816122d7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061235482611aa8565b915061235f83611aa8565b9250828210156123725761237161231a565b5b828203905092915050565b600061238882611aa8565b915061239383611aa8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156123c8576123c761231a565b5b828201905092915050565b60006123de82611aa8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156124115761241061231a565b5b600182019050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612478602c836119f8565b91506124838261241c565b604082019050919050565b600060208201905081810360008301526124a78161246b565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b600061250a6029836119f8565b9150612515826124ae565b604082019050919050565b60006020820190508181036000830152612539816124fd565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061259c6024836119f8565b91506125a782612540565b604082019050919050565b600060208201905081810360008301526125cb8161258f565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061262e6032836119f8565b9150612639826125d2565b604082019050919050565b6000602082019050818103600083015261265d81612621565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061268b82612664565b612695818561266f565b93506126a5818560208601611a09565b6126ae81611a3c565b840191505092915050565b60006080820190506126ce6000830187611b3d565b6126db6020830186611b3d565b6126e86040830185611c26565b81810360608301526126fa8184612680565b905095945050505050565b6000815190506127148161195e565b92915050565b6000602082840312156127305761272f611928565b5b600061273e84828501612705565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061277d6020836119f8565b915061278882612747565b602082019050919050565b600060208201905081810360008301526127ac81612770565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006127e9601c836119f8565b91506127f4826127b3565b602082019050919050565b60006020820190508181036000830152612818816127dc565b905091905056fea26469706673582212201b47736637a3a6761b245a7ae743b55a9693de6fc33bf6f758c9d76074ae1b1864736f6c634300080a0033

Deployed Bytecode Sourcemap

112:1539:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1362:194;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20770:100:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22230:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21767:397;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23120:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23496:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1033:112:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20464:239:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;325:101:1;;;:::i;:::-;;187:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20194:208:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;160:20:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20939:104:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22523:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;434:278:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23718:285:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1153:199:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22889:164:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1362:194:1;1483:4;1512:36;1536:11;1512:23;:36::i;:::-;1505:43;;1362:194;;;:::o;20770:100:0:-;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;23496:151::-;23600:39;23617:4;23623:2;23627:7;23600:39;;;;;;;;;;;;:16;:39::i;:::-;23496:151;;;:::o;1033:112:1:-;1103:12;1111:3;1103:7;:12::i;:::-;1087:28;;:12;:10;:12::i;:::-;:28;;;1078:38;;;;;;1127:10;1133:3;1127:5;:10::i;:::-;1033:112;:::o;20464:239:0:-;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;325:101:1:-;386:5;;;;;;;;;;;370:21;;:12;:10;:12::i;:::-;:21;;;361:32;;;;;;413:5;404:6;;:14;;;;;;;;;;;;;;;;;;325:101::o;187:24::-;;;;:::o;20194:208:0:-;20266:7;20311:1;20294:19;;:5;:19;;;;20286:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;20378:9;:16;20388:5;20378:16;;;;;;;;;;;;;;;;20371:23;;20194:208;;;:::o;160:20:1:-;;;;;;;;;;;;;:::o;20939:104:0:-;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;434:278:1:-;490:6;;;;;;;;;;;481:17;;;;;;534:5;;;;;;;;;;;518:21;;:12;:10;:12::i;:::-;:21;;;509:32;;;;;;552:11;578:3;574:1;566:5;;:9;;;;:::i;:::-;:15;;;;:::i;:::-;552:29;;597:6;606:5;;597:14;;592:113;618:6;613:1;:11;592:113;;646:25;657:5;;;;;;;;;;;665;;646:9;:25::i;:::-;686:5;;:7;;;;;;;;;:::i;:::-;;;;;;626:3;;;;;:::i;:::-;;;;592:113;;;;470:242;434:278;:::o;23718:285:0:-;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;1153:199:1:-;1272:13;1336:8;1329:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1153:199;;;:::o;22889:164:0:-;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;918:107:1:-;997:20;1009:7;997:11;:20::i;:::-;918:107;:::o;26454:110:0:-;26530:26;26540:2;26544:7;26530:26;;;;;;;;;;;;:9;:26::i;:::-;26454:110;;:::o;24885:272::-;24999:28;25009:4;25015:2;25019:7;24999:9;:28::i;:::-;25046:48;25069:4;25075:2;25079:7;25088:5;25046:22;:48::i;:::-;25038:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;24885:272;;;;:::o;18439:157::-;18524:4;18563:25;18548:40;;;:11;:40;;;;18541:47;;18439:157;;;:::o;722:186:1:-;855:45;882:4;888:2;892:7;855:26;:45::i;:::-;722:186;;;:::o;41101:206:0:-;41170:20;41182:7;41170:11;:20::i;:::-;41244:1;41213:10;:19;41224:7;41213:19;;;;;;;;;;;41207:33;;;;;:::i;:::-;;;:38;41203:97;;41269:10;:19;41280:7;41269:19;;;;;;;;;;;;41262:26;;;;:::i;:::-;41203:97;41101:206;:::o;26791:250::-;26887:18;26893:2;26897:7;26887:5;:18::i;:::-;26924:54;26955:1;26959:2;26963:7;26972:5;26924:22;:54::i;:::-;26916:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;26791:250;;;:::o;30086:843::-;30207:4;30233:15;:2;:13;;;:15::i;:::-;30229:693;;;30285:2;30269:36;;;30306:12;:10;:12::i;:::-;30320:4;30326:7;30335:5;30269:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;30265:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30532:1;30515:6;:13;:18;30511:341;;;30558:60;;;;;;;;;;:::i;:::-;;;;;;;;30511:341;30802:6;30796:13;30787:6;30783:2;30779:15;30772:38;30265:602;30402:45;;;30392:55;;;:6;:55;;;;30385:62;;;;;30229:693;30906:4;30899:11;;30086:843;;;;;;;:::o;31542:93::-;;;;:::o;27988:360::-;28048:13;28064:23;28079:7;28064:14;:23::i;:::-;28048:39;;28100:48;28121:5;28136:1;28140:7;28100:20;:48::i;:::-;28189:29;28206:1;28210:7;28189:8;:29::i;:::-;28251:1;28231:9;:16;28241:5;28231:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;28270:7;:16;28278:7;28270:16;;;;;;;;;;;;28263:23;;;;;;;;;;;28332:7;28328:1;28304:36;;28313:5;28304:36;;;;;;;;;;;;28037:311;27988:360;:::o;27377:382::-;27471:1;27457:16;;:2;:16;;;;27449:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;27530:16;27538:7;27530;:16::i;:::-;27529:17;27521:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27592:45;27621:1;27625:2;27629:7;27592:20;:45::i;:::-;27667:1;27650:9;:13;27660:2;27650:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;27698:2;27679:7;:16;27687:7;27679:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;27743:7;27739:2;27718:33;;27735:1;27718:33;;;;;;;;;;;;27377:382;;:::o;9573:422::-;9633:4;9841:12;9952:7;9940:20;9932:28;;9986:1;9979:4;:8;9972:15;;;9573:422;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:2:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:619::-;5015:6;5023;5031;5080:2;5068:9;5059:7;5055:23;5051:32;5048:119;;;5086:79;;:::i;:::-;5048:119;5206:1;5231:53;5276:7;5267:6;5256:9;5252:22;5231:53;:::i;:::-;5221:63;;5177:117;5333:2;5359:53;5404:7;5395:6;5384:9;5380:22;5359:53;:::i;:::-;5349:63;;5304:118;5461:2;5487:53;5532:7;5523:6;5512:9;5508:22;5487:53;:::i;:::-;5477:63;;5432:118;4938:619;;;;;:::o;5563:118::-;5650:24;5668:5;5650:24;:::i;:::-;5645:3;5638:37;5563:118;;:::o;5687:222::-;5780:4;5818:2;5807:9;5803:18;5795:26;;5831:71;5899:1;5888:9;5884:17;5875:6;5831:71;:::i;:::-;5687:222;;;;:::o;5915:329::-;5974:6;6023:2;6011:9;6002:7;5998:23;5994:32;5991:119;;;6029:79;;:::i;:::-;5991:119;6149:1;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6120:117;5915:329;;;;:::o;6250:116::-;6320:21;6335:5;6320:21;:::i;:::-;6313:5;6310:32;6300:60;;6356:1;6353;6346:12;6300:60;6250:116;:::o;6372:133::-;6415:5;6453:6;6440:20;6431:29;;6469:30;6493:5;6469:30;:::i;:::-;6372:133;;;;:::o;6511:468::-;6576:6;6584;6633:2;6621:9;6612:7;6608:23;6604:32;6601:119;;;6639:79;;:::i;:::-;6601:119;6759:1;6784:53;6829:7;6820:6;6809:9;6805:22;6784:53;:::i;:::-;6774:63;;6730:117;6886:2;6912:50;6954:7;6945:6;6934:9;6930:22;6912:50;:::i;:::-;6902:60;;6857:115;6511:468;;;;;:::o;6985:117::-;7094:1;7091;7084:12;7108:117;7217:1;7214;7207:12;7231:180;7279:77;7276:1;7269:88;7376:4;7373:1;7366:15;7400:4;7397:1;7390:15;7417:281;7500:27;7522:4;7500:27;:::i;:::-;7492:6;7488:40;7630:6;7618:10;7615:22;7594:18;7582:10;7579:34;7576:62;7573:88;;;7641:18;;:::i;:::-;7573:88;7681:10;7677:2;7670:22;7460:238;7417:281;;:::o;7704:129::-;7738:6;7765:20;;:::i;:::-;7755:30;;7794:33;7822:4;7814:6;7794:33;:::i;:::-;7704:129;;;:::o;7839:307::-;7900:4;7990:18;7982:6;7979:30;7976:56;;;8012:18;;:::i;:::-;7976:56;8050:29;8072:6;8050:29;:::i;:::-;8042:37;;8134:4;8128;8124:15;8116:23;;7839:307;;;:::o;8152:154::-;8236:6;8231:3;8226;8213:30;8298:1;8289:6;8284:3;8280:16;8273:27;8152:154;;;:::o;8312:410::-;8389:5;8414:65;8430:48;8471:6;8430:48;:::i;:::-;8414:65;:::i;:::-;8405:74;;8502:6;8495:5;8488:21;8540:4;8533:5;8529:16;8578:3;8569:6;8564:3;8560:16;8557:25;8554:112;;;8585:79;;:::i;:::-;8554:112;8675:41;8709:6;8704:3;8699;8675:41;:::i;:::-;8395:327;8312:410;;;;;:::o;8741:338::-;8796:5;8845:3;8838:4;8830:6;8826:17;8822:27;8812:122;;8853:79;;:::i;:::-;8812:122;8970:6;8957:20;8995:78;9069:3;9061:6;9054:4;9046:6;9042:17;8995:78;:::i;:::-;8986:87;;8802:277;8741:338;;;;:::o;9085:943::-;9180:6;9188;9196;9204;9253:3;9241:9;9232:7;9228:23;9224:33;9221:120;;;9260:79;;:::i;:::-;9221:120;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:53;9578:7;9569:6;9558:9;9554:22;9533:53;:::i;:::-;9523:63;;9478:118;9635:2;9661:53;9706:7;9697:6;9686:9;9682:22;9661:53;:::i;:::-;9651:63;;9606:118;9791:2;9780:9;9776:18;9763:32;9822:18;9814:6;9811:30;9808:117;;;9844:79;;:::i;:::-;9808:117;9949:62;10003:7;9994:6;9983:9;9979:22;9949:62;:::i;:::-;9939:72;;9734:287;9085:943;;;;;;;:::o;10034:474::-;10102:6;10110;10159:2;10147:9;10138:7;10134:23;10130:32;10127:119;;;10165:79;;:::i;:::-;10127:119;10285:1;10310:53;10355:7;10346:6;10335:9;10331:22;10310:53;:::i;:::-;10300:63;;10256:117;10412:2;10438:53;10483:7;10474:6;10463:9;10459:22;10438:53;:::i;:::-;10428:63;;10383:118;10034:474;;;;;:::o;10514:180::-;10562:77;10559:1;10552:88;10659:4;10656:1;10649:15;10683:4;10680:1;10673:15;10700:320;10744:6;10781:1;10775:4;10771:12;10761:22;;10828:1;10822:4;10818:12;10849:18;10839:81;;10905:4;10897:6;10893:17;10883:27;;10839:81;10967:2;10959:6;10956:14;10936:18;10933:38;10930:84;;;10986:18;;:::i;:::-;10930:84;10751:269;10700:320;;;:::o;11026:231::-;11166:34;11162:1;11154:6;11150:14;11143:58;11235:14;11230:2;11222:6;11218:15;11211:39;11026:231;:::o;11263:366::-;11405:3;11426:67;11490:2;11485:3;11426:67;:::i;:::-;11419:74;;11502:93;11591:3;11502:93;:::i;:::-;11620:2;11615:3;11611:12;11604:19;;11263:366;;;:::o;11635:419::-;11801:4;11839:2;11828:9;11824:18;11816:26;;11888:9;11882:4;11878:20;11874:1;11863:9;11859:17;11852:47;11916:131;12042:4;11916:131;:::i;:::-;11908:139;;11635:419;;;:::o;12060:220::-;12200:34;12196:1;12188:6;12184:14;12177:58;12269:3;12264:2;12256:6;12252:15;12245:28;12060:220;:::o;12286:366::-;12428:3;12449:67;12513:2;12508:3;12449:67;:::i;:::-;12442:74;;12525:93;12614:3;12525:93;:::i;:::-;12643:2;12638:3;12634:12;12627:19;;12286:366;;;:::o;12658:419::-;12824:4;12862:2;12851:9;12847:18;12839:26;;12911:9;12905:4;12901:20;12897:1;12886:9;12882:17;12875:47;12939:131;13065:4;12939:131;:::i;:::-;12931:139;;12658:419;;;:::o;13083:243::-;13223:34;13219:1;13211:6;13207:14;13200:58;13292:26;13287:2;13279:6;13275:15;13268:51;13083:243;:::o;13332:366::-;13474:3;13495:67;13559:2;13554:3;13495:67;:::i;:::-;13488:74;;13571:93;13660:3;13571:93;:::i;:::-;13689:2;13684:3;13680:12;13673:19;;13332:366;;;:::o;13704:419::-;13870:4;13908:2;13897:9;13893:18;13885:26;;13957:9;13951:4;13947:20;13943:1;13932:9;13928:17;13921:47;13985:131;14111:4;13985:131;:::i;:::-;13977:139;;13704:419;;;:::o;14129:236::-;14269:34;14265:1;14257:6;14253:14;14246:58;14338:19;14333:2;14325:6;14321:15;14314:44;14129:236;:::o;14371:366::-;14513:3;14534:67;14598:2;14593:3;14534:67;:::i;:::-;14527:74;;14610:93;14699:3;14610:93;:::i;:::-;14728:2;14723:3;14719:12;14712:19;;14371:366;;;:::o;14743:419::-;14909:4;14947:2;14936:9;14932:18;14924:26;;14996:9;14990:4;14986:20;14982:1;14971:9;14967:17;14960:47;15024:131;15150:4;15024:131;:::i;:::-;15016:139;;14743:419;;;:::o;15168:228::-;15308:34;15304:1;15296:6;15292:14;15285:58;15377:11;15372:2;15364:6;15360:15;15353:36;15168:228;:::o;15402:366::-;15544:3;15565:67;15629:2;15624:3;15565:67;:::i;:::-;15558:74;;15641:93;15730:3;15641:93;:::i;:::-;15759:2;15754:3;15750:12;15743:19;;15402:366;;;:::o;15774:419::-;15940:4;15978:2;15967:9;15963:18;15955:26;;16027:9;16021:4;16017:20;16013:1;16002:9;15998:17;15991:47;16055:131;16181:4;16055:131;:::i;:::-;16047:139;;15774:419;;;:::o;16199:229::-;16339:34;16335:1;16327:6;16323:14;16316:58;16408:12;16403:2;16395:6;16391:15;16384:37;16199:229;:::o;16434:366::-;16576:3;16597:67;16661:2;16656:3;16597:67;:::i;:::-;16590:74;;16673:93;16762:3;16673:93;:::i;:::-;16791:2;16786:3;16782:12;16775:19;;16434:366;;;:::o;16806:419::-;16972:4;17010:2;16999:9;16995:18;16987:26;;17059:9;17053:4;17049:20;17045:1;17034:9;17030:17;17023:47;17087:131;17213:4;17087:131;:::i;:::-;17079:139;;16806:419;;;:::o;17231:175::-;17371:27;17367:1;17359:6;17355:14;17348:51;17231:175;:::o;17412:366::-;17554:3;17575:67;17639:2;17634:3;17575:67;:::i;:::-;17568:74;;17651:93;17740:3;17651:93;:::i;:::-;17769:2;17764:3;17760:12;17753:19;;17412:366;;;:::o;17784:419::-;17950:4;17988:2;17977:9;17973:18;17965:26;;18037:9;18031:4;18027:20;18023:1;18012:9;18008:17;18001:47;18065:131;18191:4;18065:131;:::i;:::-;18057:139;;17784:419;;;:::o;18209:180::-;18257:77;18254:1;18247:88;18354:4;18351:1;18344:15;18378:4;18375:1;18368:15;18395:191;18435:4;18455:20;18473:1;18455:20;:::i;:::-;18450:25;;18489:20;18507:1;18489:20;:::i;:::-;18484:25;;18528:1;18525;18522:8;18519:34;;;18533:18;;:::i;:::-;18519:34;18578:1;18575;18571:9;18563:17;;18395:191;;;;:::o;18592:305::-;18632:3;18651:20;18669:1;18651:20;:::i;:::-;18646:25;;18685:20;18703:1;18685:20;:::i;:::-;18680:25;;18839:1;18771:66;18767:74;18764:1;18761:81;18758:107;;;18845:18;;:::i;:::-;18758:107;18889:1;18886;18882:9;18875:16;;18592:305;;;;:::o;18903:233::-;18942:3;18965:24;18983:5;18965:24;:::i;:::-;18956:33;;19011:66;19004:5;19001:77;18998:103;;;19081:18;;:::i;:::-;18998:103;19128:1;19121:5;19117:13;19110:20;;18903:233;;;:::o;19142:231::-;19282:34;19278:1;19270:6;19266:14;19259:58;19351:14;19346:2;19338:6;19334:15;19327:39;19142:231;:::o;19379:366::-;19521:3;19542:67;19606:2;19601:3;19542:67;:::i;:::-;19535:74;;19618:93;19707:3;19618:93;:::i;:::-;19736:2;19731:3;19727:12;19720:19;;19379:366;;;:::o;19751:419::-;19917:4;19955:2;19944:9;19940:18;19932:26;;20004:9;19998:4;19994:20;19990:1;19979:9;19975:17;19968:47;20032:131;20158:4;20032:131;:::i;:::-;20024:139;;19751:419;;;:::o;20176:228::-;20316:34;20312:1;20304:6;20300:14;20293:58;20385:11;20380:2;20372:6;20368:15;20361:36;20176:228;:::o;20410:366::-;20552:3;20573:67;20637:2;20632:3;20573:67;:::i;:::-;20566:74;;20649:93;20738:3;20649:93;:::i;:::-;20767:2;20762:3;20758:12;20751:19;;20410:366;;;:::o;20782:419::-;20948:4;20986:2;20975:9;20971:18;20963:26;;21035:9;21029:4;21025:20;21021:1;21010:9;21006:17;20999:47;21063:131;21189:4;21063:131;:::i;:::-;21055:139;;20782:419;;;:::o;21207:223::-;21347:34;21343:1;21335:6;21331:14;21324:58;21416:6;21411:2;21403:6;21399:15;21392:31;21207:223;:::o;21436:366::-;21578:3;21599:67;21663:2;21658:3;21599:67;:::i;:::-;21592:74;;21675:93;21764:3;21675:93;:::i;:::-;21793:2;21788:3;21784:12;21777:19;;21436:366;;;:::o;21808:419::-;21974:4;22012:2;22001:9;21997:18;21989:26;;22061:9;22055:4;22051:20;22047:1;22036:9;22032:17;22025:47;22089:131;22215:4;22089:131;:::i;:::-;22081:139;;21808:419;;;:::o;22233:237::-;22373:34;22369:1;22361:6;22357:14;22350:58;22442:20;22437:2;22429:6;22425:15;22418:45;22233:237;:::o;22476:366::-;22618:3;22639:67;22703:2;22698:3;22639:67;:::i;:::-;22632:74;;22715:93;22804:3;22715:93;:::i;:::-;22833:2;22828:3;22824:12;22817:19;;22476:366;;;:::o;22848:419::-;23014:4;23052:2;23041:9;23037:18;23029:26;;23101:9;23095:4;23091:20;23087:1;23076:9;23072:17;23065:47;23129:131;23255:4;23129:131;:::i;:::-;23121:139;;22848:419;;;:::o;23273:98::-;23324:6;23358:5;23352:12;23342:22;;23273:98;;;:::o;23377:168::-;23460:11;23494:6;23489:3;23482:19;23534:4;23529:3;23525:14;23510:29;;23377:168;;;;:::o;23551:360::-;23637:3;23665:38;23697:5;23665:38;:::i;:::-;23719:70;23782:6;23777:3;23719:70;:::i;:::-;23712:77;;23798:52;23843:6;23838:3;23831:4;23824:5;23820:16;23798:52;:::i;:::-;23875:29;23897:6;23875:29;:::i;:::-;23870:3;23866:39;23859:46;;23641:270;23551:360;;;;:::o;23917:640::-;24112:4;24150:3;24139:9;24135:19;24127:27;;24164:71;24232:1;24221:9;24217:17;24208:6;24164:71;:::i;:::-;24245:72;24313:2;24302:9;24298:18;24289:6;24245:72;:::i;:::-;24327;24395:2;24384:9;24380:18;24371:6;24327:72;:::i;:::-;24446:9;24440:4;24436:20;24431:2;24420:9;24416:18;24409:48;24474:76;24545:4;24536:6;24474:76;:::i;:::-;24466:84;;23917:640;;;;;;;:::o;24563:141::-;24619:5;24650:6;24644:13;24635:22;;24666:32;24692:5;24666:32;:::i;:::-;24563:141;;;;:::o;24710:349::-;24779:6;24828:2;24816:9;24807:7;24803:23;24799:32;24796:119;;;24834:79;;:::i;:::-;24796:119;24954:1;24979:63;25034:7;25025:6;25014:9;25010:22;24979:63;:::i;:::-;24969:73;;24925:127;24710:349;;;;:::o;25065:182::-;25205:34;25201:1;25193:6;25189:14;25182:58;25065:182;:::o;25253:366::-;25395:3;25416:67;25480:2;25475:3;25416:67;:::i;:::-;25409:74;;25492:93;25581:3;25492:93;:::i;:::-;25610:2;25605:3;25601:12;25594:19;;25253:366;;;:::o;25625:419::-;25791:4;25829:2;25818:9;25814:18;25806:26;;25878:9;25872:4;25868:20;25864:1;25853:9;25849:17;25842:47;25906:131;26032:4;25906:131;:::i;:::-;25898:139;;25625:419;;;:::o;26050:178::-;26190:30;26186:1;26178:6;26174:14;26167:54;26050:178;:::o;26234:366::-;26376:3;26397:67;26461:2;26456:3;26397:67;:::i;:::-;26390:74;;26473:93;26562:3;26473:93;:::i;:::-;26591:2;26586:3;26582:12;26575:19;;26234:366;;;:::o;26606:419::-;26772:4;26810:2;26799:9;26795:18;26787:26;;26859:9;26853:4;26849:20;26845:1;26834:9;26830:17;26823:47;26887:131;27013:4;26887:131;:::i;:::-;26879:139;;26606:419;;;:::o

Swarm Source

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