public static bool ReplaceData(this PSARC p, Dictionary <Func <Entry, bool>, Stream> newData)
        {
            bool result = true;

            foreach (var d in newData)
            {
                if (!p.ReplaceData(d.Key, d.Value))
                {
                    result = false;
                }
            }
            return(result);
        }