ETH Price: $2,194.95 (-0.65%)

Token

W3 ART ACC3SS PASS (W3ART)
 

Overview

Max Total Supply

216 W3ART

Holders

74

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 W3ART
0xa9385baecaef6d93ab1f991263c262dcfd541713
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:
W3artPass

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 16 of 16: weart.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.4;

import { ERC721A } from "./ERC721A.sol";
import { ERC721ALowCap } from "./ERC721ALowCap.sol";
import { Ownable } from "./Ownable.sol";
import { ECDSA } from "./ECDSA.sol";
import { Strings } from "./Strings.sol";
import { PaymentSplitter } from "./PaymentSplitter.sol";

contract W3artPass is Ownable, ERC721A, ERC721ALowCap, PaymentSplitter {
    // To concatenate the URL of an NFT
    using Strings for uint;
    // To verify mint signatures
    using ECDSA for bytes32;

    enum SaleDay { CLOSED, PUBLIC }

    // Used to disallow contracts from sending multiple mint transactions in one tx
    modifier directOnly {
        require(msg.sender == tx.origin);
        _;
    }

    // Constants

    uint public cost = 0.05 ether;
    uint public maxMintSupply = 3000;
    uint public FreeMintMaxSupply = 1500; // Free mint for Genesis + for team + for giveaways
    uint public publicMaxSupply = maxMintSupply - FreeMintMaxSupply;  // Used for public and whitelist mints
    uint constant public maxTxMintAmount = 3;

    address constant signer = 0x6a6b0c3D0c9123777eA2bF2e6344071a18da3c42;

    // Storage Variables

    uint public FreeMintSupplyMinted = 0;

    string public baseURI;

    bool public isFreeMintActive;

    /*
     * Values go in the order they are defined in the Enum
     * 0: CLOSED
     * 1: PUBLIC
     */
    SaleDay public saleDay;


    constructor(string memory _theBaseURI, address[] memory payees, uint[] memory shares)
        Ownable()
        ERC721A(unicode"W3 ART ACC3SS PASS", "W3ART")
        PaymentSplitter(payees, shares)
    {
        baseURI = _theBaseURI;
    }

    // Minting

    function freeMint(address to, uint32 amountToMint, uint maxMintsFree, uint8 v, bytes32 r, bytes32 s) external directOnly {
        require(isFreeMintActive, "Free mint is not active");

        // Mint amount limits
        require(amountToMint > 0 && _addToMintFree(msg.sender, amountToMint) <= maxMintsFree, "Sorry, invalid amount");
        require((FreeMintSupplyMinted += amountToMint) <= FreeMintMaxSupply, "Sorry, not enough NFTs remaining to mint");

        // Signature verification
        require(_verifySignature(keccak256(abi.encodePacked("w3free", msg.sender, maxMintsFree)), v, r, s), "Invalid sig");

        // Split mints in batches of `maxTxMintAmount` to avoid having large gas-consuming loops when transfering or selling tokens
        uint mintedSoFar = 0;
        do {
            uint batchAmount = min(amountToMint - mintedSoFar, maxTxMintAmount);
            mintedSoFar += batchAmount;
            _mint(to, batchAmount);
        } while(mintedSoFar < amountToMint);
    }

    function ownerMint(address to, uint32 amountToMint) external onlyOwner {

        // Mint amount limits
        require(amountToMint > 0,"Sorry, invalid amount");
        require((FreeMintSupplyMinted += amountToMint) <= FreeMintMaxSupply, "Sorry, not enough NFTs remaining to mint");

        // Split mints in batches of `maxTxMintAmount` to avoid having large gas-consuming loops when transfering or selling tokens
        uint mintedSoFar = 0;
        do {
            uint batchAmount = min(amountToMint - mintedSoFar, maxTxMintAmount);
            mintedSoFar += batchAmount;
            _mint(to, batchAmount);
        } while(mintedSoFar < amountToMint);
    }

    function publicMint(uint amountToMint) external payable directOnly {
        require(saleDay == SaleDay.PUBLIC, "Sorry, public sale is not active");

        // Mint amount limits
        require(_totalMinted() + amountToMint <= publicMaxSupply + FreeMintSupplyMinted, "Sorry, not enough NFTs remaining to mint");
        require(amountToMint > 0 && amountToMint <= maxTxMintAmount, "Sorry, invalid mint amount");

        // ETH sent verification
        require(msg.value >= cost * amountToMint);

        _mint(msg.sender, amountToMint);
    }

    // View Only

    function tokenURI(uint _nftId) public view override returns (string memory) {
        require(_exists(_nftId), "This NFT doesn't exist");

        return string(abi.encodePacked(baseURI, _nftId.toString(), ".json"));
    }

    // Only Owner Functions

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

    function setFreeMintMaxSupply(uint _freeMintMaxSupply) external onlyOwner {
        FreeMintMaxSupply = _freeMintMaxSupply;
    }

    function setMintDay(SaleDay day) external onlyOwner {
        saleDay = day;
    }

    function setMintPrice(uint price) external onlyOwner {
        cost = price;
    }

    function changeMaxSupply(uint supply) external onlyOwner {
        maxMintSupply = supply;
    }

    function toggleFreeMintStatus() external onlyOwner {
        isFreeMintActive = !isFreeMintActive;
    }

    // Internal utils

    function _verifySignature(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns(bool) {
        return hash.toEthSignedMessageHash().recover(v, r, s) == signer;
    }

    function min(uint a,uint b) internal pure returns(uint) {
        return a < b ? a : b;
    }
}

File 1 of 16: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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 2 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 3 of 16: ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (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 = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 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 4 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 5 of 16: ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs
// Version: 3.2.0

pragma solidity ^0.8.4;

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

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint32 numberBurned;

        uint32 mintedDay1;
        uint32 mintedDay2;
        uint32 mintedFree;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function numberMinted(address owner) public view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Mint data handlers
     */
    function getMintData(address owner) external view returns (uint mintedDay1, uint mintedDay2, uint mintedFree) {
        AddressData memory addressData = _addressData[owner];
        return (addressData.mintedDay1, addressData.mintedDay2, addressData.mintedFree);
    }

    function _addToMintDay1(address owner, uint32 amount) internal returns(uint32 newValue) {
        return (_addressData[owner].mintedDay1 += amount);
    }

    function _addToMintDay2(address owner, uint32 amount) internal returns(uint32 newValue) {
        return (_addressData[owner].mintedDay2 += amount);
    }

    function _addToMintFree(address owner, uint32 amount) internal returns(uint32 newValue) {
       return  (_addressData[owner].mintedFree += amount);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex != end);
            _currentIndex = updatedIndex;
        }
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }
}

File 6 of 16: ERC721ALowCap.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './ERC721A.sol';

/**
 * @title ERC721A Low Cap
 * @dev ERC721A Helper functions for Low Cap (<= 10,000) totalSupply.
 */
abstract contract ERC721ALowCap is ERC721A {
    /**
     * @dev Returns the tokenIds of the address. O(totalSupply) in complexity.
     */
    function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        uint256 holdingAmount = balanceOf(owner);
        uint256 currSupply = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        uint256[] memory list = new uint256[](holdingAmount);

        unchecked {
            for (uint256 i = _startTokenId(); i < currSupply; ++i) {
                TokenOwnership memory ownership = _ownerships[i];

                if (ownership.burned) {
                    continue;
                }

                // Find out who owns this sequence
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }

                // Append tokens the last found owner owns in the sequence
                if (currOwnershipAddr == owner) {
                    list[tokenIdsIdx++] = i;
                }

                // All tokens have been found, we don't need to keep searching
                if (tokenIdsIdx == holdingAmount) {
                    break;
                }
            }
        }

        return list;
    }
}

File 7 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 8 of 16: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

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

pragma solidity ^0.8.0;

import "./IERC165.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 10 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 11 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 12 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 13 of 16: PaymentSplitter.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;

