{
    "Function": "deployWhitelist",
    "File": "contracts/SecondSwap_WhitelistDeployer.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function deployWhitelist(uint256 _maxWhitelist, address _lotOwner) external returns (address) {\n        address newWhitelist = address(new SecondSwap_Whitelist(_maxWhitelist, _lotOwner));\n        emit WhitelistCreated(newWhitelist, _lotOwner);\n        return newWhitelist;\n    }"
}