ETH Price: $3,210.88 (-1.35%)
Gas: 1 Gwei

Token

Gneeks! Gou Sokyeo (GNEEKSGOU)
 

Overview

Max Total Supply

500 GNEEKSGOU

Holders

285

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 GNEEKSGOU
0x10fd5b54fb227fcdccabecfe7f90ba80023c3774
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Gneeks! Gou Sokyeo each #pfp series will be given an #airdrop #bookgame. Use the books to earn assets and rise to the top. To be airdropped Zion's PFP + Book Game (series 2) & series 3 & 4, user must have all previous series in your wallet.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
GneeksGouSokyeo

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 6 of 16: GneeksGouSokyeo.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.8.9 <0.10.0;

/*
oooooooooooooooooooooooooooooOOOooOooOOOOoooOoooooooooooooooooooooooooooooo
ooooooooooooooooooooOOOooOOOo*.   oOoo°.    oOOOOoooooOoooooooooooooooooooo
ooooooooooOooooooOoO*.  *o°       ..        o*°°°OoO  *OoooOOOOOooooooooooo
ooooooooOo*oOoOOo*OO.                       *    oO*   .OoO*°..°Ooooooooooo
ooooooOo.   oO*.  oO°                       *    OO    .#o.      OooooOOOoo
oooooOo     .O    °#°         .°*o      °**oo   .#*    Oo        *oO.  .*Oo
ooooOo       O.    O°        .####°    *####O   .#    °O         °Oo    °Oo
ooooO        O°    **   .°   .OooOO°   *OooOo   °*    O.         °Oo    oOo
oooO°        o*    .o   *O   .#Oo*O°   *#oooo   .    *o     O°   *#*    OOo
oooO    *°   *o     °   °O    °.  O°    .  °o        #°    O#.   o#°   .#oo
ooO*   .#* °o#o         °O        O°       *o       o#.   °#O    OO    *#oo
ooO.   o#oO#OoO         .O        O°       °o      °#O°   .OOo*°°#o    OOoo
ooo    #OOo.  o         .O        O°       *o      *Oo*     *O####*    #ooo
oo*   °#*.    °          O    .°oO#°   .*oO#*      .OoO.      *OoO°   °#ooo
oO*   *O      ..         O   .####O°   O####°       oooO.      .OO.   *#ooo
oO°   o#.      .  .°     O   .#o°. .   oo°.         °OoOO°      °O    OOooo
oO°   *#°      .   O     o.                     °    oOoO#O°     o    #oooo
oO*   .Oo*O    .   #°    o.                     O.   °O .*O#o    o°. °#oooo
ooo    *O#O   .°   OO    *.                     Oo    .    ..   .#####Ooooo
ooO.    °*.   °o   oO°   o.      .*.      .*.   OO.              .°°*oOoooo
oooo          oo   oOo °O#. .°*o###*°*ooO###o*°*Ooo  .         ..     Ooooo
oooO°        .#O  °OooO##OOO####OOoO####OOooo###OoO**#O*.     .O.    .#oooo
ooooO°      .#OoO###oooOoooOOooooooooooooooooooooooO#OoO#Oo**o##     °#oooo
oooooO*   .*##ooOOoooooooooooooooooooooooooooooooooooooooOO###OOo*°°.oOoooo
ooooooOOOO##OoooooooooooooooooooooooooooooooooooooooooooooooooooO#####Ooooo
*/

import "./ERC721AQueryable.sol";
import "./ERC721ABurnable.sol";
import "./Ownable.sol";
import "./MerkleProof.sol";
import "./ReentrancyGuard.sol";
import "./Strings.sol";
import "./PaymentSplitter.sol";