import "./SafeERC20.sol";
import "./Address.sol";
import "./Context.sol";

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + totalReleased();
        uint256 payment = _pendingPayment(account, totalReceived, released(account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] += payment;
        _totalReleased += payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their
     * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20
     * contract.
     */
    function release(IERC20 token, address account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
        uint256 payment = _pendingPayment(account, totalReceived, released(token, account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _erc20Released[token][account] += payment;
        _erc20TotalReleased[token] += payment;

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, account, payment);
    }

    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

File 14 of 16: SafeERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 15 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

API
[{"inputs":[{"internalType":"string","name":"_theBaseURI","type":"string"},{"internalType":"address[]","name":"payees","type":"address[]"},{"internalType":"uint256[]","name":"shares","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","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":[],"name":"FreeMintMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FreeMintSupplyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"changeMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint32","name":"amountToMint","type":"uint32"},{"internalType":"uint256","name":"maxMintsFree","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getMintData","outputs":[{"internalType":"uint256","name":"mintedDay1","type":"uint256"},{"internalType":"uint256","name":"mintedDay2","type":"uint256"},{"internalType":"uint256","name":"mintedFree","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFreeMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint32","name":"amountToMint","type":"uint32"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountToMint","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","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":[],"name":"saleDay","outputs":[{"internalType":"enum W3artPass.SaleDay","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeMintMaxSupply","type":"uint256"}],"name":"setFreeMintMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum W3artPass.SaleDay","name":"day","type":"uint8"}],"name":"setMintDay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"toggleFreeMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405266b1a2bc2ec50000601055610bb860118190556105dc60128190556200002a91620007b9565b60135560006014553480156200003f57600080fd5b506040516200396738038062003967833981016040819052620000629162000639565b81816040518060400160405280601281526020017157332041525420414343335353205041535360701b8152506040518060400160405280600581526020016415ccd0549560da1b815250620000c7620000c16200024c60201b60201c565b62000250565b8151620000dc9060039060208501906200048e565b508051620000f29060049060208401906200048e565b5060018055505080518251146200016b5760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620001be5760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000162565b60005b82518110156200022a5762000215838281518110620001e457620001e462000844565b602002602001015183838151811062000201576200020162000844565b6020026020010151620002a060201b60201c565b80620002218162000810565b915050620001c1565b5050835162000242915060159060208601906200048e565b5050505062000870565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200030d5760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000162565b600081116200035f5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000162565b6001600160a01b0382166000908152600b602052604090205415620003db5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b606482015260840162000162565b600d8054600181019091557fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50180546001600160a01b0319166001600160a01b0384169081179091556000908152600b60205260409020819055600954620004459082906200079e565b600955604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b8280546200049c90620007d3565b90600052602060002090601f016020900481019282620004c057600085556200050b565b82601f10620004db57805160ff19168380011785556200050b565b828001600101855582156200050b579182015b828111156200050b578251825591602001919060010190620004ee565b50620005199291506200051d565b5090565b5b808211156200051957600081556001016200051e565b600082601f8301126200054657600080fd5b815160206200055f620005598362000778565b62000745565b80838252828201915082860187848660051b89010111156200058057600080fd5b6000805b86811015620005b75782516001600160a01b0381168114620005a4578283fd5b8552938501939185019160010162000584565b509198975050505050505050565b600082601f830112620005d757600080fd5b81516020620005ea620005598362000778565b80838252828201915082860187848660051b89010111156200060b57600080fd5b60005b858110156200062c578151845292840192908401906001016200060e565b5090979650505050505050565b6000806000606084860312156200064f57600080fd5b83516001600160401b03808211156200066757600080fd5b818601915086601f8301126200067c57600080fd5b8151818111156200069157620006916200085a565b6020620006a7601f8301601f1916820162000745565b8281528982848701011115620006bc57600080fd5b60005b83811015620006dc578581018301518282018401528201620006bf565b83811115620006ee5760008385840101525b5090880151909650925050808211156200070757600080fd5b620007158783880162000534565b935060408601519150808211156200072c57600080fd5b506200073b86828701620005c5565b9150509250925092565b604051601f8201601f191681016001600160401b03811182821017156200077057620007706200085a565b604052919050565b60006001600160401b038211156200079457620007946200085a565b5060051b60200190565b60008219821115620007b457620007b46200082e565b500190565b600082821015620007ce57620007ce6200082e565b500390565b600181811c90821680620007e857607f821691505b602082108114156200080a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200082757620008276200082e565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6130e780620008806000396000f3fe60806040526004361061028c5760003560e01c806376896d8c1161015a578063c285e107116100c1578063e33b7de31161007a578063e33b7de314610910578063e985e9c514610925578063f2fde38b1461096e578063f4a0a5281461098e578063fd5b5a0b146109ae578063ff12ec74146109c457600080fd5b8063c285e10714610808578063c87b56dd1461081e578063ce7c2ac21461083e578063d79779b214610874578063d7b4c466146108aa578063dc33e681146108ca57600080fd5b80638b83209b116101135780638b83209b1461073f5780638da5cb5b1461075f57806395d89b411461077d5780639852595c14610792578063a22cb465146107c8578063b88d4fde146107e857600080fd5b806376896d8c1461068257806378cbcf23146106a25780637a5b85c1146106b8578063813b4b5a146106d25780638462151c146106f25780638764dfad1461071f57600080fd5b80633a98ef39116101fe57806355f804b3116101b757806355f804b3146105e25780636352211e14610602578063676229a6146106225780636c0360eb1461063857806370a082311461064d578063715018a61461066d57600080fd5b80633a98ef3914610460578063404c7cdd14610475578063406072a91461049557806342842e0e146104db57806348b75044146104fb578063514553e21461051b57600080fd5b806313faede61161025057806313faede6146103ae57806318160ddd146103c457806319165587146103e157806323b872dd146104015780632db115441461042157806339ea3e261461043457600080fd5b806301ffc9a7146102da57806306fdde031461030f578063081812fc14610331578063095ea7b3146103695780631275c52e1461038b57600080fd5b366102d5577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156102e657600080fd5b506102fa6102f5366004612b2c565b6109d9565b60405190151581526020015b60405180910390f35b34801561031b57600080fd5b50610324610a2b565b6040516103069190612dc9565b34801561033d57600080fd5b5061035161034c366004612bcf565b610abd565b6040516001600160a01b039091168152602001610306565b34801561037557600080fd5b50610389610384366004612a45565b610b01565b005b34801561039757600080fd5b506103a0600381565b604051908152602001610306565b3480156103ba57600080fd5b506103a060105481565b3480156103d057600080fd5b5060025460015403600019016103a0565b3480156103ed57600080fd5b506103896103fc366004612901565b610b8f565b34801561040d57600080fd5b5061038961041c366004612957565b610cc6565b61038961042f366004612bcf565b610cd1565b34801561044057600080fd5b5060165461045390610100900460ff1681565b6040516103069190612da1565b34801561046c57600080fd5b506009546103a0565b34801561048157600080fd5b50610389610490366004612bcf565b610e12565b3480156104a157600080fd5b506103a06104b036600461291e565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b3480156104e757600080fd5b506103896104f6366004612957565b610e41565b34801561050757600080fd5b5061038961051636600461291e565b610e5c565b34801561052757600080fd5b506105c7610536366004612901565b6001600160a01b038116600090815260066020908152604091829020825160c08101845290546001600160401b038082168352600160401b8204169282019290925263ffffffff600160801b8304811693820193909352600160a01b8204831660608201819052600160c01b8304841660808301819052600160e01b90930490931660a09091018190529193909250565b60408051938452602084019290925290820152606001610306565b3480156105ee57600080fd5b506103896105fd366004612b87565b611044565b34801561060e57600080fd5b5061035161061d366004612bcf565b611085565b34801561062e57600080fd5b506103a060145481565b34801561064457600080fd5b50610324611097565b34801561065957600080fd5b506103a0610668366004612901565b611125565b34801561067957600080fd5b50610389611173565b34801561068e57600080fd5b5061038961069d366004612bcf565b6111a9565b3480156106ae57600080fd5b506103a060135481565b3480156106c457600080fd5b506016546102fa9060ff1681565b3480156106de57600080fd5b506103896106ed366004612a71565b6111d8565b3480156106fe57600080fd5b5061071261070d366004612901565b6112d9565b6040516103069190612d5d565b34801561072b57600080fd5b5061038961073a366004612aa6565b611416565b34801561074b57600080fd5b5061035161075a366004612bcf565b6115f3565b34801561076b57600080fd5b506000546001600160a01b0316610351565b34801561078957600080fd5b50610324611623565b34801561079e57600080fd5b506103a06107ad366004612901565b6001600160a01b03166000908152600c602052604090205490565b3480156107d457600080fd5b506103896107e3366004612a17565b611632565b3480156107f457600080fd5b50610389610803366004612998565b6116c8565b34801561081457600080fd5b506103a060115481565b34801561082a57600080fd5b50610324610839366004612bcf565b611719565b34801561084a57600080fd5b506103a0610859366004612901565b6001600160a01b03166000908152600b602052604090205490565b34801561088057600080fd5b506103a061088f366004612901565b6001600160a01b03166000908152600e602052604090205490565b3480156108b657600080fd5b506103896108c5366004612b66565b61179b565b3480156108d657600080fd5b506103a06108e5366004612901565b6001600160a01b0316600090815260066020526040902054600160401b90046001600160401b031690565b34801561091c57600080fd5b50600a546103a0565b34801561093157600080fd5b506102fa61094036600461291e565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561097a57600080fd5b50610389610989366004612901565b6117ee565b34801561099a57600080fd5b506103896109a9366004612bcf565b611886565b3480156109ba57600080fd5b506103a060125481565b3480156109d057600080fd5b506103896118b5565b60006001600160e01b031982166380ac58cd60e01b1480610a0a57506001600160e01b03198216635b5e139f60e01b145b80610a2557506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060038054610a3a90612fa0565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6690612fa0565b8015610ab35780601f10610a8857610100808354040283529160200191610ab3565b820191906000526020600020905b815481529060010190602001808311610a9657829003601f168201915b5050505050905090565b6000610ac8826118f3565b610ae5576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610b0c82611085565b9050806001600160a01b0316836001600160a01b03161415610b415760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610b615750610b5f8133610940565b155b15610b7f576040516367d9dca160e11b815260040160405180910390fd5b610b8a83838361192c565b505050565b6001600160a01b0381166000908152600b6020526040902054610bcd5760405162461bcd60e51b8152600401610bc490612ddc565b60405180910390fd5b6000610bd8600a5490565b610be29047612eea565b90506000610c0f8383610c0a866001600160a01b03166000908152600c602052604090205490565b611988565b905080610c2e5760405162461bcd60e51b8152600401610bc490612e22565b6001600160a01b0383166000908152600c602052604081208054839290610c56908490612eea565b9250508190555080600a6000828254610c6f9190612eea565b90915550610c7f905083826119d0565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610b8a838383611ae9565b333214610cdd57600080fd5b6001601654610100900460ff166001811115610cfb57610cfb613036565b14610d485760405162461bcd60e51b815260206004820181905260248201527f536f7272792c207075626c69632073616c65206973206e6f74206163746976656044820152606401610bc4565b601454601354610d589190612eea565b81610d666001546000190190565b610d709190612eea565b1115610d8e5760405162461bcd60e51b8152600401610bc490612e6d565b600081118015610d9f575060038111155b610deb5760405162461bcd60e51b815260206004820152601a60248201527f536f7272792c20696e76616c6964206d696e7420616d6f756e740000000000006044820152606401610bc4565b80601054610df99190612f3e565b341015610e0557600080fd5b610e0f3382611cd6565b50565b6000546001600160a01b03163314610e3c5760405162461bcd60e51b8152600401610bc490612eb5565b601155565b610b8a838383604051806020016040528060008152506116c8565b6001600160a01b0381166000908152600b6020526040902054610e915760405162461bcd60e51b8152600401610bc490612ddc565b6001600160a01b0382166000908152600e60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b158015610ee957600080fd5b505afa158015610efd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f219190612be8565b610f2b9190612eea565b90506000610f648383610c0a87876001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b905080610f835760405162461bcd60e51b8152600401610bc490612e22565b6001600160a01b038085166000908152600f6020908152604080832093871683529290529081208054839290610fba908490612eea565b90915550506001600160a01b0384166000908152600e602052604081208054839290610fe7908490612eea565b90915550610ff89050848483611e01565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b6000546001600160a01b0316331461106e5760405162461bcd60e51b8152600401610bc490612eb5565b80516110819060159060208401906127da565b5050565b600061109082611e53565b5192915050565b601580546110a490612fa0565b80601f01602080910402602001604051908101604052809291908181526020018280546110d090612fa0565b801561111d5780601f106110f25761010080835404028352916020019161111d565b820191906000526020600020905b81548152906001019060200180831161110057829003601f168201915b505050505081565b60006001600160a01b03821661114e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b0316331461119d5760405162461bcd60e51b8152600401610bc490612eb5565b6111a76000611f7a565b565b6000546001600160a01b031633146111d35760405162461bcd60e51b8152600401610bc490612eb5565b601255565b6000546001600160a01b031633146112025760405162461bcd60e51b8152600401610bc490612eb5565b60008163ffffffff16116112505760405162461bcd60e51b815260206004820152601560248201527414dbdc9c9e4b081a5b9d985b1a5908185b5bdd5b9d605a1b6044820152606401610bc4565b6012548163ffffffff166014600082825461126b9190612eea565b925050819055111561128f5760405162461bcd60e51b8152600401610bc490612e6d565b60005b60006112ae6112a78363ffffffff8616612f5d565b6003611fca565b90506112ba8183612eea565b91506112c68482611cd6565b508163ffffffff16811061129257505050565b606060006112e683611125565b60015490915060008080846001600160401b0381111561130857611308613062565b604051908082528060200260200182016040528015611331578160200160208202803683370190505b50905060015b8481101561140b57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529061139e5750611403565b80516001600160a01b0316156113b357805193505b886001600160a01b0316846001600160a01b031614156113f357818386806001019750815181106113e6576113e661304c565b6020026020010181815250505b86851415611401575061140b565b505b600101611337565b509695505050505050565b33321461142257600080fd5b60165460ff166114745760405162461bcd60e51b815260206004820152601760248201527f46726565206d696e74206973206e6f74206163746976650000000000000000006044820152606401610bc4565b60008563ffffffff161180156114995750836114903387611fe0565b63ffffffff1611155b6114dd5760405162461bcd60e51b815260206004820152601560248201527414dbdc9c9e4b081a5b9d985b1a5908185b5bdd5b9d605a1b6044820152606401610bc4565b6012548563ffffffff16601460008282546114f89190612eea565b925050819055111561151c5760405162461bcd60e51b8152600401610bc490612e6d565b6040516577336672656560d01b60208201526bffffffffffffffffffffffff193360601b166026820152603a810185905261157290605a016040516020818303038152906040528051906020012084848461203d565b6115ac5760405162461bcd60e51b815260206004820152600b60248201526a496e76616c69642073696760a81b6044820152606401610bc4565b60005b60006115c46112a78363ffffffff8a16612f5d565b90506115d08183612eea565b91506115dc8882611cd6565b508563ffffffff1681106115af5750505050505050565b6000600d82815481106116085761160861304c565b6000918252602090912001546001600160a01b031692915050565b606060048054610a3a90612fa0565b6001600160a01b03821633141561165c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6116d3848484611ae9565b6001600160a01b0383163b151580156116f557506116f3848484846120ce565b155b15611713576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611724826118f3565b6117695760405162461bcd60e51b8152602060048201526016602482015275151a1a5cc813919508191bd95cdb89dd08195e1a5cdd60521b6044820152606401610bc4565b6015611774836121c2565b604051602001611785929190612c65565b6040516020818303038152906040529050919050565b6000546001600160a01b031633146117c55760405162461bcd60e51b8152600401610bc490612eb5565b6016805482919061ff0019166101008360018111156117e6576117e6613036565b021790555050565b6000546001600160a01b031633146118185760405162461bcd60e51b8152600401610bc490612eb5565b6001600160a01b03811661187d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bc4565b610e0f81611f7a565b6000546001600160a01b031633146118b05760405162461bcd60e51b8152600401610bc490612eb5565b601055565b6000546001600160a01b031633146118df5760405162461bcd60e51b8152600401610bc490612eb5565b6016805460ff19811660ff90911615179055565b600081600111158015611907575060015482105b8015610a25575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6009546001600160a01b0384166000908152600b6020526040812054909183916119b29086612f3e565b6119bc9190612f2a565b6119c69190612f5d565b90505b9392505050565b80471015611a205760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610bc4565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611a6d576040519150601f19603f3d011682016040523d82523d6000602084013e611a72565b606091505b5050905080610b8a5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610bc4565b6000611af482611e53565b9050836001600160a01b031681600001516001600160a01b031614611b2b5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611b495750611b498533610940565b80611b64575033611b5984610abd565b6001600160a01b0316145b905080611b8457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611bab57604051633a954ecd60e21b815260040160405180910390fd5b611bb76000848761192c565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611c8b576001548214611c8b57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6001546001600160a01b038316611cff57604051622e076360e81b815260040160405180910390fd5b81611d1d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168a018116918217600160401b67ffffffffffffffff1990941690921783900481168a01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b4290921691909102179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611db45750600155505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610b8a9084906122bf565b60408051606081018252600080825260208201819052918101919091528180600111158015611e83575060015481105b15611f6157600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611f5f5780516001600160a01b031615611ef6579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611f5a579392505050565b611ef6565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000818310611fd957816119c9565b5090919050565b6001600160a01b03821660009081526006602052604081208054839190601c90612018908490600160e01b900463ffffffff16612f02565b92506101000a81548163ffffffff021916908363ffffffff1602179055905092915050565b6000736a6b0c3d0c9123777ea2bf2e6344071a18da3c426120b98585856120b18a6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b929190612391565b6001600160a01b03161490505b949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612103903390899088908890600401612d20565b602060405180830381600087803b15801561211d57600080fd5b505af192505050801561214d575060408051601f3d908101601f1916820190925261214a91810190612b49565b60015b6121a8573d80801561217b576040519150601f19603f3d011682016040523d82523d6000602084013e612180565b606091505b5080516121a0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120c6565b6060816121e65750506040805180820190915260018152600360fc1b602082015290565b8160005b811561221057806121fa81612fdb565b91506122099050600a83612f2a565b91506121ea565b6000816001600160401b0381111561222a5761222a613062565b6040519080825280601f01601f191660200182016040528015612254576020820181803683370190505b5090505b84156120c657612269600183612f5d565b9150612276600a86612ff6565b612281906030612eea565b60f81b8183815181106122965761229661304c565b60200101906001600160f81b031916908160001a9053506122b8600a86612f2a565b9450612258565b6000612314826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166123b99092919063ffffffff16565b805190915015610b8a57808060200190518101906123329190612b0f565b610b8a5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610bc4565b60008060006123a2878787876123c8565b915091506123af816124b5565b5095945050505050565b60606119c68484600085612670565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156123ff57506000905060036124ac565b8460ff16601b1415801561241757508460ff16601c14155b1561242857506000905060046124ac565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561247c573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166124a5576000600192509250506124ac565b9150600090505b94509492505050565b60008160048111156124c9576124c9613036565b14156124d25750565b60018160048111156124e6576124e6613036565b14156125345760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610bc4565b600281600481111561254857612548613036565b14156125965760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610bc4565b60038160048111156125aa576125aa613036565b14156126035760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610bc4565b600481600481111561261757612617613036565b1415610e0f5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610bc4565b6060824710156126d15760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610bc4565b6001600160a01b0385163b6127285760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610bc4565b600080866001600160a01b031685876040516127449190612c49565b60006040518083038185875af1925050503d8060008114612781576040519150601f19603f3d011682016040523d82523d6000602084013e612786565b606091505b50915091506127968282866127a1565b979650505050505050565b606083156127b05750816119c9565b8251156127c05782518084602001fd5b8160405162461bcd60e51b8152600401610bc49190612dc9565b8280546127e690612fa0565b90600052602060002090601f016020900481019282612808576000855561284e565b82601f1061282157805160ff191683800117855561284e565b8280016001018555821561284e579182015b8281111561284e578251825591602001919060010190612833565b5061285a92915061285e565b5090565b5b8082111561285a576000815560010161285f565b60006001600160401b038084111561288d5761288d613062565b604051601f8501601f19908116603f011681019082821181831017156128b5576128b5613062565b816040528093508581528686860111156128ce57600080fd5b858560208301376000602087830101525050509392505050565b803563ffffffff811681146128fc57600080fd5b919050565b60006020828403121561291357600080fd5b81356119c981613078565b6000806040838503121561293157600080fd5b823561293c81613078565b9150602083013561294c81613078565b809150509250929050565b60008060006060848603121561296c57600080fd5b833561297781613078565b9250602084013561298781613078565b929592945050506040919091013590565b600080600080608085870312156129ae57600080fd5b84356129b981613078565b935060208501356129c981613078565b92506040850135915060608501356001600160401b038111156129eb57600080fd5b8501601f810187136129fc57600080fd5b612a0b87823560208401612873565b91505092959194509250565b60008060408385031215612a2a57600080fd5b8235612a3581613078565b9150602083013561294c8161308d565b60008060408385031215612a5857600080fd5b8235612a6381613078565b946020939093013593505050565b60008060408385031215612a8457600080fd5b8235612a8f81613078565b9150612a9d602084016128e8565b90509250929050565b60008060008060008060c08789031215612abf57600080fd5b8635612aca81613078565b9550612ad8602088016128e8565b945060408701359350606087013560ff81168114612af557600080fd5b9598949750929560808101359460a0909101359350915050565b600060208284031215612b2157600080fd5b81516119c98161308d565b600060208284031215612b3e57600080fd5b81356119c98161309b565b600060208284031215612b5b57600080fd5b81516119c98161309b565b600060208284031215612b7857600080fd5b8135600281106119c957600080fd5b600060208284031215612b9957600080fd5b81356001600160401b03811115612baf57600080fd5b8201601f81018413612bc057600080fd5b6120c684823560208401612873565b600060208284031215612be157600080fd5b5035919050565b600060208284031215612bfa57600080fd5b5051919050565b60008151808452612c19816020860160208601612f74565b601f01601f19169290920160200192915050565b60008151612c3f818560208601612f74565b9290920192915050565b60008251612c5b818460208701612f74565b9190910192915050565b600080845481600182811c915080831680612c8157607f831692505b6020808410821415612ca157634e487b7160e01b86526022600452602486fd5b818015612cb55760018114612cc657612cf3565b60ff19861689528489019650612cf3565b60008b81526020902060005b86811015612ceb5781548b820152908501908301612cd2565b505084890196505b505050505050612d17612d068286612c2d565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d5390830184612c01565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612d9557835183529284019291840191600101612d79565b50909695505050505050565b6020810160028310612dc357634e487b7160e01b600052602160045260246000fd5b91905290565b6020815260006119c96020830184612c01565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b60208082526028908201527f536f7272792c206e6f7420656e6f756768204e4654732072656d61696e696e67604082015267081d1bc81b5a5b9d60c21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115612efd57612efd61300a565b500190565b600063ffffffff808316818516808303821115612f2157612f2161300a565b01949350505050565b600082612f3957612f39613020565b500490565b6000816000190483118215151615612f5857612f5861300a565b500290565b600082821015612f6f57612f6f61300a565b500390565b60005b83811015612f8f578181015183820152602001612f77565b838111156117135750506000910152565b600181811c90821680612fb457607f821691505b60208210811415612fd557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612fef57612fef61300a565b5060010190565b60008261300557613005613020565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610e0f57600080fd5b8015158114610e0f57600080fd5b6001600160e01b031981168114610e0f57600080fdfea26469706673582212207af7d2d31d9b0f6cc32ff71509be88cbd7eee653c67c05248de256722bd0346964736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000005568747470733a2f2f73756e626c6f636b732e6d7970696e6174612e636c6f75642f697066732f516d6565705a7832316b6556486161365268664c656e584a567862454c7064413631426a764c50755237427a69342f000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000003ff9b70d82f9c44786cda1490be155f3cff9ce3e00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000064

Deployed Bytecode

0x60806040526004361061028c5760003560e01c806376896d8c1161015a578063c285e107116100c1578063e33b7de31161007a578063e33b7de314610910578063e985e9c514610925578063f2fde38b1461096e578063f4a0a5281461098e578063fd5b5a0b146109ae578063ff12ec74146109c457600080fd5b8063c285e10714610808578063c87b56dd1461081e578063ce7c2ac21461083e578063d79779b214610874578063d7b4c466146108aa578063dc33e681146108ca57600080fd5b80638b83209b116101135780638b83209b1461073f5780638da5cb5b1461075f57806395d89b411461077d5780639852595c14610792578063a22cb465146107c8578063b88d4fde146107e857600080fd5b806376896d8c1461068257806378cbcf23146106a25780637a5b85c1146106b8578063813b4b5a146106d25780638462151c146106f25780638764dfad1461071f57600080fd5b80633a98ef39116101fe57806355f804b3116101b757806355f804b3146105e25780636352211e14610602578063676229a6146106225780636c0360eb1461063857806370a082311461064d578063715018a61461066d57600080fd5b80633a98ef3914610460578063404c7cdd14610475578063406072a91461049557806342842e0e146104db57806348b75044146104fb578063514553e21461051b57600080fd5b806313faede61161025057806313faede6146103ae57806318160ddd146103c457806319165587146103e157806323b872dd146104015780632db115441461042157806339ea3e261461043457600080fd5b806301ffc9a7146102da57806306fdde031461030f578063081812fc14610331578063095ea7b3146103695780631275c52e1461038b57600080fd5b366102d5577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156102e657600080fd5b506102fa6102f5366004612b2c565b6109d9565b60405190151581526020015b60405180910390f35b34801561031b57600080fd5b50610324610a2b565b6040516103069190612dc9565b34801561033d57600080fd5b5061035161034c366004612bcf565b610abd565b6040516001600160a01b039091168152602001610306565b34801561037557600080fd5b50610389610384366004612a45565b610b01565b005b34801561039757600080fd5b506103a0600381565b604051908152602001610306565b3480156103ba57600080fd5b506103a060105481565b3480156103d057600080fd5b5060025460015403600019016103a0565b3480156103ed57600080fd5b506103896103fc366004612901565b610b8f565b34801561040d57600080fd5b5061038961041c366004612957565b610cc6565b61038961042f366004612bcf565b610cd1565b34801561044057600080fd5b5060165461045390610100900460ff1681565b6040516103069190612da1565b34801561046c57600080fd5b506009546103a0565b34801561048157600080fd5b50610389610490366004612bcf565b610e12565b3480156104a157600080fd5b506103a06104b036600461291e565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b3480156104e757600080fd5b506103896104f6366004612957565b610e41565b34801561050757600080fd5b5061038961051636600461291e565b610e5c565b34801561052757600080fd5b506105c7610536366004612901565b6001600160a01b038116600090815260066020908152604091829020825160c08101845290546001600160401b038082168352600160401b8204169282019290925263ffffffff600160801b8304811693820193909352600160a01b8204831660608201819052600160c01b8304841660808301819052600160e01b90930490931660a09091018190529193909250565b60408051938452602084019290925290820152606001610306565b3480156105ee57600080fd5b506103896105fd366004612b87565b611044565b34801561060e57600080fd5b5061035161061d366004612bcf565b611085565b34801561062e57600080fd5b506103a060145481565b34801561064457600080fd5b50610324611097565b34801561065957600080fd5b506103a0610668366004612901565b611125565b34801561067957600080fd5b50610389611173565b34801561068e57600080fd5b5061038961069d366004612bcf565b6111a9565b3480156106ae57600080fd5b506103a060135481565b3480156106c457600080fd5b506016546102fa9060ff1681565b3480156106de57600080fd5b506103896106ed366004612a71565b6111d8565b3480156106fe57600080fd5b5061071261070d366004612901565b6112d9565b6040516103069190612d5d565b34801561072b57600080fd5b5061038961073a366004612aa6565b611416565b34801561074b57600080fd5b5061035161075a366004612bcf565b6115f3565b34801561076b57600080fd5b506000546001600160a01b0316610351565b34801561078957600080fd5b50610324611623565b34801561079e57600080fd5b506103a06107ad366004612901565b6001600160a01b03166000908152600c602052604090205490565b3480156107d457600080fd5b506103896107e3366004612a17565b611632565b3480156107f457600080fd5b50610389610803366004612998565b6116c8565b34801561081457600080fd5b506103a060115481565b34801561082a57600080fd5b50610324610839366004612bcf565b611719565b34801561084a57600080fd5b506103a0610859366004612901565b6001600160a01b03166000908152600b602052604090205490565b34801561088057600080fd5b506103a061088f366004612901565b6001600160a01b03166000908152600e602052604090205490565b3480156108b657600080fd5b506103896108c5366004612b66565b61179b565b3480156108d657600080fd5b506103a06108e5366004612901565b6001600160a01b0316600090815260066020526040902054600160401b90046001600160401b031690565b34801561091c57600080fd5b50600a546103a0565b34801561093157600080fd5b506102fa61094036600461291e565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561097a57600080fd5b50610389610989366004612901565b6117ee565b34801561099a57600080fd5b506103896109a9366004612bcf565b611886565b3480156109ba57600080fd5b506103a060125481565b3480156109d057600080fd5b506103896118b5565b60006001600160e01b031982166380ac58cd60e01b1480610a0a57506001600160e01b03198216635b5e139f60e01b145b80610a2557506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060038054610a3a90612fa0565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6690612fa0565b8015610ab35780601f10610a8857610100808354040283529160200191610ab3565b820191906000526020600020905b815481529060010190602001808311610a9657829003601f168201915b5050505050905090565b6000610ac8826118f3565b610ae5576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610b0c82611085565b9050806001600160a01b0316836001600160a01b03161415610b415760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610b615750610b5f8133610940565b155b15610b7f576040516367d9dca160e11b815260040160405180910390fd5b610b8a83838361192c565b505050565b6001600160a01b0381166000908152600b6020526040902054610bcd5760405162461bcd60e51b8152600401610bc490612ddc565b60405180910390fd5b6000610bd8600a5490565b610be29047612eea565b90506000610c0f8383610c0a866001600160a01b03166000908152600c602052604090205490565b611988565b905080610c2e5760405162461bcd60e51b8152600401610bc490612e22565b6001600160a01b0383166000908152600c602052604081208054839290610c56908490612eea565b9250508190555080600a6000828254610c6f9190612eea565b90915550610c7f905083826119d0565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610b8a838383611ae9565b333214610cdd57600080fd5b6001601654610100900460ff166001811115610cfb57610cfb613036565b14610d485760405162461bcd60e51b815260206004820181905260248201527f536f7272792c207075626c69632073616c65206973206e6f74206163746976656044820152606401610bc4565b601454601354610d589190612eea565b81610d666001546000190190565b610d709190612eea565b1115610d8e5760405162461bcd60e51b8152600401610bc490612e6d565b600081118015610d9f575060038111155b610deb5760405162461bcd60e51b815260206004820152601a60248201527f536f7272792c20696e76616c6964206d696e7420616d6f756e740000000000006044820152606401610bc4565b80601054610df99190612f3e565b341015610e0557600080fd5b610e0f3382611cd6565b50565b6000546001600160a01b03163314610e3c5760405162461bcd60e51b8152600401610bc490612eb5565b601155565b610b8a838383604051806020016040528060008152506116c8565b6001600160a01b0381166000908152600b6020526040902054610e915760405162461bcd60e51b8152600401610bc490612ddc565b6001600160a01b0382166000908152600e60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b158015610ee957600080fd5b505afa158015610efd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f219190612be8565b610f2b9190612eea565b90506000610f648383610c0a87876001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b905080610f835760405162461bcd60e51b8152600401610bc490612e22565b6001600160a01b038085166000908152600f6020908152604080832093871683529290529081208054839290610fba908490612eea565b90915550506001600160a01b0384166000908152600e602052604081208054839290610fe7908490612eea565b90915550610ff89050848483611e01565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b6000546001600160a01b0316331461106e5760405162461bcd60e51b8152600401610bc490612eb5565b80516110819060159060208401906127da565b5050565b600061109082611e53565b5192915050565b601580546110a490612fa0565b80601f01602080910402602001604051908101604052809291908181526020018280546110d090612fa0565b801561111d5780601f106110f25761010080835404028352916020019161111d565b820191906000526020600020905b81548152906001019060200180831161110057829003601f168201915b505050505081565b60006001600160a01b03821661114e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b0316331461119d5760405162461bcd60e51b8152600401610bc490612eb5565b6111a76000611f7a565b565b6000546001600160a01b031633146111d35760405162461bcd60e51b8152600401610bc490612eb5565b601255565b6000546001600160a01b031633146112025760405162461bcd60e51b8152600401610bc490612eb5565b60008163ffffffff16116112505760405162461bcd60e51b815260206004820152601560248201527414dbdc9c9e4b081a5b9d985b1a5908185b5bdd5b9d605a1b6044820152606401610bc4565b6012548163ffffffff166014600082825461126b9190612eea565b925050819055111561128f5760405162461bcd60e51b8152600401610bc490612e6d565b60005b60006112ae6112a78363ffffffff8616612f5d565b6003611fca565b90506112ba8183612eea565b91506112c68482611cd6565b508163ffffffff16811061129257505050565b606060006112e683611125565b60015490915060008080846001600160401b0381111561130857611308613062565b604051908082528060200260200182016040528015611331578160200160208202803683370190505b50905060015b8481101561140b57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529061139e5750611403565b80516001600160a01b0316156113b357805193505b886001600160a01b0316846001600160a01b031614156113f357818386806001019750815181106113e6576113e661304c565b6020026020010181815250505b86851415611401575061140b565b505b600101611337565b509695505050505050565b33321461142257600080fd5b60165460ff166114745760405162461bcd60e51b815260206004820152601760248201527f46726565206d696e74206973206e6f74206163746976650000000000000000006044820152606401610bc4565b60008563ffffffff161180156114995750836114903387611fe0565b63ffffffff1611155b6114dd5760405162461bcd60e51b815260206004820152601560248201527414dbdc9c9e4b081a5b9d985b1a5908185b5bdd5b9d605a1b6044820152606401610bc4565b6012548563ffffffff16601460008282546114f89190612eea565b925050819055111561151c5760405162461bcd60e51b8152600401610bc490612e6d565b6040516577336672656560d01b60208201526bffffffffffffffffffffffff193360601b166026820152603a810185905261157290605a016040516020818303038152906040528051906020012084848461203d565b6115ac5760405162461bcd60e51b815260206004820152600b60248201526a496e76616c69642073696760a81b6044820152606401610bc4565b60005b60006115c46112a78363ffffffff8a16612f5d565b90506115d08183612eea565b91506115dc8882611cd6565b508563ffffffff1681106115af5750505050505050565b6000600d82815481106116085761160861304c565b6000918252602090912001546001600160a01b031692915050565b606060048054610a3a90612fa0565b6001600160a01b03821633141561165c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6116d3848484611ae9565b6001600160a01b0383163b151580156116f557506116f3848484846120ce565b155b15611713576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611724826118f3565b6117695760405162461bcd60e51b8152602060048201526016602482015275151a1a5cc813919508191bd95cdb89dd08195e1a5cdd60521b6044820152606401610bc4565b6015611774836121c2565b604051602001611785929190612c65565b6040516020818303038152906040529050919050565b6000546001600160a01b031633146117c55760405162461bcd60e51b8152600401610bc490612eb5565b6016805482919061ff0019166101008360018111156117e6576117e6613036565b021790555050565b6000546001600160a01b031633146118185760405162461bcd60e51b8152600401610bc490612eb5565b6001600160a01b03811661187d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bc4565b610e0f81611f7a565b6000546001600160a01b031633146118b05760405162461bcd60e51b8152600401610bc490612eb5565b601055565b6000546001600160a01b031633146118df5760405162461bcd60e51b8152600401610bc490612eb5565b6016805460ff19811660ff90911615179055565b600081600111158015611907575060015482105b8015610a25575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6009546001600160a01b0384166000908152600b6020526040812054909183916119b29086612f3e565b6119bc9190612f2a565b6119c69190612f5d565b90505b9392505050565b80471015611a205760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610bc4565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611a6d576040519150601f19603f3d011682016040523d82523d6000602084013e611a72565b606091505b5050905080610b8a5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610bc4565b6000611af482611e53565b9050836001600160a01b031681600001516001600160a01b031614611b2b5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611b495750611b498533610940565b80611b64575033611b5984610abd565b6001600160a01b0316145b905080611b8457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611bab57604051633a954ecd60e21b815260040160405180910390fd5b611bb76000848761192c565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611c8b576001548214611c8b57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6001546001600160a01b038316611cff57604051622e076360e81b815260040160405180910390fd5b81611d1d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168a018116918217600160401b67ffffffffffffffff1990941690921783900481168a01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b4290921691909102179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611db45750600155505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610b8a9084906122bf565b60408051606081018252600080825260208201819052918101919091528180600111158015611e83575060015481105b15611f6157600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611f5f5780516001600160a01b031615611ef6579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611f5a579392505050565b611ef6565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000818310611fd957816119c9565b5090919050565b6001600160a01b03821660009081526006602052604081208054839190601c90612018908490600160e01b900463ffffffff16612f02565b92506101000a81548163ffffffff021916908363ffffffff1602179055905092915050565b6000736a6b0c3d0c9123777ea2bf2e6344071a18da3c426120b98585856120b18a6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b929190612391565b6001600160a01b03161490505b949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612103903390899088908890600401612d20565b602060405180830381600087803b15801561211d57600080fd5b505af192505050801561214d575060408051601f3d908101601f1916820190925261214a91810190612b49565b60015b6121a8573d80801561217b576040519150601f19603f3d011682016040523d82523d6000602084013e612180565b606091505b5080516121a0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120c6565b6060816121e65750506040805180820190915260018152600360fc1b602082015290565b8160005b811561221057806121fa81612fdb565b91506122099050600a83612f2a565b91506121ea565b6000816001600160401b0381111561222a5761222a613062565b6040519080825280601f01601f191660200182016040528015612254576020820181803683370190505b5090505b84156120c657612269600183612f5d565b9150612276600a86612ff6565b612281906030612eea565b60f81b8183815181106122965761229661304c565b60200101906001600160f81b031916908160001a9053506122b8600a86612f2a565b9450612258565b6000612314826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166123b99092919063ffffffff16565b805190915015610b8a57808060200190518101906123329190612b0f565b610b8a5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610bc4565b60008060006123a2878787876123c8565b915091506123af816124b5565b5095945050505050565b60606119c68484600085612670565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156123ff57506000905060036124ac565b8460ff16601b1415801561241757508460ff16601c14155b1561242857506000905060046124ac565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561247c573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166124a5576000600192509250506124ac565b9150600090505b94509492505050565b60008160048111156124c9576124c9613036565b14156124d25750565b60018160048111156124e6576124e6613036565b14156125345760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610bc4565b600281600481111561254857612548613036565b14156125965760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610bc4565b60038160048111156125aa576125aa613036565b14156126035760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610bc4565b600481600481111561261757612617613036565b1415610e0f5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610bc4565b6060824710156126d15760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610bc4565b6001600160a01b0385163b6127285760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610bc4565b600080866001600160a01b031685876040516127449190612c49565b60006040518083038185875af1925050503d8060008114612781576040519150601f19603f3d011682016040523d82523d6000602084013e612786565b606091505b50915091506127968282866127a1565b979650505050505050565b606083156127b05750816119c9565b8251156127c05782518084602001fd5b8160405162461bcd60e51b8152600401610bc49190612dc9565b8280546127e690612fa0565b90600052602060002090601f016020900481019282612808576000855561284e565b82601f1061282157805160ff191683800117855561284e565b8280016001018555821561284e579182015b8281111561284e578251825591602001919060010190612833565b5061285a92915061285e565b5090565b5b8082111561285a576000815560010161285f565b60006001600160401b038084111561288d5761288d613062565b604051601f8501601f19908116603f011681019082821181831017156128b5576128b5613062565b816040528093508581528686860111156128ce57600080fd5b858560208301376000602087830101525050509392505050565b803563ffffffff811681146128fc57600080fd5b919050565b60006020828403121561291357600080fd5b81356119c981613078565b6000806040838503121561293157600080fd5b823561293c81613078565b9150602083013561294c81613078565b809150509250929050565b60008060006060848603121561296c57600080fd5b833561297781613078565b9250602084013561298781613078565b929592945050506040919091013590565b600080600080608085870312156129ae57600080fd5b84356129b981613078565b935060208501356129c981613078565b92506040850135915060608501356001600160401b038111156129eb57600080fd5b8501601f810187136129fc57600080fd5b612a0b87823560208401612873565b91505092959194509250565b60008060408385031215612a2a57600080fd5b8235612a3581613078565b9150602083013561294c8161308d565b60008060408385031215612a5857600080fd5b8235612a6381613078565b946020939093013593505050565b60008060408385031215612a8457600080fd5b8235612a8f81613078565b9150612a9d602084016128e8565b90509250929050565b60008060008060008060c08789031215612abf57600080fd5b8635612aca81613078565b9550612ad8602088016128e8565b945060408701359350606087013560ff81168114612af557600080fd5b9598949750929560808101359460a0909101359350915050565b600060208284031215612b2157600080fd5b81516119c98161308d565b600060208284031215612b3e57600080fd5b81356119c98161309b565b600060208284031215612b5b57600080fd5b81516119c98161309b565b600060208284031215612b7857600080fd5b8135600281106119c957600080fd5b600060208284031215612b9957600080fd5b81356001600160401b03811115612baf57600080fd5b8201601f81018413612bc057600080fd5b6120c684823560208401612873565b600060208284031215612be157600080fd5b5035919050565b600060208284031215612bfa57600080fd5b5051919050565b60008151808452612c19816020860160208601612f74565b601f01601f19169290920160200192915050565b60008151612c3f818560208601612f74565b9290920192915050565b60008251612c5b818460208701612f74565b9190910192915050565b600080845481600182811c915080831680612c8157607f831692505b6020808410821415612ca157634e487b7160e01b86526022600452602486fd5b818015612cb55760018114612cc657612cf3565b60ff19861689528489019650612cf3565b60008b81526020902060005b86811015612ceb5781548b820152908501908301612cd2565b505084890196505b505050505050612d17612d068286612c2d565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d5390830184612c01565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612d9557835183529284019291840191600101612d79565b50909695505050505050565b6020810160028310612dc357634e487b7160e01b600052602160045260246000fd5b91905290565b6020815260006119c96020830184612c01565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b60208082526028908201527f536f7272792c206e6f7420656e6f756768204e4654732072656d61696e696e67604082015267081d1bc81b5a5b9d60c21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115612efd57612efd61300a565b500190565b600063ffffffff808316818516808303821115612f2157612f2161300a565b01949350505050565b600082612f3957612f39613020565b500490565b6000816000190483118215151615612f5857612f5861300a565b500290565b600082821015612f6f57612f6f61300a565b500390565b60005b83811015612f8f578181015183820152602001612f77565b838111156117135750506000910152565b600181811c90821680612fb457607f821691505b60208210811415612fd557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612fef57612fef61300a565b5060010190565b60008261300557613005613020565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610e0f57600080fd5b8015158114610e0f57600080fd5b6001600160e01b031981168114610e0f57600080fdfea26469706673582212207af7d2d31d9b0f6cc32ff71509be88cbd7eee653c67c05248de256722bd0346964736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000005568747470733a2f2f73756e626c6f636b732e6d7970696e6174612e636c6f75642f697066732f516d6565705a7832316b6556486161365268664c656e584a567862454c7064413631426a764c50755237427a69342f000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000003ff9b70d82f9c44786cda1490be155f3cff9ce3e00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000064

-----Decoded View---------------
Arg [0] : _theBaseURI (string): https://sunblocks.mypinata.cloud/ipfs/QmeepZx21keVHaa6RhfLenXJVxbELpdA61BjvLPuR7Bzi4/
Arg [1] : payees (address[]): 0x3FF9B70d82f9C44786CDa1490Be155F3cFF9cE3e
Arg [2] : shares (uint256[]): 100

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000055
Arg [4] : 68747470733a2f2f73756e626c6f636b732e6d7970696e6174612e636c6f7564
Arg [5] : 2f697066732f516d6565705a7832316b6556486161365268664c656e584a5678
Arg [6] : 62454c7064413631426a764c50755237427a69342f0000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [8] : 0000000000000000000000003ff9b70d82f9c44786cda1490be155f3cff9ce3e
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000064


Deployed Bytecode Sourcemap

335:4804:15:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3216:40:12;736:10:1;3216:40:12;;;-1:-1:-1;;;;;10846:32:16;;;10828:51;;3246:9:12;10910:2:16;10895:18;;10888:34;10801:18;3216:40:12;;;;;;;335:4804:15;;;;;4320:305:4;;;;;;;;;;-1:-1:-1;4320:305:4;;;;;:::i;:::-;;:::i;:::-;;;12518:14:16;;12511:22;12493:41;;12481:2;12466:18;4320:305:4;;;;;;;;7727:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;9230:204::-;;;;;;;;;;-1:-1:-1;9230:204:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;10602:32:16;;;10584:51;;10572:2;10557:18;9230:204:4;10438:203:16;8793:371:4;;;;;;;;;;-1:-1:-1;8793:371:4;;;;;:::i;:::-;;:::i;:::-;;1044:40:15;;;;;;;;;;;;1083:1;1044:40;;;;;21259:25:16;;;21247:2;21232:18;1044:40:15;21113:177:16;768:29:15;;;;;;;;;;;;;;;;3569:303:4;;;;;;;;;;-1:-1:-1;3823:12:4;;3426:1;3807:13;:28;-1:-1:-1;;3807:46:4;3569:303;;4944:553:12;;;;;;;;;;-1:-1:-1;4944:553:12;;;;;:::i;:::-;;:::i;10095:170:4:-;;;;;;;;;;-1:-1:-1;10095:170:4;;;;;:::i;:::-;;:::i;3378:546:15:-;;;;;;:::i;:::-;;:::i;1406:22::-;;;;;;;;;;-1:-1:-1;1406:22:15;;;;;;;;;;;;;;;;;;:::i;3341:89:12:-;;;;;;;;;;-1:-1:-1;3411:12:12;;3341:89;;4624:96:15;;;;;;;;;;-1:-1:-1;4624:96:15;;;;;:::i;:::-;;:::i;4433:133:12:-;;;;;;;;;;-1:-1:-1;4433:133:12;;;;;:::i;:::-;-1:-1:-1;;;;;4529:21:12;;;4503:7;4529:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;4433:133;10336:185:4;;;;;;;;;;-1:-1:-1;10336:185:4;;;;;:::i;:::-;;:::i;5758:628:12:-;;;;;;;;;;-1:-1:-1;5758:628:12;;;;;:::i;:::-;;:::i;5399:271:4:-;;;;;;;;;;-1:-1:-1;5399:271:4;;;;;:::i;:::-;-1:-1:-1;;;;;5553:19:4;;5458:15;5553:19;;;:12;:19;;;;;;;;;5520:52;;;;;;;;;-1:-1:-1;;;;;5520:52:4;;;;;-1:-1:-1;;;5520:52:4;;;;;;;;;;;-1:-1:-1;;;5520:52:4;;;;;;;;;;;-1:-1:-1;;;5520:52:4;;;;;;;;;;-1:-1:-1;;;5520:52:4;;;;;;;;;;-1:-1:-1;;;5520:52:4;;;;;;;;;;;;;5399:271;;;;;;;;;;21497:25:16;;;21553:2;21538:18;;21531:34;;;;21581:18;;;21574:34;21485:2;21470:18;5399:271:4;21295:319:16;4205:102:15;;;;;;;;;;-1:-1:-1;4205:102:15;;;;;:::i;:::-;;:::i;7535:125:4:-;;;;;;;;;;-1:-1:-1;7535:125:4;;;;;:::i;:::-;;:::i;1192:36:15:-;;;;;;;;;;;;;;;;1235:21;;;;;;;;;;;;;:::i;4689:206:4:-;;;;;;;;;;-1:-1:-1;4689:206:4;;;;;:::i;:::-;;:::i;1714:103:11:-;;;;;;;;;;;;;:::i;4313:129:15:-;;;;;;;;;;-1:-1:-1;4313:129:15;;;;;:::i;:::-;;:::i;935:63::-;;;;;;;;;;;;;;;;1263:28;;;;;;;;;;-1:-1:-1;1263:28:15;;;;;;;;2704:668;;;;;;;;;;-1:-1:-1;2704:668:15;;;;;:::i;:::-;;:::i;369:1174:5:-;;;;;;;;;;-1:-1:-1;369:1174:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1698:1000:15:-;;;;;;;;;;-1:-1:-1;1698:1000:15;;;;;:::i;:::-;;:::i;4652:98:12:-;;;;;;;;;;-1:-1:-1;4652:98:12;;;;;:::i;:::-;;:::i;1063:87:11:-;;;;;;;;;;-1:-1:-1;1109:7:11;1136:6;-1:-1:-1;;;;;1136:6:11;1063:87;;7896:104:4;;;;;;;;;;;;;:::i;4163:107:12:-;;;;;;;;;;-1:-1:-1;4163:107:12;;;;;:::i;:::-;-1:-1:-1;;;;;4245:18:12;4219:7;4245:18;;;:9;:18;;;;;;;4163:107;9506:287:4;;;;;;;;;;-1:-1:-1;9506:287:4;;;;;:::i;:::-;;:::i;10592:369::-;;;;;;;;;;-1:-1:-1;10592:369:4;;;;;:::i;:::-;;:::i;803:32:15:-;;;;;;;;;;;;;;;;3948:222;;;;;;;;;;-1:-1:-1;3948:222:15;;;;;:::i;:::-;;:::i;3966:103:12:-;;;;;;;;;;-1:-1:-1;3966:103:12;;;;;:::i;:::-;-1:-1:-1;;;;;4046:16:12;4020:7;4046:16;;;:7;:16;;;;;;;3966:103;3763:117;;;;;;;;;;-1:-1:-1;3763:117:12;;;;;:::i;:::-;-1:-1:-1;;;;;3847:26:12;3821:7;3847:26;;;:19;:26;;;;;;;3763:117;4448:82:15;;;;;;;;;;-1:-1:-1;4448:82:15;;;;;:::i;:::-;;:::i;4977:134:4:-;;;;;;;;;;-1:-1:-1;4977:134:4;;;;;:::i;:::-;-1:-1:-1;;;;;5070:19:4;5035:7;5070:19;;;:12;:19;;;;;:32;-1:-1:-1;;;5070:32:4;;-1:-1:-1;;;;;5070:32:4;;4977:134;3519:93:12;;;;;;;;;;-1:-1:-1;3591:14:12;;3519:93;;9864:164:4;;;;;;;;;;-1:-1:-1;9864:164:4;;;;;:::i;:::-;-1:-1:-1;;;;;9985:25:4;;;9961:4;9985:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;9864:164;1972:201:11;;;;;;;;;;-1:-1:-1;1972:201:11;;;;;:::i;:::-;;:::i;4536:82:15:-;;;;;;;;;;-1:-1:-1;4536:82:15;;;;;:::i;:::-;;:::i;841:36::-;;;;;;;;;;;;;;;;4726:104;;;;;;;;;;;;;:::i;4320:305:4:-;4422:4;-1:-1:-1;;;;;;4459:40:4;;-1:-1:-1;;;4459:40:4;;:105;;-1:-1:-1;;;;;;;4516:48:4;;-1:-1:-1;;;4516:48:4;4459:105;:158;;;-1:-1:-1;;;;;;;;;;963:40:3;;;4581:36:4;4439:178;4320:305;-1:-1:-1;;4320:305:4:o;7727:100::-;7781:13;7814:5;7807:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7727:100;:::o;9230:204::-;9298:7;9323:16;9331:7;9323;:16::i;:::-;9318:64;;9348:34;;-1:-1:-1;;;9348:34:4;;;;;;;;;;;9318:64;-1:-1:-1;9402:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;9402:24:4;;9230:204::o;8793:371::-;8866:13;8882:24;8898:7;8882:15;:24::i;:::-;8866:40;;8927:5;-1:-1:-1;;;;;8921:11:4;:2;-1:-1:-1;;;;;8921:11:4;;8917:48;;;8941:24;;-1:-1:-1;;;8941:24:4;;;;;;;;;;;8917:48;736:10:1;-1:-1:-1;;;;;8982:21:4;;;;;;:63;;-1:-1:-1;9008:37:4;9025:5;736:10:1;9864:164:4;:::i;9008:37::-;9007:38;8982:63;8978:138;;;9069:35;;-1:-1:-1;;;9069:35:4;;;;;;;;;;;8978:138;9128:28;9137:2;9141:7;9150:5;9128:8;:28::i;:::-;8855:309;8793:371;;:::o;4944:553:12:-;-1:-1:-1;;;;;5019:16:12;;5038:1;5019:16;;;:7;:16;;;;;;5011:71;;;;-1:-1:-1;;;5011:71:12;;;;;;;:::i;:::-;;;;;;;;;5093:21;5141:15;3591:14;;;3519:93;5141:15;5117:39;;:21;:39;:::i;:::-;5093:63;;5166:15;5184:58;5200:7;5209:13;5224:17;5233:7;-1:-1:-1;;;;;4245:18:12;4219:7;4245:18;;;:9;:18;;;;;;;4163:107;5224:17;5184:15;:58::i;:::-;5166:76;-1:-1:-1;5261:12:12;5253:68;;;;-1:-1:-1;;;5253:68:12;;;;;;;:::i;:::-;-1:-1:-1;;;;;5332:18:12;;;;;;:9;:18;;;;;:29;;5354:7;;5332:18;:29;;5354:7;;5332:29;:::i;:::-;;;;;;;;5389:7;5371:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;5407:35:12;;-1:-1:-1;5425:7:12;5434;5407:17;:35::i;:::-;5457:33;;;-1:-1:-1;;;;;10846:32:16;;10828:51;;10910:2;10895:18;;10888:34;;;5457:33:12;;10801:18:16;5457:33:12;;;;;;;5001:496;;4944:553;:::o;10095:170:4:-;10229:28;10239:4;10245:2;10249:7;10229:9;:28::i;3378:546:15:-;702:10;716:9;702:23;694:32;;;;;;3474:14:::1;3463:7;::::0;::::1;::::0;::::1;;;;:25:::0;::::1;;;;;;:::i;:::-;;3455:70;;;::::0;-1:-1:-1;;;3455:70:15;;19012:2:16;3455:70:15::1;::::0;::::1;18994:21:16::0;;;19031:18;;;19024:30;19090:34;19070:18;;;19063:62;19142:18;;3455:70:15::1;18810:356:16::0;3455:70:15::1;3625:20;;3607:15;;:38;;;;:::i;:::-;3591:12;3574:14;3426:1:4::0;4198:13;-1:-1:-1;;4198:31:4;;3965:283;3574:14:15::1;:29;;;;:::i;:::-;:71;;3566:124;;;;-1:-1:-1::0;;;3566:124:15::1;;;;;;;:::i;:::-;3723:1;3708:12;:16;:51;;;;;1083:1;3728:12;:31;;3708:51;3700:90;;;::::0;-1:-1:-1;;;3700:90:15;;16650:2:16;3700:90:15::1;::::0;::::1;16632:21:16::0;16689:2;16669:18;;;16662:30;16728:28;16708:18;;;16701:56;16774:18;;3700:90:15::1;16448:350:16::0;3700:90:15::1;3862:12;3855:4;;:19;;;;:::i;:::-;3842:9;:32;;3834:41;;;::::0;::::1;;3886:31;3892:10;3904:12;3886:5;:31::i;:::-;3378:546:::0;:::o;4624:96::-;1109:7:11;1136:6;-1:-1:-1;;;;;1136:6:11;736:10:1;1283:23:11;1275:68;;;;-1:-1:-1;;;1275:68:11;;;;;;;:::i;:::-;4691:13:15::1;:22:::0;4624:96::o;10336:185:4:-;10474:39;10491:4;10497:2;10501:7;10474:39;;;;;;;;;;;;:16;:39::i;5758:628:12:-;-1:-1:-1;;;;;5839:16:12;;5858:1;5839:16;;;:7;:16;;;;;;5831:71;;;;-1:-1:-1;;;5831:71:12;;;;;;;:::i;:::-;-1:-1:-1;;;;;3847:26:12;;5913:21;3847:26;;;:19;:26;;;;;;5937:30;;-1:-1:-1;;;5937:30:12;;5961:4;5937:30;;;10584:51:16;-1:-1:-1;;;;;5937:15:12;;;;;10557:18:16;;5937:30:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;5913:77;;6000:15;6018:65;6034:7;6043:13;6058:24;6067:5;6074:7;-1:-1:-1;;;;;4529:21:12;;;4503:7;4529:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;4433:133;6018:65;6000:83;-1:-1:-1;6102:12:12;6094:68;;;;-1:-1:-1;;;6094:68:12;;;;;;;:::i;:::-;-1:-1:-1;;;;;6173:21:12;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;;;:41;;6207:7;;6173:21;:41;;6207:7;;6173:41;:::i;:::-;;;;-1:-1:-1;;;;;;;6224:26:12;;;;;;:19;:26;;;;;:37;;6254:7;;6224:26;:37;;6254:7;;6224:37;:::i;:::-;;;;-1:-1:-1;6272:47:12;;-1:-1:-1;6295:5:12;6302:7;6311;6272:22;:47::i;:::-;6334:45;;;-1:-1:-1;;;;;10846:32:16;;;10828:51;;10910:2;10895:18;;10888:34;;;6334:45:12;;;;;10801:18:16;6334:45:12;;;;;;;5821:565;;5758:628;;:::o;4205:102:15:-;1109:7:11;1136:6;-1:-1:-1;;;;;1136:6:11;736:10:1;1283:23:11;1275:68;;;;-1:-1:-1;;;1275:68:11;;;;;;;:::i;:::-;4279:21:15;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;4205:102:::0;:::o;7535:125:4:-;7599:7;7626:21;7639:7;7626:12;:21::i;:::-;:26;;7535:125;-1:-1:-1;;7535:125:4:o;1235:21:15:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4689:206:4:-;4753:7;-1:-1:-1;;;;;4777:19:4;;4773:60;;4805:28;;-1:-1:-1;;;4805:28:4;;;;;;;;;;;4773:60;-1:-1:-1;;;;;;4859:19:4;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;4859:27:4;;4689:206::o;1714:103:11:-;1109:7;1136:6;-1:-1:-1;;;;;1136:6:11;736:10:1;1283:23:11;1275:68;;;;-1:-1:-1;;;1275:68:11;;;;;;;:::i;:::-;1779:30:::1;1806:1;1779:18;:30::i;:::-;1714:103::o:0;4313:129:15:-;1109:7:11;1136:6;-1:-1:-1;;;;;1136:6:11;736:10:1;1283:23:11;1275:68;;;;-1:-1:-1;;;1275:68:11;;;;;;;:::i;:::-;4397:17:15::1;:38:::0;4313:129::o;2704:668::-;1109:7:11;1136:6;-1:-1:-1;;;;;1136:6:11;736:10:1;1283:23:11;1275:68;;;;-1:-1:-1;;;1275:68:11;;;;;;;:::i;:::-;2839:1:15::1;2824:12;:16;;;2816:49;;;::::0;-1:-1:-1;;;2816:49:15;;14443:2:16;2816:49:15::1;::::0;::::1;14425:21:16::0;14482:2;14462:18;;;14455:30;-1:-1:-1;;;14501:18:16;;;14494:51;14562:18;;2816:49:15::1;14241:345:16::0;2816:49:15::1;2925:17;;2908:12;2884:36;;:20;;:36;;;;;;;:::i;:::-;;;;;;;2883:59;;2875:112;;;;-1:-1:-1::0;;;2875:112:15::1;;;;;;;:::i;:::-;3130:16;3160:206;3177:16;3196:48;3200:26;3215:11:::0;3200:26:::1;::::0;::::1;;:::i;:::-;1083:1;3196:3;:48::i;:::-;3177:67:::0;-1:-1:-1;3258:26:15::1;3177:67:::0;3258:26;::::1;:::i;:::-;;;3298:22;3304:2;3308:11;3298:5;:22::i;:::-;3163:168;3352:12;3338:26;;:11;:26;3160:206;;2775:597;2704:668:::0;;:::o;369:1174:5:-;428:16;457:21;481:16;491:5;481:9;:16::i;:::-;529:13;;457:40;;-1:-1:-1;508:18:5;;;457:40;-1:-1:-1;;;;;645:28:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;645:28:5;-1:-1:-1;621:52:5;-1:-1:-1;3426:1:4;711:790:5;749:10;745:1;:14;711:790;;;785:31;819:14;;;:11;:14;;;;;;;;;785:48;;;;;;;;;-1:-1:-1;;;;;785:48:5;;;;-1:-1:-1;;;785:48:5;;-1:-1:-1;;;;;785:48:5;;;;;;;;-1:-1:-1;;;785:48:5;;;;;;;;;;;;;;;;854:73;;899:8;;;854:73;1003:14;;-1:-1:-1;;;;;1003:28:5;;999:111;;1076:14;;;-1:-1:-1;999:111:5;1231:5;-1:-1:-1;;;;;1210:26:5;:17;-1:-1:-1;;;;;1210:26:5;;1206:98;;;1283:1;1261:4;1266:13;;;;;;1261:19;;;;;;;;:::i;:::-;;;;;;:23;;;;;1206:98;1423:13;1408:11;:28;1404:82;;;1461:5;;;1404:82;766:735;711:790;761:3;;711:790;;;-1:-1:-1;1531:4:5;369:1174;-1:-1:-1;;;;;;369:1174:5:o;1698:1000:15:-;702:10;716:9;702:23;694:32;;;;;;1837:16:::1;::::0;::::1;;1829:52;;;::::0;-1:-1:-1;;;1829:52:15;;15947:2:16;1829:52:15::1;::::0;::::1;15929:21:16::0;15986:2;15966:18;;;15959:30;16025:25;16005:18;;;15998:53;16068:18;;1829:52:15::1;15745:347:16::0;1829:52:15::1;1945:1;1930:12;:16;;;:76;;;;;1994:12;1950:40;1965:10;1977:12;1950:14;:40::i;:::-;:56;;;;1930:76;1922:110;;;::::0;-1:-1:-1;;;1922:110:15;;14443:2:16;1922:110:15::1;::::0;::::1;14425:21:16::0;14482:2;14462:18;;;14455:30;-1:-1:-1;;;14501:18:16;;;14494:51;14562:18;;1922:110:15::1;14241:345:16::0;1922:110:15::1;2092:17;;2075:12;2051:36;;:20;;:36;;;;;;;:::i;:::-;;;;;;;2050:59;;2042:112;;;;-1:-1:-1::0;;;2042:112:15::1;;;;;;;:::i;:::-;2234:52;::::0;-1:-1:-1;;;2234:52:15::1;::::0;::::1;9663:21:16::0;-1:-1:-1;;2261:10:15::1;9721:2:16::0;9717:15;9713:53;9700:11;;;9693:74;9783:12;;;9776:28;;;2207:90:15::1;::::0;9820:12:16;;2234:52:15::1;;;;;;;;;;;;2224:63;;;;;;2289:1;2292;2295;2207:16;:90::i;:::-;2199:114;;;::::0;-1:-1:-1;;;2199:114:15;;15200:2:16;2199:114:15::1;::::0;::::1;15182:21:16::0;15239:2;15219:18;;;15212:30;-1:-1:-1;;;15258:18:16;;;15251:41;15309:18;;2199:114:15::1;14998:335:16::0;2199:114:15::1;2456:16;2486:206;2503:16;2522:48;2526:26;2541:11:::0;2526:26:::1;::::0;::::1;;:::i;2522:48::-;2503:67:::0;-1:-1:-1;2584:26:15::1;2503:67:::0;2584:26;::::1;:::i;:::-;;;2624:22;2630:2;2634:11;2624:5;:22::i;:::-;2489:168;2678:12;2664:26;;:11;:26;2486:206;;1819:879;1698:1000:::0;;;;;;:::o;4652:98:12:-;4703:7;4729;4737:5;4729:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;4729:14:12;;4652:98;-1:-1:-1;;4652:98:12:o;7896:104:4:-;7952:13;7985:7;7978:14;;;;;:::i;9506:287::-;-1:-1:-1;;;;;9605:24:4;;736:10:1;9605:24:4;9601:54;;;9638:17;;-1:-1:-1;;;9638:17:4;;;;;;;;;;;9601:54;736:10:1;9668:32:4;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;9668:42:4;;;;;;;;;;;;:53;;-1:-1:-1;;9668:53:4;;;;;;;;;;9737:48;;12493:41:16;;;9668:42:4;;736:10:1;9737:48:4;;12466:18:16;9737:48:4;;;;;;;9506:287;;:::o;10592:369::-;10759:28;10769:4;10775:2;10779:7;10759:9;:28::i;:::-;-1:-1:-1;;;;;10802:13:4;;1505:19:0;:23;;10802:76:4;;;;;10822:56;10853:4;10859:2;10863:7;10872:5;10822:30;:56::i;:::-;10821:57;10802:76;10798:156;;;10902:40;;-1:-1:-1;;;10902:40:4;;;;;;;;;;;10798:156;10592:369;;;;:::o;3948:222:15:-;4009:13;4042:15;4050:6;4042:7;:15::i;:::-;4034:50;;;;-1:-1:-1;;;4034:50:15;;16299:2:16;4034:50:15;;;16281:21:16;16338:2;16318:18;;;16311:30;-1:-1:-1;;;16357:18:16;;;16350:52;16419:18;;4034:50:15;16097:346:16;4034:50:15;4126:7;4135:17;:6;:15;:17::i;:::-;4109:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4095:68;;3948:222;;;:::o;4448:82::-;1109:7:11;1136:6;-1:-1:-1;;;;;1136:6:11;736:10:1;1283:23:11;1275:68;;;;-1:-1:-1;;;1275:68:11;;;;;;;:::i;:::-;4510:7:15::1;:13:::0;;4520:3;;4510:7;-1:-1:-1;;4510:13:15::1;;4520:3:::0;4510:7:::1;:13:::0;::::1;;;;;;:::i;:::-;;;;;;4448:82:::0;:::o;1972:201:11:-;1109:7;1136:6;-1:-1:-1;;;;;1136:6:11;736:10:1;1283:23:11;1275:68;;;;-1:-1:-1;;;1275:68:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;2061:22:11;::::1;2053:73;;;::::0;-1:-1:-1;;;2053:73:11;;14793:2:16;2053:73:11::1;::::0;::::1;14775:21:16::0;14832:2;14812:18;;;14805:30;14871:34;14851:18;;;14844:62;-1:-1:-1;;;14922:18:16;;;14915:36;14968:19;;2053:73:11::1;14591:402:16::0;2053:73:11::1;2137:28;2156:8;2137:18;:28::i;4536:82:15:-:0;1109:7:11;1136:6;-1:-1:-1;;;;;1136:6:11;736:10:1;1283:23:11;1275:68;;;;-1:-1:-1;;;1275:68:11;;;;;;;:::i;:::-;4599:4:15::1;:12:::0;4536:82::o;4726:104::-;1109:7:11;1136:6;-1:-1:-1;;;;;1136:6:11;736:10:1;1283:23:11;1275:68;;;;-1:-1:-1;;;1275:68:11;;;;;;;:::i;:::-;4807:16:15::1;::::0;;-1:-1:-1;;4787:36:15;::::1;4807:16;::::0;;::::1;4806:17;4787:36;::::0;;4726:104::o;11216:174:4:-;11273:4;11316:7;3426:1;11297:26;;:53;;;;;11337:13;;11327:7;:23;11297:53;:85;;;;-1:-1:-1;;11355:20:4;;;;:11;:20;;;;;:27;-1:-1:-1;;;11355:27:4;;;;11354:28;;11216:174::o;17778:196::-;17893:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;17893:29:4;-1:-1:-1;;;;;17893:29:4;;;;;;;;;17938:28;;17893:24;;17938:28;;;;;;;17778:196;;;:::o;6558:242:12:-;6763:12;;-1:-1:-1;;;;;6743:16:12;;6700:7;6743:16;;;:7;:16;;;;;;6700:7;;6778:15;;6727:32;;:13;:32;:::i;:::-;6726:49;;;;:::i;:::-;:67;;;;:::i;:::-;6719:74;;6558:242;;;;;;:::o;2471:317:0:-;2586:6;2561:21;:31;;2553:73;;;;-1:-1:-1;;;2553:73:0;;17835:2:16;2553:73:0;;;17817:21:16;17874:2;17854:18;;;17847:30;17913:31;17893:18;;;17886:59;17962:18;;2553:73:0;17633:353:16;2553:73:0;2640:12;2658:9;-1:-1:-1;;;;;2658:14:0;2680:6;2658:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2639:52;;;2710:7;2702:78;;;;-1:-1:-1;;;2702:78:0;;17005:2:16;2702:78:0;;;16987:21:16;17044:2;17024:18;;;17017:30;17083:34;17063:18;;;17056:62;17154:28;17134:18;;;17127:56;17200:19;;2702:78:0;16803:422:16;12955:2021:4;13070:35;13108:21;13121:7;13108:12;:21::i;:::-;13070:59;;13168:4;-1:-1:-1;;;;;13146:26:4;:13;:18;;;-1:-1:-1;;;;;13146:26:4;;13142:67;;13181:28;;-1:-1:-1;;;13181:28:4;;;;;;;;;;;13142:67;13222:22;736:10:1;-1:-1:-1;;;;;13248:20:4;;;;:73;;-1:-1:-1;13285:36:4;13302:4;736:10:1;9864:164:4;:::i;13285:36::-;13248:126;;;-1:-1:-1;736:10:1;13338:20:4;13350:7;13338:11;:20::i;:::-;-1:-1:-1;;;;;13338:36:4;;13248:126;13222:153;;13393:17;13388:66;;13419:35;;-1:-1:-1;;;13419:35:4;;;;;;;;;;;13388:66;-1:-1:-1;;;;;13469:16:4;;13465:52;;13494:23;;-1:-1:-1;;;13494:23:4;;;;;;;;;;;13465:52;13582:35;13599:1;13603:7;13612:4;13582:8;:35::i;:::-;-1:-1:-1;;;;;13913:18:4;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;13913:31:4;;;-1:-1:-1;;;;;13913:31:4;;;-1:-1:-1;;13913:31:4;;;;;;;13959:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;13959:29:4;;;;;;;;;;;14039:20;;;:11;:20;;;;;;14074:18;;-1:-1:-1;;;;;;14107:49:4;;;;-1:-1:-1;;;14140:15:4;14107:49;;;;;;;;;;14430:11;;14490:24;;;;;14533:13;;14039:20;;14490:24;;14533:13;14529:384;;14743:13;;14728:11;:28;14724:174;;14781:20;;14850:28;;;;-1:-1:-1;;;;;14824:54:4;-1:-1:-1;;;14824:54:4;-1:-1:-1;;;;;;14824:54:4;;;-1:-1:-1;;;;;14781:20:4;;14824:54;;;;14724:174;13888:1036;;;14960:7;14956:2;-1:-1:-1;;;;;14941:27:4;14950:4;-1:-1:-1;;;;;14941:27:4;;;;;;;;;;;13059:1917;;12955:2021;;;:::o;11649:1052::-;11762:13;;-1:-1:-1;;;;;11790:16:4;;11786:48;;11815:19;;-1:-1:-1;;;11815:19:4;;;;;;;;;;;11786:48;11849:13;11845:44;;11871:18;;-1:-1:-1;;;11871:18:4;;;;;;;;;;;11845:44;-1:-1:-1;;;;;12166:16:4;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;12225:49:4;;-1:-1:-1;;;;;12166:44:4;;;;;;;12225:49;;;-1:-1:-1;;;;;12166:44:4;;;;;;12225:49;;;;;;;;;;;;;;;;12291:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;12341:66:4;;;;-1:-1:-1;;;12391:15:4;12341:66;;;;;;;;;;12291:25;12488:23;;;12528:112;12555:40;;12580:14;;;;;-1:-1:-1;;;;;12555:40:4;;;12572:1;;12555:40;;12572:1;;12555:40;12635:3;12619:12;:19;;12528:112;;-1:-1:-1;12654:13:4;:28;-1:-1:-1;;;11649:1052:4:o;639:211:13:-;783:58;;;-1:-1:-1;;;;;10846:32:16;;783:58:13;;;10828:51:16;10895:18;;;;10888:34;;;783:58:13;;;;;;;;;;10801:18:16;;;;783:58:13;;;;;;;;-1:-1:-1;;;;;783:58:13;-1:-1:-1;;;783:58:13;;;756:86;;776:5;;756:19;:86::i;6364:1109:4:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;6475:7:4;;3426:1;6524:23;;:47;;;;;6558:13;;6551:4;:20;6524:47;6520:886;;;6592:31;6626:17;;;:11;:17;;;;;;;;;6592:51;;;;;;;;;-1:-1:-1;;;;;6592:51:4;;;;-1:-1:-1;;;6592:51:4;;-1:-1:-1;;;;;6592:51:4;;;;;;;;-1:-1:-1;;;6592:51:4;;;;;;;;;;;;;;6662:729;;6712:14;;-1:-1:-1;;;;;6712:28:4;;6708:101;;6776:9;6364:1109;-1:-1:-1;;;6364:1109:4:o;6708:101::-;-1:-1:-1;;;7151:6:4;7196:17;;;;:11;:17;;;;;;;;;7184:29;;;;;;;;;-1:-1:-1;;;;;7184:29:4;;;;;-1:-1:-1;;;7184:29:4;;-1:-1:-1;;;;;7184:29:4;;;;;;;;-1:-1:-1;;;7184:29:4;;;;;;;;;;;;;7244:28;7240:109;;7312:9;6364:1109;-1:-1:-1;;;6364:1109:4:o;7240:109::-;7111:261;;;6573:833;6520:886;7434:31;;-1:-1:-1;;;7434:31:4;;;;;;;;;;;2333:191:11;2407:16;2426:6;;-1:-1:-1;;;;;2443:17:11;;;-1:-1:-1;;;;;;2443:17:11;;;;;;2476:40;;2426:6;;;;;;;2476:40;;2407:16;2476:40;2396:128;2333:191;:::o;5044:93:15:-;5094:4;5121:1;5117;:5;:13;;5129:1;5117:13;;;-1:-1:-1;5125:1:15;;5110:20;-1:-1:-1;5044:93:15:o;6006:156:4:-;-1:-1:-1;;;;;6113:19:4;;6077:15;6113:19;;;:12;:19;;;;;:40;;6147:6;;6113:19;:30;;:40;;6147:6;;-1:-1:-1;;;6113:40:4;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;6104:50;;6006:156;;;;:::o;4859:179:15:-;4952:4;1117:42;4975:46;5013:1;5016;5019;4975:29;:4;8412:58:2;;10085:66:16;8412:58:2;;;10073:79:16;10168:12;;;10161:28;;;8279:7:2;;10205:12:16;;8412:58:2;;;;;;;;;;;;8402:69;;;;;;8395:76;;8210:269;;;;4975:29:15;:37;:46;;:37;:46::i;:::-;-1:-1:-1;;;;;4975:56:15;;4968:63;;4859:179;;;;;;;:::o;18466:667:4:-;18650:72;;-1:-1:-1;;;18650:72:4;;18629:4;;-1:-1:-1;;;;;18650:36:4;;;;;:72;;736:10:1;;18701:4:4;;18707:7;;18716:5;;18650:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18650:72:4;;;;;;;;-1:-1:-1;;18650:72:4;;;;;;;;;;;;:::i;:::-;;;18646:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18884:13:4;;18880:235;;18930:40;;-1:-1:-1;;;18930:40:4;;;;;;;;;;;18880:235;19073:6;19067:13;19058:6;19054:2;19050:15;19043:38;18646:480;-1:-1:-1;;;;;;18769:55:4;-1:-1:-1;;;18769:55:4;;-1:-1:-1;18762:62:4;;342:723:14;398:13;619:10;615:53;;-1:-1:-1;;646:10:14;;;;;;;;;;;;-1:-1:-1;;;646:10:14;;;;;342:723::o;615:53::-;693:5;678:12;734:78;741:9;;734:78;;767:8;;;;:::i;:::-;;-1:-1:-1;790:10:14;;-1:-1:-1;798:2:14;790:10;;:::i;:::-;;;734:78;;;822:19;854:6;-1:-1:-1;;;;;844:17:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;844:17:14;;822:39;;872:154;879:10;;872:154;;906:11;916:1;906:11;;:::i;:::-;;-1:-1:-1;975:10:14;983:2;975:5;:10;:::i;:::-;962:24;;:2;:24;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;932:56:14;;;;;;;;-1:-1:-1;1003:11:14;1012:2;1003:11;;:::i;:::-;;;872:154;;3212:716:13;3636:23;3662:69;3690:4;3662:69;;;;;;;;;;;;;;;;;3670:5;-1:-1:-1;;;;;3662:27:13;;;:69;;;;;:::i;:::-;3746:17;;3636:95;;-1:-1:-1;3746:21:13;3742:179;;3843:10;3832:30;;;;;;;;;;;;:::i;:::-;3824:85;;;;-1:-1:-1;;;3824:85:13;;20904:2:16;3824:85:13;;;20886:21:16;20943:2;20923:18;;;20916:30;20982:34;20962:18;;;20955:62;-1:-1:-1;;;21033:18:16;;;21026:40;21083:19;;3824:85:13;20702:406:16;7631:279:2;7759:7;7780:17;7799:18;7821:25;7832:4;7838:1;7841;7844;7821:10;:25::i;:::-;7779:67;;;;7857:18;7869:5;7857:11;:18::i;:::-;-1:-1:-1;7893:9:2;7631:279;-1:-1:-1;;;;;7631:279:2:o;3955:229:0:-;4092:12;4124:52;4146:6;4154:4;4160:1;4163:12;4124:21;:52::i;5860:1632:2:-;5991:7;;6925:66;6912:79;;6908:163;;;-1:-1:-1;7024:1:2;;-1:-1:-1;7028:30:2;7008:51;;6908:163;7085:1;:7;;7090:2;7085:7;;:18;;;;;7096:1;:7;;7101:2;7096:7;;7085:18;7081:102;;;-1:-1:-1;7136:1:2;;-1:-1:-1;7140:30:2;7120:51;;7081:102;7297:24;;;7280:14;7297:24;;;;;;;;;12772:25:16;;;12845:4;12833:17;;12813:18;;;12806:45;;;;12867:18;;;12860:34;;;12910:18;;;12903:34;;;7297:24:2;;12744:19:16;;7297:24:2;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7297:24:2;;-1:-1:-1;;7297:24:2;;;-1:-1:-1;;;;;;;7336:20:2;;7332:103;;7389:1;7393:29;7373:50;;;;;;;7332:103;7455:6;-1:-1:-1;7463:20:2;;-1:-1:-1;5860:1632:2;;;;;;;;:::o;569:643::-;647:20;638:5;:29;;;;;;;;:::i;:::-;;634:571;;;569:643;:::o;634:571::-;745:29;736:5;:38;;;;;;;;:::i;:::-;;732:473;;;791:34;;-1:-1:-1;;;791:34:2;;13730:2:16;791:34:2;;;13712:21:16;13769:2;13749:18;;;13742:30;13808:26;13788:18;;;13781:54;13852:18;;791:34:2;13528:348:16;732:473:2;856:35;847:5;:44;;;;;;;;:::i;:::-;;843:362;;;908:41;;-1:-1:-1;;;908:41:2;;14083:2:16;908:41:2;;;14065:21:16;14122:2;14102:18;;;14095:30;14161:33;14141:18;;;14134:61;14212:18;;908:41:2;13881:355:16;843:362:2;980:30;971:5;:39;;;;;;;;:::i;:::-;;967:238;;;1027:44;;-1:-1:-1;;;1027:44:2;;17432:2:16;1027:44:2;;;17414:21:16;17471:2;17451:18;;;17444:30;17510:34;17490:18;;;17483:62;-1:-1:-1;;;17561:18:16;;;17554:32;17603:19;;1027:44:2;17230:398:16;967:238:2;1102:30;1093:5;:39;;;;;;;;:::i;:::-;;1089:116;;;1149:44;;-1:-1:-1;;;1149:44:2;;19373:2:16;1149:44:2;;;19355:21:16;19412:2;19392:18;;;19385:30;19451:34;19431:18;;;19424:62;-1:-1:-1;;;19502:18:16;;;19495:32;19544:19;;1149:44:2;19171:398:16;5075:510:0;5245:12;5303:5;5278:21;:30;;5270:81;;;;-1:-1:-1;;;5270:81:0;;18193:2:16;5270:81:0;;;18175:21:16;18232:2;18212:18;;;18205:30;18271:34;18251:18;;;18244:62;-1:-1:-1;;;18322:18:16;;;18315:36;18368:19;;5270:81:0;17991:402:16;5270:81:0;-1:-1:-1;;;;;1505:19:0;;;5362:60;;;;-1:-1:-1;;;5362:60:0;;20546:2:16;5362:60:0;;;20528:21:16;20585:2;20565:18;;;20558:30;20624:31;20604:18;;;20597:59;20673:18;;5362:60:0;20344:353:16;5362:60:0;5436:12;5450:23;5477:6;-1:-1:-1;;;;;5477:11:0;5496:5;5503:4;5477:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5435:73;;;;5526:51;5543:7;5552:10;5564:12;5526:16;:51::i;:::-;5519:58;5075:510;-1:-1:-1;;;;;;;5075:510:0:o;7761:712::-;7911:12;7940:7;7936:530;;;-1:-1:-1;7971:10:0;7964:17;;7936:530;8085:17;;:21;8081:374;;8283:10;8277:17;8344:15;8331:10;8327:2;8323:19;8316:44;8081:374;8426:12;8419:20;;-1:-1:-1;;;8419:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:16;78:5;-1:-1:-1;;;;;149:2:16;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:16;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:163::-;717:20;;777:10;766:22;;756:33;;746:61;;803:1;800;793:12;746:61;650:163;;;:::o;818:247::-;877:6;930:2;918:9;909:7;905:23;901:32;898:52;;;946:1;943;936:12;898:52;985:9;972:23;1004:31;1029:5;1004:31;:::i;1330:388::-;1398:6;1406;1459:2;1447:9;1438:7;1434:23;1430:32;1427:52;;;1475:1;1472;1465:12;1427:52;1514:9;1501:23;1533:31;1558:5;1533:31;:::i;:::-;1583:5;-1:-1:-1;1640:2:16;1625:18;;1612:32;1653:33;1612:32;1653:33;:::i;:::-;1705:7;1695:17;;;1330:388;;;;;:::o;1723:456::-;1800:6;1808;1816;1869:2;1857:9;1848:7;1844:23;1840:32;1837:52;;;1885:1;1882;1875:12;1837:52;1924:9;1911:23;1943:31;1968:5;1943:31;:::i;:::-;1993:5;-1:-1:-1;2050:2:16;2035:18;;2022:32;2063:33;2022:32;2063:33;:::i;:::-;1723:456;;2115:7;;-1:-1:-1;;;2169:2:16;2154:18;;;;2141:32;;1723:456::o;2184:794::-;2279:6;2287;2295;2303;2356:3;2344:9;2335:7;2331:23;2327:33;2324:53;;;2373:1;2370;2363:12;2324:53;2412:9;2399:23;2431:31;2456:5;2431:31;:::i;:::-;2481:5;-1:-1:-1;2538:2:16;2523:18;;2510:32;2551:33;2510:32;2551:33;:::i;:::-;2603:7;-1:-1:-1;2657:2:16;2642:18;;2629:32;;-1:-1:-1;2712:2:16;2697:18;;2684:32;-1:-1:-1;;;;;2728:30:16;;2725:50;;;2771:1;2768;2761:12;2725:50;2794:22;;2847:4;2839:13;;2835:27;-1:-1:-1;2825:55:16;;2876:1;2873;2866:12;2825:55;2899:73;2964:7;2959:2;2946:16;2941:2;2937;2933:11;2899:73;:::i;:::-;2889:83;;;2184:794;;;;;;;:::o;2983:382::-;3048:6;3056;3109:2;3097:9;3088:7;3084:23;3080:32;3077:52;;;3125:1;3122;3115:12;3077:52;3164:9;3151:23;3183:31;3208:5;3183:31;:::i;:::-;3233:5;-1:-1:-1;3290:2:16;3275:18;;3262:32;3303:30;3262:32;3303:30;:::i;3370:315::-;3438:6;3446;3499:2;3487:9;3478:7;3474:23;3470:32;3467:52;;;3515:1;3512;3505:12;3467:52;3554:9;3541:23;3573:31;3598:5;3573:31;:::i;:::-;3623:5;3675:2;3660:18;;;;3647:32;;-1:-1:-1;;;3370:315:16:o;3690:319::-;3757:6;3765;3818:2;3806:9;3797:7;3793:23;3789:32;3786:52;;;3834:1;3831;3824:12;3786:52;3873:9;3860:23;3892:31;3917:5;3892:31;:::i;:::-;3942:5;-1:-1:-1;3966:37:16;3999:2;3984:18;;3966:37;:::i;:::-;3956:47;;3690:319;;;;;:::o;4014:691::-;4115:6;4123;4131;4139;4147;4155;4208:3;4196:9;4187:7;4183:23;4179:33;4176:53;;;4225:1;4222;4215:12;4176:53;4264:9;4251:23;4283:31;4308:5;4283:31;:::i;:::-;4333:5;-1:-1:-1;4357:37:16;4390:2;4375:18;;4357:37;:::i;:::-;4347:47;;4441:2;4430:9;4426:18;4413:32;4403:42;;4497:2;4486:9;4482:18;4469:32;4545:4;4536:7;4532:18;4523:7;4520:31;4510:59;;4565:1;4562;4555:12;4510:59;4014:691;;;;-1:-1:-1;4014:691:16;;4642:3;4627:19;;4614:33;;4694:3;4679:19;;;4666:33;;-1:-1:-1;4014:691:16;-1:-1:-1;;4014:691:16:o;4710:245::-;4777:6;4830:2;4818:9;4809:7;4805:23;4801:32;4798:52;;;4846:1;4843;4836:12;4798:52;4878:9;4872:16;4897:28;4919:5;4897:28;:::i;4960:245::-;5018:6;5071:2;5059:9;5050:7;5046:23;5042:32;5039:52;;;5087:1;5084;5077:12;5039:52;5126:9;5113:23;5145:30;5169:5;5145:30;:::i;5210:249::-;5279:6;5332:2;5320:9;5311:7;5307:23;5303:32;5300:52;;;5348:1;5345;5338:12;5300:52;5380:9;5374:16;5399:30;5423:5;5399:30;:::i;6139:268::-;6210:6;6263:2;6251:9;6242:7;6238:23;6234:32;6231:52;;;6279:1;6276;6269:12;6231:52;6318:9;6305:23;6357:1;6350:5;6347:12;6337:40;;6373:1;6370;6363:12;6412:450;6481:6;6534:2;6522:9;6513:7;6509:23;6505:32;6502:52;;;6550:1;6547;6540:12;6502:52;6590:9;6577:23;-1:-1:-1;;;;;6615:6:16;6612:30;6609:50;;;6655:1;6652;6645:12;6609:50;6678:22;;6731:4;6723:13;;6719:27;-1:-1:-1;6709:55:16;;6760:1;6757;6750:12;6709:55;6783:73;6848:7;6843:2;6830:16;6825:2;6821;6817:11;6783:73;:::i;6867:180::-;6926:6;6979:2;6967:9;6958:7;6954:23;6950:32;6947:52;;;6995:1;6992;6985:12;6947:52;-1:-1:-1;7018:23:16;;6867:180;-1:-1:-1;6867:180:16:o;7052:184::-;7122:6;7175:2;7163:9;7154:7;7150:23;7146:32;7143:52;;;7191:1;7188;7181:12;7143:52;-1:-1:-1;7214:16:16;;7052:184;-1:-1:-1;7052:184:16:o;7241:268::-;7293:3;7331:5;7325:12;7358:6;7353:3;7346:19;7374:63;7430:6;7423:4;7418:3;7414:14;7407:4;7400:5;7396:16;7374:63;:::i;:::-;7491:2;7470:15;-1:-1:-1;;7466:29:16;7457:39;;;;7498:4;7453:50;;7241:268;-1:-1:-1;;7241:268:16:o;7514:184::-;7555:3;7593:5;7587:12;7608:52;7653:6;7648:3;7641:4;7634:5;7630:16;7608:52;:::i;:::-;7676:16;;;;;7514:184;-1:-1:-1;;7514:184:16:o;7821:274::-;7950:3;7988:6;7982:13;8004:53;8050:6;8045:3;8038:4;8030:6;8026:17;8004:53;:::i;:::-;8073:16;;;;;7821:274;-1:-1:-1;;7821:274:16:o;8100:1300::-;8377:3;8406:1;8439:6;8433:13;8469:3;8491:1;8519:9;8515:2;8511:18;8501:28;;8579:2;8568:9;8564:18;8601;8591:61;;8645:4;8637:6;8633:17;8623:27;;8591:61;8671:2;8719;8711:6;8708:14;8688:18;8685:38;8682:165;;;-1:-1:-1;;;8746:33:16;;8802:4;8799:1;8792:15;8832:4;8753:3;8820:17;8682:165;8863:18;8890:104;;;;9008:1;9003:320;;;;8856:467;;8890:104;-1:-1:-1;;8923:24:16;;8911:37;;8968:16;;;;-1:-1:-1;8890:104:16;;9003:320;21692:1;21685:14;;;21729:4;21716:18;;9098:1;9112:165;9126:6;9123:1;9120:13;9112:165;;;9204:14;;9191:11;;;9184:35;9247:16;;;;9141:10;;9112:165;;;9116:3;;9306:6;9301:3;9297:16;9290:23;;8856:467;;;;;;;9339:55;9364:29;9389:3;9381:6;9364:29;:::i;:::-;-1:-1:-1;;;7763:20:16;;7808:1;7799:11;;7703:113;9339:55;9332:62;8100:1300;-1:-1:-1;;;;;8100:1300:16:o;10933:499::-;-1:-1:-1;;;;;11202:15:16;;;11184:34;;11254:15;;11249:2;11234:18;;11227:43;11301:2;11286:18;;11279:34;;;11349:3;11344:2;11329:18;;11322:31;;;11127:4;;11370:56;;11406:19;;11398:6;11370:56;:::i;:::-;11362:64;10933:499;-1:-1:-1;;;;;;10933:499:16:o;11716:632::-;11887:2;11939:21;;;12009:13;;11912:18;;;12031:22;;;11858:4;;11887:2;12110:15;;;;12084:2;12069:18;;;11858:4;12153:169;12167:6;12164:1;12161:13;12153:169;;;12228:13;;12216:26;;12297:15;;;;12262:12;;;;12189:1;12182:9;12153:169;;;-1:-1:-1;12339:3:16;;11716:632;-1:-1:-1;;;;;;11716:632:16:o;12948:340::-;13092:2;13077:18;;13125:1;13114:13;;13104:144;;13170:10;13165:3;13161:20;13158:1;13151:31;13205:4;13202:1;13195:15;13233:4;13230:1;13223:15;13104:144;13257:25;;;12948:340;:::o;13293:230::-;13442:2;13431:9;13424:21;13405:4;13462:55;13513:2;13502:9;13498:18;13490:6;13462:55;:::i;15338:402::-;15540:2;15522:21;;;15579:2;15559:18;;;15552:30;15618:34;15613:2;15598:18;;15591:62;-1:-1:-1;;;15684:2:16;15669:18;;15662:36;15730:3;15715:19;;15338:402::o;18398:407::-;18600:2;18582:21;;;18639:2;18619:18;;;18612:30;18678:34;18673:2;18658:18;;18651:62;-1:-1:-1;;;18744:2:16;18729:18;;18722:41;18795:3;18780:19;;18398:407::o;19574:404::-;19776:2;19758:21;;;19815:2;19795:18;;;19788:30;19854:34;19849:2;19834:18;;19827:62;-1:-1:-1;;;19920:2:16;19905:18;;19898:38;19968:3;19953:19;;19574:404::o;19983:356::-;20185:2;20167:21;;;20204:18;;;20197:30;20263:34;20258:2;20243:18;;20236:62;20330:2;20315:18;;19983:356::o;21745:128::-;21785:3;21816:1;21812:6;21809:1;21806:13;21803:39;;;21822:18;;:::i;:::-;-1:-1:-1;21858:9:16;;21745:128::o;21878:228::-;21917:3;21945:10;21982:2;21979:1;21975:10;22012:2;22009:1;22005:10;22043:3;22039:2;22035:12;22030:3;22027:21;22024:47;;;22051:18;;:::i;:::-;22087:13;;21878:228;-1:-1:-1;;;;21878:228:16:o;22111:120::-;22151:1;22177;22167:35;;22182:18;;:::i;:::-;-1:-1:-1;22216:9:16;;22111:120::o;22236:168::-;22276:7;22342:1;22338;22334:6;22330:14;22327:1;22324:21;22319:1;22312:9;22305:17;22301:45;22298:71;;;22349:18;;:::i;:::-;-1:-1:-1;22389:9:16;;22236:168::o;22409:125::-;22449:4;22477:1;22474;22471:8;22468:34;;;22482:18;;:::i;:::-;-1:-1:-1;22519:9:16;;22409:125::o;22539:258::-;22611:1;22621:113;22635:6;22632:1;22629:13;22621:113;;;22711:11;;;22705:18;22692:11;;;22685:39;22657:2;22650:10;22621:113;;;22752:6;22749:1;22746:13;22743:48;;;-1:-1:-1;;22787:1:16;22769:16;;22762:27;22539:258::o;22802:380::-;22881:1;22877:12;;;;22924;;;22945:61;;22999:4;22991:6;22987:17;22977:27;;22945:61;23052:2;23044:6;23041:14;23021:18;23018:38;23015:161;;;23098:10;23093:3;23089:20;23086:1;23079:31;23133:4;23130:1;23123:15;23161:4;23158:1;23151:15;23015:161;;22802:380;;;:::o;23187:135::-;23226:3;-1:-1:-1;;23247:17:16;;23244:43;;;23267:18;;:::i;:::-;-1:-1:-1;23314:1:16;23303:13;;23187:135::o;23327:112::-;23359:1;23385;23375:35;;23390:18;;:::i;:::-;-1:-1:-1;23424:9:16;;23327:112::o;23444:127::-;23505:10;23500:3;23496:20;23493:1;23486:31;23536:4;23533:1;23526:15;23560:4;23557:1;23550:15;23576:127;23637:10;23632:3;23628:20;23625:1;23618:31;23668:4;23665:1;23658:15;23692:4;23689:1;23682:15;23708:127;23769:10;23764:3;23760:20;23757:1;23750:31;23800:4;23797:1;23790:15;23824:4;23821:1;23814:15;23840:127;23901:10;23896:3;23892:20;23889:1;23882:31;23932:4;23929:1;23922:15;23956:4;23953:1;23946:15;23972:127;24033:10;24028:3;24024:20;24021:1;24014:31;24064:4;24061:1;24054:15;24088:4;24085:1;24078:15;24104:131;-1:-1:-1;;;;;24179:31:16;;24169:42;;24159:70;;24225:1;24222;24215:12;24240:118;24326:5;24319:13;24312:21;24305:5;24302:32;24292:60;;24348:1;24345;24338:12;24363:131;-1:-1:-1;;;;;;24437:32:16;;24427:43;;24417:71;;24484:1;24481;24474:12

Swarm Source

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