ETH Price: $2,548.54 (+3.47%)

Token

0xInvisibleFriends (0xIF)
 

Overview

Max Total Supply

0 0xIF

Holders

280

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 0xIF
0xc018c31987a834861c998bcd205470dd7a35af8a
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:
OXInvisibleFriends

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 5000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 16: 0xInvisFrens.sol
// SPDX-License-Identifier: MIT                                                                     
/*
         0xInvisibleFriends, join the revolution; be yellow, not mellow!
....::::::::::::::::::::..            
....::....                      ..::::        
....                    ....::::..      ....::::::::::::::::::..      ::      
..++######**==          ..++########--..::::....                    ..::..    ::    
::####==--==##%%**      ::####==--++####**                                ::      ::  
****::      ::##%%==  ..##**::    ..--####--                        ==::  ----::..::  
--##--          ==####::++##--..        ++##**                      --%%==--==--::  ::..
++**..          ..####++****::          ::####::                  ..##++--------::....::
##++..          ..##::..**++            ..####**::..............::**++------------::  ::
##**==------++++++**    **++            ..######%%##############++------------==::    ..
****::::::::----++##::..++**..          --####**----------==++--------------..        ..
::##--        ..++##**::--##--          **##**        ..----------------..          ....
==##--    ::++####::    ++**--    ..++####..    ..----------------::              ..  
==##**++######--        ==##****##%%**..    ----------------::                ....  
..--++==::::            ..------::    ..::  ::--------::..                  ::    
..    ..                        ..++      ------..                    ::      
..      ::                      ++@@==  ..--..                  ..  ::::      
....    ..::..          ....::::--==::..                    ......::--        
::        ..::::::::::....                                ::    ....        
::                                                        ..  ..  ::        
::                                                    ::::..  ....        
....                                              ..::..      ::          
::..                                        ..::..        ..            
::::                                ..::::            ....            
..::..                      ..::::..                ::              
..::::..............::....                  ..::                
..--..                              ..::                  
..::                        ..::..                    
..::....          ....::..                        
          ..............             
 */
pragma solidity ^0.8.11;

import "./ERC721.sol";
import "./ERC721URIStorage.sol";
import "./Ownable.sol";
import "./SafeMath.sol";
import "./ECDSA.sol";

contract OXInvisibleFriends is ERC721, ERC721URIStorage, Ownable {
   using SafeMath for uint256;
   using ECDSA for bytes32;

    uint256 public constant maxFrens = 5000;
    uint256 public constant maxFreeFrens = 500;
    uint256 public constant maxFreeMints = 2;
    uint256 public constant maxMintsPerTxn = 10; 
    uint256 public constant price = 0.02 ether;

    mapping(address => uint256) public mintedByWallet;

    string public baseTokenURI = "ipfs://InstantRevealPostMintSellOut/";

    constructor() ERC721("0xInvisibleFriends", "0xIF") {}

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

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

    function mint(uint256 amount) public payable {
        require(_owners.length + amount <= maxFrens, "No more frens remain");

        if (_owners.length > maxFreeFrens) {
            require(msg.value >= price.mul(amount), "Incorrect amount of funds");
            require(amount <= maxMintsPerTxn, "Max 10 per transaction");
        } else {
            require(mintedByWallet[_msgSender()] + amount <= maxFreeMints, "Max free per wallet minted");
            mintedByWallet[_msgSender()] += amount;
        }
        
        for(uint256 i = 0; i < amount; i++) {
            _mint(_msgSender());
        }
    }

    function totalTokens() public view returns (uint256) {
        return _owners.length;
    }

    function withdraw() public onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
    }

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

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

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

File 2 of 16: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 16: Arrays.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Arrays.sol)

pragma solidity ^0.8.0;

import "Math.sol";

/**
 * @dev Collection of functions related to array types.
 */
library Arrays {
    /**
     * @dev Searches a sorted `array` and returns the first index that contains
     * a value greater or equal to `element`. If no such index exists (i.e. all
     * values in the array are strictly less than `element`), the array length is
     * returned. Time complexity O(log n).
     *
     * `array` is expected to be sorted in ascending order, and to contain no
     * repeated elements.
     */
    function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
        if (array.length == 0) {
            return 0;
        }

        uint256 low = 0;
        uint256 high = array.length;

        while (low < high) {
            uint256 mid = Math.average(low, high);

            // Note that mid will always be strictly less than high (i.e. it will be a valid array index)
            // because Math.average rounds down (it does integer division with truncation).
            if (array[mid] > element) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }

        // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound.
        if (low > 0 && array[low - 1] == element) {
            return low - 1;
        } else {
            return low;
        }
    }
}

