Open a new query window switch to the DB in question and run: select * from sys.sysdepends
The ID and DEPID columns use them to find the objects using query below (replace id with your ids)
select * from sys.sysobjects where id in( 69575286,21575115)
You can find the logic from here to build your tree.