I need to get raw pprof output from the /debug/pprof/profile endpoint of my application without using `go tool pprof`. I tried to make a GET request to /debug/pprof/profile and then feed that output into `go tool pprof`, but that didn't work.Note: I cannot use `go tool pprof` because Go is not installed on that machine. I need to get the raw profile so I can run `go tool pprof` on a different machine at a later time.