https://github.com/code-423n4/2023-10-party/blob/b23c65d62a20921c709582b0b76b387f2bb9ebb5/contracts/crowdfund/ETHCrowdfundBase.sol#L165
https://github.com/code-423n4/2023-10-party/blob/b23c65d62a20921c709582b0b76b387f2bb9ebb5/contracts/crowdfund/ETHCrowdfundBase.sol#L168
The protocol accepts configuration parameters in Bps (that are implicitly bound between 0 - 0% and 10_000 - 100%). While the lower bound is validated by the usage of an unsigned type, the higher bound is not validated. 
Values equal or above 1e4 of these two configurations are accepted and can have a large impact on the protocol, possibly beyond mere availability.
Consider adding checks for these values to not exceed a reasonable caps, most likely exclusive of 1e4 that is problematic already for zero divisions.
