From 23ae922b67a204a87ead1c0944010cd8995aaa89 Mon Sep 17 00:00:00 2001 From: Michael Robinson Date: Sun, 7 Apr 2019 21:25:51 -0600 Subject: [PATCH 1/2] add go.mod --- go.mod | 8 ++++++++ go.sum | 20 ++++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 go.mod create mode 100644 go.sum diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..8999bb1 --- /dev/null +++ b/go.mod @@ -0,0 +1,8 @@ +module github.com/mrobinsn/go-newznab + +require ( + github.com/pkg/errors v0.8.1 + github.com/sirupsen/logrus v1.4.1 + github.com/stretchr/testify v1.3.0 + golang.org/x/sys v0.0.0-20190405154228-4b34438f7a67 // indirect +) diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..dd6080f --- /dev/null +++ b/go.sum @@ -0,0 +1,20 @@ +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/konsorten/go-windows-terminal-sequences v1.0.1 h1:mweAR1A6xJ3oS2pRaGiHgQ4OO8tzTaLawm8vnODuwDk= +github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= +github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/sirupsen/logrus v1.4.1 h1:GL2rEmy6nsikmW0r8opw9JIRScdMF5hA8cOYLH7In1k= +github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= +github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q= +github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= +golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33 h1:I6FyU15t786LL7oL/hn43zqTuEGr4PN7F4XJ1p4E3Y8= +golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190405154228-4b34438f7a67 h1:1Fzlr8kkDLQwqMP8GxrhptBLqZG/EDpiATneiZHY998= +golang.org/x/sys v0.0.0-20190405154228-4b34438f7a67/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= From 25844e9bb75aed846fc32a0c176c7c450631a040 Mon Sep 17 00:00:00 2001 From: Michael Robinson Date: Sun, 7 Apr 2019 21:26:16 -0600 Subject: [PATCH 2/2] added tvmaze id support; added method to get tracker capabilities; updated categories --- README.md | 17 +- newznab/newznab.go | 41 +- newznab/newznab_test.go | 6 + newznab/structs.go | 33 + ...ode_1_season_10_t_tvsearch_tvmazeid_65.xml | 2462 +++++++++++++++++ 5 files changed, 2557 insertions(+), 2 deletions(-) create mode 100644 tests/fixtures/api/apikey_gibberish_cat_5030_episode_1_season_10_t_tvsearch_tvmazeid_65.xml diff --git a/README.md b/README.md index 831a560..b700484 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ [![MIT license](http://img.shields.io/badge/license-MIT-brightgreen.svg)](http://opensource.org/licenses/MIT) -> newznab XML API client for Go (golang) +> newznab/torznab XML API client for Go (golang) ## Documentation [GoDoc](https://godoc.org/github.com/mrobinsn/go-newznab/newznab) @@ -32,6 +32,12 @@ client := newznab.New("http://my-usenet-indexer", "my-api-key", 1234, false) ``` Note the missing `/api` part of the URL. Depending on the called method either `/api` or `/rss` will be appended to the given base URL. A valid user ID is only required for RSS methods. +### Get the capabilities of your tracker +``` +caps, _ := client.Capabilities() +``` +You will want to check the result of this to determine if your tracker supports searching by tvrage, imdb, tvmaze, etc. + ### Search using a tvrage id: ``` categories := []int{ @@ -50,6 +56,15 @@ categories := []int{ results, _ := client.SearchWithIMDB(categories, "0364569") ``` +### Search using a tvmaze id: +``` +categories := []int{ + newznab.CategoryTVHD, + newznab.CategoryTVSD, +} +results, _ := client.SearchWithTVMaze(categories, 80, 3, 1) +``` + ### Search using a name and set of categories: ``` results, _ := client.SearchWithQueries(categories, "Oldboy", "movie") diff --git a/newznab/newznab.go b/newznab/newznab.go index 53f512c..abeccca 100644 --- a/newznab/newznab.go +++ b/newznab/newznab.go @@ -10,8 +10,8 @@ import ( "strings" "time" - log "github.com/Sirupsen/logrus" "github.com/pkg/errors" + log "github.com/sirupsen/logrus" ) // Various constants for categories @@ -25,6 +25,8 @@ const ( CategoryTVSD = 5030 // CategoryTVHD is for high-definition shows CategoryTVHD = 5040 + // CategoryTVUHD is for UHD shows + CategoryTVUHD = 5045 // CategoryTVOther is for other shows CategoryTVOther = 5050 // CategoryTVSport is for sports shows @@ -41,6 +43,8 @@ const ( CategoryMovieSD = 2030 // CategoryMovieHD is for high-definition movies CategoryMovieHD = 2040 + // CategoryMovieUHD is for UHD movies + CategoryMovieUHD = 2045 // CategoryMovieBluRay is for blu-ray movies CategoryMovieBluRay = 2050 // CategoryMovie3D is for 3-D movies @@ -95,6 +99,17 @@ func (c Client) SearchWithTVDB(categories []int, tvDBID int, season int, episode }) } +// SearchWithTVMaze returns NZBs for the given parameters +func (c Client) SearchWithTVMaze(categories []int, tvMazeID int, season int, episode int) ([]NZB, error) { + return c.search(url.Values{ + "tvmazeid": []string{strconv.Itoa(tvMazeID)}, + "cat": c.splitCats(categories), + "season": []string{strconv.Itoa(season)}, + "episode": []string{strconv.Itoa(episode)}, + "t": []string{"tvsearch"}, + }) +} + // SearchWithIMDB returns NZBs for the given parameters func (c Client) SearchWithIMDB(categories []int, imdbID string) ([]NZB, error) { return c.search(url.Values{ @@ -122,6 +137,13 @@ func (c Client) LoadRSSFeed(categories []int, num int) ([]NZB, error) { }) } +// Capabilities returns the capabilities of this tracker +func (c Client) Capabilities() (Capabilities, error) { + return c.caps(url.Values{ + "t": []string{"caps"}, + }) +} + // LoadRSSFeedUntilNZBID fetches NZBs until a given NZB id is reached. func (c Client) LoadRSSFeedUntilNZBID(categories []int, num int, id string, maxRequests int) ([]NZB, error) { count := 0 @@ -170,6 +192,19 @@ func (c Client) search(vals url.Values) ([]NZB, error) { return c.process(vals, apiPath) } +func (c Client) caps(vals url.Values) (Capabilities, error) { + vals.Set("apikey", c.apikey) + resp, err := c.getURL(c.buildURL(vals, apiPath)) + if err != nil { + return Capabilities{}, errors.Wrap(err, "failed to get capabilities") + } + var cResp Capabilities + if err = xml.Unmarshal(resp, &cResp); err != nil { + return cResp, errors.Wrap(err, "failed to unmarshal xml") + } + return cResp, nil +} + func (c Client) process(vals url.Values, path string) ([]NZB, error) { var nzbs []NZB resp, err := c.getURL(c.buildURL(vals, path)) @@ -231,6 +266,8 @@ func (c Client) process(vals url.Values, path string) ([]NZB, error) { nzb.TVDBID = attr.Value case "rageid": nzb.TVRageID = attr.Value + case "tvmazeid": + nzb.TVMazeID = attr.Value case "info": nzb.Info = attr.Value case "season": @@ -260,6 +297,8 @@ func (c Client) process(vals url.Values, path string) ([]NZB, error) { } else { nzb.UsenetDate = parsedUsetnetDate } + case "resolution": + nzb.Resolution = attr.Value default: log.WithFields(log.Fields{ "name": attr.Name, diff --git a/newznab/newznab_test.go b/newznab/newznab_test.go index e14ebbb..ce8633a 100644 --- a/newznab/newznab_test.go +++ b/newznab/newznab_test.go @@ -76,6 +76,12 @@ func TestUsenetCrawlerClient(t *testing.T) { require.NotEmpty(t, results, "expected results") }) + t.Run("valid category and TVMaze id", func(t *testing.T) { + results, err := client.SearchWithTVMaze(categories, 65, 10, 1) + require.NoError(t, err) + require.NotEmpty(t, results, "expected results") + }) + t.Run("valid category and tvrage id", func(t *testing.T) { results, err := client.SearchWithTVRage(categories, 2870, 10, 1) require.NoError(t, err) diff --git a/newznab/structs.go b/newznab/structs.go index f2eb277..8bd951e 100644 --- a/newznab/structs.go +++ b/newznab/structs.go @@ -28,9 +28,12 @@ type NZB struct { Info string `json:"info,omitempty"` Genre string `json:"genre,omitempty"` + Resolution string `json:"resolution,omitempty"` + // TV Specific stuff TVDBID string `json:"tvdbid,omitempty"` TVRageID string `json:"tvrageid,omitempty"` + TVMazeID string `json:"tvmazeid,omitempty"` Season string `json:"season,omitempty"` Episode string `json:"episode,omitempty"` TVTitle string `json:"tvtitle,omitempty"` @@ -178,3 +181,33 @@ func (t *Time) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error { return nil } + +type Capabilities struct { + Server struct { + Title string `xml:"title,attr" json:"title,omitempty"` + } `xml:"server" json:"server,omitempty"` + Searching struct { + Search struct { + Available string `xml:"available,attr" json:"available,omitempty"` + SupportedParams string `xml:"supportedParams,attr" json:"supported_params,omitempty"` + } `xml:"search" json:"search,omitempty"` + TvSearch struct { + Available string `xml:"available,attr" json:"available,omitempty"` + SupportedParams string `xml:"supportedParams,attr" json:"supported_params,omitempty"` + } `xml:"tv-search" json:"tv_search,omitempty"` + MovieSearch struct { + Available string `xml:"available,attr" json:"available,omitempty"` + SupportedParams string `xml:"supportedParams,attr" json:"supported_params,omitempty"` + } `xml:"movie-search" json:"movie_search,omitempty"` + } `xml:"searching" json:"searching,omitempty"` + Categories struct { + Category []struct { + ID string `xml:"id,attr" json:"id,omitempty"` + Name string `xml:"name,attr" json:"name,omitempty"` + Subcat []struct { + ID string `xml:"id,attr" json:"id,omitempty"` + Name string `xml:"name,attr" json:"name,omitempty"` + } `xml:"subcat" json:"subcat,omitempty"` + } `xml:"category" json:"category,omitempty"` + } `xml:"categories" json:"categories,omitempty"` +} diff --git a/tests/fixtures/api/apikey_gibberish_cat_5030_episode_1_season_10_t_tvsearch_tvmazeid_65.xml b/tests/fixtures/api/apikey_gibberish_cat_5030_episode_1_season_10_t_tvsearch_tvmazeid_65.xml new file mode 100644 index 0000000..fb7bcac --- /dev/null +++ b/tests/fixtures/api/apikey_gibberish_cat_5030_episode_1_season_10_t_tvsearch_tvmazeid_65.xml @@ -0,0 +1,2462 @@ + + + + DOGnzb + DOGnzb Feed + E9376C2A + + + Bones.S10E22.DVDRip.X264-REWARD + https://dognzb.cr/details/85db1aa1d0f2df502d8f87a5f1f989c6 + https://dognzb.cr/fetch/85db1aa1d0f2df502d8f87a5f1f989c6/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/85db1aa1d0f2df502d8f87a5f1f989c6#comments + Thu, 01 Oct 2015 22:53:10 -0600 + TV > SD + + + +
Name: Bones.S10E22.DVDRip.X264-REWARD
Category: TV > SD
Size: 439 MB
Post Date: October 01, 2015 10:53 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + + +
+ + Bones.S10E21.DVDRip.X264-REWARD + https://dognzb.cr/details/85ae3c25b68a6f1870bc7f732b939045 + https://dognzb.cr/fetch/85ae3c25b68a6f1870bc7f732b939045/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/85ae3c25b68a6f1870bc7f732b939045#comments + Thu, 01 Oct 2015 22:53:00 -0600 + TV > SD + + + +
Name: Bones.S10E21.DVDRip.X264-REWARD
Category: TV > SD
Size: 409 MB
Post Date: October 01, 2015 10:53 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E20.DVDRip.X264-REWARD + https://dognzb.cr/details/85ae5c0ba510f394b05cf0a0e9560f8c + https://dognzb.cr/fetch/85ae5c0ba510f394b05cf0a0e9560f8c/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/85ae5c0ba510f394b05cf0a0e9560f8c#comments + Thu, 01 Oct 2015 22:52:56 -0600 + TV > SD + + + +
Name: Bones.S10E20.DVDRip.X264-REWARD
Category: TV > SD
Size: 441 MB
Post Date: October 01, 2015 10:52 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E19.DVDRip.X264-REWARD + https://dognzb.cr/details/85addcecc3679f4ead3e445ecb05c866 + https://dognzb.cr/fetch/85addcecc3679f4ead3e445ecb05c866/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/85addcecc3679f4ead3e445ecb05c866#comments + Thu, 01 Oct 2015 22:52:52 -0600 + TV > SD + + + +
Name: Bones.S10E19.DVDRip.X264-REWARD
Category: TV > SD
Size: 357 MB
Post Date: October 01, 2015 10:52 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E18.DVDRip.X264-REWARD + https://dognzb.cr/details/85adfc9ac25d6ac498c5febc63f76555 + https://dognzb.cr/fetch/85adfc9ac25d6ac498c5febc63f76555/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/85adfc9ac25d6ac498c5febc63f76555#comments + Thu, 01 Oct 2015 22:52:38 -0600 + TV > SD + + + +
Name: Bones.S10E18.DVDRip.X264-REWARD
Category: TV > SD
Size: 382 MB
Post Date: October 01, 2015 10:52 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E17.DVDRip.X264-REWARD + https://dognzb.cr/details/85ae1c950574093ccc46b568379428a9 + https://dognzb.cr/fetch/85ae1c950574093ccc46b568379428a9/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/85ae1c950574093ccc46b568379428a9#comments + Thu, 01 Oct 2015 22:52:36 -0600 + TV > SD + + + +
Name: Bones.S10E17.DVDRip.X264-REWARD
Category: TV > SD
Size: 418 MB
Post Date: October 01, 2015 10:52 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E16.DVDRip.X264-REWARD + https://dognzb.cr/details/859c053dc02d172aecb0ea4271367cd3 + https://dognzb.cr/fetch/859c053dc02d172aecb0ea4271367cd3/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/859c053dc02d172aecb0ea4271367cd3#comments + Thu, 01 Oct 2015 22:52:32 -0600 + TV > SD + + + +
Name: Bones.S10E16.DVDRip.X264-REWARD
Category: TV > SD
Size: 434 MB
Post Date: October 01, 2015 10:52 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E15.DVDRip.X264-REWARD + https://dognzb.cr/details/859b67ced862afcc017f999137310aae + https://dognzb.cr/fetch/859b67ced862afcc017f999137310aae/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/859b67ced862afcc017f999137310aae#comments + Thu, 01 Oct 2015 22:52:30 -0600 + TV > SD + + + +
Name: Bones.S10E15.DVDRip.X264-REWARD
Category: TV > SD
Size: 415 MB
Post Date: October 01, 2015 10:52 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E14.DVDRip.X264-REWARD + https://dognzb.cr/details/85b6d404e018171cf8bdfa8629821394 + https://dognzb.cr/fetch/85b6d404e018171cf8bdfa8629821394/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/85b6d404e018171cf8bdfa8629821394#comments + Thu, 01 Oct 2015 22:52:10 -0600 + TV > SD + + + +
Name: Bones.S10E14.DVDRip.X264-REWARD
Category: TV > SD
Size: 446 MB
Post Date: October 01, 2015 10:52 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E13.DVDRip.X264-REWARD + https://dognzb.cr/details/85b69183e2fe056876c9ac273f819fea + https://dognzb.cr/fetch/85b69183e2fe056876c9ac273f819fea/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/85b69183e2fe056876c9ac273f819fea#comments + Thu, 01 Oct 2015 22:52:05 -0600 + TV > SD + + + +
Name: Bones.S10E13.DVDRip.X264-REWARD
Category: TV > SD
Size: 386 MB
Post Date: October 01, 2015 10:52 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E12.DVDRip.X264-REWARD + https://dognzb.cr/details/85b6b123d324e0b078240b104f24d419 + https://dognzb.cr/fetch/85b6b123d324e0b078240b104f24d419/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/85b6b123d324e0b078240b104f24d419#comments + Thu, 01 Oct 2015 22:52:02 -0600 + TV > SD + + + +
Name: Bones.S10E12.DVDRip.X264-REWARD
Category: TV > SD
Size: 404 MB
Post Date: October 01, 2015 10:52 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E11.DVDRip.X264-REWARD + https://dognzb.cr/details/859ae804a731d4b3ef65088eb0ee45bd + https://dognzb.cr/fetch/859ae804a731d4b3ef65088eb0ee45bd/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/859ae804a731d4b3ef65088eb0ee45bd#comments + Thu, 01 Oct 2015 22:51:40 -0600 + TV > SD + + + +
Name: Bones.S10E11.DVDRip.X264-REWARD
Category: TV > SD
Size: 392 MB
Post Date: October 01, 2015 10:51 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E10.DVDRip.X264-REWARD + https://dognzb.cr/details/85894da1f2a74db0771ff636c9f19fe1 + https://dognzb.cr/fetch/85894da1f2a74db0771ff636c9f19fe1/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/85894da1f2a74db0771ff636c9f19fe1#comments + Thu, 01 Oct 2015 22:51:36 -0600 + TV > SD + + + +
Name: Bones.S10E10.DVDRip.X264-REWARD
Category: TV > SD
Size: 541 MB
Post Date: October 01, 2015 10:51 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E09.DVDRip.X264-REWARD + https://dognzb.cr/details/859c24e9c24c554fd8d252af52f5d2f6 + https://dognzb.cr/fetch/859c24e9c24c554fd8d252af52f5d2f6/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/859c24e9c24c554fd8d252af52f5d2f6#comments + Thu, 01 Oct 2015 22:51:28 -0600 + TV > SD + + + +
Name: Bones.S10E09.DVDRip.X264-REWARD
Category: TV > SD
Size: 505 MB
Post Date: October 01, 2015 10:51 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E07.DVDRip.X264-REWARD + https://dognzb.cr/details/859b079dbabb7e9a88574cfe5ffc5143 + https://dognzb.cr/fetch/859b079dbabb7e9a88574cfe5ffc5143/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/859b079dbabb7e9a88574cfe5ffc5143#comments + Thu, 01 Oct 2015 22:50:59 -0600 + TV > SD + + + +
Name: Bones.S10E07.DVDRip.X264-REWARD
Category: TV > SD
Size: 403 MB
Post Date: October 01, 2015 10:50 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E08.DVDRip.X264-REWARD + https://dognzb.cr/details/859b4808a0fc5956b9db69029c6eca2c + https://dognzb.cr/fetch/859b4808a0fc5956b9db69029c6eca2c/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/859b4808a0fc5956b9db69029c6eca2c#comments + Thu, 01 Oct 2015 22:50:59 -0600 + TV > SD + + + +
Name: Bones.S10E08.DVDRip.X264-REWARD
Category: TV > SD
Size: 414 MB
Post Date: October 01, 2015 10:50 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E04.DVDRip.X264-REWARD + https://dognzb.cr/details/85892de2dbfe5f3914ea7a0cfd9f1798 + https://dognzb.cr/fetch/85892de2dbfe5f3914ea7a0cfd9f1798/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/85892de2dbfe5f3914ea7a0cfd9f1798#comments + Thu, 01 Oct 2015 22:50:36 -0600 + TV > SD + + + +
Name: Bones.S10E04.DVDRip.X264-REWARD
Category: TV > SD
Size: 420 MB
Post Date: October 01, 2015 10:50 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E06.DVDRip.X264-REWARD + https://dognzb.cr/details/8588ee03a4a1de6e1957ff2792cb70ac + https://dognzb.cr/fetch/8588ee03a4a1de6e1957ff2792cb70ac/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/8588ee03a4a1de6e1957ff2792cb70ac#comments + Thu, 01 Oct 2015 22:50:33 -0600 + TV > SD + + + +
Name: Bones.S10E06.DVDRip.X264-REWARD
Category: TV > SD
Size: 388 MB
Post Date: October 01, 2015 10:50 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E05.DVDRip.X264-REWARD + https://dognzb.cr/details/85890e27a2ba7621142cb18090135ea8 + https://dognzb.cr/fetch/85890e27a2ba7621142cb18090135ea8/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/85890e27a2ba7621142cb18090135ea8#comments + Thu, 01 Oct 2015 22:50:33 -0600 + TV > SD + + + +
Name: Bones.S10E05.DVDRip.X264-REWARD
Category: TV > SD
Size: 402 MB
Post Date: October 01, 2015 10:50 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E02.DVDRip.X264-REWARD + https://dognzb.cr/details/859b2861f6859ad92e6e63e0b5b2a824 + https://dognzb.cr/fetch/859b2861f6859ad92e6e63e0b5b2a824/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/859b2861f6859ad92e6e63e0b5b2a824#comments + Thu, 01 Oct 2015 22:50:03 -0600 + TV > SD + + + +
Name: Bones.S10E02.DVDRip.X264-REWARD
Category: TV > SD
Size: 416 MB
Post Date: October 01, 2015 10:50 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E01.DVDRip.X264-REWARD + https://dognzb.cr/details/859b876eb739c79ae325ef36c458fb9c + https://dognzb.cr/fetch/859b876eb739c79ae325ef36c458fb9c/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/859b876eb739c79ae325ef36c458fb9c#comments + Thu, 01 Oct 2015 22:50:03 -0600 + TV > SD + + + +
Name: Bones.S10E01.DVDRip.X264-REWARD
Category: TV > SD
Size: 415 MB
Post Date: October 01, 2015 10:50 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E03.DVDRip.X264-REWARD + https://dognzb.cr/details/859be5c3e5f2cb6df12e3cdd2c24c5ff + https://dognzb.cr/fetch/859be5c3e5f2cb6df12e3cdd2c24c5ff/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/859be5c3e5f2cb6df12e3cdd2c24c5ff#comments + Thu, 01 Oct 2015 22:50:03 -0600 + TV > SD + + + +
Name: Bones.S10E03.DVDRip.X264-REWARD
Category: TV > SD
Size: 425 MB
Post Date: October 01, 2015 10:50 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E22.HDTV.x264-LOL + https://dognzb.cr/details/f4ea350ceeac6458fadf6b5135cc20ae + https://dognzb.cr/fetch/f4ea350ceeac6458fadf6b5135cc20ae/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/f4ea350ceeac6458fadf6b5135cc20ae#comments + Thu, 11 Jun 2015 19:01:17 -0600 + TV > SD + + + +
Name: Bones.S10E22.HDTV.x264-LOL
Category: TV > SD
Size: 386 MB
Post Date: June 11, 2015 7:01 PM
Group: alt.binaries.boneless
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E22.HDTV.x264-LOL + https://dognzb.cr/details/f534443c0f0ab1ef913a1acaf4bcf378 + https://dognzb.cr/fetch/f534443c0f0ab1ef913a1acaf4bcf378/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/f534443c0f0ab1ef913a1acaf4bcf378#comments + Thu, 11 Jun 2015 19:00:32 -0600 + TV > SD + + + +
Name: Bones.S10E22.HDTV.x264-LOL
Category: TV > SD
Size: 383 MB
Post Date: June 11, 2015 7:00 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E21.HDTV.x264-LOL + https://dognzb.cr/details/8b5a17d5a9fa6ec2d136f95c31358ca7 + https://dognzb.cr/fetch/8b5a17d5a9fa6ec2d136f95c31358ca7/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/8b5a17d5a9fa6ec2d136f95c31358ca7#comments + Thu, 04 Jun 2015 18:32:05 -0600 + TV > SD + + + +
Name: Bones.S10E21.HDTV.x264-LOL
Category: TV > SD
Size: 359 MB
Post Date: June 04, 2015 6:32 PM
Group: alt.binaries.boneless
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E21.HDTV.x264-LOL + https://dognzb.cr/details/8bf5ba9bec01264f4425795079bbeba8 + https://dognzb.cr/fetch/8bf5ba9bec01264f4425795079bbeba8/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/8bf5ba9bec01264f4425795079bbeba8#comments + Thu, 04 Jun 2015 18:30:47 -0600 + TV > SD + + + +
Name: Bones.S10E21.HDTV.x264-LOL
Category: TV > SD
Size: 341 MB
Post Date: June 04, 2015 6:30 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E20.HDTV.x264-LOL + https://dognzb.cr/details/23e9d052d9d373ac55396234e0ec3007 + https://dognzb.cr/fetch/23e9d052d9d373ac55396234e0ec3007/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/23e9d052d9d373ac55396234e0ec3007#comments + Thu, 28 May 2015 19:00:29 -0600 + TV > SD + + + +
Name: Bones.S10E20.HDTV.x264-LOL
Category: TV > SD
Size: 380 MB
Post Date: May 28, 2015 7:00 PM
Group: alt.binaries.boneless
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E20.HDTV.x264-LOL + https://dognzb.cr/details/2454cbdacb22635004faadb7f090b202 + https://dognzb.cr/fetch/2454cbdacb22635004faadb7f090b202/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/2454cbdacb22635004faadb7f090b202#comments + Thu, 28 May 2015 18:59:33 -0600 + TV > SD + + + +
Name: Bones.S10E20.HDTV.x264-LOL
Category: TV > SD
Size: 374 MB
Post Date: May 28, 2015 6:59 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E19.HDTV.x264-LOL + https://dognzb.cr/details/5307981efa950c0bf8a8b52703d40f4e + https://dognzb.cr/fetch/5307981efa950c0bf8a8b52703d40f4e/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/5307981efa950c0bf8a8b52703d40f4e#comments + Thu, 14 May 2015 19:02:26 -0600 + TV > SD + + + +
Name: Bones.S10E19.HDTV.x264-LOL
Category: TV > SD
Size: 325 MB
Post Date: May 14, 2015 7:02 PM
Group: alt.binaries.boneless
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E19.HDTV.x264-LOL + https://dognzb.cr/details/5390ea3aefe78fd28d05a457c12a5200 + https://dognzb.cr/fetch/5390ea3aefe78fd28d05a457c12a5200/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/5390ea3aefe78fd28d05a457c12a5200#comments + Thu, 14 May 2015 18:58:03 -0600 + TV > SD + + + +
Name: Bones.S10E19.HDTV.x264-LOL
Category: TV > SD
Size: 308 MB
Post Date: May 14, 2015 6:58 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E18.HDTV.x264-LOL + https://dognzb.cr/details/eb0aeecadd950235d44d5c3c2caebd43 + https://dognzb.cr/fetch/eb0aeecadd950235d44d5c3c2caebd43/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/eb0aeecadd950235d44d5c3c2caebd43#comments + Thu, 07 May 2015 18:59:29 -0600 + TV > SD + + + +
Name: Bones.S10E18.HDTV.x264-LOL
Category: TV > SD
Size: 329 MB
Post Date: May 07, 2015 6:59 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E17.HDTV.x264-LOL + https://dognzb.cr/details/e9018310e8b09926573d9f83de6d386b + https://dognzb.cr/fetch/e9018310e8b09926573d9f83de6d386b/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/e9018310e8b09926573d9f83de6d386b#comments + Thu, 07 May 2015 17:59:56 -0600 + TV > SD + + + +
Name: Bones.S10E17.HDTV.x264-LOL
Category: TV > SD
Size: 370 MB
Post Date: May 07, 2015 5:59 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E16.HDTV.x264-LOL + https://dognzb.cr/details/82167afeffbe02a58e3871016d5ba716 + https://dognzb.cr/fetch/82167afeffbe02a58e3871016d5ba716/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/82167afeffbe02a58e3871016d5ba716#comments + Thu, 30 Apr 2015 18:57:48 -0600 + TV > SD + + + +
Name: Bones.S10E16.HDTV.x264-LOL
Category: TV > SD
Size: 390 MB
Post Date: April 30, 2015 6:57 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E15.HDTV.x264-KILLERS + https://dognzb.cr/details/1bb58ba7f5b5b2e002fbdbfc5441c8c8 + https://dognzb.cr/fetch/1bb58ba7f5b5b2e002fbdbfc5441c8c8/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/1bb58ba7f5b5b2e002fbdbfc5441c8c8#comments + Thu, 23 Apr 2015 20:00:02 -0600 + TV > SD + + + +
Name: Bones.S10E15.HDTV.x264-KILLERS
Category: TV > SD
Size: 392 MB
Post Date: April 23, 2015 8:00 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E14.HDTV.x264-ASAP + https://dognzb.cr/details/b14a9619eaf5a5a82eabd128ccb34682 + https://dognzb.cr/fetch/b14a9619eaf5a5a82eabd128ccb34682/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/b14a9619eaf5a5a82eabd128ccb34682#comments + Thu, 16 Apr 2015 19:01:22 -0600 + TV > SD + + + +
Name: Bones.S10E14.HDTV.x264-ASAP
Category: TV > SD
Size: 408 MB
Post Date: April 16, 2015 7:01 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E13.The.Baker.in.the.Bits.INTERNAL.HDTV.x264-FiHTV + https://dognzb.cr/details/4bfc16b1fb4e7e76ffdcb14e2b6c459f + https://dognzb.cr/fetch/4bfc16b1fb4e7e76ffdcb14e2b6c459f/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/4bfc16b1fb4e7e76ffdcb14e2b6c459f#comments + Thu, 09 Apr 2015 20:38:18 -0600 + TV > SD + + + +
Name: Bones.S10E13.The.Baker.in.the.Bits.INTERNAL.HDTV.x264-FiHTV
Category: TV > SD
Size: 381 MB
Post Date: April 09, 2015 8:38 PM
Group: alt.binaries.boneless
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E13.The.Baker.in.the.Bits.INTERNAL.HDTV.x264-FiHTV + https://dognzb.cr/details/4be9906e05f973ea881d783945e72308 + https://dognzb.cr/fetch/4be9906e05f973ea881d783945e72308/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/4be9906e05f973ea881d783945e72308#comments + Thu, 09 Apr 2015 20:33:44 -0600 + TV > SD + + + +
Name: Bones.S10E13.The.Baker.in.the.Bits.INTERNAL.HDTV.x264-FiHTV
Category: TV > SD
Size: 381 MB
Post Date: April 09, 2015 8:33 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E13.HDTV.x264-ASAP + https://dognzb.cr/details/4895ef63aa0abc2770fb3c3b4719de07 + https://dognzb.cr/fetch/4895ef63aa0abc2770fb3c3b4719de07/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/4895ef63aa0abc2770fb3c3b4719de07#comments + Thu, 09 Apr 2015 19:02:35 -0600 + TV > SD + + + +
Name: Bones.S10E13.HDTV.x264-ASAP
Category: TV > SD
Size: 357 MB
Post Date: April 09, 2015 7:02 PM
Group: alt.binaries.boneless
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E13.HDTV.x264-ASAP + https://dognzb.cr/details/48b1b642da2cdfff29d65079b46bc9fa + https://dognzb.cr/fetch/48b1b642da2cdfff29d65079b46bc9fa/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/48b1b642da2cdfff29d65079b46bc9fa#comments + Thu, 09 Apr 2015 19:02:22 -0600 + TV > SD + + + +
Name: Bones.S10E13.HDTV.x264-ASAP
Category: TV > SD
Size: 358 MB
Post Date: April 09, 2015 7:02 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E12.INTERNAL.HDTV.x264-BATV + https://dognzb.cr/details/e106b0adcd1bcb9773ad7f1ad40ff812 + https://dognzb.cr/fetch/e106b0adcd1bcb9773ad7f1ad40ff812/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/e106b0adcd1bcb9773ad7f1ad40ff812#comments + Thu, 02 Apr 2015 19:15:48 -0600 + TV > SD + + + +
Name: Bones.S10E12.INTERNAL.HDTV.x264-BATV
Category: TV > SD
Size: 383 MB
Post Date: April 02, 2015 7:15 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E12.HDTV.x264-ASAP + https://dognzb.cr/details/e058e9589c5afdb99f975f1edfada3b1 + https://dognzb.cr/fetch/e058e9589c5afdb99f975f1edfada3b1/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/e058e9589c5afdb99f975f1edfada3b1#comments + Thu, 02 Apr 2015 19:02:00 -0600 + TV > SD + + + +
Name: Bones.S10E12.HDTV.x264-ASAP
Category: TV > SD
Size: 376 MB
Post Date: April 02, 2015 7:02 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E11.HDTV.x264-KILLERS + https://dognzb.cr/details/77a4a74ae804425b97f61a0a670279b7 + https://dognzb.cr/fetch/77a4a74ae804425b97f61a0a670279b7/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/77a4a74ae804425b97f61a0a670279b7#comments + Thu, 26 Mar 2015 19:03:27 -0600 + TV > SD + + + +
Name: Bones.S10E11.HDTV.x264-KILLERS
Category: TV > SD
Size: 356 MB
Post Date: March 26, 2015 7:03 PM
Group: alt.binaries.boneless
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E11.HDTV.x264-KILLERS + https://dognzb.cr/details/77c9a42df9ee12ddc1cce87748a82a0c + https://dognzb.cr/fetch/77c9a42df9ee12ddc1cce87748a82a0c/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/77c9a42df9ee12ddc1cce87748a82a0c#comments + Thu, 26 Mar 2015 19:02:45 -0600 + TV > SD + + + +
Name: Bones.S10E11.HDTV.x264-KILLERS
Category: TV > SD
Size: 348 MB
Post Date: March 26, 2015 7:02 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E10.HDTV.x264-KILLERS + https://dognzb.cr/details/5c47e300b0f050488bb46646d8ff250c + https://dognzb.cr/fetch/5c47e300b0f050488bb46646d8ff250c/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/5c47e300b0f050488bb46646d8ff250c#comments + Thu, 11 Dec 2014 20:10:59 -0600 + TV > SD + + + +
Name: Bones.S10E10.HDTV.x264-KILLERS
Category: TV > SD
Size: 483 MB
Post Date: December 11, 2014 8:10 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E10.HDTV.x264-KILLERS + https://dognzb.cr/details/5ab51bf6efb909b90ef86edde992f7e5 + https://dognzb.cr/fetch/5ab51bf6efb909b90ef86edde992f7e5/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/5ab51bf6efb909b90ef86edde992f7e5#comments + Thu, 11 Dec 2014 20:10:42 -0600 + TV > SD + + + +
Name: Bones.S10E10.HDTV.x264-KILLERS
Category: TV > SD
Size: 491 MB
Post Date: December 11, 2014 8:10 PM
Group: alt.binaries.boneless
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E09.HDTV.x264-KILLERS + https://dognzb.cr/details/f1eec158c8f4bb934d383b1a87f4776a + https://dognzb.cr/fetch/f1eec158c8f4bb934d383b1a87f4776a/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/f1eec158c8f4bb934d383b1a87f4776a#comments + Thu, 04 Dec 2014 20:03:22 -0600 + TV > SD + + + +
Name: Bones.S10E09.HDTV.x264-KILLERS
Category: TV > SD
Size: 451 MB
Post Date: December 04, 2014 8:03 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E08.HDTV.x264-KILLERS + https://dognzb.cr/details/2adc2b4ee6db10ffd10a0ae21f5043de + https://dognzb.cr/fetch/2adc2b4ee6db10ffd10a0ae21f5043de/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/2adc2b4ee6db10ffd10a0ae21f5043de#comments + Thu, 20 Nov 2014 20:40:24 -0600 + TV > SD + + + +
Name: Bones.S10E08.HDTV.x264-KILLERS
Category: TV > SD
Size: 419 MB
Post Date: November 20, 2014 8:40 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E08.HDTV.x264-KILLERS + https://dognzb.cr/details/214f8ca5fef83d522c12f14741f16e3f + https://dognzb.cr/fetch/214f8ca5fef83d522c12f14741f16e3f/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/214f8ca5fef83d522c12f14741f16e3f#comments + Thu, 20 Nov 2014 20:02:26 -0600 + TV > SD + + + +
Name: Bones.S10E08.HDTV.x264-KILLERS
Category: TV > SD
Size: 414 MB
Post Date: November 20, 2014 8:02 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E07.HDTV.XviD-EVO + https://dognzb.cr/details/0a4eeb59348c2f44e8c2f4c7ff0986be + https://dognzb.cr/fetch/0a4eeb59348c2f44e8c2f4c7ff0986be/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/0a4eeb59348c2f44e8c2f4c7ff0986be#comments + Mon, 17 Nov 2014 04:22:03 -0600 + TV > SD + + + +
Name: Bones.S10E07.HDTV.XviD-EVO
Category: TV > SD
Size: 436 MB
Post Date: November 17, 2014 4:22 AM
Group: alt.binaries.town
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E07.HDTV.XviD-EVO + https://dognzb.cr/details/e16084f3c65cfbcc3b5b221b163334cc + https://dognzb.cr/fetch/e16084f3c65cfbcc3b5b221b163334cc/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/e16084f3c65cfbcc3b5b221b163334cc#comments + Fri, 14 Nov 2014 14:11:45 -0600 + TV > SD + + + +
Name: Bones.S10E07.HDTV.XviD-EVO
Category: TV > SD
Size: 370 MB
Post Date: November 14, 2014 2:11 PM
Group: alt.binaries.multimedia
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E07.HDTV.XviD-AFG + https://dognzb.cr/details/e1576354cb5cbd12cb31f9391878877e + https://dognzb.cr/fetch/e1576354cb5cbd12cb31f9391878877e/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/e1576354cb5cbd12cb31f9391878877e#comments + Fri, 14 Nov 2014 14:11:32 -0600 + TV > SD + + + +
Name: Bones.S10E07.HDTV.XviD-AFG
Category: TV > SD
Size: 366 MB
Post Date: November 14, 2014 2:11 PM
Group: alt.binaries.multimedia
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E07.HDTV.x264-KILLERS + https://dognzb.cr/details/dea8b7a2a8abbe1635c59c2bddf89d87 + https://dognzb.cr/fetch/dea8b7a2a8abbe1635c59c2bddf89d87/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/dea8b7a2a8abbe1635c59c2bddf89d87#comments + Fri, 14 Nov 2014 13:01:47 -0600 + TV > SD + + + +
Name: Bones.S10E07.HDTV.x264-KILLERS
Category: TV > SD
Size: 358 MB
Post Date: November 14, 2014 1:01 PM
Group: alt.binaries.town
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E07.HDTV.x264-KILLERS + https://dognzb.cr/details/b86488b8950d70affc95cdee724be64e + https://dognzb.cr/fetch/b86488b8950d70affc95cdee724be64e/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/b86488b8950d70affc95cdee724be64e#comments + Thu, 13 Nov 2014 20:01:54 -0600 + TV > SD + + + +
Name: Bones.S10E07.HDTV.x264-KILLERS
Category: TV > SD
Size: 371 MB
Post Date: November 13, 2014 8:01 PM
Group: alt.binaries.boneless
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E07.HDTV.x264-KILLERS + https://dognzb.cr/details/b8d26987f75054e03975a8ca047c5121 + https://dognzb.cr/fetch/b8d26987f75054e03975a8ca047c5121/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/b8d26987f75054e03975a8ca047c5121#comments + Thu, 13 Nov 2014 20:01:36 -0600 + TV > SD + + + +
Name: Bones.S10E07.HDTV.x264-KILLERS
Category: TV > SD
Size: 365 MB
Post Date: November 13, 2014 8:01 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E06.480p.HDTV.x264-mSD + https://dognzb.cr/details/7b53b5a9b330372da91543c7b92b4e6d + https://dognzb.cr/fetch/7b53b5a9b330372da91543c7b92b4e6d/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/7b53b5a9b330372da91543c7b92b4e6d#comments + Fri, 07 Nov 2014 14:51:48 -0600 + TV > SD + + + +
Name: Bones.S10E06.480p.HDTV.x264-mSD
Category: TV > SD
Size: 198 MB
Post Date: November 07, 2014 2:51 PM
Group: alt.binaries.multimedia
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E06.HDTV.XviD-EVO + https://dognzb.cr/details/52844934f64ceced236db62499981985 + https://dognzb.cr/fetch/52844934f64ceced236db62499981985/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/52844934f64ceced236db62499981985#comments + Thu, 06 Nov 2014 20:54:46 -0600 + TV > SD + + + +
Name: Bones.S10E06.HDTV.XviD-EVO
Category: TV > SD
Size: 375 MB
Post Date: November 06, 2014 8:54 PM
Group: alt.binaries.multimedia
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E06.HDTV.x264-KILLERS + https://dognzb.cr/details/517a4122b232228623b6c0363e323382 + https://dognzb.cr/fetch/517a4122b232228623b6c0363e323382/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/517a4122b232228623b6c0363e323382#comments + Thu, 06 Nov 2014 20:32:08 -0600 + TV > SD + + + +
Name: Bones.S10E06.HDTV.x264-KILLERS
Category: TV > SD
Size: 350 MB
Post Date: November 06, 2014 8:32 PM
Group: alt.binaries.multimedia
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E06.HDTV.x264-KILLERS + https://dognzb.cr/details/50ba15f5c47aadc8dba14a95a064badc + https://dognzb.cr/fetch/50ba15f5c47aadc8dba14a95a064badc/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/50ba15f5c47aadc8dba14a95a064badc#comments + Thu, 06 Nov 2014 20:01:39 -0600 + TV > SD + + + +
Name: Bones.S10E06.HDTV.x264-KILLERS
Category: TV > SD
Size: 366 MB
Post Date: November 06, 2014 8:01 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E06.HDTV.x264-KILLERS + https://dognzb.cr/details/4fe772c999bd883dd01ba2477474dc3e + https://dognzb.cr/fetch/4fe772c999bd883dd01ba2477474dc3e/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/4fe772c999bd883dd01ba2477474dc3e#comments + Thu, 06 Nov 2014 20:01:35 -0600 + TV > SD + + + +
Name: Bones.S10E06.HDTV.x264-KILLERS
Category: TV > SD
Size: 372 MB
Post Date: November 06, 2014 8:01 PM
Group: alt.binaries.boneless
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E05.HDTV.XviD-EVO + https://dognzb.cr/details/eead3b24a5573daeb9d42d07912ec2b2 + https://dognzb.cr/fetch/eead3b24a5573daeb9d42d07912ec2b2/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/eead3b24a5573daeb9d42d07912ec2b2#comments + Thu, 30 Oct 2014 23:15:49 -0600 + TV > SD + + + +
Name: Bones.S10E05.HDTV.XviD-EVO
Category: TV > SD
Size: 378 MB
Post Date: October 30, 2014 11:15 PM
Group: alt.binaries.multimedia
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E05.HDTV.XviD-AFG + https://dognzb.cr/details/eead103ceb313b69a96376bfe7637515 + https://dognzb.cr/fetch/eead103ceb313b69a96376bfe7637515/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/eead103ceb313b69a96376bfe7637515#comments + Thu, 30 Oct 2014 23:15:35 -0600 + TV > SD + + + +
Name: Bones.S10E05.HDTV.XviD-AFG
Category: TV > SD
Size: 374 MB
Post Date: October 30, 2014 11:15 PM
Group: alt.binaries.multimedia
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E05.HDTV.x264-KILLERS + https://dognzb.cr/details/eeace56bcaee2059e9bbd8ef0e74eee2 + https://dognzb.cr/fetch/eeace56bcaee2059e9bbd8ef0e74eee2/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/eeace56bcaee2059e9bbd8ef0e74eee2#comments + Thu, 30 Oct 2014 23:12:14 -0600 + TV > SD + + + +
Name: Bones.S10E05.HDTV.x264-KILLERS
Category: TV > SD
Size: 366 MB
Post Date: October 30, 2014 11:12 PM
Group: alt.binaries.multimedia
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E05.480p.HDTV.x264-mSD + https://dognzb.cr/details/ee9b7dbe0dc8d9ee7d3249c039e4ef5d + https://dognzb.cr/fetch/ee9b7dbe0dc8d9ee7d3249c039e4ef5d/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/ee9b7dbe0dc8d9ee7d3249c039e4ef5d#comments + Thu, 30 Oct 2014 23:10:35 -0600 + TV > SD + + + +
Name: Bones.S10E05.480p.HDTV.x264-mSD
Category: TV > SD
Size: 209 MB
Post Date: October 30, 2014 11:10 PM
Group: alt.binaries.multimedia
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E05.HDTV.x264-KILLERS + https://dognzb.cr/details/e5d765f3c15cdd576fbd7c08ddeb9e3a + https://dognzb.cr/fetch/e5d765f3c15cdd576fbd7c08ddeb9e3a/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/e5d765f3c15cdd576fbd7c08ddeb9e3a#comments + Thu, 30 Oct 2014 19:03:09 -0600 + TV > SD + + + +
Name: Bones.S10E05.HDTV.x264-KILLERS
Category: TV > SD
Size: 379 MB
Post Date: October 30, 2014 7:03 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E04.480p.HDTV.x264-mSD + https://dognzb.cr/details/4a82219be48f5e66afb3d0a8d241d657 + https://dognzb.cr/fetch/4a82219be48f5e66afb3d0a8d241d657/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/4a82219be48f5e66afb3d0a8d241d657#comments + Fri, 17 Oct 2014 19:36:25 -0600 + TV > SD + + + +
Name: Bones.S10E04.480p.HDTV.x264-mSD
Category: TV > SD
Size: 214 MB
Post Date: October 17, 2014 7:36 PM
Group: alt.binaries.multimedia
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E04.HDTV.x264-LOL + https://dognzb.cr/details/14d40bffd0255caddd08ba3744bbf63d + https://dognzb.cr/fetch/14d40bffd0255caddd08ba3744bbf63d/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/14d40bffd0255caddd08ba3744bbf63d#comments + Thu, 16 Oct 2014 19:07:52 -0600 + TV > SD + + + +
Name: Bones.S10E04.HDTV.x264-LOL
Category: TV > SD
Size: 360 MB
Post Date: October 16, 2014 7:07 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E03.HDTV.XviD-AFG + https://dognzb.cr/details/b319273db58f0497c705e533097808d1 + https://dognzb.cr/fetch/b319273db58f0497c705e533097808d1/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/b319273db58f0497c705e533097808d1#comments + Thu, 09 Oct 2014 22:18:58 -0600 + TV > SD + + + +
Name: Bones.S10E03.HDTV.XviD-AFG
Category: TV > SD
Size: 424 MB
Post Date: October 09, 2014 10:18 PM
Group: alt.binaries.town
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E03.HDTV.XviD-EVO + https://dognzb.cr/details/af8ec7e1f1f268c0d44e46953e070a8d + https://dognzb.cr/fetch/af8ec7e1f1f268c0d44e46953e070a8d/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/af8ec7e1f1f268c0d44e46953e070a8d#comments + Thu, 09 Oct 2014 20:31:34 -0600 + TV > SD + + + +
Name: Bones.S10E03.HDTV.XviD-EVO
Category: TV > SD
Size: 422 MB
Post Date: October 09, 2014 8:31 PM
Group: alt.binaries.multimedia
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E03.HDTV.x264-LOL + https://dognzb.cr/details/aec55b98b8dac043fcaf0d0f5c44a916 + https://dognzb.cr/fetch/aec55b98b8dac043fcaf0d0f5c44a916/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/aec55b98b8dac043fcaf0d0f5c44a916#comments + Thu, 09 Oct 2014 19:40:50 -0600 + TV > SD + + + +
Name: Bones.S10E03.HDTV.x264-LOL
Category: TV > SD
Size: 377 MB
Post Date: October 09, 2014 7:40 PM
Group: alt.binaries.town
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E03.HDTV.x264-LOL + https://dognzb.cr/details/adaa7268f845f1b90178e03780ea2bfe + https://dognzb.cr/fetch/adaa7268f845f1b90178e03780ea2bfe/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/adaa7268f845f1b90178e03780ea2bfe#comments + Thu, 09 Oct 2014 19:04:27 -0600 + TV > SD + + + +
Name: Bones.S10E03.HDTV.x264-LOL
Category: TV > SD
Size: 362 MB
Post Date: October 09, 2014 7:04 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E02.HDTV.x264-LOL + https://dognzb.cr/details/4ac9bef80401b2fd0c9f0f3dd8fcdcd8 + https://dognzb.cr/fetch/4ac9bef80401b2fd0c9f0f3dd8fcdcd8/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/4ac9bef80401b2fd0c9f0f3dd8fcdcd8#comments + Thu, 02 Oct 2014 22:20:47 -0600 + TV > SD + + + +
Name: Bones.S10E02.HDTV.x264-LOL
Category: TV > SD
Size: 388 MB
Post Date: October 02, 2014 10:20 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + Bones.S10E01.HDTV.x264-LOL + https://dognzb.cr/details/dc385bbcc0c25d584ca397882b832117 + https://dognzb.cr/fetch/dc385bbcc0c25d584ca397882b832117/d097584317824393f71b88a472575e7a + https://dognzb.cr/details/dc385bbcc0c25d584ca397882b832117#comments + Thu, 25 Sep 2014 19:32:02 -0600 + TV > SD + + + +
Name: Bones.S10E01.HDTV.x264-LOL
Category: TV > SD
Size: 359 MB
Post Date: September 25, 2014 7:32 PM
Group: alt.binaries.teevee
Rating: 72
Genre: Comedy, Crime, Drama
+
+ + ]]> +
+ + + + + + + + + + + + + + + + + +
+ + +
+ +
+