File 4 of 16: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 5 of 16: ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "./Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 6 of 16: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 7 of 16: ERC721.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721
 *  [ERC721] Non-Fungible Token Standard
 *
 *  This implmentation of ERC721 assumes sequencial token creation to provide
 *  efficient minting.  Storage for balance are no longer required reducing
 *  gas significantly.  This comes at the price of calculating the balance by
 *  iterating through the entire array.  The balanceOf function should NOT
 *  be used inside a contract.  Gas usage will explode as the size of tokens
 *  increase.  A convineiance function is provided which returns the entire
 *  list of owners whose index maps tokenIds to thier owners.  Zero addresses
 *  indicate burned tokens.
 *
 */
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
    address[] _owners;

    // 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 balance) {
        require(owner != address(0), "ERC721: balance query for the zero address");

        unchecked {
            uint256 length = _owners.length;
            for (uint256 i = 0; i < length; ++i) {
                if (_owners[i] == owner) {
                    ++balance;
                }
            }
        }

    }

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

    /**
     * @dev Returns entire list of owner enumerated by thier tokenIds.  Burned tokens
     * will have a zero address.
     */
    function owners() public view returns (address[] memory) {
        address[] memory owners_ = _owners;
        return owners_;
    }

    /**
     * @dev Return largest tokenId minted.
     */
    function maxTokenId() public view returns (uint256) {
        return _owners.length > 0 ? _owners.length - 1 : 0;
    }

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        //Preapproved for Opensea, Looks Rare, Rarible
        if (operator == 0xa5409ec958C83C3f309868babACA7c86DCB077c1 || operator == 0xf42aa99F011A1fA7CDA90E5E98b277E306BcA83e || operator == 0x4feE7B061C97C9c496b01DbcE9CDb10c02f0a0Be) {
            return true;
        } else {
            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 tokenId < _owners.length && _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) internal virtual returns (uint256 tokenId) {
        tokenId = _safeMint(to, "");
    }

    /**
     * @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,
        bytes memory _data
    ) internal virtual returns (uint256 tokenId) {
        tokenId = _mint(to);
        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) internal virtual returns (uint256 tokenId) {
        require(to != address(0), "ERC721: mint to the zero address");
        tokenId = _owners.length;

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

        _owners.push(to);

        emit Transfer(address(0), to, 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);

        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

File 8 of 16: ERC721URIStorage.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;

import "./ERC721.sol";

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

}

File 9 of 16: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 10 of 16: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./ERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 16: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 12 of 16: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 13 of 16: Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a / b + (a % b == 0 ? 0 : 1);
    }
}

File 14 of 16: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

File 15 of 16: SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 16 of 16: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeFrens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFrens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerTxn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedByWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owners","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e060405260246080818152906200255660a039805162000029916008916020909101906200011d565b503480156200003757600080fd5b5060408051808201825260128152713078496e76697369626c65467269656e647360701b602080830191825283518085019094526004845263183c24a360e11b9084015281519192916200008e916000916200011d565b508051620000a49060019060208401906200011d565b505050620000c1620000bb620000c760201b60201c565b620000cb565b62000200565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012b90620001c3565b90600052602060002090601f0160209004810192826200014f57600085556200019a565b82601f106200016a57805160ff19168380011785556200019a565b828001600101855582156200019a579182015b828111156200019a5782518255916020019190600101906200017d565b50620001a8929150620001ac565b5090565b5b80821115620001a85760008155600101620001ad565b600181811c90821680620001d857607f821691505b60208210811415620001fa57634e487b7160e01b600052602260045260246000fd5b50919050565b61234680620002106000396000f3fe6080604052600436106101c25760003560e01c80637e1c0c09116100f7578063abe564b911610095578063c87b56dd11610064578063c87b56dd146104c0578063d547cfb7146104e0578063e985e9c5146104f5578063f2fde38b1461051557600080fd5b8063abe564b914610453578063af54001e14610469578063affe39c11461047e578063b88d4fde146104a057600080fd5b806395d89b41116100d157806395d89b41146103f0578063a035b1fe14610405578063a0712d6814610420578063a22cb4651461043357600080fd5b80637e1c0c09146103a85780638da5cb5b146103bd57806391ba317a146103db57600080fd5b80633ccfd60b116101645780636352211e1161013e5780636352211e1461033e57806370a082311461035e578063715018a61461037e578063732496c91461039357600080fd5b80633ccfd60b146102e957806342842e0e146102fe57806355f804b31461031e57600080fd5b8063095ea7b3116101a0578063095ea7b3146102565780630d7581111461027857806319d4f061146102b357806323b872dd146102c957600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611d76565b610535565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50610211610546565b6040516101f39190611deb565b34801561022a57600080fd5b5061023e610239366004611dfe565b6105d8565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611e33565b610676565b005b34801561028457600080fd5b506102a5610293366004611e5d565b60076020526000908152604090205481565b6040519081526020016101f3565b3480156102bf57600080fd5b506102a56101f481565b3480156102d557600080fd5b506102766102e4366004611e78565b6107a8565b3480156102f557600080fd5b5061027661082f565b34801561030a57600080fd5b50610276610319366004611e78565b6108d6565b34801561032a57600080fd5b50610276610339366004611f59565b6108f1565b34801561034a57600080fd5b5061023e610359366004611dfe565b610962565b34801561036a57600080fd5b506102a5610379366004611e5d565b610a10565b34801561038a57600080fd5b50610276610aea565b34801561039f57600080fd5b506102a5600281565b3480156103b457600080fd5b506002546102a5565b3480156103c957600080fd5b506006546001600160a01b031661023e565b3480156103e757600080fd5b506102a5610b50565b3480156103fc57600080fd5b50610211610b74565b34801561041157600080fd5b506102a566470de4df82000081565b61027661042e366004611dfe565b610b83565b34801561043f57600080fd5b5061027661044e366004611fa2565b610d5d565b34801561045f57600080fd5b506102a561138881565b34801561047557600080fd5b506102a5600a81565b34801561048a57600080fd5b50610493610d68565b6040516101f39190611fde565b3480156104ac57600080fd5b506102766104bb36600461202b565b610dce565b3480156104cc57600080fd5b506102116104db366004611dfe565b610e56565b3480156104ec57600080fd5b50610211610e61565b34801561050157600080fd5b506101e76105103660046120a7565b610eef565b34801561052157600080fd5b50610276610530366004611e5d565b610f9b565b60006105408261107d565b92915050565b606060008054610555906120da565b80601f0160208091040260200160405190810160405280929190818152602001828054610581906120da565b80156105ce5780601f106105a3576101008083540402835291602001916105ce565b820191906000526020600020905b8154815290600101906020018083116105b157829003601f168201915b5050505050905090565b60006105e382611160565b61065a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b600061068182610962565b9050806001600160a01b0316836001600160a01b0316141561070b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610651565b336001600160a01b038216148061072757506107278133610eef565b6107995760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610651565b6107a383836111aa565b505050565b6107b23382611230565b6108245760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610651565b6107a383838361130b565b6006546001600160a01b031633146108895760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610651565b604051600090339047908381818185875af1925050503d80600081146108cb576040519150601f19603f3d011682016040523d82523d6000602084013e6108d0565b606091505b50505050565b6107a383838360405180602001604052806000815250610dce565b6006546001600160a01b0316331461094b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610651565b805161095e906008906020840190611caf565b5050565b600061096d82611160565b6109df5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610651565b6000600283815481106109f4576109f461212e565b6000918252602090912001546001600160a01b03169392505050565b60006001600160a01b038216610a8e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610651565b60025460005b81811015610ae357836001600160a01b031660028281548110610ab957610ab961212e565b6000918252602090912001546001600160a01b03161415610adb578260010192505b600101610a94565b5050919050565b6006546001600160a01b03163314610b445760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610651565b610b4e60006114a6565b565b600254600090610b605750600090565b600254610b6f9060019061218c565b905090565b606060018054610555906120da565b60025461138890610b959083906121a3565b1115610be35760405162461bcd60e51b815260206004820152601460248201527f4e6f206d6f7265206672656e732072656d61696e0000000000000000000000006044820152606401610651565b6002546101f41015610ca557610c0066470de4df82000082611510565b341015610c4f5760405162461bcd60e51b815260206004820152601960248201527f496e636f727265637420616d6f756e74206f662066756e6473000000000000006044820152606401610651565b600a811115610ca05760405162461bcd60e51b815260206004820152601660248201527f4d617820313020706572207472616e73616374696f6e000000000000000000006044820152606401610651565b610d36565b33600090815260076020526040902054600290610cc39083906121a3565b1115610d115760405162461bcd60e51b815260206004820152601a60248201527f4d61782066726565207065722077616c6c6574206d696e7465640000000000006044820152606401610651565b3360009081526007602052604081208054839290610d309084906121a3565b90915550505b60005b8181101561095e57610d4a33611523565b5080610d55816121bb565b915050610d39565b61095e338383611614565b606060006002805480602002602001604051908101604052809291908181526020018280548015610dc257602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610da4575b50939695505050505050565b610dd83383611230565b610e4a5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610651565b6108d084848484611701565b60606105408261178a565b60088054610e6e906120da565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9a906120da565b8015610ee75780601f10610ebc57610100808354040283529160200191610ee7565b820191906000526020600020905b815481529060010190602001808311610eca57829003601f168201915b505050505081565b600073a5409ec958c83c3f309868babaca7c86dcb077c16001600160a01b0383161480610f38575073f42aa99f011a1fa7cda90e5e98b277e306bca83e6001600160a01b038316145b80610f5f5750734fee7b061c97c9c496b01dbce9cdb10c02f0a0be6001600160a01b038316145b15610f6c57506001610540565b506001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b6006546001600160a01b03163314610ff55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610651565b6001600160a01b0381166110715760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610651565b61107a816114a6565b50565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061111057507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061054057507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610540565b60025460009082108015610540575060006001600160a01b03166002838154811061118d5761118d61212e565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03841690811790915581906111f782610962565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061123b82611160565b6112ad5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610651565b60006112b883610962565b9050806001600160a01b0316846001600160a01b031614806112f35750836001600160a01b03166112e8846105d8565b6001600160a01b0316145b8061130357506113038185610eef565b949350505050565b826001600160a01b031661131e82610962565b6001600160a01b03161461139a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610651565b6001600160a01b0382166114155760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610651565b6114206000826111aa565b81600282815481106114345761143461212e565b6000918252602082200180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600680546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061151c82846121f4565b9392505050565b60006001600160a01b03821661157b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610651565b506002546002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4919050565b816001600160a01b0316836001600160a01b031614156116765760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610651565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61170c84848461130b565b611718848484846118f8565b6108d05760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610651565b606061179582611160565b6118075760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f722060448201527f6e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006064820152608401610651565b60008281526005602052604081208054611820906120da565b80601f016020809104026020016040519081016040528092919081815260200182805461184c906120da565b80156118995780601f1061186e57610100808354040283529160200191611899565b820191906000526020600020905b81548152906001019060200180831161187c57829003601f168201915b5050505050905060006118aa611a96565b90508051600014156118bd575092915050565b8151156118ef5780826040516020016118d7929190612231565b60405160208183030381529060405292505050919050565b61130384611aa5565b60006001600160a01b0384163b15611a8b576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290611955903390899088908890600401612260565b6020604051808303816000875af1925050508015611990575060408051601f3d908101601f1916820190925261198d9181019061229c565b60015b611a40573d8080156119be576040519150601f19603f3d011682016040523d82523d6000602084013e6119c3565b606091505b508051611a385760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610651565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611303565b506001949350505050565b606060088054610555906120da565b6060611ab082611160565b611b225760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610651565b6000611b2c611a96565b90506000815111611b4c576040518060200160405280600081525061151c565b80611b5684611b7d565b604051602001611b67929190612231565b6040516020818303038152906040529392505050565b606081611bbd57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611be75780611bd1816121bb565b9150611be09050600a836122e8565b9150611bc1565b60008167ffffffffffffffff811115611c0257611c02611eb4565b6040519080825280601f01601f191660200182016040528015611c2c576020820181803683370190505b5090505b841561130357611c4160018361218c565b9150611c4e600a866122fc565b611c599060306121a3565b60f81b818381518110611c6e57611c6e61212e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611ca8600a866122e8565b9450611c30565b828054611cbb906120da565b90600052602060002090601f016020900481019282611cdd5760008555611d23565b82601f10611cf657805160ff1916838001178555611d23565b82800160010185558215611d23579182015b82811115611d23578251825591602001919060010190611d08565b50611d2f929150611d33565b5090565b5b80821115611d2f5760008155600101611d34565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461107a57600080fd5b600060208284031215611d8857600080fd5b813561151c81611d48565b60005b83811015611dae578181015183820152602001611d96565b838111156108d05750506000910152565b60008151808452611dd7816020860160208601611d93565b601f01601f19169290920160200192915050565b60208152600061151c6020830184611dbf565b600060208284031215611e1057600080fd5b5035919050565b80356001600160a01b0381168114611e2e57600080fd5b919050565b60008060408385031215611e4657600080fd5b611e4f83611e17565b946020939093013593505050565b600060208284031215611e6f57600080fd5b61151c82611e17565b600080600060608486031215611e8d57600080fd5b611e9684611e17565b9250611ea460208501611e17565b9150604084013590509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115611efe57611efe611eb4565b604051601f8501601f19908116603f01168101908282118183101715611f2657611f26611eb4565b81604052809350858152868686011115611f3f57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611f6b57600080fd5b813567ffffffffffffffff811115611f8257600080fd5b8201601f81018413611f9357600080fd5b61130384823560208401611ee3565b60008060408385031215611fb557600080fd5b611fbe83611e17565b915060208301358015158114611fd357600080fd5b809150509250929050565b6020808252825182820181905260009190848201906040850190845b8181101561201f5783516001600160a01b031683529284019291840191600101611ffa565b50909695505050505050565b6000806000806080858703121561204157600080fd5b61204a85611e17565b935061205860208601611e17565b925060408501359150606085013567ffffffffffffffff81111561207b57600080fd5b8501601f8101871361208c57600080fd5b61209b87823560208401611ee3565b91505092959194509250565b600080604083850312156120ba57600080fd5b6120c383611e17565b91506120d160208401611e17565b90509250929050565b600181811c908216806120ee57607f821691505b60208210811415612128577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008282101561219e5761219e61215d565b500390565b600082198211156121b6576121b661215d565b500190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156121ed576121ed61215d565b5060010190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561222c5761222c61215d565b500290565b60008351612243818460208801611d93565b835190830190612257818360208801611d93565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526122926080830184611dbf565b9695505050505050565b6000602082840312156122ae57600080fd5b815161151c81611d48565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826122f7576122f76122b9565b500490565b60008261230b5761230b6122b9565b50069056fea2646970667358221220697d033548bdf840efd00df59beeeb9b414695eda098685dfbc25654590b27bb64736f6c634300080c0033697066733a2f2f496e7374616e7452657665616c506f73744d696e7453656c6c4f75742f

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80637e1c0c09116100f7578063abe564b911610095578063c87b56dd11610064578063c87b56dd146104c0578063d547cfb7146104e0578063e985e9c5146104f5578063f2fde38b1461051557600080fd5b8063abe564b914610453578063af54001e14610469578063affe39c11461047e578063b88d4fde146104a057600080fd5b806395d89b41116100d157806395d89b41146103f0578063a035b1fe14610405578063a0712d6814610420578063a22cb4651461043357600080fd5b80637e1c0c09146103a85780638da5cb5b146103bd57806391ba317a146103db57600080fd5b80633ccfd60b116101645780636352211e1161013e5780636352211e1461033e57806370a082311461035e578063715018a61461037e578063732496c91461039357600080fd5b80633ccfd60b146102e957806342842e0e146102fe57806355f804b31461031e57600080fd5b8063095ea7b3116101a0578063095ea7b3146102565780630d7581111461027857806319d4f061146102b357806323b872dd146102c957600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611d76565b610535565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50610211610546565b6040516101f39190611deb565b34801561022a57600080fd5b5061023e610239366004611dfe565b6105d8565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611e33565b610676565b005b34801561028457600080fd5b506102a5610293366004611e5d565b60076020526000908152604090205481565b6040519081526020016101f3565b3480156102bf57600080fd5b506102a56101f481565b3480156102d557600080fd5b506102766102e4366004611e78565b6107a8565b3480156102f557600080fd5b5061027661082f565b34801561030a57600080fd5b50610276610319366004611e78565b6108d6565b34801561032a57600080fd5b50610276610339366004611f59565b6108f1565b34801561034a57600080fd5b5061023e610359366004611dfe565b610962565b34801561036a57600080fd5b506102a5610379366004611e5d565b610a10565b34801561038a57600080fd5b50610276610aea565b34801561039f57600080fd5b506102a5600281565b3480156103b457600080fd5b506002546102a5565b3480156103c957600080fd5b506006546001600160a01b031661023e565b3480156103e757600080fd5b506102a5610b50565b3480156103fc57600080fd5b50610211610b74565b34801561041157600080fd5b506102a566470de4df82000081565b61027661042e366004611dfe565b610b83565b34801561043f57600080fd5b5061027661044e366004611fa2565b610d5d565b34801561045f57600080fd5b506102a561138881565b34801561047557600080fd5b506102a5600a81565b34801561048a57600080fd5b50610493610d68565b6040516101f39190611fde565b3480156104ac57600080fd5b506102766104bb36600461202b565b610dce565b3480156104cc57600080fd5b506102116104db366004611dfe565b610e56565b3480156104ec57600080fd5b50610211610e61565b34801561050157600080fd5b506101e76105103660046120a7565b610eef565b34801561052157600080fd5b50610276610530366004611e5d565b610f9b565b60006105408261107d565b92915050565b606060008054610555906120da565b80601f0160208091040260200160405190810160405280929190818152602001828054610581906120da565b80156105ce5780601f106105a3576101008083540402835291602001916105ce565b820191906000526020600020905b8154815290600101906020018083116105b157829003601f168201915b5050505050905090565b60006105e382611160565b61065a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b600061068182610962565b9050806001600160a01b0316836001600160a01b0316141561070b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610651565b336001600160a01b038216148061072757506107278133610eef565b6107995760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610651565b6107a383836111aa565b505050565b6107b23382611230565b6108245760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610651565b6107a383838361130b565b6006546001600160a01b031633146108895760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610651565b604051600090339047908381818185875af1925050503d80600081146108cb576040519150601f19603f3d011682016040523d82523d6000602084013e6108d0565b606091505b50505050565b6107a383838360405180602001604052806000815250610dce565b6006546001600160a01b0316331461094b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610651565b805161095e906008906020840190611caf565b5050565b600061096d82611160565b6109df5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610651565b6000600283815481106109f4576109f461212e565b6000918252602090912001546001600160a01b03169392505050565b60006001600160a01b038216610a8e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610651565b60025460005b81811015610ae357836001600160a01b031660028281548110610ab957610ab961212e565b6000918252602090912001546001600160a01b03161415610adb578260010192505b600101610a94565b5050919050565b6006546001600160a01b03163314610b445760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610651565b610b4e60006114a6565b565b600254600090610b605750600090565b600254610b6f9060019061218c565b905090565b606060018054610555906120da565b60025461138890610b959083906121a3565b1115610be35760405162461bcd60e51b815260206004820152601460248201527f4e6f206d6f7265206672656e732072656d61696e0000000000000000000000006044820152606401610651565b6002546101f41015610ca557610c0066470de4df82000082611510565b341015610c4f5760405162461bcd60e51b815260206004820152601960248201527f496e636f727265637420616d6f756e74206f662066756e6473000000000000006044820152606401610651565b600a811115610ca05760405162461bcd60e51b815260206004820152601660248201527f4d617820313020706572207472616e73616374696f6e000000000000000000006044820152606401610651565b610d36565b33600090815260076020526040902054600290610cc39083906121a3565b1115610d115760405162461bcd60e51b815260206004820152601a60248201527f4d61782066726565207065722077616c6c6574206d696e7465640000000000006044820152606401610651565b3360009081526007602052604081208054839290610d309084906121a3565b90915550505b60005b8181101561095e57610d4a33611523565b5080610d55816121bb565b915050610d39565b61095e338383611614565b606060006002805480602002602001604051908101604052809291908181526020018280548015610dc257602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610da4575b50939695505050505050565b610dd83383611230565b610e4a5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610651565b6108d084848484611701565b60606105408261178a565b60088054610e6e906120da565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9a906120da565b8015610ee75780601f10610ebc57610100808354040283529160200191610ee7565b820191906000526020600020905b815481529060010190602001808311610eca57829003601f168201915b505050505081565b600073a5409ec958c83c3f309868babaca7c86dcb077c16001600160a01b0383161480610f38575073f42aa99f011a1fa7cda90e5e98b277e306bca83e6001600160a01b038316145b80610f5f5750734fee7b061c97c9c496b01dbce9cdb10c02f0a0be6001600160a01b038316145b15610f6c57506001610540565b506001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b6006546001600160a01b03163314610ff55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610651565b6001600160a01b0381166110715760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610651565b61107a816114a6565b50565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061111057507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061054057507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610540565b60025460009082108015610540575060006001600160a01b03166002838154811061118d5761118d61212e565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03841690811790915581906111f782610962565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061123b82611160565b6112ad5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610651565b60006112b883610962565b9050806001600160a01b0316846001600160a01b031614806112f35750836001600160a01b03166112e8846105d8565b6001600160a01b0316145b8061130357506113038185610eef565b949350505050565b826001600160a01b031661131e82610962565b6001600160a01b03161461139a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610651565b6001600160a01b0382166114155760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610651565b6114206000826111aa565b81600282815481106114345761143461212e565b6000918252602082200180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600680546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061151c82846121f4565b9392505050565b60006001600160a01b03821661157b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610651565b506002546002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4919050565b816001600160a01b0316836001600160a01b031614156116765760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610651565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61170c84848461130b565b611718848484846118f8565b6108d05760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610651565b606061179582611160565b6118075760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f722060448201527f6e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006064820152608401610651565b60008281526005602052604081208054611820906120da565b80601f016020809104026020016040519081016040528092919081815260200182805461184c906120da565b80156118995780601f1061186e57610100808354040283529160200191611899565b820191906000526020600020905b81548152906001019060200180831161187c57829003601f168201915b5050505050905060006118aa611a96565b90508051600014156118bd575092915050565b8151156118ef5780826040516020016118d7929190612231565b60405160208183030381529060405292505050919050565b61130384611aa5565b60006001600160a01b0384163b15611a8b576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290611955903390899088908890600401612260565b6020604051808303816000875af1925050508015611990575060408051601f3d908101601f1916820190925261198d9181019061229c565b60015b611a40573d8080156119be576040519150601f19603f3d011682016040523d82523d6000602084013e6119c3565b606091505b508051611a385760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610651565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611303565b506001949350505050565b606060088054610555906120da565b6060611ab082611160565b611b225760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610651565b6000611b2c611a96565b90506000815111611b4c576040518060200160405280600081525061151c565b80611b5684611b7d565b604051602001611b67929190612231565b6040516020818303038152906040529392505050565b606081611bbd57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611be75780611bd1816121bb565b9150611be09050600a836122e8565b9150611bc1565b60008167ffffffffffffffff811115611c0257611c02611eb4565b6040519080825280601f01601f191660200182016040528015611c2c576020820181803683370190505b5090505b841561130357611c4160018361218c565b9150611c4e600a866122fc565b611c599060306121a3565b60f81b818381518110611c6e57611c6e61212e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611ca8600a866122e8565b9450611c30565b828054611cbb906120da565b90600052602060002090601f016020900481019282611cdd5760008555611d23565b82601f10611cf657805160ff1916838001178555611d23565b82800160010185558215611d23579182015b82811115611d23578251825591602001919060010190611d08565b50611d2f929150611d33565b5090565b5b80821115611d2f5760008155600101611d34565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461107a57600080fd5b600060208284031215611d8857600080fd5b813561151c81611d48565b60005b83811015611dae578181015183820152602001611d96565b838111156108d05750506000910152565b60008151808452611dd7816020860160208601611d93565b601f01601f19169290920160200192915050565b60208152600061151c6020830184611dbf565b600060208284031215611e1057600080fd5b5035919050565b80356001600160a01b0381168114611e2e57600080fd5b919050565b60008060408385031215611e4657600080fd5b611e4f83611e17565b946020939093013593505050565b600060208284031215611e6f57600080fd5b61151c82611e17565b600080600060608486031215611e8d57600080fd5b611e9684611e17565b9250611ea460208501611e17565b9150604084013590509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115611efe57611efe611eb4565b604051601f8501601f19908116603f01168101908282118183101715611f2657611f26611eb4565b81604052809350858152868686011115611f3f57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611f6b57600080fd5b813567ffffffffffffffff811115611f8257600080fd5b8201601f81018413611f9357600080fd5b61130384823560208401611ee3565b60008060408385031215611fb557600080fd5b611fbe83611e17565b915060208301358015158114611fd357600080fd5b809150509250929050565b6020808252825182820181905260009190848201906040850190845b8181101561201f5783516001600160a01b031683529284019291840191600101611ffa565b50909695505050505050565b6000806000806080858703121561204157600080fd5b61204a85611e17565b935061205860208601611e17565b925060408501359150606085013567ffffffffffffffff81111561207b57600080fd5b8501601f8101871361208c57600080fd5b61209b87823560208401611ee3565b91505092959194509250565b600080604083850312156120ba57600080fd5b6120c383611e17565b91506120d160208401611e17565b90509250929050565b600181811c908216806120ee57607f821691505b60208210811415612128577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008282101561219e5761219e61215d565b500390565b600082198211156121b6576121b661215d565b500190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156121ed576121ed61215d565b5060010190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561222c5761222c61215d565b500290565b60008351612243818460208801611d93565b835190830190612257818360208801611d93565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526122926080830184611dbf565b9695505050505050565b6000602082840312156122ae57600080fd5b815161151c81611d48565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826122f7576122f76122b9565b500490565b60008261230b5761230b6122b9565b50069056fea2646970667358221220697d033548bdf840efd00df59beeeb9b414695eda098685dfbc25654590b27bb64736f6c634300080c0033

Deployed Bytecode Sourcemap

2612:2163:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4619:153;;;;;;;;;;-1:-1:-1;4619:153:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:16;;604:22;586:41;;574:2;559:18;4619:153:0;;;;;;;;3435:100:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4994:221::-;;;;;;;;;;-1:-1:-1;4994:221:6;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1797:55:16;;;1779:74;;1767:2;1752:18;4994:221:6;1633:226:16;4517:411:6;;;;;;;;;;-1:-1:-1;4517:411:6;;;;;:::i;:::-;;:::i;:::-;;2991:49:0;;;;;;;;;;-1:-1:-1;2991:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;2661:25:16;;;2649:2;2634:18;2991:49:0;2515:177:16;2793:42:0;;;;;;;;;;;;2832:3;2793:42;;6046:339:6;;;;;;;;;;-1:-1:-1;6046:339:6;;;;;:::i;:::-;;:::i;4153:124:0:-;;;;;;;;;;;;;:::i;6456:185:6:-;;;;;;;;;;-1:-1:-1;6456:185:6;;;;;:::i;:::-;;:::i;3307:101:0:-;;;;;;;;;;-1:-1:-1;3307:101:0;;;;;:::i;:::-;;:::i;2659:236:6:-;;;;;;;;;;-1:-1:-1;2659:236:6;;;;;:::i;:::-;;:::i;2171:426::-;;;;;;;;;;-1:-1:-1;2171:426:6;;;;;:::i;:::-;;:::i;1714:103:13:-;;;;;;;;;;;;;:::i;2842:40:0:-;;;;;;;;;;;;2881:1;2842:40;;4052:93;;;;;;;;;;-1:-1:-1;4123:7:0;:14;4052:93;;1063:87:13;;;;;;;;;;-1:-1:-1;1136:6:13;;-1:-1:-1;;;;;1136:6:13;1063:87;;3247:121:6;;;;;;;;;;;;;:::i;3604:104::-;;;;;;;;;;;;;:::i;2940:42:0:-;;;;;;;;;;;;2972:10;2940:42;;3416:628;;;;;;:::i;:::-;;:::i;5287:155:6:-;;;;;;;;;;-1:-1:-1;5287:155:6;;;;;:::i;:::-;;:::i;2747:39:0:-;;;;;;;;;;;;2782:4;2747:39;;2889:43;;;;;;;;;;;;2930:2;2889:43;;3042:135:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;6712:328::-;;;;;;;;;;-1:-1:-1;6712:328:6;;;;;:::i;:::-;;:::i;4456:155:0:-;;;;;;;;;;-1:-1:-1;4456:155:0;;;;;:::i;:::-;;:::i;3049:67::-;;;;;;;;;;;;;:::i;5513:466:6:-;;;;;;;;;;-1:-1:-1;5513:466:6;;;;;:::i;:::-;;:::i;1972:201:13:-;;;;;;;;;;-1:-1:-1;1972:201:13;;;;;:::i;:::-;;:::i;4619:153:0:-;4704:4;4728:36;4752:11;4728:23;:36::i;:::-;4721:43;4619:153;-1:-1:-1;;4619:153:0:o;3435:100:6:-;3489:13;3522:5;3515:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3435:100;:::o;4994:221::-;5070:7;5098:16;5106:7;5098;:16::i;:::-;5090:73;;;;-1:-1:-1;;;5090:73:6;;6990:2:16;5090:73:6;;;6972:21:16;7029:2;7009:18;;;7002:30;7068:34;7048:18;;;7041:62;7139:14;7119:18;;;7112:42;7171:19;;5090:73:6;;;;;;;;;-1:-1:-1;5183:24:6;;;;:15;:24;;;;;;-1:-1:-1;;;;;5183:24:6;;4994:221::o;4517:411::-;4598:13;4614:23;4629:7;4614:14;:23::i;:::-;4598:39;;4662:5;-1:-1:-1;;;;;4656:11:6;:2;-1:-1:-1;;;;;4656:11:6;;;4648:57;;;;-1:-1:-1;;;4648:57:6;;7403:2:16;4648:57:6;;;7385:21:16;7442:2;7422:18;;;7415:30;7481:34;7461:18;;;7454:62;7552:3;7532:18;;;7525:31;7573:19;;4648:57:6;7201:397:16;4648:57:6;736:10:3;-1:-1:-1;;;;;4740:21:6;;;;:62;;-1:-1:-1;4765:37:6;4782:5;736:10:3;5513:466:6;:::i;4765:37::-;4718:168;;;;-1:-1:-1;;;4718:168:6;;7805:2:16;4718:168:6;;;7787:21:16;7844:2;7824:18;;;7817:30;7883:34;7863:18;;;7856:62;7954:26;7934:18;;;7927:54;7998:19;;4718:168:6;7603:420:16;4718:168:6;4899:21;4908:2;4912:7;4899:8;:21::i;:::-;4587:341;4517:411;;:::o;6046:339::-;6241:41;736:10:3;6274:7:6;6241:18;:41::i;:::-;6233:103;;;;-1:-1:-1;;;6233:103:6;;8230:2:16;6233:103:6;;;8212:21:16;8269:2;8249:18;;;8242:30;8308:34;8288:18;;;8281:62;8379:19;8359:18;;;8352:47;8416:19;;6233:103:6;8028:413:16;6233:103:6;6349:28;6359:4;6365:2;6369:7;6349:9;:28::i;4153:124:0:-;1136:6:13;;-1:-1:-1;;;;;1136:6:13;736:10:3;1283:23:13;1275:68;;;;-1:-1:-1;;;1275:68:13;;8648:2:16;1275:68:13;;;8630:21:16;;;8667:18;;;8660:30;8726:34;8706:18;;;8699:62;8778:18;;1275:68:13;8446:356:16;1275:68:13;4220:49:0::1;::::0;4202:12:::1;::::0;4220:10:::1;::::0;4243:21:::1;::::0;4202:12;4220:49;4202:12;4220:49;4243:21;4220:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;4153:124:0:o;6456:185:6:-;6594:39;6611:4;6617:2;6621:7;6594:39;;;;;;;;;;;;:16;:39::i;3307:101:0:-;1136:6:13;;-1:-1:-1;;;;;1136:6:13;736:10:3;1283:23:13;1275:68;;;;-1:-1:-1;;;1275:68:13;;8648:2:16;1275:68:13;;;8630:21:16;;;8667:18;;;8660:30;8726:34;8706:18;;;8699:62;8778:18;;1275:68:13;8446:356:16;1275:68:13;3378:22:0;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;3307:101:::0;:::o;2659:236:6:-;2731:7;2759:16;2767:7;2759;:16::i;:::-;2751:70;;;;-1:-1:-1;;;2751:70:6;;9219:2:16;2751:70:6;;;9201:21:16;9258:2;9238:18;;;9231:30;9297:34;9277:18;;;9270:62;9368:11;9348:18;;;9341:39;9397:19;;2751:70:6;9017:405:16;2751:70:6;2832:13;2848:7;2856;2848:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;2848:16:6;;2659:236;-1:-1:-1;;;2659:236:6:o;2171:426::-;2243:15;-1:-1:-1;;;;;2279:19:6;;2271:74;;;;-1:-1:-1;;;2271:74:6;;9818:2:16;2271:74:6;;;9800:21:16;9857:2;9837:18;;;9830:30;9896:34;9876:18;;;9869:62;9967:12;9947:18;;;9940:40;9997:19;;2271:74:6;9616:406:16;2271:74:6;2400:7;:14;2383;2429:148;2453:6;2449:1;:10;2429:148;;;2503:5;-1:-1:-1;;;;;2489:19:6;:7;2497:1;2489:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;2489:10:6;:19;2485:77;;;2533:9;;;;;2485:77;2461:3;;2429:148;;;;2358:230;2171:426;;;:::o;1714:103:13:-;1136:6;;-1:-1:-1;;;;;1136:6:13;736:10:3;1283:23:13;1275:68;;;;-1:-1:-1;;;1275:68:13;;8648:2:16;1275:68:13;;;8630:21:16;;;8667:18;;;8660:30;8726:34;8706:18;;;8699:62;8778:18;;1275:68:13;8446:356:16;1275:68:13;1779:30:::1;1806:1;1779:18;:30::i;:::-;1714:103::o:0;3247:121:6:-;3317:7;:14;3290:7;;3317:43;;-1:-1:-1;3359:1:6;;3247:121::o;3317:43::-;3338:7;:14;:18;;3355:1;;3338:18;:::i;:::-;3310:50;;3247:121;:::o;3604:104::-;3660:13;3693:7;3686:14;;;;;:::i;3416:628:0:-;3480:7;:14;2782:4;;3480:23;;3497:6;;3480:23;:::i;:::-;:35;;3472:68;;;;-1:-1:-1;;;3472:68:0;;10681:2:16;3472:68:0;;;10663:21:16;10720:2;10700:18;;;10693:30;10759:22;10739:18;;;10732:50;10799:18;;3472:68:0;10479:344:16;3472:68:0;3557:7;:14;2832:3;-1:-1:-1;3553:382:0;;;3624:17;2972:10;3634:6;3624:9;:17::i;:::-;3611:9;:30;;3603:68;;;;-1:-1:-1;;;3603:68:0;;11030:2:16;3603:68:0;;;11012:21:16;11069:2;11049:18;;;11042:30;11108:27;11088:18;;;11081:55;11153:18;;3603:68:0;10828:349:16;3603:68:0;2930:2;3694:6;:24;;3686:59;;;;-1:-1:-1;;;3686:59:0;;11384:2:16;3686:59:0;;;11366:21:16;11423:2;11403:18;;;11396:30;11462:24;11442:18;;;11435:52;11504:18;;3686:59:0;11182:346:16;3686:59:0;3553:382;;;736:10:3;3786:28:0;;;;:14;:28;;;;;;2881:1;;3786:37;;3817:6;;3786:37;:::i;:::-;:53;;3778:92;;;;-1:-1:-1;;;3778:92:0;;11735:2:16;3778:92:0;;;11717:21:16;11774:2;11754:18;;;11747:30;11813:28;11793:18;;;11786:56;11859:18;;3778:92:0;11533:350:16;3778:92:0;736:10:3;3885:28:0;;;;:14;:28;;;;;:38;;3917:6;;3885:28;:38;;3917:6;;3885:38;:::i;:::-;;;;-1:-1:-1;;3553:382:0;3959:9;3955:82;3978:6;3974:1;:10;3955:82;;;4006:19;736:10:3;4006:5:0;:19::i;:::-;-1:-1:-1;3986:3:0;;;;:::i;:::-;;;;3955:82;;5287:155:6;5382:52;736:10:3;5415:8:6;5425;5382:18;:52::i;3042:135::-;3081:16;3110:24;3137:7;3110:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3110:34:6;;;;;;;;;;;;;;;;-1:-1:-1;3110:34:6;;3042:135;-1:-1:-1;;;;;;3042:135:6:o;6712:328::-;6887:41;736:10:3;6920:7:6;6887:18;:41::i;:::-;6879:103;;;;-1:-1:-1;;;6879:103:6;;8230:2:16;6879:103:6;;;8212:21:16;8269:2;8249:18;;;8242:30;8308:34;8288:18;;;8281:62;8379:19;8359:18;;;8352:47;8416:19;;6879:103:6;8028:413:16;6879:103:6;6993:39;7007:4;7013:2;7017:7;7026:5;6993:13;:39::i;4456:155:0:-;4547:13;4580:23;4595:7;4580:14;:23::i;3049:67::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5513:466:6:-;5610:4;5699:42;-1:-1:-1;;;;;5687:54:6;;;;:112;;-1:-1:-1;5757:42:6;-1:-1:-1;;;;;5745:54:6;;;5687:112;:170;;;-1:-1:-1;5815:42:6;-1:-1:-1;;;;;5803:54:6;;;5687:170;5683:289;;;-1:-1:-1;5881:4:6;5874:11;;5683:289;-1:-1:-1;;;;;;5925:25:6;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;5513:466::o;1972:201:13:-;1136:6;;-1:-1:-1;;;;;1136:6:13;736:10:3;1283:23:13;1275:68;;;;-1:-1:-1;;;1275:68:13;;8648:2:16;1275:68:13;;;8630:21:16;;;8667:18;;;8660:30;8726:34;8706:18;;;8699:62;8778:18;;1275:68:13;8446:356:16;1275:68:13;-1:-1:-1;;;;;2061:22:13;::::1;2053:73;;;::::0;-1:-1:-1;;;2053:73:13;;12290:2:16;2053:73:13::1;::::0;::::1;12272:21:16::0;12329:2;12309:18;;;12302:30;12368:34;12348:18;;;12341:62;12439:8;12419:18;;;12412:36;12465:19;;2053:73:13::1;12088:402:16::0;2053:73:13::1;2137:28;2156:8;2137:18;:28::i;:::-;1972:201:::0;:::o;1802:305:6:-;1904:4;1941:40;;;1956:25;1941:40;;:105;;-1:-1:-1;1998:48:6;;;2013:33;1998:48;1941:105;:158;;;-1:-1:-1;978:25:5;963:40;;;;2063:36:6;854:157:5;8550:155:6;8649:7;:14;8615:4;;8639:24;;:58;;;;;8695:1;-1:-1:-1;;;;;8667:30:6;:7;8675;8667:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;8667:16:6;:30;;8632:65;8550:155;-1:-1:-1;;8550:155:6:o;11865:174::-;11940:24;;;;:15;:24;;;;;:29;;;;-1:-1:-1;;;;;11940:29:6;;;;;;;;:24;;11994:23;11940:24;11994:14;:23::i;:::-;-1:-1:-1;;;;;11985:46:6;;;;;;;;;;;11865:174;;:::o;8872:348::-;8965:4;8990:16;8998:7;8990;:16::i;:::-;8982:73;;;;-1:-1:-1;;;8982:73:6;;12697:2:16;8982:73:6;;;12679:21:16;12736:2;12716:18;;;12709:30;12775:34;12755:18;;;12748:62;12846:14;12826:18;;;12819:42;12878:19;;8982:73:6;12495:408:16;8982:73:6;9066:13;9082:23;9097:7;9082:14;:23::i;:::-;9066:39;;9135:5;-1:-1:-1;;;;;9124:16:6;:7;-1:-1:-1;;;;;9124:16:6;;:51;;;;9168:7;-1:-1:-1;;;;;9144:31:6;:20;9156:7;9144:11;:20::i;:::-;-1:-1:-1;;;;;9144:31:6;;9124:51;:87;;;;9179:32;9196:5;9203:7;9179:16;:32::i;:::-;9116:96;8872:348;-1:-1:-1;;;;8872:348:6:o;11229:518::-;11388:4;-1:-1:-1;;;;;11361:31:6;:23;11376:7;11361:14;:23::i;:::-;-1:-1:-1;;;;;11361:31:6;;11353:85;;;;-1:-1:-1;;;11353:85:6;;13110:2:16;11353:85:6;;;13092:21:16;13149:2;13129:18;;;13122:30;13188:34;13168:18;;;13161:62;13259:11;13239:18;;;13232:39;13288:19;;11353:85:6;12908:405:16;11353:85:6;-1:-1:-1;;;;;11457:16:6;;11449:65;;;;-1:-1:-1;;;11449:65:6;;13520:2:16;11449:65:6;;;13502:21:16;13559:2;13539:18;;;13532:30;13598:34;13578:18;;;13571:62;13669:6;13649:18;;;13642:34;13693:19;;11449:65:6;13318:400:16;11449:65:6;11631:29;11648:1;11652:7;11631:8;:29::i;:::-;11692:2;11673:7;11681;11673:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;;;-1:-1:-1;;;;;11673:21:6;;;;;;11712:27;;11731:7;;11712:27;;;;;;;;;;11673:16;11712:27;11229:518;;;:::o;2333:191:13:-;2426:6;;;-1:-1:-1;;;;;2443:17:13;;;;;;;;;;;2476:40;;2426:6;;;2443:17;2426:6;;2476:40;;2407:16;;2476:40;2396:128;2333:191;:::o;3571:98:14:-;3629:7;3656:5;3660:1;3656;:5;:::i;:::-;3649:12;3571:98;-1:-1:-1;;;3571:98:14:o;10567:323:6:-;10620:15;-1:-1:-1;;;;;10656:16:6;;10648:61;;;;-1:-1:-1;;;10648:61:6;;14158:2:16;10648:61:6;;;14140:21:16;;;14177:18;;;14170:30;14236:34;14216:18;;;14209:62;14288:18;;10648:61:6;13956:356:16;10648:61:6;-1:-1:-1;10730:7:6;:14;10815:7;:16;;;;;;;-1:-1:-1;10815:16:6;;;;;;;;;-1:-1:-1;;;;;10815:16:6;;;;;;;;10849:33;;10874:7;;-1:-1:-1;10849:33:6;;-1:-1:-1;;10849:33:6;10567:323;;;:::o;12181:315::-;12336:8;-1:-1:-1;;;;;12327:17:6;:5;-1:-1:-1;;;;;12327:17:6;;;12319:55;;;;-1:-1:-1;;;12319:55:6;;14519:2:16;12319:55:6;;;14501:21:16;14558:2;14538:18;;;14531:30;14597:27;14577:18;;;14570:55;14642:18;;12319:55:6;14317:349:16;12319:55:6;-1:-1:-1;;;;;12385:25:6;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;;;;;;;;;;;;12447:41;;586::16;;;12447::6;;559:18:16;12447:41:6;;;;;;;12181:315;;;:::o;7922:::-;8079:28;8089:4;8095:2;8099:7;8079:9;:28::i;:::-;8126:48;8149:4;8155:2;8159:7;8168:5;8126:22;:48::i;:::-;8118:111;;;;-1:-1:-1;;;8118:111:6;;14873:2:16;8118:111:6;;;14855:21:16;14912:2;14892:18;;;14885:30;14951:34;14931:18;;;14924:62;15022:20;15002:18;;;14995:48;15060:19;;8118:111:6;14671:414:16;485:679:7;558:13;592:16;600:7;592;:16::i;:::-;584:78;;;;-1:-1:-1;;;584:78:7;;15292:2:16;584:78:7;;;15274:21:16;15331:2;15311:18;;;15304:30;15370:34;15350:18;;;15343:62;15441:19;15421:18;;;15414:47;15478:19;;584:78:7;15090:413:16;584:78:7;675:23;701:19;;;:10;:19;;;;;675:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;731:18;752:10;:8;:10::i;:::-;731:31;;844:4;838:18;860:1;838:23;834:72;;;-1:-1:-1;885:9:7;485:679;-1:-1:-1;;485:679:7:o;834:72::-;1010:23;;:27;1006:108;;1085:4;1091:9;1068:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1054:48;;;;485:679;;;:::o;1006:108::-;1133:23;1148:7;1133:14;:23::i;13061:800:6:-;13217:4;-1:-1:-1;;;;;13238:13:6;;1120:20:1;1168:8;13234:620:6;;13274:72;;;;;-1:-1:-1;;;;;13274:36:6;;;;;:72;;736:10:3;;13325:4:6;;13331:7;;13340:5;;13274:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13274:72:6;;;;;;;;-1:-1:-1;;13274:72:6;;;;;;;;;;;;:::i;:::-;;;13270:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13516:13:6;;13512:272;;13559:60;;-1:-1:-1;;;13559:60:6;;14873:2:16;13559:60:6;;;14855:21:16;14912:2;14892:18;;;14885:30;14951:34;14931:18;;;14924:62;15022:20;15002:18;;;14995:48;15060:19;;13559:60:6;14671:414:16;13512:272:6;13734:6;13728:13;13719:6;13715:2;13711:15;13704:38;13270:529;13397:51;;13407:41;13397:51;;-1:-1:-1;13390:58:6;;13234:620;-1:-1:-1;13838:4:6;13061:800;;;;;;:::o;3186:113:0:-;3246:13;3279:12;3272:19;;;;;:::i;3779:334:6:-;3852:13;3886:16;3894:7;3886;:16::i;:::-;3878:76;;;;-1:-1:-1;;;3878:76:6;;16956:2:16;3878:76:6;;;16938:21:16;16995:2;16975:18;;;16968:30;17034:34;17014:18;;;17007:62;17105:17;17085:18;;;17078:45;17140:19;;3878:76:6;16754:411:16;3878:76:6;3967:21;3991:10;:8;:10::i;:::-;3967:34;;4043:1;4025:7;4019:21;:25;:86;;;;;;;;;;;;;;;;;4071:7;4080:18;:7;:16;:18::i;:::-;4054:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4012:93;3779:334;-1:-1:-1;;;3779:334:6:o;342:723:15:-;398:13;619:10;615:53;;-1:-1:-1;;646:10:15;;;;;;;;;;;;;;;;;;342:723::o;615:53::-;693:5;678:12;734:78;741:9;;734:78;;767:8;;;;:::i;:::-;;-1:-1:-1;790:10:15;;-1:-1:-1;798:2:15;790:10;;:::i;:::-;;;734:78;;;822:19;854:6;844:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;844:17:15;;822:39;;872:154;879:10;;872:154;;906:11;916:1;906:11;;:::i;:::-;;-1:-1:-1;975:10:15;983:2;975:5;:10;:::i;:::-;962:24;;:2;:24;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;1003:11:15;1012:2;1003:11;;:::i;:::-;;;872:154;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:177:16;99:66;92:5;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:258::-;710:1;720:113;734:6;731:1;728:13;720:113;;;810:11;;;804:18;791:11;;;784:39;756:2;749:10;720:113;;;851:6;848:1;845:13;842:48;;;-1:-1:-1;;886:1:16;868:16;;861:27;638:258::o;901:317::-;943:3;981:5;975:12;1008:6;1003:3;996:19;1024:63;1080:6;1073:4;1068:3;1064:14;1057:4;1050:5;1046:16;1024:63;:::i;:::-;1132:2;1120:15;-1:-1:-1;;1116:88:16;1107:98;;;;1207:4;1103:109;;901:317;-1:-1:-1;;901:317:16:o;1223:220::-;1372:2;1361:9;1354:21;1335:4;1392:45;1433:2;1422:9;1418:18;1410:6;1392:45;:::i;1448:180::-;1507:6;1560:2;1548:9;1539:7;1535:23;1531:32;1528:52;;;1576:1;1573;1566:12;1528:52;-1:-1:-1;1599:23:16;;1448:180;-1:-1:-1;1448:180:16:o;1864:196::-;1932:20;;-1:-1:-1;;;;;1981:54:16;;1971:65;;1961:93;;2050:1;2047;2040:12;1961:93;1864:196;;;:::o;2065:254::-;2133:6;2141;2194:2;2182:9;2173:7;2169:23;2165:32;2162:52;;;2210:1;2207;2200:12;2162:52;2233:29;2252:9;2233:29;:::i;:::-;2223:39;2309:2;2294:18;;;;2281:32;;-1:-1:-1;;;2065:254:16:o;2324:186::-;2383:6;2436:2;2424:9;2415:7;2411:23;2407:32;2404:52;;;2452:1;2449;2442:12;2404:52;2475:29;2494:9;2475:29;:::i;2697:328::-;2774:6;2782;2790;2843:2;2831:9;2822:7;2818:23;2814:32;2811:52;;;2859:1;2856;2849:12;2811:52;2882:29;2901:9;2882:29;:::i;:::-;2872:39;;2930:38;2964:2;2953:9;2949:18;2930:38;:::i;:::-;2920:48;;3015:2;3004:9;3000:18;2987:32;2977:42;;2697:328;;;;;:::o;3030:184::-;3082:77;3079:1;3072:88;3179:4;3176:1;3169:15;3203:4;3200:1;3193:15;3219:691;3284:5;3314:18;3355:2;3347:6;3344:14;3341:40;;;3361:18;;:::i;:::-;3495:2;3489:9;3561:2;3549:15;;-1:-1:-1;;3545:24:16;;;3571:2;3541:33;3537:42;3525:55;;;3595:18;;;3615:22;;;3592:46;3589:72;;;3641:18;;:::i;:::-;3681:10;3677:2;3670:22;3710:6;3701:15;;3740:6;3732;3725:22;3780:3;3771:6;3766:3;3762:16;3759:25;3756:45;;;3797:1;3794;3787:12;3756:45;3847:6;3842:3;3835:4;3827:6;3823:17;3810:44;3902:1;3895:4;3886:6;3878;3874:19;3870:30;3863:41;;;;3219:691;;;;;:::o;3915:451::-;3984:6;4037:2;4025:9;4016:7;4012:23;4008:32;4005:52;;;4053:1;4050;4043:12;4005:52;4093:9;4080:23;4126:18;4118:6;4115:30;4112:50;;;4158:1;4155;4148:12;4112:50;4181:22;;4234:4;4226:13;;4222:27;-1:-1:-1;4212:55:16;;4263:1;4260;4253:12;4212:55;4286:74;4352:7;4347:2;4334:16;4329:2;4325;4321:11;4286:74;:::i;4371:347::-;4436:6;4444;4497:2;4485:9;4476:7;4472:23;4468:32;4465:52;;;4513:1;4510;4503:12;4465:52;4536:29;4555:9;4536:29;:::i;:::-;4526:39;;4615:2;4604:9;4600:18;4587:32;4662:5;4655:13;4648:21;4641:5;4638:32;4628:60;;4684:1;4681;4674:12;4628:60;4707:5;4697:15;;;4371:347;;;;;:::o;4723:681::-;4894:2;4946:21;;;5016:13;;4919:18;;;5038:22;;;4865:4;;4894:2;5117:15;;;;5091:2;5076:18;;;4865:4;5160:218;5174:6;5171:1;5168:13;5160:218;;;5239:13;;-1:-1:-1;;;;;5235:62:16;5223:75;;5353:15;;;;5318:12;;;;5196:1;5189:9;5160:218;;;-1:-1:-1;5395:3:16;;4723:681;-1:-1:-1;;;;;;4723:681:16:o;5409:667::-;5504:6;5512;5520;5528;5581:3;5569:9;5560:7;5556:23;5552:33;5549:53;;;5598:1;5595;5588:12;5549:53;5621:29;5640:9;5621:29;:::i;:::-;5611:39;;5669:38;5703:2;5692:9;5688:18;5669:38;:::i;:::-;5659:48;;5754:2;5743:9;5739:18;5726:32;5716:42;;5809:2;5798:9;5794:18;5781:32;5836:18;5828:6;5825:30;5822:50;;;5868:1;5865;5858:12;5822:50;5891:22;;5944:4;5936:13;;5932:27;-1:-1:-1;5922:55:16;;5973:1;5970;5963:12;5922:55;5996:74;6062:7;6057:2;6044:16;6039:2;6035;6031:11;5996:74;:::i;:::-;5986:84;;;5409:667;;;;;;;:::o;6081:260::-;6149:6;6157;6210:2;6198:9;6189:7;6185:23;6181:32;6178:52;;;6226:1;6223;6216:12;6178:52;6249:29;6268:9;6249:29;:::i;:::-;6239:39;;6297:38;6331:2;6320:9;6316:18;6297:38;:::i;:::-;6287:48;;6081:260;;;;;:::o;6346:437::-;6425:1;6421:12;;;;6468;;;6489:61;;6543:4;6535:6;6531:17;6521:27;;6489:61;6596:2;6588:6;6585:14;6565:18;6562:38;6559:218;;;6633:77;6630:1;6623:88;6734:4;6731:1;6724:15;6762:4;6759:1;6752:15;6559:218;;6346:437;;;:::o;9427:184::-;9479:77;9476:1;9469:88;9576:4;9573:1;9566:15;9600:4;9597:1;9590:15;10027:184;10079:77;10076:1;10069:88;10176:4;10173:1;10166:15;10200:4;10197:1;10190:15;10216:125;10256:4;10284:1;10281;10278:8;10275:34;;;10289:18;;:::i;:::-;-1:-1:-1;10326:9:16;;10216:125::o;10346:128::-;10386:3;10417:1;10413:6;10410:1;10407:13;10404:39;;;10423:18;;:::i;:::-;-1:-1:-1;10459:9:16;;10346:128::o;11888:195::-;11927:3;11958:66;11951:5;11948:77;11945:103;;;12028:18;;:::i;:::-;-1:-1:-1;12075:1:16;12064:13;;11888:195::o;13723:228::-;13763:7;13889:1;13821:66;13817:74;13814:1;13811:81;13806:1;13799:9;13792:17;13788:105;13785:131;;;13896:18;;:::i;:::-;-1:-1:-1;13936:9:16;;13723:228::o;15508:470::-;15687:3;15725:6;15719:13;15741:53;15787:6;15782:3;15775:4;15767:6;15763:17;15741:53;:::i;:::-;15857:13;;15816:16;;;;15879:57;15857:13;15816:16;15913:4;15901:17;;15879:57;:::i;:::-;15952:20;;15508:470;-1:-1:-1;;;;15508:470:16:o;15983:512::-;16177:4;-1:-1:-1;;;;;16287:2:16;16279:6;16275:15;16264:9;16257:34;16339:2;16331:6;16327:15;16322:2;16311:9;16307:18;16300:43;;16379:6;16374:2;16363:9;16359:18;16352:34;16422:3;16417:2;16406:9;16402:18;16395:31;16443:46;16484:3;16473:9;16469:19;16461:6;16443:46;:::i;:::-;16435:54;15983:512;-1:-1:-1;;;;;;15983:512:16:o;16500:249::-;16569:6;16622:2;16610:9;16601:7;16597:23;16593:32;16590:52;;;16638:1;16635;16628:12;16590:52;16670:9;16664:16;16689:30;16713:5;16689:30;:::i;17170:184::-;17222:77;17219:1;17212:88;17319:4;17316:1;17309:15;17343:4;17340:1;17333:15;17359:120;17399:1;17425;17415:35;;17430:18;;:::i;:::-;-1:-1:-1;17464:9:16;;17359:120::o;17484:112::-;17516:1;17542;17532:35;;17547:18;;:::i;:::-;-1:-1:-1;17581:9:16;;17484:112::o

Swarm Source

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