contract GneeksGouSokyeo is
    ERC721AQueryable,
    ERC721ABurnable,
    Ownable,
    PaymentSplitter,
    ReentrancyGuard
{
    using Strings for uint256;

    // allowlist
    bytes32 public merkleRoot;

    // mint phases
    enum Phase {
        FreeMint,
        PreMint,
        PublicMint
    }
    Phase public mintPhase = Phase.FreeMint;

    // metadata
    string public uriPrefix = "";
    string public uriSuffix = ".json";

    // price
    uint256 public cost = 0.1 ether;
    uint256 public maxSupply = 10000;

    // max per wallet
    uint256 public maxFreeMintAmtPerAddr = 1;
    uint256 public maxPreMintAmtPerAddr = 5;
    uint256 public maxPublicMintAmtPerAddr = 25;

    // max per tx
    uint256 public maxMintAmtPerTx = 1;

    // pause
    bool public isPaused = true;

    // allowlist
    bool public isAllowListEnabled = true;

    // reveal
    bool public isRevealed = false;

    // address to mints
    mapping(address => uint256) public freeWalletMints;
    mapping(address => uint256) public preWalletMints;
    mapping(address => uint256) public publicWalletMints;

    constructor(
        string memory _tokenName,
        string memory _tokenSymbol,
        uint256 _cost,
        uint256 _maxSupply,
        uint256 _maxMintAmtPerTx,
        string memory _hiddenMetadataUriPrefix,
        address[] memory _payees,
        uint256[] memory _shares
    ) ERC721A(_tokenName, _tokenSymbol) PaymentSplitter(_payees, _shares) {
        cost = _cost;
        maxSupply = _maxSupply;
        maxMintAmtPerTx = _maxMintAmtPerTx;
        uriPrefix = _hiddenMetadataUriPrefix;
    }

    /*
     * @dev Modifier to prevent phishing attacks.
     * Refer to https://davidkathoh.medium.com/tx-origin-vs-msg-sender-93db7f234cb9 for more details.
     */
    // modifier callerIsUser() {
    //     require(tx.origin == msg.sender, "The caller is another contract");
    //     _;
    // }

    modifier mintCompliance(uint256 _mintAmount) {
        require(
            _mintAmount > 0 && _mintAmount < maxMintAmtPerTx + 1,
            "Invalid mint amount!"
        );

        if (mintPhase == Phase.FreeMint) {
            require(
                freeWalletMints[_msgSender()] + _mintAmount <
                    maxFreeMintAmtPerAddr + 1,
                "User free mint limit exceeded!"
            );
        } else if (mintPhase == Phase.PreMint) {
            require(
                preWalletMints[_msgSender()] + _mintAmount <
                    maxPreMintAmtPerAddr + 1,
                "User premint limit exceeded!"
            );
        } else if (mintPhase == Phase.PublicMint) {
            require(
                publicWalletMints[_msgSender()] + _mintAmount <
                    maxPublicMintAmtPerAddr + 1,
                "User mint limit exceeded!"
            );
        }

        require(
            totalSupply() + _mintAmount < maxSupply + 1,
            "Max supply exceeded!"
        );

        _;
    }

    modifier mintPriceCompliance(uint256 _mintAmount) {
        require(msg.value >= cost * _mintAmount, "Insufficient funds!");
        _;
    }

    function isAllowListed(address user, bytes32[] calldata _merkleProof)
        public
        view
        returns (bool)
    {
        bytes32 leaf = keccak256(abi.encodePacked(user));
        return MerkleProof.verify(_merkleProof, merkleRoot, leaf);
    }

    function mint(uint256 _mintAmount, bytes32[] calldata _merkleProof)
        external
        payable
        mintCompliance(_mintAmount)
        mintPriceCompliance(_mintAmount)
        nonReentrant
    {
        require(!isPaused, "The contract is paused!");

        // check if address is on allowlist if enabled
        // if (isAllowListEnabled) {
        //     bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
        //     require(
        //         MerkleProof.verify(_merkleProof, merkleRoot, leaf),
        //         "Only allowlist users can mint!"
        //     );
        // }
        if (isAllowListEnabled) {
            require(
                isAllowListed(_msgSender(), _merkleProof),
                "Only allowlist users can mint!"
            );
        }

        // TODO: add check to make sure a valid mint phase exists?
        if (mintPhase == Phase.FreeMint) {
            freeWalletMints[_msgSender()] += _mintAmount;
        } else if (mintPhase == Phase.PreMint) {
            preWalletMints[_msgSender()] += _mintAmount;
        } else if (mintPhase == Phase.PublicMint) {
            publicWalletMints[_msgSender()] += _mintAmount;
        }

        _safeMint(_msgSender(), _mintAmount);
    }

    function mintForAddress(uint256 _mintAmount, address _receiver)
        external
        onlyOwner
    {
        require(
            totalSupply() + _mintAmount < maxSupply + 1,
            "Max supply exceeded!"
        );
        _safeMint(_receiver, _mintAmount);
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

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

    function setIsRevealed(bool _state) external onlyOwner {
        isRevealed = _state;
    }

    function setCost(uint256 _cost) external onlyOwner {
        cost = _cost;
    }

    function setMaxMintAmtPerTx(uint256 _maxMintAmtPerTx) external onlyOwner {
        maxMintAmtPerTx = _maxMintAmtPerTx;
    }

    function setMaxFreeMintAmountPerAddress(uint256 _maxFreeMintAmtPerAddr)
        external
        onlyOwner
    {
        maxFreeMintAmtPerAddr = _maxFreeMintAmtPerAddr;
    }

    function setMaxPreMintAmountPerAddress(uint256 _maxPreMintAmtPerAddr)
        external
        onlyOwner
    {
        maxPreMintAmtPerAddr = _maxPreMintAmtPerAddr;
    }

    function setMaxPublicMintAmtPerAddress(uint256 _maxPublicMintAmtPerAddr)
        external
        onlyOwner
    {
        maxPublicMintAmtPerAddr = _maxPublicMintAmtPerAddr;
    }

    // TODO: rename?
    function setUriPrefix(string memory _uriPrefix) external onlyOwner {
        uriPrefix = _uriPrefix;
    }

    // TODO: rename?
    function setUriSuffix(string memory _uriSuffix) external onlyOwner {
        uriSuffix = _uriSuffix;
    }

    function setMintPhase(Phase _phase) external onlyOwner {
        mintPhase = _phase;
    }

    function setIsPaused(bool _state) external onlyOwner {
        isPaused = _state;
    }

    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function setIsAllowListEnabled(bool _state) external onlyOwner {
        isAllowListEnabled = _state;
    }

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

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: ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @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 IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

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

    // The number of tokens burned.
    uint256 private _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 `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

    /**
     * @dev Returns the starting token ID. 
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count. 
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev 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 Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // 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.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * 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) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

    /**
     * @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, _toString(tokenId))) : '';
    }

    /**
     * @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 Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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.code.length != 0)
            if (!_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 && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // 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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // 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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev 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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

    /**
     * @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 ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

File 4 of 16: ERC721ABurnable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721ABurnable.sol';
import './ERC721A.sol';

/**
 * @title ERC721A Burnable Token
 * @dev ERC721A Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721ABurnable is ERC721A, IERC721ABurnable {
    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual override {
        _burn(tokenId, true);
    }
}

File 5 of 16: ERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721AQueryable.sol';
import './ERC721A.sol';

/**
 * @title ERC721A Queryable
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

File 7 of 16: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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 8 of 16: IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

    // ==============================
    //            IERC721
    // ==============================

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

    /**
     * @dev 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

    // ==============================
    //        IERC721Metadata
    // ==============================

    /**
     * @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 9 of 16: IERC721ABurnable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @dev Interface of an ERC721ABurnable compliant contract.
 */
interface IERC721ABurnable is IERC721A {
    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) external;
}

File 10 of 16: IERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @dev Interface of an ERC721AQueryable compliant contract.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

File 11 of 16: MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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

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 16 of 16: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"uint256","name":"_cost","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_maxMintAmtPerTx","type":"uint256"},{"internalType":"string","name":"_hiddenMetadataUriPrefix","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":"InvalidQueryRange","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"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeWalletMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAllowListEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isAllowListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintAmtPerAddr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmtPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPreMintAmtPerAddr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicMintAmtPerAddr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintPhase","outputs":[{"internalType":"enum GneeksGouSokyeo.Phase","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preWalletMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicWalletMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setIsAllowListEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setIsPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setIsRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreeMintAmtPerAddr","type":"uint256"}],"name":"setMaxFreeMintAmountPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmtPerTx","type":"uint256"}],"name":"setMaxMintAmtPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPreMintAmtPerAddr","type":"uint256"}],"name":"setMaxPreMintAmountPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPublicMintAmtPerAddr","type":"uint256"}],"name":"setMaxPublicMintAmtPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum GneeksGouSokyeo.Phase","name":"_phase","type":"uint8"}],"name":"setMintPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":[{"internalType":"uint256","name":"_tokenId","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":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","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"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6012805460ff1916905560a06040819052600060808190526200002591601391620004ab565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200005491601491620004ab565b5067016345785d8a000060155561271060165560016017819055600560185560198055601a55601b805462ffffff19166101011790553480156200009757600080fd5b506040516200411738038062004117833981016040819052620000ba9162000741565b818189898160029080519060200190620000d6929190620004ab565b508051620000ec906003906020840190620004ab565b5050600160005550620000ff336200026b565b8051825114620001715760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620001c45760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000168565b60005b825181101562000230576200021b838281518110620001ea57620001ea6200083f565b60200260200101518383815181106200020757620002076200083f565b6020026020010151620002bd60201b60201c565b8062000227816200086b565b915050620001c7565b505060016010555060158690556016859055601a84905582516200025c906013906020860190620004ab565b505050505050505050620008e1565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200032a5760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000168565b600081116200037c5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000168565b6001600160a01b0382166000908152600b602052604090205415620003f85760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b606482015260840162000168565b600d8054600181019091557fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50180546001600160a01b0319166001600160a01b0384169081179091556000908152600b602052604090208190556009546200046290829062000889565b600955604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b828054620004b990620008a4565b90600052602060002090601f016020900481019282620004dd576000855562000528565b82601f10620004f857805160ff191683800117855562000528565b8280016001018555821562000528579182015b82811115620005285782518255916020019190600101906200050b565b50620005369291506200053a565b5090565b5b808211156200053657600081556001016200053b565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171562000592576200059262000551565b604052919050565b600082601f830112620005ac57600080fd5b81516001600160401b03811115620005c857620005c862000551565b6020620005de601f8301601f1916820162000567565b8281528582848701011115620005f357600080fd5b60005b8381101562000613578581018301518282018401528201620005f6565b83811115620006255760008385840101525b5095945050505050565b60006001600160401b038211156200064b576200064b62000551565b5060051b60200190565b600082601f8301126200066757600080fd5b81516020620006806200067a836200062f565b62000567565b82815260059290921b84018101918181019086841115620006a057600080fd5b8286015b84811015620006d45780516001600160a01b0381168114620006c65760008081fd5b8352918301918301620006a4565b509695505050505050565b600082601f830112620006f157600080fd5b81516020620007046200067a836200062f565b82815260059290921b840181019181810190868411156200072457600080fd5b8286015b84811015620006d4578051835291830191830162000728565b600080600080600080600080610100898b0312156200075f57600080fd5b88516001600160401b03808211156200077757600080fd5b620007858c838d016200059a565b995060208b01519150808211156200079c57600080fd5b620007aa8c838d016200059a565b985060408b0151975060608b0151965060808b0151955060a08b0151915080821115620007d657600080fd5b620007e48c838d016200059a565b945060c08b0151915080821115620007fb57600080fd5b620008098c838d0162000655565b935060e08b01519150808211156200082057600080fd5b506200082f8b828c01620006df565b9150509295985092959890939650565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141562000882576200088262000855565b5060010190565b600082198211156200089f576200089f62000855565b500190565b600181811c90821680620008b957607f821691505b60208210811415620008db57634e487b7160e01b600052602260045260246000fd5b50919050565b61382680620008f16000396000f3fe6080604052600436106103b15760003560e01c806367762169116101e7578063b187bd261161010d578063c87b56dd116100a0578063e33b7de31161006f578063e33b7de314610ba5578063e985e9c514610bba578063efbd73f414610c03578063f2fde38b14610c2357600080fd5b8063c87b56dd14610b03578063ce7c2ac214610b23578063d5abeb0114610b59578063d79779b214610b6f57600080fd5b8063ba41b0c6116100dc578063ba41b0c614610a76578063be8ce64d14610a89578063c23dc68f14610aa9578063c65c75d414610ad657600080fd5b8063b187bd26146109f9578063b88d4fde14610a13578063b98323b414610a33578063b9e6558114610a6057600080fd5b80638b83209b11610185578063976cacce11610154578063976cacce1461096d5780639852595c1461098357806399a2557a146109b9578063a22cb465146109d957600080fd5b80638b83209b146109045780638ce3d6ed146109245780638da5cb5b1461093a57806395d89b411461095857600080fd5b80637cb64759116101c15780637cb64759146108775780637ec4a659146108975780638462151c146108b757806386e4350f146108e457600080fd5b8063677621691461082257806370a0823114610842578063715018a61461086257600080fd5b806331c07bbf116102d757806348b750441161026a5780635503a0e8116102395780635503a0e8146107ab5780635bbb2177146107c057806362b99ad4146107ed5780636352211e1461080257600080fd5b806348b750441461071e57806349a5980a1461073e5780634df14b711461075e57806354214f691461078b57600080fd5b806342842e0e116102a657806342842e0e1461069f57806342966c68146106bf57806344a0d68a146106df57806346f720d2146106ff57600080fd5b806331c07bbf146106045780633738a1bd146106245780633a98ef3914610644578063406072a91461065957600080fd5b806316ba10e01161034f57806323b872dd1161031e57806323b872dd1461058e578063240976bf146105ae57806324a19405146105ce5780632eb4a7ab146105ee57600080fd5b806316ba10e01461050a57806317881cbf1461052a57806318160ddd14610551578063191655871461056e57600080fd5b8063095ea7b31161038b578063095ea7b31461048e5780630d6749e1146104b057806313faede6146104d057806316251962146104f457600080fd5b806301ffc9a7146103ff57806306fdde0314610434578063081812fc1461045657600080fd5b366103fa577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561040b57600080fd5b5061041f61041a366004612e50565b610c43565b60405190151581526020015b60405180910390f35b34801561044057600080fd5b50610449610c95565b60405161042b9190612ec5565b34801561046257600080fd5b50610476610471366004612ed8565b610d27565b6040516001600160a01b03909116815260200161042b565b34801561049a57600080fd5b506104ae6104a9366004612f06565b610d6b565b005b3480156104bc57600080fd5b506104ae6104cb366004612ed8565b610e3e565b3480156104dc57600080fd5b506104e660155481565b60405190815260200161042b565b34801561050057600080fd5b506104e6601a5481565b34801561051657600080fd5b506104ae610525366004612fcf565b610e76565b34801561053657600080fd5b506012546105449060ff1681565b60405161042b919061302d565b34801561055d57600080fd5b5060015460005403600019016104e6565b34801561057a57600080fd5b506104ae610589366004613055565b610eb7565b34801561059a57600080fd5b506104ae6105a9366004613072565b610fe5565b3480156105ba57600080fd5b506104ae6105c93660046130c1565b610ff5565b3480156105da57600080fd5b506104ae6105e9366004612ed8565b611032565b3480156105fa57600080fd5b506104e660115481565b34801561061057600080fd5b506104ae61061f3660046130de565b611061565b34801561063057600080fd5b506104ae61063f366004612ed8565b6110b2565b34801561065057600080fd5b506009546104e6565b34801561066557600080fd5b506104e66106743660046130ff565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b3480156106ab57600080fd5b506104ae6106ba366004613072565b6110e1565b3480156106cb57600080fd5b506104ae6106da366004612ed8565b6110fc565b3480156106eb57600080fd5b506104ae6106fa366004612ed8565b61110a565b34801561070b57600080fd5b50601b5461041f90610100900460ff1681565b34801561072a57600080fd5b506104ae6107393660046130ff565b611139565b34801561074a57600080fd5b506104ae6107593660046130c1565b611321565b34801561076a57600080fd5b506104e6610779366004613055565b601e6020526000908152604090205481565b34801561079757600080fd5b50601b5461041f9062010000900460ff1681565b3480156107b757600080fd5b50610449611367565b3480156107cc57600080fd5b506107e06107db366004613138565b6113f5565b60405161042b91906131dd565b3480156107f957600080fd5b506104496114bb565b34801561080e57600080fd5b5061047661081d366004612ed8565b6114c8565b34801561082e57600080fd5b5061041f61083d366004613292565b6114d3565b34801561084e57600080fd5b506104e661085d366004613055565b61155b565b34801561086e57600080fd5b506104ae6115a9565b34801561088357600080fd5b506104ae610892366004612ed8565b6115df565b3480156108a357600080fd5b506104ae6108b2366004612fcf565b61160e565b3480156108c357600080fd5b506108d76108d2366004613055565b61164b565b60405161042b91906132e6565b3480156108f057600080fd5b506104ae6108ff3660046130c1565b611753565b34801561091057600080fd5b5061047661091f366004612ed8565b611797565b34801561093057600080fd5b506104e660175481565b34801561094657600080fd5b506008546001600160a01b0316610476565b34801561096457600080fd5b506104496117c7565b34801561097957600080fd5b506104e660185481565b34801561098f57600080fd5b506104e661099e366004613055565b6001600160a01b03166000908152600c602052604090205490565b3480156109c557600080fd5b506108d76109d436600461331e565b6117d6565b3480156109e557600080fd5b506104ae6109f4366004613353565b61195f565b348015610a0557600080fd5b50601b5461041f9060ff1681565b348015610a1f57600080fd5b506104ae610a2e366004613381565b6119f5565b348015610a3f57600080fd5b506104e6610a4e366004613055565b601d6020526000908152604090205481565b348015610a6c57600080fd5b506104e660195481565b6104ae610a84366004613400565b611a3f565b348015610a9557600080fd5b506104ae610aa4366004612ed8565b611f17565b348015610ab557600080fd5b50610ac9610ac4366004612ed8565b611f46565b60405161042b9190613432565b348015610ae257600080fd5b506104e6610af1366004613055565b601c6020526000908152604090205481565b348015610b0f57600080fd5b50610449610b1e366004612ed8565b611fbb565b348015610b2f57600080fd5b506104e6610b3e366004613055565b6001600160a01b03166000908152600b602052604090205490565b348015610b6557600080fd5b506104e660165481565b348015610b7b57600080fd5b506104e6610b8a366004613055565b6001600160a01b03166000908152600e602052604090205490565b348015610bb157600080fd5b50600a546104e6565b348015610bc657600080fd5b5061041f610bd53660046130ff565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610c0f57600080fd5b506104ae610c1e366004613467565b612088565b348015610c2f57600080fd5b506104ae610c3e366004613055565b612126565b60006301ffc9a760e01b6001600160e01b031983161480610c7457506380ac58cd60e01b6001600160e01b03198316145b80610c8f5750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610ca49061348c565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd09061348c565b8015610d1d5780601f10610cf257610100808354040283529160200191610d1d565b820191906000526020600020905b815481529060010190602001808311610d0057829003601f168201915b5050505050905090565b6000610d32826121be565b610d4f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610d76826121f3565b9050806001600160a01b0316836001600160a01b03161415610dab5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610de257610dc58133610bd5565b610de2576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610e715760405162461bcd60e51b8152600401610e68906134c7565b60405180910390fd5b601955565b6008546001600160a01b03163314610ea05760405162461bcd60e51b8152600401610e68906134c7565b8051610eb3906014906020840190612da1565b5050565b6001600160a01b0381166000908152600b6020526040902054610eec5760405162461bcd60e51b8152600401610e68906134fc565b6000610ef7600a5490565b610f019047613558565b90506000610f2e8383610f29866001600160a01b03166000908152600c602052604090205490565b61225c565b905080610f4d5760405162461bcd60e51b8152600401610e6890613570565b6001600160a01b0383166000908152600c602052604081208054839290610f75908490613558565b9250508190555080600a6000828254610f8e9190613558565b90915550610f9e905083826122a2565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610ff08383836123bb565b505050565b6008546001600160a01b0316331461101f5760405162461bcd60e51b8152600401610e68906134c7565b601b805460ff1916911515919091179055565b6008546001600160a01b0316331461105c5760405162461bcd60e51b8152600401610e68906134c7565b601855565b6008546001600160a01b0316331461108b5760405162461bcd60e51b8152600401610e68906134c7565b6012805482919060ff191660018360028111156110aa576110aa613017565b021790555050565b6008546001600160a01b031633146110dc5760405162461bcd60e51b8152600401610e68906134c7565b601a55565b610ff0838383604051806020016040528060008152506119f5565b61110781600161254c565b50565b6008546001600160a01b031633146111345760405162461bcd60e51b8152600401610e68906134c7565b601555565b6001600160a01b0381166000908152600b602052604090205461116e5760405162461bcd60e51b8152600401610e68906134fc565b6001600160a01b0382166000908152600e60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b1580156111c657600080fd5b505afa1580156111da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111fe91906135bb565b6112089190613558565b905060006112418383610f2987876001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b9050806112605760405162461bcd60e51b8152600401610e6890613570565b6001600160a01b038085166000908152600f6020908152604080832093871683529290529081208054839290611297908490613558565b90915550506001600160a01b0384166000908152600e6020526040812080548392906112c4908490613558565b909155506112d5905084848361268e565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b6008546001600160a01b0316331461134b5760405162461bcd60e51b8152600401610e68906134c7565b601b8054911515620100000262ff000019909216919091179055565b601480546113749061348c565b80601f01602080910402602001604051908101604052809291908181526020018280546113a09061348c565b80156113ed5780601f106113c2576101008083540402835291602001916113ed565b820191906000526020600020905b8154815290600101906020018083116113d057829003601f168201915b505050505081565b80516060906000816001600160401b0381111561141457611414612f32565b60405190808252806020026020018201604052801561145f57816020015b60408051606081018252600080825260208083018290529282015282526000199092019101816114325790505b50905060005b8281146114b35761148e858281518110611481576114816135d4565b6020026020010151611f46565b8282815181106114a0576114a06135d4565b6020908102919091010152600101611465565b509392505050565b601380546113749061348c565b6000610c8f826121f3565b6040516bffffffffffffffffffffffff19606085901b16602082015260009081906034016040516020818303038152906040528051906020012090506115508484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060115491508490506126e0565b9150505b9392505050565b60006001600160a01b038216611584576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146115d35760405162461bcd60e51b8152600401610e68906134c7565b6115dd60006126f6565b565b6008546001600160a01b031633146116095760405162461bcd60e51b8152600401610e68906134c7565b601155565b6008546001600160a01b031633146116385760405162461bcd60e51b8152600401610e68906134c7565b8051610eb3906013906020840190612da1565b6060600080600061165b8561155b565b90506000816001600160401b0381111561167757611677612f32565b6040519080825280602002602001820160405280156116a0578160200160208202803683370190505b5090506116c6604080516060810182526000808252602082018190529181019190915290565b60015b838614611747576116d981612748565b91508160400151156116ea5761173f565b81516001600160a01b0316156116ff57815194505b876001600160a01b0316856001600160a01b0316141561173f5780838780600101985081518110611732576117326135d4565b6020026020010181815250505b6001016116c9565b50909695505050505050565b6008546001600160a01b0316331461177d5760405162461bcd60e51b8152600401610e68906134c7565b601b80549115156101000261ff0019909216919091179055565b6000600d82815481106117ac576117ac6135d4565b6000918252602090912001546001600160a01b031692915050565b606060038054610ca49061348c565b60608183106117f857604051631960ccad60e11b815260040160405180910390fd5b60008061180460005490565b9050600185101561181457600194505b80841115611820578093505b600061182b8761155b565b90508486101561184a5785850381811015611844578091505b5061184e565b5060005b6000816001600160401b0381111561186857611868612f32565b604051908082528060200260200182016040528015611891578160200160208202803683370190505b509050816118a457935061155492505050565b60006118af88611f46565b9050600081604001516118c0575080515b885b8881141580156118d25750848714155b1561194e576118e081612748565b92508260400151156118f157611946565b82516001600160a01b03161561190657825191505b8a6001600160a01b0316826001600160a01b031614156119465780848880600101995081518110611939576119396135d4565b6020026020010181815250505b6001016118c2565b505050928352509095945050505050565b6001600160a01b0382163314156119895760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611a008484846123bb565b6001600160a01b0383163b15611a3957611a1c8484848461277d565b611a39576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b82600081118015611a5c5750601a54611a59906001613558565b81105b611a9f5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610e68565b600060125460ff166002811115611ab857611ab8613017565b1415611b3957601754611acc906001613558565b336000908152601c6020526040902054611ae7908390613558565b10611b345760405162461bcd60e51b815260206004820152601e60248201527f557365722066726565206d696e74206c696d69742065786365656465642100006044820152606401610e68565b611c63565b600160125460ff166002811115611b5257611b52613017565b1415611bce57601854611b66906001613558565b336000908152601d6020526040902054611b81908390613558565b10611b345760405162461bcd60e51b815260206004820152601c60248201527f55736572207072656d696e74206c696d697420657863656564656421000000006044820152606401610e68565b600260125460ff166002811115611be757611be7613017565b1415611c6357601954611bfb906001613558565b336000908152601e6020526040902054611c16908390613558565b10611c635760405162461bcd60e51b815260206004820152601960248201527f55736572206d696e74206c696d697420657863656564656421000000000000006044820152606401610e68565b601654611c71906001613558565b6001546000548391900360001901611c899190613558565b10611ccd5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610e68565b8380601554611cdc91906135ea565b341015611d215760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610e68565b60026010541415611d745760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610e68565b6002601055601b5460ff1615611dcc5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610e68565b601b54610100900460ff1615611e3357611de73385856114d3565b611e335760405162461bcd60e51b815260206004820152601e60248201527f4f6e6c7920616c6c6f776c6973742075736572732063616e206d696e742100006044820152606401610e68565b600060125460ff166002811115611e4c57611e4c613017565b1415611e935784601c6000335b6001600160a01b03166001600160a01b031681526020019081526020016000206000828254611e889190613558565b90915550611f019050565b600160125460ff166002811115611eac57611eac613017565b1415611ebd5784601d600033611e59565b600260125460ff166002811115611ed657611ed6613017565b1415611f0157336000908152601e602052604081208054879290611efb908490613558565b90915550505b611f0b3386612874565b50506001601055505050565b6008546001600160a01b03163314611f415760405162461bcd60e51b8152600401610e68906134c7565b601755565b60408051606080820183526000808352602080840182905283850182905284519283018552818352820181905292810192909252906001831080611f8c57506000548310155b15611f975792915050565b611fa083612748565b9050806040015115611fb25792915050565b6115548361288e565b6060611fc6826121be565b61202a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610e68565b60006120346128bc565b905060008151116120545760405180602001604052806000815250611554565b8061205e846128cb565b601460405160200161207293929190613609565b6040516020818303038152906040529392505050565b6008546001600160a01b031633146120b25760405162461bcd60e51b8152600401610e68906134c7565b6016546120c0906001613558565b60015460005484919003600019016120d89190613558565b1061211c5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610e68565b610eb38183612874565b6008546001600160a01b031633146121505760405162461bcd60e51b8152600401610e68906134c7565b6001600160a01b0381166121b55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e68565b611107816126f6565b6000816001111580156121d2575060005482105b8015610c8f575050600090815260046020526040902054600160e01b161590565b600081806001116122435760005481101561224357600081815260046020526040902054600160e01b8116612241575b80611554575060001901600081815260046020526040902054612223565b505b604051636f96cda160e11b815260040160405180910390fd5b6009546001600160a01b0384166000908152600b60205260408120549091839161228690866135ea565b61229091906136e3565b61229a91906136f7565b949350505050565b804710156122f25760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610e68565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461233f576040519150601f19603f3d011682016040523d82523d6000602084013e612344565b606091505b5050905080610ff05760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610e68565b60006123c6826121f3565b9050836001600160a01b0316816001600160a01b0316146123f95760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061241757506124178533610bd5565b8061243257503361242784610d27565b6001600160a01b0316145b90508061245257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661247957604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b86178117909155821661251657600183016000818152600460205260409020546125145760005481146125145760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03166000805160206137d183398151915260405160405180910390a45050505050565b6000612557836121f3565b90508082156125bb576000336001600160a01b038316148061257e575061257e8233610bd5565b8061259957503361258e86610d27565b6001600160a01b0316145b9050806125b957604051632ce44b5f60e11b815260040160405180910390fd5b505b600084815260066020908152604080832080546001600160a01b03191690556001600160a01b03841683526005825280832080546fffffffffffffffffffffffffffffffff01905586835260049091529020600360e01b4260a01b8317179055600160e11b821661265a57600184016000818152600460205260409020546126585760005481146126585760008181526004602052604090208390555b505b60405184906000906001600160a01b038416906000805160206137d1833981519152908390a4505060018054810190555050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610ff09084906129c8565b6000826126ed8584612a9a565b14949350505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160608101825260008082526020820181905291810191909152600082815260046020526040902054610c8f90612b06565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906127b290339089908890889060040161370e565b602060405180830381600087803b1580156127cc57600080fd5b505af19250505080156127fc575060408051601f3d908101601f191682019092526127f99181019061374b565b60015b612857573d80801561282a576040519150601f19603f3d011682016040523d82523d6000602084013e61282f565b606091505b50805161284f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b610eb3828260405180602001604052806000815250612b40565b6040805160608101825260008082526020820181905291810191909152610c8f6128b7836121f3565b612b06565b606060138054610ca49061348c565b6060816128ef5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612919578061290381613768565b91506129129050600a836136e3565b91506128f3565b6000816001600160401b0381111561293357612933612f32565b6040519080825280601f01601f19166020018201604052801561295d576020820181803683370190505b5090505b841561229a576129726001836136f7565b915061297f600a86613783565b61298a906030613558565b60f81b81838151811061299f5761299f6135d4565b60200101906001600160f81b031916908160001a9053506129c1600a866136e3565b9450612961565b6000612a1d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612c8d9092919063ffffffff16565b805190915015610ff05780806020019051810190612a3b9190613797565b610ff05760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610e68565b600081815b84518110156114b3576000858281518110612abc57612abc6135d4565b60200260200101519050808311612ae25760008381526020829052604090209250612af3565b600081815260208490526040902092505b5080612afe81613768565b915050612a9f565b604080516060810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b90921615159082015290565b6000546001600160a01b038416612b6957604051622e076360e81b815260040160405180910390fd5b82612b875760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15612c4a575b60405182906001600160a01b038816906000906000805160206137d1833981519152908290a4612c13600087848060010195508761277d565b612c30576040516368d2bf6b60e11b815260040160405180910390fd5b808210612bda578260005414612c4557600080fd5b612c7d565b5b6040516001830192906001600160a01b038816906000906000805160206137d1833981519152908290a4808210612c4b575b506000908155611a399085838684565b606061229a8484600085856001600160a01b0385163b612cef5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610e68565b600080866001600160a01b03168587604051612d0b91906137b4565b60006040518083038185875af1925050503d8060008114612d48576040519150601f19603f3d011682016040523d82523d6000602084013e612d4d565b606091505b5091509150612d5d828286612d68565b979650505050505050565b60608315612d77575081611554565b825115612d875782518084602001fd5b8160405162461bcd60e51b8152600401610e689190612ec5565b828054612dad9061348c565b90600052602060002090601f016020900481019282612dcf5760008555612e15565b82601f10612de857805160ff1916838001178555612e15565b82800160010185558215612e15579182015b82811115612e15578251825591602001919060010190612dfa565b50612e21929150612e25565b5090565b5b80821115612e215760008155600101612e26565b6001600160e01b03198116811461110757600080fd5b600060208284031215612e6257600080fd5b813561155481612e3a565b60005b83811015612e88578181015183820152602001612e70565b83811115611a395750506000910152565b60008151808452612eb1816020860160208601612e6d565b601f01601f19169290920160200192915050565b6020815260006115546020830184612e99565b600060208284031215612eea57600080fd5b5035919050565b6001600160a01b038116811461110757600080fd5b60008060408385031215612f1957600080fd5b8235612f2481612ef1565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612f7057612f70612f32565b604052919050565b60006001600160401b03831115612f9157612f91612f32565b612fa4601f8401601f1916602001612f48565b9050828152838383011115612fb857600080fd5b828260208301376000602084830101529392505050565b600060208284031215612fe157600080fd5b81356001600160401b03811115612ff757600080fd5b8201601f8101841361300857600080fd5b61229a84823560208401612f78565b634e487b7160e01b600052602160045260246000fd5b602081016003831061304f57634e487b7160e01b600052602160045260246000fd5b91905290565b60006020828403121561306757600080fd5b813561155481612ef1565b60008060006060848603121561308757600080fd5b833561309281612ef1565b925060208401356130a281612ef1565b929592945050506040919091013590565b801515811461110757600080fd5b6000602082840312156130d357600080fd5b8135611554816130b3565b6000602082840312156130f057600080fd5b81356003811061155457600080fd5b6000806040838503121561311257600080fd5b823561311d81612ef1565b9150602083013561312d81612ef1565b809150509250929050565b6000602080838503121561314b57600080fd5b82356001600160401b038082111561316257600080fd5b818501915085601f83011261317657600080fd5b81358181111561318857613188612f32565b8060051b9150613199848301612f48565b81815291830184019184810190888411156131b357600080fd5b938501935b838510156131d1578435825293850193908501906131b8565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b818110156117475761323483855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b92840192606092909201916001016131f9565b60008083601f84011261325957600080fd5b5081356001600160401b0381111561327057600080fd5b6020830191508360208260051b850101111561328b57600080fd5b9250929050565b6000806000604084860312156132a757600080fd5b83356132b281612ef1565b925060208401356001600160401b038111156132cd57600080fd5b6132d986828701613247565b9497909650939450505050565b6020808252825182820181905260009190848201906040850190845b8181101561174757835183529284019291840191600101613302565b60008060006060848603121561333357600080fd5b833561333e81612ef1565b95602085013595506040909401359392505050565b6000806040838503121561336657600080fd5b823561337181612ef1565b9150602083013561312d816130b3565b6000806000806080858703121561339757600080fd5b84356133a281612ef1565b935060208501356133b281612ef1565b92506040850135915060608501356001600160401b038111156133d457600080fd5b8501601f810187136133e557600080fd5b6133f487823560208401612f78565b91505092959194509250565b60008060006040848603121561341557600080fd5b8335925060208401356001600160401b038111156132cd57600080fd5b81516001600160a01b031681526020808301516001600160401b03169082015260408083015115159082015260608101610c8f565b6000806040838503121561347a57600080fd5b82359150602083013561312d81612ef1565b600181811c908216806134a057607f821691505b602082108114156134c157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561356b5761356b613542565b500190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b6000602082840312156135cd57600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b600081600019048311821515161561360457613604613542565b500290565b60008451602061361c8285838a01612e6d565b85519184019161362f8184848a01612e6d565b8554920191600090600181811c908083168061364c57607f831692505b85831081141561366a57634e487b7160e01b85526022600452602485fd5b80801561367e576001811461368f576136bc565b60ff198516885283880195506136bc565b60008b81526020902060005b858110156136b45781548a82015290840190880161369b565b505083880195505b50939b9a5050505050505050505050565b634e487b7160e01b600052601260045260246000fd5b6000826136f2576136f26136cd565b500490565b60008282101561370957613709613542565b500390565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061374190830184612e99565b9695505050505050565b60006020828403121561375d57600080fd5b815161155481612e3a565b600060001982141561377c5761377c613542565b5060010190565b600082613792576137926136cd565b500690565b6000602082840312156137a957600080fd5b8151611554816130b3565b600082516137c6818460208701612e6d565b919091019291505056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220ecf2345f0b6462f2a7e786999047ad1b1fa8d265dd06bfe8e1a85f81588e4ee664736f6c6343000809003300000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000012476e65656b732120476f7520536f6b79656f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009474e45454b53474f550000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004d68747470733a2f2f6e6f64656368726f6e2e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f6e6f64652d63646e2d696d616765732f676e65656b732d6d657461646174612f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013000000000000000000000000bd9502d5d9bf55c18c48f16d7c79dcada1cd6c1b0000000000000000000000005c5c7b2cb9a79d5fb7f970120955559b6977384e00000000000000000000000092f4e9e628746dde7e0e88c5ff866e5b66ada4a10000000000000000000000002a252593e315d52c7f17d07466ff13ae3661caba0000000000000000000000006e7cc4baf4ace735ebcdcd8ce8307a1389ca6172000000000000000000000000d5fc495fc6c0ff327c1e4e3bccc4b5987e256794000000000000000000000000a1cd8ca6b33836e80695f7e06b765af3b6dcfafc000000000000000000000000567a63439b5b01ff5ab0a805825f8625a373002a000000000000000000000000b55877396e968d876267c358c10a7b5bf1ed40da000000000000000000000000dd1762f73fe1be18307f3b61efc07d2161851274000000000000000000000000a487ff8900f4735201a1d402653e371f12a066cc00000000000000000000000045adfbad6e622567ca7b9b67e446b4ebca8654e600000000000000000000000033d6db45ace43064ff69e76802c5760f867454c600000000000000000000000080446f7c7748f166f874f011406930a3ef7fe2a7000000000000000000000000ea904af12fa6fae1783636feb41237697786e2bd0000000000000000000000005518fccc6506700685fa9d506514c1e732711f4d000000000000000000000000d43668b57e62f7d7015c89ae591a8b890f75e83d000000000000000000000000e6fc19180623e6c203dfcd615728f9d1925cd516000000000000000000000000227f0bf5dc894c526677290b5b18691fda5a5c170000000000000000000000000000000000000000000000000000000000000013000000000000000000000000000000000000000000000000000000000000001900000000000000000000000000000000000000000000000000000000000000f0000000000000000000000000000000000000000000000000000000000000004b000000000000000000000000000000000000000000000000000000000000004b000000000000000000000000000000000000000000000000000000000000004b0000000000000000000000000000000000000000000000000000000000000023000000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000230000000000000000000000000000000000000000000000000000000000000023000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000000000002300000000000000000000000000000000000000000000000000000000000000c8000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a

Deployed Bytecode

0x6080604052600436106103b15760003560e01c806367762169116101e7578063b187bd261161010d578063c87b56dd116100a0578063e33b7de31161006f578063e33b7de314610ba5578063e985e9c514610bba578063efbd73f414610c03578063f2fde38b14610c2357600080fd5b8063c87b56dd14610b03578063ce7c2ac214610b23578063d5abeb0114610b59578063d79779b214610b6f57600080fd5b8063ba41b0c6116100dc578063ba41b0c614610a76578063be8ce64d14610a89578063c23dc68f14610aa9578063c65c75d414610ad657600080fd5b8063b187bd26146109f9578063b88d4fde14610a13578063b98323b414610a33578063b9e6558114610a6057600080fd5b80638b83209b11610185578063976cacce11610154578063976cacce1461096d5780639852595c1461098357806399a2557a146109b9578063a22cb465146109d957600080fd5b80638b83209b146109045780638ce3d6ed146109245780638da5cb5b1461093a57806395d89b411461095857600080fd5b80637cb64759116101c15780637cb64759146108775780637ec4a659146108975780638462151c146108b757806386e4350f146108e457600080fd5b8063677621691461082257806370a0823114610842578063715018a61461086257600080fd5b806331c07bbf116102d757806348b750441161026a5780635503a0e8116102395780635503a0e8146107ab5780635bbb2177146107c057806362b99ad4146107ed5780636352211e1461080257600080fd5b806348b750441461071e57806349a5980a1461073e5780634df14b711461075e57806354214f691461078b57600080fd5b806342842e0e116102a657806342842e0e1461069f57806342966c68146106bf57806344a0d68a146106df57806346f720d2146106ff57600080fd5b806331c07bbf146106045780633738a1bd146106245780633a98ef3914610644578063406072a91461065957600080fd5b806316ba10e01161034f57806323b872dd1161031e57806323b872dd1461058e578063240976bf146105ae57806324a19405146105ce5780632eb4a7ab146105ee57600080fd5b806316ba10e01461050a57806317881cbf1461052a57806318160ddd14610551578063191655871461056e57600080fd5b8063095ea7b31161038b578063095ea7b31461048e5780630d6749e1146104b057806313faede6146104d057806316251962146104f457600080fd5b806301ffc9a7146103ff57806306fdde0314610434578063081812fc1461045657600080fd5b366103fa577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561040b57600080fd5b5061041f61041a366004612e50565b610c43565b60405190151581526020015b60405180910390f35b34801561044057600080fd5b50610449610c95565b60405161042b9190612ec5565b34801561046257600080fd5b50610476610471366004612ed8565b610d27565b6040516001600160a01b03909116815260200161042b565b34801561049a57600080fd5b506104ae6104a9366004612f06565b610d6b565b005b3480156104bc57600080fd5b506104ae6104cb366004612ed8565b610e3e565b3480156104dc57600080fd5b506104e660155481565b60405190815260200161042b565b34801561050057600080fd5b506104e6601a5481565b34801561051657600080fd5b506104ae610525366004612fcf565b610e76565b34801561053657600080fd5b506012546105449060ff1681565b60405161042b919061302d565b34801561055d57600080fd5b5060015460005403600019016104e6565b34801561057a57600080fd5b506104ae610589366004613055565b610eb7565b34801561059a57600080fd5b506104ae6105a9366004613072565b610fe5565b3480156105ba57600080fd5b506104ae6105c93660046130c1565b610ff5565b3480156105da57600080fd5b506104ae6105e9366004612ed8565b611032565b3480156105fa57600080fd5b506104e660115481565b34801561061057600080fd5b506104ae61061f3660046130de565b611061565b34801561063057600080fd5b506104ae61063f366004612ed8565b6110b2565b34801561065057600080fd5b506009546104e6565b34801561066557600080fd5b506104e66106743660046130ff565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b3480156106ab57600080fd5b506104ae6106ba366004613072565b6110e1565b3480156106cb57600080fd5b506104ae6106da366004612ed8565b6110fc565b3480156106eb57600080fd5b506104ae6106fa366004612ed8565b61110a565b34801561070b57600080fd5b50601b5461041f90610100900460ff1681565b34801561072a57600080fd5b506104ae6107393660046130ff565b611139565b34801561074a57600080fd5b506104ae6107593660046130c1565b611321565b34801561076a57600080fd5b506104e6610779366004613055565b601e6020526000908152604090205481565b34801561079757600080fd5b50601b5461041f9062010000900460ff1681565b3480156107b757600080fd5b50610449611367565b3480156107cc57600080fd5b506107e06107db366004613138565b6113f5565b60405161042b91906131dd565b3480156107f957600080fd5b506104496114bb565b34801561080e57600080fd5b5061047661081d366004612ed8565b6114c8565b34801561082e57600080fd5b5061041f61083d366004613292565b6114d3565b34801561084e57600080fd5b506104e661085d366004613055565b61155b565b34801561086e57600080fd5b506104ae6115a9565b34801561088357600080fd5b506104ae610892366004612ed8565b6115df565b3480156108a357600080fd5b506104ae6108b2366004612fcf565b61160e565b3480156108c357600080fd5b506108d76108d2366004613055565b61164b565b60405161042b91906132e6565b3480156108f057600080fd5b506104ae6108ff3660046130c1565b611753565b34801561091057600080fd5b5061047661091f366004612ed8565b611797565b34801561093057600080fd5b506104e660175481565b34801561094657600080fd5b506008546001600160a01b0316610476565b34801561096457600080fd5b506104496117c7565b34801561097957600080fd5b506104e660185481565b34801561098f57600080fd5b506104e661099e366004613055565b6001600160a01b03166000908152600c602052604090205490565b3480156109c557600080fd5b506108d76109d436600461331e565b6117d6565b3480156109e557600080fd5b506104ae6109f4366004613353565b61195f565b348015610a0557600080fd5b50601b5461041f9060ff1681565b348015610a1f57600080fd5b506104ae610a2e366004613381565b6119f5565b348015610a3f57600080fd5b506104e6610a4e366004613055565b601d6020526000908152604090205481565b348015610a6c57600080fd5b506104e660195481565b6104ae610a84366004613400565b611a3f565b348015610a9557600080fd5b506104ae610aa4366004612ed8565b611f17565b348015610ab557600080fd5b50610ac9610ac4366004612ed8565b611f46565b60405161042b9190613432565b348015610ae257600080fd5b506104e6610af1366004613055565b601c6020526000908152604090205481565b348015610b0f57600080fd5b50610449610b1e366004612ed8565b611fbb565b348015610b2f57600080fd5b506104e6610b3e366004613055565b6001600160a01b03166000908152600b602052604090205490565b348015610b6557600080fd5b506104e660165481565b348015610b7b57600080fd5b506104e6610b8a366004613055565b6001600160a01b03166000908152600e602052604090205490565b348015610bb157600080fd5b50600a546104e6565b348015610bc657600080fd5b5061041f610bd53660046130ff565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610c0f57600080fd5b506104ae610c1e366004613467565b612088565b348015610c2f57600080fd5b506104ae610c3e366004613055565b612126565b60006301ffc9a760e01b6001600160e01b031983161480610c7457506380ac58cd60e01b6001600160e01b03198316145b80610c8f5750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610ca49061348c565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd09061348c565b8015610d1d5780601f10610cf257610100808354040283529160200191610d1d565b820191906000526020600020905b815481529060010190602001808311610d0057829003601f168201915b5050505050905090565b6000610d32826121be565b610d4f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610d76826121f3565b9050806001600160a01b0316836001600160a01b03161415610dab5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610de257610dc58133610bd5565b610de2576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610e715760405162461bcd60e51b8152600401610e68906134c7565b60405180910390fd5b601955565b6008546001600160a01b03163314610ea05760405162461bcd60e51b8152600401610e68906134c7565b8051610eb3906014906020840190612da1565b5050565b6001600160a01b0381166000908152600b6020526040902054610eec5760405162461bcd60e51b8152600401610e68906134fc565b6000610ef7600a5490565b610f019047613558565b90506000610f2e8383610f29866001600160a01b03166000908152600c602052604090205490565b61225c565b905080610f4d5760405162461bcd60e51b8152600401610e6890613570565b6001600160a01b0383166000908152600c602052604081208054839290610f75908490613558565b9250508190555080600a6000828254610f8e9190613558565b90915550610f9e905083826122a2565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610ff08383836123bb565b505050565b6008546001600160a01b0316331461101f5760405162461bcd60e51b8152600401610e68906134c7565b601b805460ff1916911515919091179055565b6008546001600160a01b0316331461105c5760405162461bcd60e51b8152600401610e68906134c7565b601855565b6008546001600160a01b0316331461108b5760405162461bcd60e51b8152600401610e68906134c7565b6012805482919060ff191660018360028111156110aa576110aa613017565b021790555050565b6008546001600160a01b031633146110dc5760405162461bcd60e51b8152600401610e68906134c7565b601a55565b610ff0838383604051806020016040528060008152506119f5565b61110781600161254c565b50565b6008546001600160a01b031633146111345760405162461bcd60e51b8152600401610e68906134c7565b601555565b6001600160a01b0381166000908152600b602052604090205461116e5760405162461bcd60e51b8152600401610e68906134fc565b6001600160a01b0382166000908152600e60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b1580156111c657600080fd5b505afa1580156111da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111fe91906135bb565b6112089190613558565b905060006112418383610f2987876001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b9050806112605760405162461bcd60e51b8152600401610e6890613570565b6001600160a01b038085166000908152600f6020908152604080832093871683529290529081208054839290611297908490613558565b90915550506001600160a01b0384166000908152600e6020526040812080548392906112c4908490613558565b909155506112d5905084848361268e565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b6008546001600160a01b0316331461134b5760405162461bcd60e51b8152600401610e68906134c7565b601b8054911515620100000262ff000019909216919091179055565b601480546113749061348c565b80601f01602080910402602001604051908101604052809291908181526020018280546113a09061348c565b80156113ed5780601f106113c2576101008083540402835291602001916113ed565b820191906000526020600020905b8154815290600101906020018083116113d057829003601f168201915b505050505081565b80516060906000816001600160401b0381111561141457611414612f32565b60405190808252806020026020018201604052801561145f57816020015b60408051606081018252600080825260208083018290529282015282526000199092019101816114325790505b50905060005b8281146114b35761148e858281518110611481576114816135d4565b6020026020010151611f46565b8282815181106114a0576114a06135d4565b6020908102919091010152600101611465565b509392505050565b601380546113749061348c565b6000610c8f826121f3565b6040516bffffffffffffffffffffffff19606085901b16602082015260009081906034016040516020818303038152906040528051906020012090506115508484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060115491508490506126e0565b9150505b9392505050565b60006001600160a01b038216611584576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146115d35760405162461bcd60e51b8152600401610e68906134c7565b6115dd60006126f6565b565b6008546001600160a01b031633146116095760405162461bcd60e51b8152600401610e68906134c7565b601155565b6008546001600160a01b031633146116385760405162461bcd60e51b8152600401610e68906134c7565b8051610eb3906013906020840190612da1565b6060600080600061165b8561155b565b90506000816001600160401b0381111561167757611677612f32565b6040519080825280602002602001820160405280156116a0578160200160208202803683370190505b5090506116c6604080516060810182526000808252602082018190529181019190915290565b60015b838614611747576116d981612748565b91508160400151156116ea5761173f565b81516001600160a01b0316156116ff57815194505b876001600160a01b0316856001600160a01b0316141561173f5780838780600101985081518110611732576117326135d4565b6020026020010181815250505b6001016116c9565b50909695505050505050565b6008546001600160a01b0316331461177d5760405162461bcd60e51b8152600401610e68906134c7565b601b80549115156101000261ff0019909216919091179055565b6000600d82815481106117ac576117ac6135d4565b6000918252602090912001546001600160a01b031692915050565b606060038054610ca49061348c565b60608183106117f857604051631960ccad60e11b815260040160405180910390fd5b60008061180460005490565b9050600185101561181457600194505b80841115611820578093505b600061182b8761155b565b90508486101561184a5785850381811015611844578091505b5061184e565b5060005b6000816001600160401b0381111561186857611868612f32565b604051908082528060200260200182016040528015611891578160200160208202803683370190505b509050816118a457935061155492505050565b60006118af88611f46565b9050600081604001516118c0575080515b885b8881141580156118d25750848714155b1561194e576118e081612748565b92508260400151156118f157611946565b82516001600160a01b03161561190657825191505b8a6001600160a01b0316826001600160a01b031614156119465780848880600101995081518110611939576119396135d4565b6020026020010181815250505b6001016118c2565b505050928352509095945050505050565b6001600160a01b0382163314156119895760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611a008484846123bb565b6001600160a01b0383163b15611a3957611a1c8484848461277d565b611a39576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b82600081118015611a5c5750601a54611a59906001613558565b81105b611a9f5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610e68565b600060125460ff166002811115611ab857611ab8613017565b1415611b3957601754611acc906001613558565b336000908152601c6020526040902054611ae7908390613558565b10611b345760405162461bcd60e51b815260206004820152601e60248201527f557365722066726565206d696e74206c696d69742065786365656465642100006044820152606401610e68565b611c63565b600160125460ff166002811115611b5257611b52613017565b1415611bce57601854611b66906001613558565b336000908152601d6020526040902054611b81908390613558565b10611b345760405162461bcd60e51b815260206004820152601c60248201527f55736572207072656d696e74206c696d697420657863656564656421000000006044820152606401610e68565b600260125460ff166002811115611be757611be7613017565b1415611c6357601954611bfb906001613558565b336000908152601e6020526040902054611c16908390613558565b10611c635760405162461bcd60e51b815260206004820152601960248201527f55736572206d696e74206c696d697420657863656564656421000000000000006044820152606401610e68565b601654611c71906001613558565b6001546000548391900360001901611c899190613558565b10611ccd5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610e68565b8380601554611cdc91906135ea565b341015611d215760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610e68565b60026010541415611d745760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610e68565b6002601055601b5460ff1615611dcc5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610e68565b601b54610100900460ff1615611e3357611de73385856114d3565b611e335760405162461bcd60e51b815260206004820152601e60248201527f4f6e6c7920616c6c6f776c6973742075736572732063616e206d696e742100006044820152606401610e68565b600060125460ff166002811115611e4c57611e4c613017565b1415611e935784601c6000335b6001600160a01b03166001600160a01b031681526020019081526020016000206000828254611e889190613558565b90915550611f019050565b600160125460ff166002811115611eac57611eac613017565b1415611ebd5784601d600033611e59565b600260125460ff166002811115611ed657611ed6613017565b1415611f0157336000908152601e602052604081208054879290611efb908490613558565b90915550505b611f0b3386612874565b50506001601055505050565b6008546001600160a01b03163314611f415760405162461bcd60e51b8152600401610e68906134c7565b601755565b60408051606080820183526000808352602080840182905283850182905284519283018552818352820181905292810192909252906001831080611f8c57506000548310155b15611f975792915050565b611fa083612748565b9050806040015115611fb25792915050565b6115548361288e565b6060611fc6826121be565b61202a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610e68565b60006120346128bc565b905060008151116120545760405180602001604052806000815250611554565b8061205e846128cb565b601460405160200161207293929190613609565b6040516020818303038152906040529392505050565b6008546001600160a01b031633146120b25760405162461bcd60e51b8152600401610e68906134c7565b6016546120c0906001613558565b60015460005484919003600019016120d89190613558565b1061211c5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610e68565b610eb38183612874565b6008546001600160a01b031633146121505760405162461bcd60e51b8152600401610e68906134c7565b6001600160a01b0381166121b55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e68565b611107816126f6565b6000816001111580156121d2575060005482105b8015610c8f575050600090815260046020526040902054600160e01b161590565b600081806001116122435760005481101561224357600081815260046020526040902054600160e01b8116612241575b80611554575060001901600081815260046020526040902054612223565b505b604051636f96cda160e11b815260040160405180910390fd5b6009546001600160a01b0384166000908152600b60205260408120549091839161228690866135ea565b61229091906136e3565b61229a91906136f7565b949350505050565b804710156122f25760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610e68565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461233f576040519150601f19603f3d011682016040523d82523d6000602084013e612344565b606091505b5050905080610ff05760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610e68565b60006123c6826121f3565b9050836001600160a01b0316816001600160a01b0316146123f95760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061241757506124178533610bd5565b8061243257503361242784610d27565b6001600160a01b0316145b90508061245257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661247957604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b86178117909155821661251657600183016000818152600460205260409020546125145760005481146125145760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03166000805160206137d183398151915260405160405180910390a45050505050565b6000612557836121f3565b90508082156125bb576000336001600160a01b038316148061257e575061257e8233610bd5565b8061259957503361258e86610d27565b6001600160a01b0316145b9050806125b957604051632ce44b5f60e11b815260040160405180910390fd5b505b600084815260066020908152604080832080546001600160a01b03191690556001600160a01b03841683526005825280832080546fffffffffffffffffffffffffffffffff01905586835260049091529020600360e01b4260a01b8317179055600160e11b821661265a57600184016000818152600460205260409020546126585760005481146126585760008181526004602052604090208390555b505b60405184906000906001600160a01b038416906000805160206137d1833981519152908390a4505060018054810190555050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610ff09084906129c8565b6000826126ed8584612a9a565b14949350505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160608101825260008082526020820181905291810191909152600082815260046020526040902054610c8f90612b06565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906127b290339089908890889060040161370e565b602060405180830381600087803b1580156127cc57600080fd5b505af19250505080156127fc575060408051601f3d908101601f191682019092526127f99181019061374b565b60015b612857573d80801561282a576040519150601f19603f3d011682016040523d82523d6000602084013e61282f565b606091505b50805161284f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b610eb3828260405180602001604052806000815250612b40565b6040805160608101825260008082526020820181905291810191909152610c8f6128b7836121f3565b612b06565b606060138054610ca49061348c565b6060816128ef5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612919578061290381613768565b91506129129050600a836136e3565b91506128f3565b6000816001600160401b0381111561293357612933612f32565b6040519080825280601f01601f19166020018201604052801561295d576020820181803683370190505b5090505b841561229a576129726001836136f7565b915061297f600a86613783565b61298a906030613558565b60f81b81838151811061299f5761299f6135d4565b60200101906001600160f81b031916908160001a9053506129c1600a866136e3565b9450612961565b6000612a1d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612c8d9092919063ffffffff16565b805190915015610ff05780806020019051810190612a3b9190613797565b610ff05760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610e68565b600081815b84518110156114b3576000858281518110612abc57612abc6135d4565b60200260200101519050808311612ae25760008381526020829052604090209250612af3565b600081815260208490526040902092505b5080612afe81613768565b915050612a9f565b604080516060810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b90921615159082015290565b6000546001600160a01b038416612b6957604051622e076360e81b815260040160405180910390fd5b82612b875760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15612c4a575b60405182906001600160a01b038816906000906000805160206137d1833981519152908290a4612c13600087848060010195508761277d565b612c30576040516368d2bf6b60e11b815260040160405180910390fd5b808210612bda578260005414612c4557600080fd5b612c7d565b5b6040516001830192906001600160a01b038816906000906000805160206137d1833981519152908290a4808210612c4b575b506000908155611a399085838684565b606061229a8484600085856001600160a01b0385163b612cef5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610e68565b600080866001600160a01b03168587604051612d0b91906137b4565b60006040518083038185875af1925050503d8060008114612d48576040519150601f19603f3d011682016040523d82523d6000602084013e612d4d565b606091505b5091509150612d5d828286612d68565b979650505050505050565b60608315612d77575081611554565b825115612d875782518084602001fd5b8160405162461bcd60e51b8152600401610e689190612ec5565b828054612dad9061348c565b90600052602060002090601f016020900481019282612dcf5760008555612e15565b82601f10612de857805160ff1916838001178555612e15565b82800160010185558215612e15579182015b82811115612e15578251825591602001919060010190612dfa565b50612e21929150612e25565b5090565b5b80821115612e215760008155600101612e26565b6001600160e01b03198116811461110757600080fd5b600060208284031215612e6257600080fd5b813561155481612e3a565b60005b83811015612e88578181015183820152602001612e70565b83811115611a395750506000910152565b60008151808452612eb1816020860160208601612e6d565b601f01601f19169290920160200192915050565b6020815260006115546020830184612e99565b600060208284031215612eea57600080fd5b5035919050565b6001600160a01b038116811461110757600080fd5b60008060408385031215612f1957600080fd5b8235612f2481612ef1565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612f7057612f70612f32565b604052919050565b60006001600160401b03831115612f9157612f91612f32565b612fa4601f8401601f1916602001612f48565b9050828152838383011115612fb857600080fd5b828260208301376000602084830101529392505050565b600060208284031215612fe157600080fd5b81356001600160401b03811115612ff757600080fd5b8201601f8101841361300857600080fd5b61229a84823560208401612f78565b634e487b7160e01b600052602160045260246000fd5b602081016003831061304f57634e487b7160e01b600052602160045260246000fd5b91905290565b60006020828403121561306757600080fd5b813561155481612ef1565b60008060006060848603121561308757600080fd5b833561309281612ef1565b925060208401356130a281612ef1565b929592945050506040919091013590565b801515811461110757600080fd5b6000602082840312156130d357600080fd5b8135611554816130b3565b6000602082840312156130f057600080fd5b81356003811061155457600080fd5b6000806040838503121561311257600080fd5b823561311d81612ef1565b9150602083013561312d81612ef1565b809150509250929050565b6000602080838503121561314b57600080fd5b82356001600160401b038082111561316257600080fd5b818501915085601f83011261317657600080fd5b81358181111561318857613188612f32565b8060051b9150613199848301612f48565b81815291830184019184810190888411156131b357600080fd5b938501935b838510156131d1578435825293850193908501906131b8565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b818110156117475761323483855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b92840192606092909201916001016131f9565b60008083601f84011261325957600080fd5b5081356001600160401b0381111561327057600080fd5b6020830191508360208260051b850101111561328b57600080fd5b9250929050565b6000806000604084860312156132a757600080fd5b83356132b281612ef1565b925060208401356001600160401b038111156132cd57600080fd5b6132d986828701613247565b9497909650939450505050565b6020808252825182820181905260009190848201906040850190845b8181101561174757835183529284019291840191600101613302565b60008060006060848603121561333357600080fd5b833561333e81612ef1565b95602085013595506040909401359392505050565b6000806040838503121561336657600080fd5b823561337181612ef1565b9150602083013561312d816130b3565b6000806000806080858703121561339757600080fd5b84356133a281612ef1565b935060208501356133b281612ef1565b92506040850135915060608501356001600160401b038111156133d457600080fd5b8501601f810187136133e557600080fd5b6133f487823560208401612f78565b91505092959194509250565b60008060006040848603121561341557600080fd5b8335925060208401356001600160401b038111156132cd57600080fd5b81516001600160a01b031681526020808301516001600160401b03169082015260408083015115159082015260608101610c8f565b6000806040838503121561347a57600080fd5b82359150602083013561312d81612ef1565b600181811c908216806134a057607f821691505b602082108114156134c157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561356b5761356b613542565b500190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b6000602082840312156135cd57600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b600081600019048311821515161561360457613604613542565b500290565b60008451602061361c8285838a01612e6d565b85519184019161362f8184848a01612e6d565b8554920191600090600181811c908083168061364c57607f831692505b85831081141561366a57634e487b7160e01b85526022600452602485fd5b80801561367e576001811461368f576136bc565b60ff198516885283880195506136bc565b60008b81526020902060005b858110156136b45781548a82015290840190880161369b565b505083880195505b50939b9a5050505050505050505050565b634e487b7160e01b600052601260045260246000fd5b6000826136f2576136f26136cd565b500490565b60008282101561370957613709613542565b500390565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061374190830184612e99565b9695505050505050565b60006020828403121561375d57600080fd5b815161155481612e3a565b600060001982141561377c5761377c613542565b5060010190565b600082613792576137926136cd565b500690565b6000602082840312156137a957600080fd5b8151611554816130b3565b600082516137c6818460208701612e6d565b919091019291505056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220ecf2345f0b6462f2a7e786999047ad1b1fa8d265dd06bfe8e1a85f81588e4ee664736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000012476e65656b732120476f7520536f6b79656f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009474e45454b53474f550000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004d68747470733a2f2f6e6f64656368726f6e2e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f6e6f64652d63646e2d696d616765732f676e65656b732d6d657461646174612f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013000000000000000000000000bd9502d5d9bf55c18c48f16d7c79dcada1cd6c1b0000000000000000000000005c5c7b2cb9a79d5fb7f970120955559b6977384e00000000000000000000000092f4e9e628746dde7e0e88c5ff866e5b66ada4a10000000000000000000000002a252593e315d52c7f17d07466ff13ae3661caba0000000000000000000000006e7cc4baf4ace735ebcdcd8ce8307a1389ca6172000000000000000000000000d5fc495fc6c0ff327c1e4e3bccc4b5987e256794000000000000000000000000a1cd8ca6b33836e80695f7e06b765af3b6dcfafc000000000000000000000000567a63439b5b01ff5ab0a805825f8625a373002a000000000000000000000000b55877396e968d876267c358c10a7b5bf1ed40da000000000000000000000000dd1762f73fe1be18307f3b61efc07d2161851274000000000000000000000000a487ff8900f4735201a1d402653e371f12a066cc00000000000000000000000045adfbad6e622567ca7b9b67e446b4ebca8654e600000000000000000000000033d6db45ace43064ff69e76802c5760f867454c600000000000000000000000080446f7c7748f166f874f011406930a3ef7fe2a7000000000000000000000000ea904af12fa6fae1783636feb41237697786e2bd0000000000000000000000005518fccc6506700685fa9d506514c1e732711f4d000000000000000000000000d43668b57e62f7d7015c89ae591a8b890f75e83d000000000000000000000000e6fc19180623e6c203dfcd615728f9d1925cd516000000000000000000000000227f0bf5dc894c526677290b5b18691fda5a5c170000000000000000000000000000000000000000000000000000000000000013000000000000000000000000000000000000000000000000000000000000001900000000000000000000000000000000000000000000000000000000000000f0000000000000000000000000000000000000000000000000000000000000004b000000000000000000000000000000000000000000000000000000000000004b000000000000000000000000000000000000000000000000000000000000004b0000000000000000000000000000000000000000000000000000000000000023000000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000230000000000000000000000000000000000000000000000000000000000000023000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000000000002300000000000000000000000000000000000000000000000000000000000000c8000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a

-----Decoded View---------------
Arg [0] : _tokenName (string): Gneeks! Gou Sokyeo
Arg [1] : _tokenSymbol (string): GNEEKSGOU
Arg [2] : _cost (uint256): 0
Arg [3] : _maxSupply (uint256): 500
Arg [4] : _maxMintAmtPerTx (uint256): 1
Arg [5] : _hiddenMetadataUriPrefix (string): https://nodechron.s3.us-east-2.amazonaws.com/node-cdn-images/gneeks-metadata/
Arg [6] : _payees (address[]): 0xBD9502D5D9Bf55c18c48f16D7C79dCadA1Cd6C1B,0x5C5C7b2Cb9a79d5fb7F970120955559b6977384e,0x92f4E9e628746Dde7e0e88c5ff866E5B66ada4A1,0x2a252593E315d52C7F17d07466FF13AE3661caba,0x6e7CC4BAF4ACE735EBCDcd8ce8307a1389cA6172,0xD5FC495fC6C0FF327c1E4e3Bccc4B5987e256794,0xA1Cd8cA6b33836E80695f7e06B765Af3b6DcfafC,0x567A63439B5b01ff5Ab0A805825F8625A373002A,0xb55877396e968D876267C358C10A7B5Bf1Ed40da,0xdd1762f73Fe1be18307F3b61EFC07d2161851274,0xa487Ff8900f4735201A1D402653e371F12a066cC,0x45ADFbad6E622567ca7b9B67e446B4eBCa8654e6,0x33d6db45AcE43064FF69e76802C5760F867454C6,0x80446f7C7748f166f874F011406930a3eF7fe2A7,0xEA904af12fa6faE1783636feb41237697786e2bd,0x5518Fccc6506700685FA9D506514C1E732711F4D,0xd43668b57e62f7D7015c89AE591A8b890F75E83D,0xE6FC19180623e6c203dfcd615728F9D1925cD516,0x227F0bf5dc894C526677290b5B18691FDa5a5C17
Arg [7] : _shares (uint256[]): 25,240,75,75,75,35,15,5,35,35,20,20,25,35,200,60,5,10,10

-----Encoded View---------------
56 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000200
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000480
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [9] : 476e65656b732120476f7520536f6b79656f0000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [11] : 474e45454b53474f550000000000000000000000000000000000000000000000
Arg [12] : 000000000000000000000000000000000000000000000000000000000000004d
Arg [13] : 68747470733a2f2f6e6f64656368726f6e2e73332e75732d656173742d322e61
Arg [14] : 6d617a6f6e6177732e636f6d2f6e6f64652d63646e2d696d616765732f676e65
Arg [15] : 656b732d6d657461646174612f00000000000000000000000000000000000000
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [17] : 000000000000000000000000bd9502d5d9bf55c18c48f16d7c79dcada1cd6c1b
Arg [18] : 0000000000000000000000005c5c7b2cb9a79d5fb7f970120955559b6977384e
Arg [19] : 00000000000000000000000092f4e9e628746dde7e0e88c5ff866e5b66ada4a1
Arg [20] : 0000000000000000000000002a252593e315d52c7f17d07466ff13ae3661caba
Arg [21] : 0000000000000000000000006e7cc4baf4ace735ebcdcd8ce8307a1389ca6172
Arg [22] : 000000000000000000000000d5fc495fc6c0ff327c1e4e3bccc4b5987e256794
Arg [23] : 000000000000000000000000a1cd8ca6b33836e80695f7e06b765af3b6dcfafc
Arg [24] : 000000000000000000000000567a63439b5b01ff5ab0a805825f8625a373002a
Arg [25] : 000000000000000000000000b55877396e968d876267c358c10a7b5bf1ed40da
Arg [26] : 000000000000000000000000dd1762f73fe1be18307f3b61efc07d2161851274
Arg [27] : 000000000000000000000000a487ff8900f4735201a1d402653e371f12a066cc
Arg [28] : 00000000000000000000000045adfbad6e622567ca7b9b67e446b4ebca8654e6
Arg [29] : 00000000000000000000000033d6db45ace43064ff69e76802c5760f867454c6
Arg [30] : 00000000000000000000000080446f7c7748f166f874f011406930a3ef7fe2a7
Arg [31] : 000000000000000000000000ea904af12fa6fae1783636feb41237697786e2bd
Arg [32] : 0000000000000000000000005518fccc6506700685fa9d506514c1e732711f4d
Arg [33] : 000000000000000000000000d43668b57e62f7d7015c89ae591a8b890f75e83d
Arg [34] : 000000000000000000000000e6fc19180623e6c203dfcd615728f9d1925cd516
Arg [35] : 000000000000000000000000227f0bf5dc894c526677290b5b18691fda5a5c17
Arg [36] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [37] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [38] : 00000000000000000000000000000000000000000000000000000000000000f0
Arg [39] : 000000000000000000000000000000000000000000000000000000000000004b
Arg [40] : 000000000000000000000000000000000000000000000000000000000000004b
Arg [41] : 000000000000000000000000000000000000000000000000000000000000004b
Arg [42] : 0000000000000000000000000000000000000000000000000000000000000023
Arg [43] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [44] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [45] : 0000000000000000000000000000000000000000000000000000000000000023
Arg [46] : 0000000000000000000000000000000000000000000000000000000000000023
Arg [47] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [48] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [49] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [50] : 0000000000000000000000000000000000000000000000000000000000000023
Arg [51] : 00000000000000000000000000000000000000000000000000000000000000c8
Arg [52] : 000000000000000000000000000000000000000000000000000000000000003c
Arg [53] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [54] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [55] : 000000000000000000000000000000000000000000000000000000000000000a


Deployed Bytecode Sourcemap

2263:7284:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3216:40:12;719:10:1;3216:40:12;;;-1:-1:-1;;;;;206:32:16;;;188:51;;3246:9:12;270:2:16;255:18;;248:34;161:18;3216:40:12;;;;;;;2263:7284:5;;;;;4880:607:2;;;;;;;;;;-1:-1:-1;4880:607:2;;;;;:::i;:::-;;:::i;:::-;;;844:14:16;;837:22;819:41;;807:2;792:18;4880:607:2;;;;;;;;9768:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11769:200::-;;;;;;;;;;-1:-1:-1;11769:200:2;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1971:32:16;;;1953:51;;1941:2;1926:18;11769:200:2;1807:203:16;11245:463:2;;;;;;;;;;-1:-1:-1;11245:463:2;;;;;:::i;:::-;;:::i;:::-;;8574:179:5;;;;;;;;;;-1:-1:-1;8574:179:5;;;;;:::i;:::-;;:::i;2720:31::-;;;;;;;;;;;;;;;;;;;2617:25:16;;;2605:2;2590:18;2720:31:5;2471:177:16;2977:34:5;;;;;;;;;;;;;;;;8913:106;;;;;;;;;;-1:-1:-1;8913:106:5;;;;;:::i;:::-;;:::i;2571:39::-;;;;;;;;;;-1:-1:-1;2571:39:5;;;;;;;;;;;;;;;:::i;3963:309:2:-;;;;;;;;;;-1:-1:-1;7267:1:5;4225:12:2;4016:7;4209:13;:28;-1:-1:-1;;4209:46:2;3963:309;;4944:553:12;;;;;;;;;;-1:-1:-1;4944:553:12;;;;;:::i;:::-;;:::i;12629:164:2:-;;;;;;;;;;-1:-1:-1;12629:164:2;;;;;:::i;:::-;;:::i;9121:87:5:-;;;;;;;;;;-1:-1:-1;9121:87:5;;;;;:::i;:::-;;:::i;8398:170::-;;;;;;;;;;-1:-1:-1;8398:170:5;;;;;:::i;:::-;;:::i;2443:25::-;;;;;;;;;;;;;;;;9025:90;;;;;;;;;;-1:-1:-1;9025:90:5;;;;;:::i;:::-;;:::i;8088:124::-;;;;;;;;;;-1:-1:-1;8088:124:5;;;;;:::i;:::-;;:::i;3341:89:12:-;;;;;;;;;;-1:-1:-1;3411:12:12;;3341:89;;4433:133;;;;;;;;;;-1:-1:-1;4433:133:12;;;;;:::i;:::-;-1:-1:-1;;;;;4529:21:12;;;4503:7;4529:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;4433:133;12859:179:2;;;;;;;;;;-1:-1:-1;12859:179:2;;;;;:::i;:::-;;:::i;512:92:3:-;;;;;;;;;;-1:-1:-1;512:92:3;;;;;:::i;:::-;;:::i;8002:80:5:-;;;;;;;;;;-1:-1:-1;8002:80:5;;;;;:::i;:::-;;:::i;3082:37::-;;;;;;;;;;-1:-1:-1;3082:37:5;;;;;;;;;;;5758:628:12;;;;;;;;;;-1:-1:-1;5758:628:12;;;;;:::i;:::-;;:::i;7905:91:5:-;;;;;;;;;;-1:-1:-1;7905:91:5;;;;;:::i;:::-;;:::i;3312:52::-;;;;;;;;;;-1:-1:-1;3312:52:5;;;;;:::i;:::-;;;;;;;;;;;;;;3140:30;;;;;;;;;;-1:-1:-1;3140:30:5;;;;;;;;;;;2667:33;;;;;;;;;;;;;:::i;1501:459:4:-;;;;;;;;;;-1:-1:-1;1501:459:4;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2633:28:5:-;;;;;;;;;;;;;:::i;9564:142:2:-;;;;;;;;;;-1:-1:-1;9564:142:2;;;;;:::i;:::-;;:::i;5387:257:5:-;;;;;;;;;;-1:-1:-1;5387:257:5;;;;;:::i;:::-;;:::i;5546:221:2:-;;;;;;;;;;-1:-1:-1;5546:221:2;;;;;:::i;:::-;;:::i;1661:101:11:-;;;;;;;;;;;;;:::i;9214:104:5:-;;;;;;;;;;-1:-1:-1;9214:104:5;;;;;:::i;:::-;;:::i;8780:106::-;;;;;;;;;;-1:-1:-1;8780:106:5;;;;;:::i;:::-;;:::i;5219:871:4:-;;;;;;;;;;-1:-1:-1;5219:871:4;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;9324:107:5:-;;;;;;;;;;-1:-1:-1;9324:107:5;;;;;:::i;:::-;;:::i;4652:98:12:-;;;;;;;;;;-1:-1:-1;4652:98:12;;;;;:::i;:::-;;:::i;2818:40:5:-;;;;;;;;;;;;;;;;1029:85:11;;;;;;;;;;-1:-1:-1;1101:6:11;;-1:-1:-1;;;;;1101:6:11;1029:85;;9930:102:2;;;;;;;;;;;;;:::i;2864:39:5:-;;;;;;;;;;;;;;;;4163:107:12;;;;;;;;;;-1:-1:-1;4163:107:12;;;;;:::i;:::-;-1:-1:-1;;;;;4245:18:12;4219:7;4245:18;;;:9;:18;;;;;;;4163:107;2336:2446:4;;;;;;;;;;-1:-1:-1;2336:2446:4;;;;;:::i;:::-;;:::i;12036:303:2:-;;;;;;;;;;-1:-1:-1;12036:303:2;;;;;:::i;:::-;;:::i;3031:27:5:-;;;;;;;;;;-1:-1:-1;3031:27:5;;;;;;;;13104:385:2;;;;;;;;;;-1:-1:-1;13104:385:2;;;;;:::i;:::-;;:::i;3257:49:5:-;;;;;;;;;;-1:-1:-1;3257:49:5;;;;;:::i;:::-;;;;;;;;;;;;;;2909:43;;;;;;;;;;;;;;;;5650:1241;;;;;;:::i;:::-;;:::i;8218:174::-;;;;;;;;;;-1:-1:-1;8218:174:5;;;;;:::i;:::-;;:::i;938:410:4:-;;;;;;;;;;-1:-1:-1;938:410:4;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3201:50:5:-;;;;;;;;;;-1:-1:-1;3201:50:5;;;;;:::i;:::-;;;;;;;;;;;;;;7281:618;;;;;;;;;;-1:-1:-1;7281:618:5;;;;;:::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;2757:32:5;;;;;;;;;;;;;;;;3763:117:12;;;;;;;;;;-1:-1:-1;3763:117:12;;;;;:::i;:::-;-1:-1:-1;;;;;3847:26:12;3821:7;3847:26;;;:19;:26;;;;;;;3763:117;3519:93;;;;;;;;;;-1:-1:-1;3591:14:12;;3519:93;;12405:162:2;;;;;;;;;;-1:-1:-1;12405:162:2;;;;;:::i;:::-;-1:-1:-1;;;;;12525:25:2;;;12502:4;12525:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;12405:162;6897:273:5;;;;;;;;;;-1:-1:-1;6897:273:5;;;;;:::i;:::-;;:::i;1911:198:11:-;;;;;;;;;;-1:-1:-1;1911:198:11;;;;;:::i;:::-;;:::i;4880:607:2:-;4965:4;-1:-1:-1;;;;;;;;;5260:25:2;;;;:101;;-1:-1:-1;;;;;;;;;;5336:25:2;;;5260:101;:177;;;-1:-1:-1;;;;;;;;;;5412:25:2;;;5260:177;5241:196;4880:607;-1:-1:-1;;4880:607:2:o;9768:98::-;9822:13;9854:5;9847:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9768:98;:::o;11769:200::-;11837:7;11861:16;11869:7;11861;:16::i;:::-;11856:64;;11886:34;;-1:-1:-1;;;11886:34:2;;;;;;;;;;;11856:64;-1:-1:-1;11938:24:2;;;;:15;:24;;;;;;-1:-1:-1;;;;;11938:24:2;;11769:200::o;11245:463::-;11317:13;11349:27;11368:7;11349:18;:27::i;:::-;11317:61;;11398:5;-1:-1:-1;;;;;11392:11:2;:2;-1:-1:-1;;;;;11392:11:2;;11388:48;;;11412:24;;-1:-1:-1;;;11412:24:2;;;;;;;;;;;11388:48;719:10:1;-1:-1:-1;;;;;11451:28:2;;;11447:172;;11498:44;11515:5;719:10:1;12405:162:2;:::i;11498:44::-;11493:126;;11569:35;;-1:-1:-1;;;11569:35:2;;;;;;;;;;;11493:126;11629:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;11629:29:2;-1:-1:-1;;;;;11629:29:2;;;;;;;;;11673:28;;11629:24;;11673:28;;;;;;;11307:401;11245:463;;:::o;8574:179:5:-;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;;;;;;;;;8696:23:5::1;:50:::0;8574:179::o;8913:106::-;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;8990:22:5;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;8913:106:::0;:::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;;;;;206:32:16;;188:51;;270:2;255:18;;248:34;;;5457:33:12;;161:18:16;5457:33:12;;;;;;;5001:496;;4944:553;:::o;12629:164:2:-;12758:28;12768:4;12774:2;12778:7;12758:9;:28::i;:::-;12629:164;;;:::o;9121:87:5:-;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;9184:8:5::1;:17:::0;;-1:-1:-1;;9184:17:5::1;::::0;::::1;;::::0;;;::::1;::::0;;9121:87::o;8398:170::-;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;8517:20:5::1;:44:::0;8398:170::o;9025:90::-;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;9090:9:5::1;:18:::0;;9102:6;;9090:9;-1:-1:-1;;9090:18:5::1;::::0;9102:6;9090:18:::1;::::0;::::1;;;;;;:::i;:::-;;;;;;9025:90:::0;:::o;8088:124::-;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;8171:15:5::1;:34:::0;8088:124::o;12859:179:2:-;12992:39;13009:4;13015:2;13019:7;12992:39;;;;;;;;;;;;:16;:39::i;512:92:3:-;577:20;583:7;592:4;577:5;:20::i;:::-;512:92;:::o;8002:80:5:-;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;8063:4:5::1;:12:::0;8002:80::o;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;;;1953:51:16;-1:-1:-1;;;;;5937:15:12;;;;;1926: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;;;;;206:32:16;;;188:51;;270:2;255:18;;248:34;;;6334:45:12;;;;;161:18:16;6334:45:12;;;;;;;5821:565;;5758:628;;:::o;7905:91:5:-;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;7970:10:5::1;:19:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;7970:19:5;;::::1;::::0;;;::::1;::::0;;7905:91::o;2667:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1501:459:4:-;1674:15;;1590:23;;1649:22;1674:15;-1:-1:-1;;;;;1740:36:4;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;1740:36:4;;-1:-1:-1;;1740:36:4;;;;;;;;;;;;1703:73;;1795:9;1790:123;1811:14;1806:1;:19;1790:123;;1866:32;1886:8;1895:1;1886:11;;;;;;;;:::i;:::-;;;;;;;1866:19;:32::i;:::-;1850:10;1861:1;1850:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;1827:3;;1790:123;;;-1:-1:-1;1933:10:4;1501:459;-1:-1:-1;;;1501:459:4:o;2633:28:5:-;;;;;;;:::i;9564:142:2:-;9628:7;9670:27;9689:7;9670:18;:27::i;5387:257:5:-;5547:22;;-1:-1:-1;;16269:2:16;16265:15;;;16261:53;5547:22:5;;;16249:66:16;5502:4:5;;;;16331:12:16;;5547:22:5;;;;;;;;;;;;5537:33;;;;;;5522:48;;5587:50;5606:12;;5587:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5620:10:5;;;-1:-1:-1;5632:4:5;;-1:-1:-1;5587:18:5;:50::i;:::-;5580:57;;;5387:257;;;;;;:::o;5546:221:2:-;5610:7;-1:-1:-1;;;;;5633:19:2;;5629:60;;5661:28;;-1:-1:-1;;;5661:28:2;;;;;;;;;;;5629:60;-1:-1:-1;;;;;;5706:25:2;;;;;:18;:25;;;;;;-1:-1:-1;;;;;5706:54:2;;5546:221::o;1661:101:11:-;1101:6;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;9214:104:5:-;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;9287:10:5::1;:24:::0;9214:104::o;8780:106::-;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;8857:22:5;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;5219:871:4:-:0;5289:16;5341:19;5374:25;5413:22;5438:16;5448:5;5438:9;:16::i;:::-;5413:41;;5468:25;5510:14;-1:-1:-1;;;;;5496:29:4;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5496:29:4;;5468:57;;5539:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;5539:31:4;7267:1:5;5584:461:4;5633:14;5618:11;:29;5584:461;;5684:15;5697:1;5684:12;:15::i;:::-;5672:27;;5721:9;:16;;;5717:71;;;5761:8;;5717:71;5809:14;;-1:-1:-1;;;;;5809:28:4;;5805:109;;5881:14;;;-1:-1:-1;5805:109:4;5956:5;-1:-1:-1;;;;;5935:26:4;:17;-1:-1:-1;;;;;5935:26:4;;5931:100;;;6011:1;5985:8;5994:13;;;;;;5985:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;5931:100;5649:3;;5584:461;;;-1:-1:-1;6065:8:4;;5219:871;-1:-1:-1;;;;;;5219:871:4:o;9324:107:5:-;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;9397:18:5::1;:27:::0;;;::::1;;;;-1:-1:-1::0;;9397:27:5;;::::1;::::0;;;::::1;::::0;;9324:107::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;9930:102:2:-;9986:13;10018:7;10011:14;;;;;:::i;2336:2446:4:-;2467:16;2532:4;2523:5;:13;2519:45;;2545:19;;-1:-1:-1;;;2545:19:4;;;;;;;;;;;2519:45;2578:19;2611:17;2631:14;3713:7:2;3739:13;;3666:93;2631:14:4;2611:34;-1:-1:-1;7267:1:5;2721:5:4;:23;2717:85;;;7267:1:5;2764:23:4;;2717:85;2876:9;2869:4;:16;2865:71;;;2912:9;2905:16;;2865:71;2949:25;2977:16;2987:5;2977:9;:16::i;:::-;2949:44;;3168:4;3160:5;:12;3156:271;;;3214:12;;;3248:31;;;3244:109;;;3323:11;3303:31;;3244:109;3174:193;3156:271;;;-1:-1:-1;3411:1:4;3156:271;3440:25;3482:17;-1:-1:-1;;;;;3468:32:4;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3468:32:4;-1:-1:-1;3440:60:4;-1:-1:-1;3518:22:4;3514:76;;3567:8;-1:-1:-1;3560:15:4;;-1:-1:-1;;;3560:15:4;3514:76;3731:31;3765:26;3785:5;3765:19;:26::i;:::-;3731:60;;3805:25;4047:9;:16;;;4042:90;;-1:-1:-1;4103:14:4;;4042:90;4162:5;4145:467;4174:4;4169:1;:9;;:45;;;;;4197:17;4182:11;:32;;4169:45;4145:467;;;4251:15;4264:1;4251:12;:15::i;:::-;4239:27;;4288:9;:16;;;4284:71;;;4328:8;;4284:71;4376:14;;-1:-1:-1;;;;;4376:28:4;;4372:109;;4448:14;;;-1:-1:-1;4372:109:4;4523:5;-1:-1:-1;;;;;4502:26:4;:17;-1:-1:-1;;;;;4502:26:4;;4498:100;;;4578:1;4552:8;4561:13;;;;;;4552:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;4498:100;4216:3;;4145:467;;;-1:-1:-1;;;4694:29:4;;;-1:-1:-1;4694:29:4;;2336:2446;-1:-1:-1;;;;;2336:2446:4:o;12036:303:2:-;-1:-1:-1;;;;;12134:31:2;;719:10:1;12134:31:2;12130:61;;;12174:17;;-1:-1:-1;;;12174:17:2;;;;;;;;;;;12130:61;719:10:1;12202:39:2;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;12202:49:2;;;;;;;;;;;;:60;;-1:-1:-1;;12202:60:2;;;;;;;;;;12277:55;;819:41:16;;;12202:49:2;;719:10:1;12277:55:2;;792:18:16;12277:55:2;;;;;;;12036:303;;:::o;13104:385::-;13265:28;13275:4;13281:2;13285:7;13265:9;:28::i;:::-;-1:-1:-1;;;;;13307:14:2;;;:19;13303:180;;13345:56;13376:4;13382:2;13386:7;13395:5;13345:30;:56::i;:::-;13340:143;;13428:40;;-1:-1:-1;;;13428:40:2;;;;;;;;;;;13340:143;13104:385;;;;:::o;5650:1241:5:-;5774:11;4278:1;4264:11;:15;:52;;;;-1:-1:-1;4297:15:5;;:19;;4315:1;4297:19;:::i;:::-;4283:11;:33;4264:52;4243:119;;;;-1:-1:-1;;;4243:119:5;;16556:2:16;4243:119:5;;;16538:21:16;16595:2;16575:18;;;16568:30;-1:-1:-1;;;16614:18:16;;;16607:50;16674:18;;4243:119:5;16354:344:16;4243:119:5;4390:14;4377:9;;;;:27;;;;;;;;:::i;:::-;;4373:722;;;4511:21;;:25;;4535:1;4511:25;:::i;:::-;719:10:1;4445:29:5;;;;:15;:29;;;;;;:43;;4477:11;;4445:43;:::i;:::-;:91;4420:180;;;;-1:-1:-1;;;4420:180:5;;16905:2:16;4420:180:5;;;16887:21:16;16944:2;16924:18;;;16917:30;16983:32;16963:18;;;16956:60;17033:18;;4420:180:5;16703:354:16;4420:180:5;4373:722;;;4634:13;4621:9;;;;:26;;;;;;;;:::i;:::-;;4617:478;;;4753:20;;:24;;4776:1;4753:24;:::i;:::-;719:10:1;4688:28:5;;;;:14;:28;;;;;;:42;;4719:11;;4688:42;:::i;:::-;:89;4663:176;;;;-1:-1:-1;;;4663:176:5;;17264:2:16;4663:176:5;;;17246:21:16;17303:2;17283:18;;;17276:30;17342;17322:18;;;17315:58;17390:18;;4663:176:5;17062:352:16;4617:478:5;4873:16;4860:9;;;;:29;;;;;;;;:::i;:::-;;4856:239;;;4998:23;;:27;;5024:1;4998:27;:::i;:::-;719:10:1;4930:31:5;;;;:17;:31;;;;;;:45;;4964:11;;4930:45;:::i;:::-;:95;4905:179;;;;-1:-1:-1;;;4905:179:5;;17621:2:16;4905:179:5;;;17603:21:16;17660:2;17640:18;;;17633:30;17699:27;17679:18;;;17672:55;17744:18;;4905:179:5;17419:349:16;4905:179:5;5156:9;;:13;;5168:1;5156:13;:::i;:::-;7267:1;4225:12:2;4016:7;4209:13;5142:11:5;;4209:28:2;;-1:-1:-1;;4209:46:2;5126:27:5;;;;:::i;:::-;:43;5105:110;;;;-1:-1:-1;;;5105:110:5;;17975:2:16;5105:110:5;;;17957:21:16;18014:2;17994:18;;;17987:30;-1:-1:-1;;;18033:18:16;;;18026:50;18093:18;;5105:110:5;17773:344:16;5105:110:5;5815:11:::1;5328;5321:4;;:18;;;;:::i;:::-;5308:9;:31;;5300:63;;;::::0;-1:-1:-1;;;5300:63:5;;18497:2:16;5300:63:5::1;::::0;::::1;18479:21:16::0;18536:2;18516:18;;;18509:30;-1:-1:-1;;;18555:18:16;;;18548:49;18614:18;;5300:63:5::1;18295:343:16::0;5300:63:5::1;1744:1:13::2;2325:7;;:19;;2317:63;;;::::0;-1:-1:-1;;;2317:63:13;;18845:2:16;2317:63:13::2;::::0;::::2;18827:21:16::0;18884:2;18864:18;;;18857:30;18923:33;18903:18;;;18896:61;18974:18;;2317:63:13::2;18643:355:16::0;2317:63:13::2;1744:1;2455:7;:18:::0;5872:8:5::3;::::0;::::3;;5871:9;5863:45;;;::::0;-1:-1:-1;;;5863:45:5;;19205:2:16;5863:45:5::3;::::0;::::3;19187:21:16::0;19244:2;19224:18;;;19217:30;19283:25;19263:18;;;19256:53;19326:18;;5863:45:5::3;19003:347:16::0;5863:45:5::3;6266:18;::::0;::::3;::::0;::::3;;;6262:179;;;6325:41;719:10:1::0;6353:12:5::3;;6325:13;:41::i;:::-;6300:130;;;::::0;-1:-1:-1;;;6300:130:5;;19557:2:16;6300:130:5::3;::::0;::::3;19539:21:16::0;19596:2;19576:18;;;19569:30;19635:32;19615:18;;;19608:60;19685:18;;6300:130:5::3;19355:354:16::0;6300:130:5::3;6535:14;6522:9;::::0;::::3;;:27;::::0;::::3;;;;;;:::i;:::-;;6518:320;;;6598:11:::0;6565:15:::3;:29;719:10:1::0;6581:12:5::3;-1:-1:-1::0;;;;;6565:29:5::3;-1:-1:-1::0;;;;;6565:29:5::3;;;;;;;;;;;;;:44;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;6518:320:5::3;::::0;-1:-1:-1;6518:320:5::3;;6643:13;6630:9;::::0;::::3;;:26;::::0;::::3;;;;;;:::i;:::-;;6626:212;;;6704:11:::0;6672:14:::3;:28;719:10:1::0;6687:12:5::3;640:96:1::0;6626:212:5::3;6749:16;6736:9;::::0;::::3;;:29;::::0;::::3;;;;;;:::i;:::-;;6732:106;;;719:10:1::0;6781:31:5::3;::::0;;;:17:::3;:31;::::0;;;;:46;;6816:11;;6781:31;:46:::3;::::0;6816:11;;6781:46:::3;:::i;:::-;::::0;;;-1:-1:-1;;6732:106:5::3;6848:36;719:10:1::0;6872:11:5::3;6848:9;:36::i;:::-;-1:-1:-1::0;;1701:1:13::2;2628:7;:22:::0;-1:-1:-1;;;5650:1241:5:o;8218:174::-;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;8339:21:5::1;:46:::0;8218:174::o;938:410:4:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7267:1:5;1092:25:4;;;:54;;-1:-1:-1;3713:7:2;3739:13;1121:7:4;:25;;1092:54;1088:101;;;1169:9;938:410;-1:-1:-1;;938:410:4:o;1088:101::-;1210:21;1223:7;1210:12;:21::i;:::-;1198:33;;1245:9;:16;;;1241:63;;;1284:9;938:410;-1:-1:-1;;938:410:4:o;1241:63::-;1320:21;1333:7;1320:12;:21::i;7281:618:5:-;7395:13;7445:17;7453:8;7445:7;:17::i;:::-;7424:111;;;;-1:-1:-1;;;7424:111:5;;19916:2:16;7424:111:5;;;19898:21:16;19955:2;19935:18;;;19928:30;19994:34;19974:18;;;19967:62;-1:-1:-1;;;20045:18:16;;;20038:45;20100:19;;7424:111:5;19714:411:16;7424:111:5;7546:28;7577:10;:8;:10::i;:::-;7546:41;;7647:1;7622:14;7616:28;:32;:276;;;;;;;;;;;;;;;;;7737:14;7777:19;:8;:17;:19::i;:::-;7822:9;7695:158;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;7597:295;7281:618;-1:-1:-1;;;7281:618:5:o;6897:273::-;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;7061:9:5::1;::::0;:13:::1;::::0;7073:1:::1;7061:13;:::i;:::-;7267:1:::0;4225:12:2;4016:7;4209:13;7047:11:5;;4209:28:2;;-1:-1:-1;;4209:46:2;7031:27:5::1;;;;:::i;:::-;:43;7010:110;;;::::0;-1:-1:-1;;;7010:110:5;;17975:2:16;7010:110:5::1;::::0;::::1;17957:21:16::0;18014:2;17994:18;;;17987:30;-1:-1:-1;;;18033:18:16;;;18026:50;18093:18;;7010:110:5::1;17773:344:16::0;7010:110:5::1;7130:33;7140:9;7151:11;7130:9;:33::i;1911:198:11:-:0;1101:6;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;1999:22:11;::::1;1991:73;;;::::0;-1:-1:-1;;;1991:73:11;;21990:2:16;1991:73:11::1;::::0;::::1;21972:21:16::0;22029:2;22009:18;;;22002:30;22068:34;22048:18;;;22041:62;-1:-1:-1;;;22119:18:16;;;22112:36;22165:19;;1991:73:11::1;21788:402:16::0;1991:73:11::1;2074:28;2093:8;2074:18;:28::i;13735:268:2:-:0;13792:4;13846:7;7267:1:5;13827:26:2;;:65;;;;;13879:13;;13869:7;:23;13827:65;:150;;;;-1:-1:-1;;13929:26:2;;;;:17;:26;;;;;;-1:-1:-1;;;13929:43:2;:48;;13735:268::o;7141:1105::-;7208:7;7242;;7267:1:5;7288:23:2;7284:898;;7340:13;;7333:4;:20;7329:853;;;7377:14;7394:23;;;:17;:23;;;;;;-1:-1:-1;;;7481:23:2;;7477:687;;7992:111;7999:11;7992:111;;-1:-1:-1;;;8069:6:2;8051:25;;;;:17;:25;;;;;;7992:111;;7477:687;7355:827;7329:853;8208:31;;-1:-1:-1;;;8208:31:2;;;;;;;;;;;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;-1:-1:-1;;;;6558:242:12:o;2412:312:0:-;2526:6;2501:21;:31;;2493:73;;;;-1:-1:-1;;;2493:73:0;;22784:2:16;2493:73:0;;;22766:21:16;22823:2;22803:18;;;22796:30;22862:31;22842:18;;;22835:59;22911:18;;2493:73:0;22582:353:16;2493:73:0;2578:12;2596:9;-1:-1:-1;;;;;2596:14:0;2618:6;2596:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2577:52;;;2647:7;2639:78;;;;-1:-1:-1;;;2639:78:0;;23352:2:16;2639:78:0;;;23334:21:16;23391:2;23371:18;;;23364:30;23430:34;23410:18;;;23403:62;23501:28;23481:18;;;23474:56;23547:19;;2639:78:0;23150:422:16;18835:2460:2;18945:27;18975;18994:7;18975:18;:27::i;:::-;18945:57;;19058:4;-1:-1:-1;;;;;19017:45:2;19033:19;-1:-1:-1;;;;;19017:45:2;;19013:86;;19071:28;;-1:-1:-1;;;19071:28:2;;;;;;;;;;;19013:86;19110:22;719:10:1;-1:-1:-1;;;;;19136:27:2;;;;:86;;-1:-1:-1;19179:43:2;19196:4;719:10:1;12405:162:2;:::i;19179:43::-;19136:145;;;-1:-1:-1;719:10:1;19238:20:2;19250:7;19238:11;:20::i;:::-;-1:-1:-1;;;;;19238:43:2;;19136:145;19110:172;;19298:17;19293:66;;19324:35;;-1:-1:-1;;;19324:35:2;;;;;;;;;;;19293:66;-1:-1:-1;;;;;19373:16:2;;19369:52;;19398:23;;-1:-1:-1;;;19398:23:2;;;;;;;;;;;19369:52;19545:24;;;;:15;:24;;;;;;;;19538:31;;-1:-1:-1;;;;;;19538:31:2;;;-1:-1:-1;;;;;19930:24:2;;;;;:18;:24;;;;;19928:26;;-1:-1:-1;;19928:26:2;;;19998:22;;;;;;;19996:24;;-1:-1:-1;19996:24:2;;;20284:26;;;:17;:26;;;;;-1:-1:-1;;;20370:15:2;1656:3;20370:41;20329:83;;:126;;20284:171;;;20572:46;;20568:616;;20675:1;20665:11;;20643:19;20796:30;;;:17;:30;;;;;;20792:378;;20932:13;;20917:11;:28;20913:239;;21077:30;;;;:17;:30;;;;;:52;;;20913:239;20625:559;20568:616;21228:7;21224:2;-1:-1:-1;;;;;21209:27:2;21218:4;-1:-1:-1;;;;;21209:27:2;-1:-1:-1;;;;;;;;;;;21209:27:2;;;;;;;;;18935:2360;;18835:2460;;;:::o;21672:2747::-;21751:27;21781;21800:7;21781:18;:27::i;:::-;21751:57;-1:-1:-1;21751:57:2;21882:305;;;;21915:22;719:10:1;-1:-1:-1;;;;;21941:27:2;;;;:90;;-1:-1:-1;21988:43:2;22005:4;719:10:1;12405:162:2;:::i;21988:43::-;21941:153;;;-1:-1:-1;719:10:1;22051:20:2;22063:7;22051:11;:20::i;:::-;-1:-1:-1;;;;;22051:43:2;;21941:153;21915:180;;22115:17;22110:66;;22141:35;;-1:-1:-1;;;22141:35:2;;;;;;;;;;;22110:66;21901:286;21882:305;22318:24;;;;:15;:24;;;;;;;;22311:31;;-1:-1:-1;;;;;;22311:31:2;;;-1:-1:-1;;;;;22919:24:2;;;;:18;:24;;;;;:59;;22947:31;22919:59;;;23209:26;;;:17;:26;;;;;-1:-1:-1;;;23297:15:2;1656:3;23297:41;23254:85;;:162;23209:207;;-1:-1:-1;;;23533:46:2;;23529:616;;23636:1;23626:11;;23604:19;23757:30;;;:17;:30;;;;;;23753:378;;23893:13;;23878:11;:28;23874:239;;24038:30;;;;:17;:30;;;;;:52;;;23874:239;23586:559;23529:616;24170:35;;24197:7;;24193:1;;-1:-1:-1;;;;;24170:35:2;;;-1:-1:-1;;;;;;;;;;;24170:35:2;24193:1;;24170:35;-1:-1:-1;;24388:12:2;:14;;;;;;-1:-1:-1;;21672:2747:2:o;687:205:14:-;826:58;;;-1:-1:-1;;;;;206:32:16;;826:58:14;;;188:51:16;255:18;;;;248:34;;;826:58:14;;;;;;;;;;161:18:16;;;;826:58:14;;;;;;;;-1:-1:-1;;;;;826:58:14;-1:-1:-1;;;826:58:14;;;799:86;;819:5;;799:19;:86::i;1154:184:10:-;1275:4;1327;1298:25;1311:5;1318:4;1298:12;:25::i;:::-;:33;;1154:184;-1:-1:-1;;;;1154:184:10:o;2263:187:11:-;2355:6;;;-1:-1:-1;;;;;2371:17:11;;;-1:-1:-1;;;;;;2371:17:11;;;;;;;2403:40;;2355:6;;;2371:17;2355:6;;2403:40;;2336:16;;2403:40;2326:124;2263:187;:::o;8712:151:2:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;8831:24:2;;;;:17;:24;;;;;;8812:44;;:18;:44::i;24900:697::-;25078:88;;-1:-1:-1;;;25078:88:2;;25058:4;;-1:-1:-1;;;;;25078:45:2;;;;;:88;;719:10:1;;25145:4:2;;25151:7;;25160:5;;25078:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25078:88:2;;;;;;;;-1:-1:-1;;25078:88:2;;;;;;;;;;;;:::i;:::-;;;25074:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25356:13:2;;25352:229;;25401:40;;-1:-1:-1;;;25401:40:2;;;;;;;;;;;25352:229;25541:6;25535:13;25526:6;25522:2;25518:15;25511:38;25074:517;-1:-1:-1;;;;;;25234:64:2;-1:-1:-1;;;25234:64:2;;-1:-1:-1;24900:697:2;;;;;;:::o;14082:102::-;14150:27;14160:2;14164:8;14150:27;;;;;;;;;;;;:9;:27::i;9351:156::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;9453:47:2;9472:27;9491:7;9472:18;:27::i;:::-;9453:18;:47::i;9437:108:5:-;9497:13;9529:9;9522:16;;;;;:::i;328:703:15:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:15;;;;;;;;;;;;-1:-1:-1;;;627:10:15;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:15;;-1:-1:-1;773:2:15;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;-1:-1:-1;;;;;817:17:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:15;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:15;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:15;;;;;;;;-1:-1:-1;972:11:15;981:2;972:11;;:::i;:::-;;;844:150;;3193:706:14;3612:23;3638:69;3666:4;3638:69;;;;;;;;;;;;;;;;;3646:5;-1:-1:-1;;;;;3638:27:14;;;:69;;;;;:::i;:::-;3721:17;;3612:95;;-1:-1:-1;3721:21:14;3717:176;;3816:10;3805:30;;;;;;;;;;;;:::i;:::-;3797:85;;;;-1:-1:-1;;;3797:85:14;;25034:2:16;3797:85:14;;;25016:21:16;25073:2;25053:18;;;25046:30;25112:34;25092:18;;;25085:62;-1:-1:-1;;;25163:18:16;;;25156:40;25213:19;;3797:85:14;24832:406:16;1689:662:10;1772:7;1814:4;1772:7;1828:488;1852:5;:12;1848:1;:16;1828:488;;;1885:20;1908:5;1914:1;1908:8;;;;;;;;:::i;:::-;;;;;;;1885:31;;1950:12;1934;:28;1930:376;;2425:13;2473:15;;;2508:4;2501:15;;;2554:4;2538:21;;2060:57;;1930:376;;;2425:13;2473:15;;;2508:4;2501:15;;;2554:4;2538:21;;2234:57;;1930:376;-1:-1:-1;1866:3:10;;;;:::i;:::-;;;;1828:488;;8335:291:2;-1:-1:-1;;;;;;;;;;;;;8444:41:2;;;;1656:3;8529:32;;;-1:-1:-1;;;;;8495:67:2;-1:-1:-1;;;8495:67:2;-1:-1:-1;;;8591:23:2;;;:28;;-1:-1:-1;;;8572:47:2;-1:-1:-1;8335:291:2:o;14544:2184::-;14662:20;14685:13;-1:-1:-1;;;;;14712:16:2;;14708:48;;14737:19;;-1:-1:-1;;;14737:19:2;;;;;;;;;;;14708:48;14770:13;14766:44;;14792:18;;-1:-1:-1;;;14792:18:2;;;;;;;;;;;14766:44;-1:-1:-1;;;;;15346:22:2;;;;;;:18;:22;;;;1151:2;15346:22;;;:70;;15384:31;15372:44;;15346:70;;;15652:31;;;:17;:31;;;;;15743:15;1656:3;15743:41;15702:83;;-1:-1:-1;15820:13:2;;1913:3;15805:56;15702:160;15652:210;;:31;;15940:23;;;;15982:14;:19;15978:622;;16021:308;16051:38;;16076:12;;-1:-1:-1;;;;;16051:38:2;;;16068:1;;-1:-1:-1;;;;;;;;;;;16051:38:2;16068:1;;16051:38;16116:69;16155:1;16159:2;16163:14;;;;;;16179:5;16116:30;:69::i;:::-;16111:172;;16220:40;;-1:-1:-1;;;16220:40:2;;;;;;;;;;;16111:172;16324:3;16309:12;:18;16021:308;;16408:12;16391:13;;:29;16387:43;;16422:8;;;16387:43;15978:622;;;16469:117;16499:40;;16524:14;;;;;-1:-1:-1;;;;;16499:40:2;;;16516:1;;-1:-1:-1;;;;;;;;;;;16499:40:2;16516:1;;16499:40;16581:3;16566:12;:18;16469:117;;15978:622;-1:-1:-1;16613:13:2;:28;;;16661:60;;16694:2;16698:12;16712:8;16661:60;:::i;3861:223:0:-;3994:12;4025:52;4047:6;4055:4;4061:1;4064:12;3994;-1:-1:-1;;;;;1465:19:0;;;5228:60;;;;-1:-1:-1;;;5228:60:0;;25852:2:16;5228:60:0;;;25834:21:16;25891:2;25871:18;;;25864:30;25930:31;25910:18;;;25903:59;25979:18;;5228:60:0;25650:353:16;5228:60:0;5300:12;5314:23;5341:6;-1:-1:-1;;;;;5341:11:0;5360:5;5367:4;5341:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5299:73;;;;5389:51;5406:7;5415:10;5427:12;5389:16;:51::i;:::-;5382:58;4948:499;-1:-1:-1;;;;;;;4948:499:0:o;7561:692::-;7707:12;7735:7;7731:516;;;-1:-1:-1;7765:10:0;7758:17;;7731:516;7876:17;;:21;7872:365;;8070:10;8064:17;8130:15;8117:10;8113:2;8109:19;8102:44;7872:365;8209:12;8202:20;;-1:-1:-1;;;8202:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;293:131:16;-1:-1:-1;;;;;;367:32:16;;357:43;;347:71;;414:1;411;404:12;429:245;487:6;540:2;528:9;519:7;515:23;511:32;508:52;;;556:1;553;546:12;508:52;595:9;582:23;614:30;638:5;614:30;:::i;871:258::-;943:1;953:113;967:6;964:1;961:13;953:113;;;1043:11;;;1037:18;1024:11;;;1017:39;989:2;982:10;953:113;;;1084:6;1081:1;1078:13;1075:48;;;-1:-1:-1;;1119:1:16;1101:16;;1094:27;871:258::o;1134:::-;1176:3;1214:5;1208:12;1241:6;1236:3;1229:19;1257:63;1313:6;1306:4;1301:3;1297:14;1290:4;1283:5;1279:16;1257:63;:::i;:::-;1374:2;1353:15;-1:-1:-1;;1349:29:16;1340:39;;;;1381:4;1336:50;;1134:258;-1:-1:-1;;1134:258:16:o;1397:220::-;1546:2;1535:9;1528:21;1509:4;1566:45;1607:2;1596:9;1592:18;1584:6;1566:45;:::i;1622:180::-;1681:6;1734:2;1722:9;1713:7;1709:23;1705:32;1702:52;;;1750:1;1747;1740:12;1702:52;-1:-1:-1;1773:23:16;;1622:180;-1:-1:-1;1622:180:16:o;2015:131::-;-1:-1:-1;;;;;2090:31:16;;2080:42;;2070:70;;2136:1;2133;2126:12;2151:315;2219:6;2227;2280:2;2268:9;2259:7;2255:23;2251:32;2248:52;;;2296:1;2293;2286:12;2248:52;2335:9;2322:23;2354:31;2379:5;2354:31;:::i;:::-;2404:5;2456:2;2441:18;;;;2428:32;;-1:-1:-1;;;2151:315:16:o;2653:127::-;2714:10;2709:3;2705:20;2702:1;2695:31;2745:4;2742:1;2735:15;2769:4;2766:1;2759:15;2785:275;2856:2;2850:9;2921:2;2902:13;;-1:-1:-1;;2898:27:16;2886:40;;-1:-1:-1;;;;;2941:34:16;;2977:22;;;2938:62;2935:88;;;3003:18;;:::i;:::-;3039:2;3032:22;2785:275;;-1:-1:-1;2785:275:16:o;3065:407::-;3130:5;-1:-1:-1;;;;;3156:6:16;3153:30;3150:56;;;3186:18;;:::i;:::-;3224:57;3269:2;3248:15;;-1:-1:-1;;3244:29:16;3275:4;3240:40;3224:57;:::i;:::-;3215:66;;3304:6;3297:5;3290:21;3344:3;3335:6;3330:3;3326:16;3323:25;3320:45;;;3361:1;3358;3351:12;3320:45;3410:6;3405:3;3398:4;3391:5;3387:16;3374:43;3464:1;3457:4;3448:6;3441:5;3437:18;3433:29;3426:40;3065:407;;;;;:::o;3477:451::-;3546:6;3599:2;3587:9;3578:7;3574:23;3570:32;3567:52;;;3615:1;3612;3605:12;3567:52;3655:9;3642:23;-1:-1:-1;;;;;3680:6:16;3677:30;3674:50;;;3720:1;3717;3710:12;3674:50;3743:22;;3796:4;3788:13;;3784:27;-1:-1:-1;3774:55:16;;3825:1;3822;3815:12;3774:55;3848:74;3914:7;3909:2;3896:16;3891:2;3887;3883:11;3848:74;:::i;3933:127::-;3994:10;3989:3;3985:20;3982:1;3975:31;4025:4;4022:1;4015:15;4049:4;4046:1;4039:15;4065:338;4207:2;4192:18;;4240:1;4229:13;;4219:144;;4285:10;4280:3;4276:20;4273:1;4266:31;4320:4;4317:1;4310:15;4348:4;4345:1;4338:15;4219:144;4372:25;;;4065:338;:::o;4408:255::-;4475:6;4528:2;4516:9;4507:7;4503:23;4499:32;4496:52;;;4544:1;4541;4534:12;4496:52;4583:9;4570:23;4602:31;4627:5;4602:31;:::i;4668:456::-;4745:6;4753;4761;4814:2;4802:9;4793:7;4789:23;4785:32;4782:52;;;4830:1;4827;4820:12;4782:52;4869:9;4856:23;4888:31;4913:5;4888:31;:::i;:::-;4938:5;-1:-1:-1;4995:2:16;4980:18;;4967:32;5008:33;4967:32;5008:33;:::i;:::-;4668:456;;5060:7;;-1:-1:-1;;;5114:2:16;5099:18;;;;5086:32;;4668:456::o;5129:118::-;5215:5;5208:13;5201:21;5194:5;5191:32;5181:60;;5237:1;5234;5227:12;5252:241;5308:6;5361:2;5349:9;5340:7;5336:23;5332:32;5329:52;;;5377:1;5374;5367:12;5329:52;5416:9;5403:23;5435:28;5457:5;5435:28;:::i;5680:266::-;5749:6;5802:2;5790:9;5781:7;5777:23;5773:32;5770:52;;;5818:1;5815;5808:12;5770:52;5857:9;5844:23;5896:1;5889:5;5886:12;5876:40;;5912:1;5909;5902:12;5951:403;6034:6;6042;6095:2;6083:9;6074:7;6070:23;6066:32;6063:52;;;6111:1;6108;6101:12;6063:52;6150:9;6137:23;6169:31;6194:5;6169:31;:::i;:::-;6219:5;-1:-1:-1;6276:2:16;6261:18;;6248:32;6289:33;6248:32;6289:33;:::i;:::-;6341:7;6331:17;;;5951:403;;;;;:::o;6611:946::-;6695:6;6726:2;6769;6757:9;6748:7;6744:23;6740:32;6737:52;;;6785:1;6782;6775:12;6737:52;6825:9;6812:23;-1:-1:-1;;;;;6895:2:16;6887:6;6884:14;6881:34;;;6911:1;6908;6901:12;6881:34;6949:6;6938:9;6934:22;6924:32;;6994:7;6987:4;6983:2;6979:13;6975:27;6965:55;;7016:1;7013;7006:12;6965:55;7052:2;7039:16;7074:2;7070;7067:10;7064:36;;;7080:18;;:::i;:::-;7126:2;7123:1;7119:10;7109:20;;7149:28;7173:2;7169;7165:11;7149:28;:::i;:::-;7211:15;;;7281:11;;;7277:20;;;7242:12;;;;7309:19;;;7306:39;;;7341:1;7338;7331:12;7306:39;7365:11;;;;7385:142;7401:6;7396:3;7393:15;7385:142;;;7467:17;;7455:30;;7418:12;;;;7505;;;;7385:142;;;7546:5;6611:946;-1:-1:-1;;;;;;;;6611:946:16:o;7845:724::-;8080:2;8132:21;;;8202:13;;8105:18;;;8224:22;;;8051:4;;8080:2;8303:15;;;;8277:2;8262:18;;;8051:4;8346:197;8360:6;8357:1;8354:13;8346:197;;;8409:52;8457:3;8448:6;8442:13;7646:12;;-1:-1:-1;;;;;7642:38:16;7630:51;;7734:4;7723:16;;;7717:23;-1:-1:-1;;;;;7713:48:16;7697:14;;;7690:72;7825:4;7814:16;;;7808:23;7801:31;7794:39;7778:14;;7771:63;7562:278;8409:52;8518:15;;;;8490:4;8481:14;;;;;8382:1;8375:9;8346:197;;8574:367;8637:8;8647:6;8701:3;8694:4;8686:6;8682:17;8678:27;8668:55;;8719:1;8716;8709:12;8668:55;-1:-1:-1;8742:20:16;;-1:-1:-1;;;;;8774:30:16;;8771:50;;;8817:1;8814;8807:12;8771:50;8854:4;8846:6;8842:17;8830:29;;8914:3;8907:4;8897:6;8894:1;8890:14;8882:6;8878:27;8874:38;8871:47;8868:67;;;8931:1;8928;8921:12;8868:67;8574:367;;;;;:::o;8946:572::-;9041:6;9049;9057;9110:2;9098:9;9089:7;9085:23;9081:32;9078:52;;;9126:1;9123;9116:12;9078:52;9165:9;9152:23;9184:31;9209:5;9184:31;:::i;:::-;9234:5;-1:-1:-1;9290:2:16;9275:18;;9262:32;-1:-1:-1;;;;;9306:30:16;;9303:50;;;9349:1;9346;9339:12;9303:50;9388:70;9450:7;9441:6;9430:9;9426:22;9388:70;:::i;:::-;8946:572;;9477:8;;-1:-1:-1;9362:96:16;;-1:-1:-1;;;;8946:572:16:o;9708:632::-;9879:2;9931:21;;;10001:13;;9904:18;;;10023:22;;;9850:4;;9879:2;10102:15;;;;10076:2;10061:18;;;9850:4;10145:169;10159:6;10156:1;10153:13;10145:169;;;10220:13;;10208:26;;10289:15;;;;10254:12;;;;10181:1;10174:9;10145:169;;10345:383;10422:6;10430;10438;10491:2;10479:9;10470:7;10466:23;10462:32;10459:52;;;10507:1;10504;10497:12;10459:52;10546:9;10533:23;10565:31;10590:5;10565:31;:::i;:::-;10615:5;10667:2;10652:18;;10639:32;;-1:-1:-1;10718:2:16;10703:18;;;10690:32;;10345:383;-1:-1:-1;;;10345:383:16:o;10733:382::-;10798:6;10806;10859:2;10847:9;10838:7;10834:23;10830:32;10827:52;;;10875:1;10872;10865:12;10827:52;10914:9;10901:23;10933:31;10958:5;10933:31;:::i;:::-;10983:5;-1:-1:-1;11040:2:16;11025:18;;11012:32;11053:30;11012:32;11053:30;:::i;11120:795::-;11215:6;11223;11231;11239;11292:3;11280:9;11271:7;11267:23;11263:33;11260:53;;;11309:1;11306;11299:12;11260:53;11348:9;11335:23;11367:31;11392:5;11367:31;:::i;:::-;11417:5;-1:-1:-1;11474:2:16;11459:18;;11446:32;11487:33;11446:32;11487:33;:::i;:::-;11539:7;-1:-1:-1;11593:2:16;11578:18;;11565:32;;-1:-1:-1;11648:2:16;11633:18;;11620:32;-1:-1:-1;;;;;11664:30:16;;11661:50;;;11707:1;11704;11697:12;11661:50;11730:22;;11783:4;11775:13;;11771:27;-1:-1:-1;11761:55:16;;11812:1;11809;11802:12;11761:55;11835:74;11901:7;11896:2;11883:16;11878:2;11874;11870:11;11835:74;:::i;:::-;11825:84;;;11120:795;;;;;;;:::o;11920:505::-;12015:6;12023;12031;12084:2;12072:9;12063:7;12059:23;12055:32;12052:52;;;12100:1;12097;12090:12;12052:52;12136:9;12123:23;12113:33;;12197:2;12186:9;12182:18;12169:32;-1:-1:-1;;;;;12216:6:16;12213:30;12210:50;;;12256:1;12253;12246:12;12430:267;7646:12;;-1:-1:-1;;;;;7642:38:16;7630:51;;7734:4;7723:16;;;7717:23;-1:-1:-1;;;;;7713:48:16;7697:14;;;7690:72;7825:4;7814:16;;;7808:23;7801:31;7794:39;7778:14;;;7771:63;12628:2;12613:18;;12640:51;7562:278;13362:315;13430:6;13438;13491:2;13479:9;13470:7;13466:23;13462:32;13459:52;;;13507:1;13504;13497:12;13459:52;13543:9;13530:23;13520:33;;13603:2;13592:9;13588:18;13575:32;13616:31;13641:5;13616:31;:::i;13682:380::-;13761:1;13757:12;;;;13804;;;13825:61;;13879:4;13871:6;13867:17;13857:27;;13825:61;13932:2;13924:6;13921:14;13901:18;13898:38;13895:161;;;13978:10;13973:3;13969:20;13966:1;13959:31;14013:4;14010:1;14003:15;14041:4;14038:1;14031:15;13895:161;;13682:380;;;:::o;14067:356::-;14269:2;14251:21;;;14288:18;;;14281:30;14347:34;14342:2;14327:18;;14320:62;14414:2;14399:18;;14067:356::o;14428:402::-;14630:2;14612:21;;;14669:2;14649:18;;;14642:30;14708:34;14703:2;14688:18;;14681:62;-1:-1:-1;;;14774:2:16;14759:18;;14752:36;14820:3;14805:19;;14428:402::o;14835:127::-;14896:10;14891:3;14887:20;14884:1;14877:31;14927:4;14924:1;14917:15;14951:4;14948:1;14941:15;14967:128;15007:3;15038:1;15034:6;15031:1;15028:13;15025:39;;;15044:18;;:::i;:::-;-1:-1:-1;15080:9:16;;14967:128::o;15100:407::-;15302:2;15284:21;;;15341:2;15321:18;;;15314:30;15380:34;15375:2;15360:18;;15353:62;-1:-1:-1;;;15446:2:16;15431:18;;15424:41;15497:3;15482:19;;15100:407::o;15799:184::-;15869:6;15922:2;15910:9;15901:7;15897:23;15893:32;15890:52;;;15938:1;15935;15928:12;15890:52;-1:-1:-1;15961:16:16;;15799:184;-1:-1:-1;15799:184:16:o;15988:127::-;16049:10;16044:3;16040:20;16037:1;16030:31;16080:4;16077:1;16070:15;16104:4;16101:1;16094:15;18122:168;18162:7;18228:1;18224;18220:6;18216:14;18213:1;18210:21;18205:1;18198:9;18191:17;18187:45;18184:71;;;18235:18;;:::i;:::-;-1:-1:-1;18275:9:16;;18122:168::o;20256:1527::-;20480:3;20518:6;20512:13;20544:4;20557:51;20601:6;20596:3;20591:2;20583:6;20579:15;20557:51;:::i;:::-;20671:13;;20630:16;;;;20693:55;20671:13;20630:16;20715:15;;;20693:55;:::i;:::-;20837:13;;20770:20;;;20810:1;;20897;20919:18;;;;20972;;;;20999:93;;21077:4;21067:8;21063:19;21051:31;;20999:93;21140:2;21130:8;21127:16;21107:18;21104:40;21101:167;;;-1:-1:-1;;;21167:33:16;;21223:4;21220:1;21213:15;21253:4;21174:3;21241:17;21101:167;21284:18;21311:110;;;;21435:1;21430:328;;;;21277:481;;21311:110;-1:-1:-1;;21346:24:16;;21332:39;;21391:20;;;;-1:-1:-1;21311:110:16;;21430:328;20203:1;20196:14;;;20240:4;20227:18;;21525:1;21539:169;21553:8;21550:1;21547:15;21539:169;;;21635:14;;21620:13;;;21613:37;21678:16;;;;21570:10;;21539:169;;;21543:3;;21739:8;21732:5;21728:20;21721:27;;21277:481;-1:-1:-1;21774:3:16;;20256:1527;-1:-1:-1;;;;;;;;;;;20256:1527:16:o;22195:127::-;22256:10;22251:3;22247:20;22244:1;22237:31;22287:4;22284:1;22277:15;22311:4;22308:1;22301:15;22327:120;22367:1;22393;22383:35;;22398:18;;:::i;:::-;-1:-1:-1;22432:9:16;;22327:120::o;22452:125::-;22492:4;22520:1;22517;22514:8;22511:34;;;22525:18;;:::i;:::-;-1:-1:-1;22562:9:16;;22452:125::o;23577:489::-;-1:-1:-1;;;;;23846:15:16;;;23828:34;;23898:15;;23893:2;23878:18;;23871:43;23945:2;23930:18;;23923:34;;;23993:3;23988:2;23973:18;;23966:31;;;23771:4;;24014:46;;24040:19;;24032:6;24014:46;:::i;:::-;24006:54;23577:489;-1:-1:-1;;;;;;23577:489:16:o;24071:249::-;24140:6;24193:2;24181:9;24172:7;24168:23;24164:32;24161:52;;;24209:1;24206;24199:12;24161:52;24241:9;24235:16;24260:30;24284:5;24260:30;:::i;24325:135::-;24364:3;-1:-1:-1;;24385:17:16;;24382:43;;;24405:18;;:::i;:::-;-1:-1:-1;24452:1:16;24441:13;;24325:135::o;24465:112::-;24497:1;24523;24513:35;;24528:18;;:::i;:::-;-1:-1:-1;24562:9:16;;24465:112::o;24582:245::-;24649:6;24702:2;24690:9;24681:7;24677:23;24673:32;24670:52;;;24718:1;24715;24708:12;24670:52;24750:9;24744:16;24769:28;24791:5;24769:28;:::i;26008:274::-;26137:3;26175:6;26169:13;26191:53;26237:6;26232:3;26225:4;26217:6;26213:17;26191:53;:::i;:::-;26260:16;;;;;26008:274;-1:-1:-1;;26008:274:16:o

Swarm Source

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