2019-08-30: Where did the archive go? Part 1: Library and Archives Canada

(1) Library and Archives Canada (collectionscanada.gc.ca)
Around May 2018, mementos in this archive were moved to a new archive (webarchive.bac-lac.gc.ca) which has a different domain name. We noticed that 49 mementos (out of 351) can not be found in the new archive.
(2) The National Library of Ireland (NLI)
Around May 2018, the European Archive (europarchive.org) was shut down and the domain name was purchased by another entity. The National Library of Ireland (NLI) collection preserved by this archive was moved to another archive (internetmemory.org). All 979 mementos can be retrieved from the new archive (i.e., no missing mementos). Around September 2018, the archive internetmemory.org became unreachable (timeout error). The NLI collection preserved by this archive was moved to another archive (archive-it.org). The other archived collections in internetmemory.org may also have been moved to archive-it.org or to other archives. The number of missing from NLI mementos is 192 (out of 979).
(3) Public Record Office of Northern Ireland (PRONI) (webarchive.proni.gov.uk)
Around October 2018, all mementos preserved by this archive were moved to archive-it.org. The PRONI archive's homepage is still online and shows a list of web pages' URLs (not mementos' URLs). By clicking on any of these URLs, it redirects to an HTML page in archive-it.org that shows the available mementos (i.e., the TimeMap) associated with the selected URL. The number of missing mementos from PRONI is 114 (out of 469).
(4) WebCite (webcitation.org)
The archive has been unreachable (timeout error) for about a month (from June 06, 2019 to July 08, 2019). The archive no longer accepts any new archiving requests, but it still provides access to all preserved mementos.
Library and Archives Canada
In this post, we provide some details about changes in the archive Library and Archives Canada. Changes in the other three archives will be described in upcoming posts.
We refer to the archive from which mementos have moved as the "original archive", and we use the "new archive" to refer to the archive to which the mementos have moved. A memento is identified by a URI-M as defined in the Memento framework.
In our study we have 351 mementos from collectionscanada.gc.ca. Around May 2018, 302 of those mementos have been moved to webarchive.bac-lac.gc.ca (the 49 remaining mementos are lost). For instance, the memento:
http://www.collectionscanada.gc.ca/webarchives/20051228174058/http://nationalatlas.gov/
is now available at:
http://webarchive.bac-lac.gc.ca:8080/wayback/20051228174058/http://nationalatlas.gov/
The representations of both mementos are illustrated in the figure below. The original archive uses the green banner (left) while the new archive uses the yellow banner (right):
We have several observations about the change in the archive Library and Archives Canada:
Observation 1: The HTTP request of a URI-M from the original archive does not redirect to the corresponding URI-M in the new archive
The institution (Library and Archives Canada) that has developed the new archive (webarchive.bac-lac.gc.ca) still controls and maintains the domain name of the original archive (www.collectionscanada.gc.ca). Thus, it would be possible for requests of mementos (URI-Ms) to the original archive to redirect to the corresponding URI-Ms in the new archive. However, we found that every memento request to the original archive redirected to the home page of the new archive as shown below:
$ curl --head --location --silent http://www.collectionscanada.gc.ca/webarchives/20051228174058/http://nationalatlas.gov/ | egrep -i "(HTTP/1.1|^location:)"
Location: http://www.bac-lac.gc.ca/eng/discover/archives-web-government/Pages/web-archives.aspx
HTTP/1.1 302 Found
Location: http://webarchive.bac-lac.gc.ca/?lang=en
HTTP/1.1 200
Here is the representation of the home page of the new archive:

We had to manually intervene to detect the corresponding URI-Ms of the mementos in the new archive which can be done by replacing "www.collectionscanada.gc.ca/webarchives" with "webarchive.bac-lac.gc.ca:8080/wayback" in the URI-Ms of the original archive.
This reminds us of The End of Term Archive (eot.us.archive.org) which was established with the goal of preserving the United States government web (.gov). The domain name (eot.us.archive.org) is still under the control of the Internet Archive (archive.org). The example below shows how the HTTP request to a URI-M in the End of Term Archive redirects to the corresponding URI-M in the Internet Archive. This practice maintains link integrity via "follow-your-nose" from the old URI-M to the new URI-M.
$ curl --head --location --silent http://eot.us.archive.org/eot/20120520120841/http://www2.ed.gov/espanol/parents/academic/matematicas/brochure.pdf | egrep -i "(HTTP/|^location:)"
HTTP/1.1 302 Found
Location: https://web.archive.org/web/20120520120841/http://www2.ed.gov/espanol/parents/academic/matematicas/brochure.pdf
HTTP/2 200
We can rewrite URI-Ms of the original archive and have them redirect (301 Moved Permanently) to their corresponding URI-Ms in the new archive. For example, for the Apache web server, the mod_rewrite rule can be used to perform automatic redirects and rewrite requested URIs on the fly. Here is a rewrite rule example that the original archive can use to redirect requests to the new archive:
# With mod_rewrite
RewriteEngine on
RewriteRule "^/webarchives/(\d{14})/(.+)" http://webarchive.bac-lac.gc.ca:8080/wayback/$1/$2 [L,R=301]
If the original archive serves only mementos under /webarchives, then the mod_rewrite rule would be even simpler:
# With mod_rewrite
RewriteEngine on
RewriteRule "^/webarchives/(.+)" http://webarchive.bac-lac.gc.ca:8080/wayback/$1 [L,R=301]
Observation 2: Not all mementos are available in the new archive
Each memento (URI-M) represents a prior version of an original web page (URI-R) at a particular datetime (Memento-Datetime). The timestamp, usually included in a URI-M, is identical to the value of the response header Memento-Datetime.
For example, for:
URI-M = http://www.collectionscanada.gc.ca/webarchives/20060208075019/http://www.cdc.gov/
we have:
Memento-Datetime = Wed, 08 Feb 2006 07:50:19 GMT
URI-R = http://www.cdc.gov/
For a URI-M from the original archive, if the values of the Memento-Datetime, the URI-R, and the final HTTP status code are not identical to the values of the corresponding URI-M from the new archive, we name this as a missing memento.
In this study, we found that 49 mementos (out of 351) can not be retrieved from the new archive. Instead, the archive responds with other mementos that have different Memento-Datetimes. Those mementos may (or may not) have the same content compared to the content returned by the original archive. For example, when we requested the URI-M:
http://www.collectionscanada.gc.ca/webarchives/20060208075019/http://www.cdc.gov/
from the original archive (www.collectionscanada.gc.ca) on February 27, 2018, we received the HTTP status "200 OK" with the following representation (the Memento-Datetime of this memento is Wed, 08 Feb 2006 07:50:19 GMT):
![]() |
In www.collectionscanada.gc.ca |
http://webarchive.bac-lac.gc.ca:8080/wayback/20060208075019/http://www.cdc.gov/
from the new archive. As shown in the cURL session below, the request redirected to another URI-M:
http://webarchive.bac-lac.gc.ca:8080/wayback/20061026060247/http://www.cdc.gov/
This memento has a different Memento-Datetime (Thu, 26 Oct 2006 06:02:47 GMT) for a delta of about 260 days. The content of this memento (the figure below) in the new archive is different from the content of the memento that used to be available in the original archive (the figure above).
![]() |
In webarchive.bac-lac.gc.ca |
HTTP/1.1 302 Found
Location: http://webarchive.bac-lac.gc.ca:8080/wayback/20061026060247/http://www.cdc.gov/
HTTP/1.1 200 OK
Memento-Datetime: Thu, 26 Oct 2006 06:02:47 GMT
The figure below shows a set of screenshots taken for the memento within 14 months. The screenshots with a blue border are representations of mementos in the original archive (www.collectionscanada.gc.ca) before it is moved to the new archive. The screenshots with a red border is the home page of the new archive before we manually detected the corresponding URI-Ms in the new archive. The screenshots with a green border shows the representations resulting from requesting the memento from the new archive (webarchive.bac-lac.gc.ca). The representation before the archive's change (blue border) is different from the representation of the memento after the change (green border).
Replayed the memento 33 times within 14-months. |
Observation 3: New features available in the new archive because of the upgraded replay tool
The new archive (webarchive.bac-lac.gc.ca) uses an updated version of OpenWayback (i.e., OpenWayback Release 1.6.0 or later) that enables new features, such as raw mementos and Memento support. These features were not supported by the original archive that was running OpenWayback Release 1.4 (or earlier) .
Raw mementos
At replay time, archives transform the original content of web pages to appropriately replay them (e.g., in a user’s browser). Archives add their own banners to provide metadata about both the memento being viewed and the original page. Archives also rewrite links of embedded resources in a page so that these resources are retrieved from the archive, not from the original server.
Many archives allow accessing unaltered, or raw, archived content (i.e., retrieving the archived original content without any type of transformation by the archive). The most common mechanism to retrieve the raw mementos is by adding "id_" after the timestamp in the requested URI-M.
The feature of retrieving the raw mementos was not provided by the original archive (www.collectionscanada.gc.ca). However, it is supported by the new archive. For example, to retrieve the raw content of the memento identified by the URI-M
http://webarchive.bac-lac.gc.ca:8080/wayback/20061026060247/http://www.cdc.gov/
we add "id_" after the timestamp as shown in the cURL session below:
curl --head --location --silent http://webarchive.bac-lac.gc.ca:8080/wayback/20061026060247id_/http://www.cdc.gov/ | egrep -i "(HTTP/|^Memento-Datetime)"
HTTP/1.1 200 OK
Memento-Datetime: Thu, 26 Oct 2006 06:02:47 GMT
Memento support
The Memento protocol is supported by most public web archives including the Internet Archive. The protocol introduces two HTTP headers for content negotiation. First, Accept-Datetime is an HTTP Request header through which a client can request a prior state of a web resource by providing the preferred datetime, for example,
Accept-Datetime: Mon, 09 Jan 2017 11:21:57 GMT.
Second, the Memento-Datetime HTTP Response header is sent by a server to indicate the datetime at which the resource was captured, for instance,
Memento-Datetime: Sun, 08 Jan 2017 09:15:41 GMT.
The Memento protocol also defines:
- TimeMap: A resource that provides a list of mementos (URI-Ms) for a particular original resource,
- TimeGate: A resource that supports content negotiation based on datetime to access prior versions of an original resource.
$ curl http://webarchive.bac-lac.gc.ca:8080/wayback/timemap/link/http://www.cdc.gov/
<http://www.cdc.gov/>; rel="original",
<http://webarchive.bac-lac.gc.ca:8080/wayback/timemap/link/http://www.cdc.gov/>; rel="self"; type="application/link-format"; from="Thu, 26 Oct 2006 06:02:47 GMT"; until="Fri, 09 Oct 2015 13:26:42 GMT",
<http://webarchive.bac-lac.gc.ca:8080/wayback/http://www.cdc.gov/>; rel="timegate",
<http://webarchive.bac-lac.gc.ca:8080/wayback/20061026060247/http://www.cdc.gov/>; rel="first memento"; datetime="Thu, 26 Oct 2006 06:02:47 GMT",
<http://webarchive.bac-lac.gc.ca:8080/wayback/20151009132642/http://www.cdc.gov/>; rel="last memento"; datetime="Fri, 09 Oct 2015 13:26:42 GMT"
It is possible that two archives use the same version of OpenWayback but with different configuration options, such as whether to support Memento framework or not:
<bean name="standardaccesspoint" class="org.archive.wayback.webapp.AccessPoint">
<property name="accessPointPath" value="${wayback.url.prefix}/wayback/"/>
<property name="internalPort" value="${wayback.url.port}"/>
<property name="serveStatic" value="true" />
<property name="bounceToReplayPrefix" value="false" />
<property name="bounceToQueryPrefix" value="false" />
<property name="enableMemento" value="true" />
or how to respond to (raw) archival redirects (thanks to Alex Osborne for help in locating this information):
<!-- WARN CLIENT ABOUT PATH REDIRECTS -->
<bean class="org.archive.wayback.replay.selector.RedirectSelector">
<property name="renderer">
<bean class="org.archive.wayback.replay.JSPReplayRenderer">
<property name="targetJsp" value="/WEB-INF/replay/UrlRedirectNotice.jsp" />
</bean>
</property>
</bean>
...
<!-- Explicit (via "id_" flag) IDENTITY/RAW REPLAY -->
<bean class="org.archive.wayback.replay.selector.IdentityRequestSelector">
<property name="renderer" ref="identityreplayrenderer"/>
</bean>
Observation 4: The HTTP status code may change in the new archive
The HTTP status codes of URI-Ms in the new archive might not be identical to the HTTP status code of the corresponding URI-Ms in the original archive. For example, the HTTP request of the URI-M:
http://www.collectionscanada.gc.ca/webarchives/20070220181041/http://www.berlin.gc.ca/
to the original archive resulted in the following "302" redirects before it ended up with the HTTP status code "404":
http://www.collectionscanada.gc.ca/webarchives/20070220181041/http://www.berlin.gc.ca/ (302)
http://www.collectionscanada.gc.ca/webarchives/20070220181041/http://www.dfait-maeci.gc.ca/canadaeuropa/germany/ (302)
http://www.collectionscanada.gc.ca/webarchives/20070220181204/http://www.dfait-maeci.gc.ca/canadaeuropa/germany/ (302)
http://www.collectionscanada.gc.ca/webarchives/20070220181204/http://www.international.gc.ca/global/errors/404.asp?404%3Bhttp://www.dfait-maeci.gc.ca/canadaeuropa/germany/ (404)
We requested the corresponding URI-M from the new archive, it ended up with the HTTP status code "200":
http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181041/http://www.berlin.gc.ca/ (Redirect by JavaScript (JS))
http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181041/http://www.dfait-maeci.gc.ca/canadaeuropa/germany/ (Redirect by JS)
http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181204/http://www.international.gc.ca/global/errors/404.asp?404%3Bhttp://www.dfait-maeci.gc.ca/canadaeuropa/germany/ (Redirect by JS)
http://webarchive.bac-lac.gc.ca:8080/wayback/20071115025620/http://www.international.gc.ca/canada-europa/germany/ (302)
http://webarchive.bac-lac.gc.ca:8080/wayback/20071115023828/http://www.international.gc.ca/canada-europa/germany/ (200)
The list of all 351 URI-Ms is shown below. The file contains the following information:
- The URI-M from the original archive (original_URI-M).
- The final URI-M after following redirects, if any, of the URI-M from the original archive (final_original_URI-M).
- The HTTP status code of the final URI-M from the original archive (final_original_URI-M_status_code).
- The URI-M from the new archive (new_URI-M).
- The final URI-M after following redirects, if any, of the URI-M from the new archive (final_new_URI-M).
- The HTTP status code of the final URI-M from the new archive (final_new_URI-M_status_code).
- The difference (in seconds) between the Memento-Datetimes of the final URI-Ms (delta).
- Whether the URI-Rs of the final URI-Ms are identical or not (same_final_URI-Rs). The different URI-Rs are labeled with "No", otherwise "-".
- Whether the status codes of the final URI-Ms are identical or not (same_final_URI-Ms_status_code). The different status codes are labeled with "No", otherwise "-".
- The first 49 rows contain the information of the missing mementos.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
original_URI-M | final_original_URI-M | final_original_URI-M_status_code | new_URI-M | final_new_URI-M | final_new_URI-M_status_code | delta | same_final_URI-Rs? | same_final_URI-Ms_status_codes? | |
---|---|---|---|---|---|---|---|---|---|
http://www.collectionscanada.gc.ca/webarchives/20060116153003/http://www.berlin.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060116163247/http://www.dfait-maeci.gc.ca/canada-europa/germany/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060116153003/http://www.berlin.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071115023828/http://www.international.gc.ca/canada-europa/germany/ | 200 | 57665141.0 (1 years) | No | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060116153017/http://www.beijing.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060116153017/http://www.beijing.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20060116170507/http://www.beijing.gc.ca/ | 200 | 5690.0 ( 1 hours) | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060116153006/http://www.abidjan.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060116153039/http://www.dfait-maeci.gc.ca/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060116153006/http://www.abidjan.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181055/http://www.dfait-maeci.gc.ca/abidjan/ | 200 | 34569616.0 (1 years) | No | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060116153028/http://www.bangladesh.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060116153147/http://www.dfait-maeci.gc.ca/bangladesh/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060116153028/http://www.bangladesh.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181134/http://www.dfait-maeci.gc.ca/bangladesh/ | 200 | 34569587.0 (1 years) | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060116153002/http://www.aboudhabi.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060116153112/http://www.dfait-maeci.gc.ca/abudhabi/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060116153002/http://www.aboudhabi.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181058/http://www.dfait-maeci.gc.ca/abudhabi/ | 200 | 34569586.0 (1 years) | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060116153002/http://www.accordscommerciaux.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060116153114/http://www.dfait-maeci.gc.ca/tna-nac/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060116153002/http://www.accordscommerciaux.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181059/http://www.dfait-maeci.gc.ca/tna-nac/ | 200 | 34569585.0 (1 years) | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060116153003/http://www.bamako.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060116153115/http://www.dfait-maeci.gc.ca/world/embassies/mali/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060116153003/http://www.bamako.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181053/http://www.dfait-maeci.gc.ca/world/embassies/mali/ | 200 | 34569578.0 (1 years) | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060116153028/http://www.bangalore.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060116153151/http://www.dfait-maeci.gc.ca/new-delhi/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060116153028/http://www.bangalore.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181115/http://geo.international.gc.ca/asia/new-delhi/ | 200 | 34569564.0 (1 years) | No | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060116153002/http://www.ameriquescanada.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060116153232/http://www.dfait-maeci.gc.ca/latin-america/latinamerica/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060116153002/http://www.ameriquescanada.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181056/http://geo.international.gc.ca/latin-america/latinamerica/ | 200 | 34569504.0 (1 years) | No | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060116153028/http://www.algeria.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060116153815/http://www.dfait-maeci.gc.ca/world/embassies/algeria/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060116153028/http://www.algeria.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181102/http://www.dfait-maeci.gc.ca/world/embassies/algeria/ | 200 | 34569167.0 (1 years) | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060116153002/http://www.algiers.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060116153815/http://www.dfait-maeci.gc.ca/world/embassies/algeria/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060116153002/http://www.algiers.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181102/http://www.dfait-maeci.gc.ca/world/embassies/algeria/ | 200 | 34569167.0 (1 years) | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060116153003/http://www.australia.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060116153839/http://www.dfait-maeci.gc.ca/australia/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060116153003/http://www.australia.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181117/http://geo.international.gc.ca/asia/australia/ | 200 | 34569158.0 (1 years) | No | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060116153002/http://www.apec.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060116153822/http://www.dfait-maeci.gc.ca/canada-apec/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060116153002/http://www.apec.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181036/http://www.international.gc.ca/trade/canada-apec/ | 200 | 34569134.0 (1 years) | No | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060116153006/http://www.alena.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060116154021/http://www.dfait-maeci.gc.ca/trade/nafta-alena/menu-fr.asp | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060116153006/http://www.alena.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181121/http://www.dfait-maeci.gc.ca/trade/nafta-alena/menu-fr.asp | 200 | 34569060.0 (1 years) | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060116153007/http://www.boisdoeuvre.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060116154311/http://www.dfait-maeci.gc.ca/eicb/softwood/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060116153007/http://www.boisdoeuvre.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181057/http://www.dfait-maeci.gc.ca/eicb/softwood/ | 200 | 34568866.0 (1 years) | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060116153007/http://www.byrdamendmentdispute.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060116154313/http://www.dfait-maeci.gc.ca/tna-nac/disp/byrd-main-en.asp | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060116153007/http://www.byrdamendmentdispute.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181058/http://www.dfait-maeci.gc.ca/tna-nac/disp/byrd-main-en.asp | 200 | 34568865.0 (1 years) | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060116153007/http://www.buffalo.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060116154406/http://www.dfait-maeci.gc.ca/buffalo/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060116153007/http://www.buffalo.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181055/http://geo.international.gc.ca/can-am/buffalo/ | 200 | 34568809.0 (1 years) | No | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060116153007/http://www.atlanta.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060116160439/http://www.dfait-maeci.gc.ca/atlanta/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060116153007/http://www.atlanta.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181120/http://geo.international.gc.ca/can-am/atlanta/ | 200 | 34567601.0 (1 years) | No | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060116153028/http://www.anchorage.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060116161622/http://www.dfait-maeci.gc.ca/can-am/anchorage/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060116153028/http://www.anchorage.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181119/http://geo.international.gc.ca/can-am/anchorage/ | 200 | 34566897.0 (1 years) | No | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060116153003/http://www.athens.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060116163234/http://www.dfait-maeci.gc.ca/canada-europa/greece/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060116153003/http://www.athens.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181525/http://geo.international.gc.ca/canada-europa/greece/ | 200 | 34566171.0 (1 years) | No | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060116153028/http://www.asie-pacifique.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060116163955/http://www.dfait-maeci.gc.ca/asia/main/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060116153028/http://www.asie-pacifique.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181049/http://geo.international.gc.ca/asia/main/ | 200 | 34565454.0 (1 years) | No | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060116153028/http://www.asia-pacific.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060116163955/http://www.dfait-maeci.gc.ca/asia/main/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060116153028/http://www.asia-pacific.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181049/http://geo.international.gc.ca/asia/main/ | 200 | 34565454.0 (1 years) | No | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060116153006/http://www.berne.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060116170315/http://www.dfait-maeci.gc.ca/canada-europa/switzerland/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060116153006/http://www.berne.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181527/http://geo.international.gc.ca/canada-europa/switzerland/ | 200 | 34564332.0 (1 years) | No | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060116153007/http://www.bucharest.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060116174130/http://www.dfait-maeci.gc.ca/canada-europa/romania/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060116153007/http://www.bucharest.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181536/http://geo.international.gc.ca/canada-europa/romania/ | 200 | 34562046.0 (1 years) | No | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060116153458/http://www.archetypes.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060116153612/http://www.pwgsc.gc.ca/archetypes/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060116153458/http://www.archetypes.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20061210150133/http://www.pwgsc.gc.ca/archetypes/ | 200 | 28337121.0 (327 days) | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060116153350/http://www.aaw-ssca.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060116153350/http://www.aaw-ssca.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20061129163950/http://www.aaw-ssca.gc.ca/ | 200 | 27392760.0 (317 days) | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060209033032/http://www.digitalpreservation.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060209033032/http://www.digitalpreservation.gov/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20061216101214/http://www.digitalpreservation.gov/index.html | 200 | 26808102.0 (310 days) | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060209024005/http://www.copyright.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060209024005/http://www.copyright.gov/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20061215193842/http://www.copyright.gov/ | 200 | 26758717.0 (309 days) | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060209050922/http://www.imls.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060209050922/http://www.imls.gov/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20061215175354/http://www.imls.gov/ | 200 | 26743472.0 (309 days) | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060209051254/http://www.loc.gov/ | http://www.collectionscanada.gc.ca/webarchives/20060209051254/http://www.loc.gov/index.html | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060209051254/http://www.loc.gov/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20061215172705/http://www.loc.gov/index.html | 200 | 26741651.0 (309 days) | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060304001905/http://www.dhs.gov/ | http://www.collectionscanada.gc.ca/webarchives/20060304001907/http://www.dhs.gov/dhspublic/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060304001905/http://www.dhs.gov/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20140304192946/http://www.dhs.gov/ | 200 | 252529839.0 (8 years) | No | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060222174523/http://www.iom.int/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060222174523/http://www.iom.int/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20061209062130/http://www.iom.int/ | 200 | 25014967.0 (289 days) | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060222175031/http://www.bpwg.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060222175031/http://www.bpwg.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20061209010753/http://www.bpwg.gc.ca/ | 200 | 24995842.0 (289 days) | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060302191529/http://www.businessregistration-inscriptionentreprise.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060302191529/http://www.businessregistration-inscriptionentreprise.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20061209233016/http://www.businessregistration-inscriptionentreprise.gc.ca/ | 200 | 24380087.0 (282 days) | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060126155624/http://www.bmsv.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060126155641/http://bullseye.pwgsc.gc.ca/default/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060126155624/http://www.bmsv.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20061025164355/http://bullseye.pwgsc.gc.ca/default/ | 200 | 23503634.0 (272 days) | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20070220181041/http://www.berlin.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20070220181204/http://www.international.gc.ca/global/errors/404.asp?404%3Bhttp://www.dfait-maeci.gc.ca/canadaeuropa/germany/ | 404 | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181041/http://www.berlin.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071115023828/http://www.international.gc.ca/canada-europa/germany/ | 200 | 23099184.0 (267 days) | No | No | |
http://www.collectionscanada.gc.ca/webarchives/20060205125105/http://www.article15.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060205131551/http://www.justice.gc.ca/fr/s15/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060205125105/http://www.article15.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20061025163508/http://www.article15.gc.ca/ | 403 | 22648757.0 (262 days) | No | No | |
http://www.collectionscanada.gc.ca/webarchives/20060208075019/http://www.cdc.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060208075019/http://www.cdc.gov/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20061026060247/http://www.cdc.gov/ | 200 | 22457548.0 (259 days) | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060116153352/http://atlas.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060116153352/http://atlas.gc.ca/site/index.html | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060116153352/http://atlas.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20060130033340/http://atlas.gc.ca/site/index.html | 200 | 1166388.0 (13 days) | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051222163413/http://www.acdi-cida.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051222163413/http://www.acdi-cida.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20051222163414/http://www.acdi-cida.gc.ca/index.htm | 200 | 1.0 (1 seconds) | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061210150108/http://www.bgc-oro.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20061210150117/http://www.solutions.gc.ca/oro-bgc/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061210150108/http://www.bgc-oro.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20061210150108/http://bgc-oro.gc.ca/ | 200 | -9.0 (9 seconds) | No | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183415/http://www.barbados.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071122160659/http://geo.international.gc.ca/latin-america/barbados/menu-en.aspx | 400 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183415/http://www.barbados.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071116023152/http://geo.international.gc.ca/latin-america/barbados/menu-en.aspx | 404 | -567307.0 (6 days) | Yes | No | |
http://www.collectionscanada.gc.ca/webarchives/20060214105004/http://www.autochtonesaucanada.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060214105004/http://www.autochtonesaucanada.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20051224020910/http://autochtonesaucanada.gc.ca/ | 200 | -4524054.0 (52 days) | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060205133212/http://www.acoa-apeca.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060205133212/http://www.acoa-apeca.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20051222164534/http://www.acoa-apeca.gc.ca/ | 200 | -3876398.0 (44 days) | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071120133632/http://bmsv.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071121014240/http://isvp.gc.ca/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071120133632/http://bmsv.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20061025164355/http://bullseye.pwgsc.gc.ca/default/ | 200 | -33814725.0 (1 years) | No | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060205132658/http://www.aec-fac.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060205132658/http://www.aec-fac.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20051228141502/http://www.aec-fac.gc.ca/ | 200 | -3366716.0 (38 days) | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071119194042/http://schools.cbc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071119194042/http://schools.cbc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20061029151551/http://schools.cbc.ca/ | 200 | -33366291.0 (1 years) | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071119182551/http://broadband.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071119183126/http://broadband.gc.ca/index.htm | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071119182551/http://broadband.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20061110204319/http://www.broadband.gc.ca/index.htm | 200 | -32305687.0 (1 years) | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183414/http://www.bgc-oro.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071116030148/http://www.solutions.gc.ca/oro-bgc/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183414/http://www.bgc-oro.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183414/http://bgc-oro.gc.ca/ | 200 | -116854.0 (1 days) | No | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071116093247/http://ice-glaces.ec.gc.ca/app/wsvpagedsp.cfm?id=1&lang=fre | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071116093247/http://ice-glaces.ec.gc.ca/app/wsvpagedsp.cfm?id=1&lang=fre | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071116044257/http://meteo.gc.ca/canada_f.html | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071116044257/http://meteo.gc.ca/canada_f.html | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071116021959/http://search-recherche.collectionscanada.ca/fed/search.jsp?language=eng | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071116021959/http://search-recherche.collectionscanada.ca/fed/search.jsp?language=eng | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071116014251/http://ccinfoweb.cchst.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071116014251/http://ccinfoweb.cchst.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071116000529/http://geobase.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071116000529/http://geobase.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071116000428/http://www.voyage.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071116000428/http://www.voyage.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071115021116/http://www.cbc.radio-canada.ca/newsreleases/20061019.shtml | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071115021116/http://www.cbc.radio-canada.ca/newsreleases/20061019.shtml | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071115003259/http://www.ec.gc.ca/default.asp?lang=fr&n=ecd35c36 | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071115003259/http://www.ec.gc.ca/default.asp?lang=fr&n=ecd35c36 | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114235322/http://www.cbc.ca/archives/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114235322/http://www.cbc.ca/archives/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114184533/http://www.bureaudelatraduction-translationbureau.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114184533/http://www.bureaudelatraduction-translationbureau.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114184046/http://www.cbc.radio-canada.ca/home.asp | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114184046/http://www.cbc.radio-canada.ca/home.asp | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114184028/http://www.ccohs.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114184028/http://www.ccohs.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183942/http://www.avenirh2-pilesacombustibles.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183942/http://www.avenirh2-pilesacombustibles.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183451/http://www.asfc-cbsa.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183451/http://www.asfc-cbsa.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183446/http://www.bioreseau.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071114183449/http://www.bioreseau.gc.ca/index_f.asp | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183446/http://www.bioreseau.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183449/http://www.bioreseau.gc.ca/index_f.asp | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183441/http://www.armee.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071116001415/http://www.army.forces.gc.ca/lf/index.asp | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183441/http://www.armee.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071116001415/http://www.army.forces.gc.ca/lf/index.asp | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183441/http://www.archetypes.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071115080101/http://www.pwgsc.gc.ca/archetypes/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183441/http://www.archetypes.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071115080101/http://www.pwgsc.gc.ca/archetypes/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183440/http://www.bca.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183440/http://www.bca.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183440/http://www.api-ipy.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183440/http://www.api-ipy.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183439/http://www.aines.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183439/http://www.aines.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183439/http://www.aids-sida.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071115054929/http://www.phac-aspc.gc.ca/aids-sida/hiv_aids/splash.html | 404 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183439/http://www.aids-sida.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071115054929/http://www.phac-aspc.gc.ca/aids-sida/hiv_aids/splash.html | 404 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183432/http://www.bggp.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183432/http://www.bggp.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183429/http://www.businesswomenintrade.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071114184246/http://www.dfait-maeci.gc.ca/businesswomen/menu-en.asp | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183429/http://www.businesswomenintrade.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114184246/http://www.dfait-maeci.gc.ca/businesswomen/menu-en.asp | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183428/http://www.budget.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183428/http://www.budget.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183428/http://www.bio-iob.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183428/http://www.bio-iob.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183428/http://www.bif-ofi.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071114183529/http://www.ainc-inac.gc.ca/interloc/index.asp | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183428/http://www.bif-ofi.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183529/http://www.ainc-inac.gc.ca/interloc/index.asp | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183428/http://www.airforce.forces.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071114183444/http://www.airforce.forces.gc.ca/site/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183428/http://www.airforce.forces.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183444/http://www.airforce.forces.gc.ca/site/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183428/http://www.acoa.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183428/http://www.acoa.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183428/http://www.acdi-cida.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071114183430/http://www.acdi-cida.gc.ca/index.htm | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183428/http://www.acdi-cida.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183430/http://www.acdi-cida.gc.ca/index.htm | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183427/http://www.autosmart.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183427/http://www.autosmart.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183427/http://www.autochtonesaucanada.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183427/http://www.autochtonesaucanada.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183427/http://www.ammis.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183427/http://www.ammis.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183427/http://www.afpc-cpsa.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071115064400/http://www.psagency-agencefp.gc.ca/index_f.asp | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183427/http://www.afpc-cpsa.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071115064400/http://www.psagency-agencefp.gc.ca/index_f.asp | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183427/http://www.acfc-fcac.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183427/http://www.acfc-fcac.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183427/http://www.1857.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071114183443/http://www.1857.gc.ca/1857/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183427/http://www.1857.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183443/http://www.1857.gc.ca/1857/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183426/http://www.batimentsdurables-sustainablebuildings.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183426/http://www.batimentsdurables-sustainablebuildings.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183426/http://www.at-links.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183426/http://www.at-links.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183426/http://www.arc-cra.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071114183548/http://www.cra-arc.gc.ca/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183426/http://www.arc-cra.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183548/http://www.cra-arc.gc.ca/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183426/http://www.aqhi-cas.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071114184641/http://www.ec.gc.ca/cas-aqhi/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183426/http://www.aqhi-cas.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114184641/http://www.ec.gc.ca/cas-aqhi/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183426/http://www.ae-ei.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183426/http://www.ae-ei.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183425/http://www.allemagne.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071114190938/http://www.dfait-maeci.gc.ca/canada-europa/germany/menu-fr.asp | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183425/http://www.allemagne.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114190938/http://www.dfait-maeci.gc.ca/canada-europa/germany/menu-fr.asp | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183425/http://www.agencefp.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071115064400/http://www.psagency-agencefp.gc.ca/index_f.asp | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183425/http://www.agencefp.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071115064400/http://www.psagency-agencefp.gc.ca/index_f.asp | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183425/http://www.acsta-catsa.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183425/http://www.acsta-catsa.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183425/http://www.accountable.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071115000130/http://www.faa-lfi.gc.ca/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183425/http://www.accountable.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071115000130/http://www.faa-lfi.gc.ca/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183425/http://www.accespublic.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183425/http://www.accespublic.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183424/http://www.cbc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183424/http://www.cbc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183423/http://www.cchst.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183423/http://www.cchst.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183419/http://www.bippp.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183419/http://www.bippp.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183418/http://www.bdc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071114183419/http://www.bdc.ca/default.htm | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183418/http://www.bdc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183419/http://www.bdc.ca/default.htm | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183417/http://www.businessregistration-inscriptionentreprise.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183417/http://www.businessregistration-inscriptionentreprise.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183417/http://www.avenirh2pac.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183417/http://www.avenirh2pac.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183416/http://www.burkinofaso.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071114183731/http://www.dfait-maeci.gc.ca/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183416/http://www.burkinofaso.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183731/http://www.dfait-maeci.gc.ca/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183416/http://www.bureaudcn.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183416/http://www.bureaudcn.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183416/http://www.brazil.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071114183754/http://www.canadainternational.gc.ca/brazil/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183416/http://www.brazil.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183754/http://www.canadainternational.gc.ca/brazil/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183416/http://www.brasil.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071114183754/http://www.canadainternational.gc.ca/brazil/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183416/http://www.brasil.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183754/http://www.canadainternational.gc.ca/brazil/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183416/http://www.boaa.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183416/http://www.boaa.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183416/http://www.belgium.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071114183926/http://www.dfait-maeci.gc.ca/canada-europa/brussels/menu-en.asp | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183416/http://www.belgium.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183926/http://www.dfait-maeci.gc.ca/canada-europa/brussels/menu-en.asp | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183416/http://www.austria.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071116023212/http://geo.international.gc.ca/canada-europa/austria/menu-en.asp | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183416/http://www.austria.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071116023212/http://geo.international.gc.ca/canada-europa/austria/menu-en.asp | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183416/http://www.ainc-inac.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183416/http://www.ainc-inac.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183416/http://www.agriculture.technomuses.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183416/http://www.agriculture.technomuses.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183416/http://www.act.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183416/http://www.act.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183416/http://www.accesvoyage.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183416/http://www.accesvoyage.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183416/http://www.2006recensement.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183416/http://www.2006recensement.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183415/http://www.businessgateway-portaildesaffaires.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071116001427/http://canadabusiness.gc.ca/gol/cbec/site.nsf | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183415/http://www.businessgateway-portaildesaffaires.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071116001427/http://canadabusiness.gc.ca/gol/cbec/site.nsf | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183415/http://www.buildingcanada.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071114183434/http://www.buildingcanada-chantierscanada.gc.ca/index-eng.html | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183415/http://www.buildingcanada.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183434/http://www.buildingcanada-chantierscanada.gc.ca/index-eng.html | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183415/http://www.bst-tsb.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183415/http://www.bst-tsb.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183415/http://www.bsi.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071116000540/http://irc.nrc-cnrc.gc.ca/pubs/bsi/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183415/http://www.bsi.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071116000540/http://irc.nrc-cnrc.gc.ca/pubs/bsi/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183415/http://www.bsf-osb.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183415/http://www.bsf-osb.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183415/http://www.brevets.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183415/http://www.brevets.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183415/http://www.boeufexportationcanada.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071114183429/http://www.agr.gc.ca/redirect.phtml?err=404 | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183415/http://www.boeufexportationcanada.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183429/http://www.agr.gc.ca/redirect.phtml?err=404 | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183415/http://www.bioportail.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071114184503/http://www.bioportail.gc.ca/splash.asp | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183415/http://www.bioportail.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114184503/http://www.bioportail.gc.ca/splash.asp | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183415/http://www.bionetwork.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071114183417/http://www.bionetwork.gc.ca/index_e.asp | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183415/http://www.bionetwork.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183417/http://www.bionetwork.gc.ca/index_e.asp | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183415/http://www.biofondations.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071114183418/http://www.biofondations.gc.ca/francais/view.asp?x=556 | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183415/http://www.biofondations.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183418/http://www.biofondations.gc.ca/francais/view.asp?x=556 | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183415/http://www.bio2006.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071114183417/http://www.bio2006.gc.ca/splash.asp | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183415/http://www.bio2006.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183417/http://www.bio2006.gc.ca/splash.asp | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183415/http://www.belgien.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071114183834/http://www.dfait-maeci.gc.ca/canada-europa/brussels/menu-de.asp | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183415/http://www.belgien.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183834/http://www.dfait-maeci.gc.ca/canada-europa/brussels/menu-de.asp | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183415/http://www.bctr-ocrt.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183415/http://www.bctr-ocrt.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183415/http://www.banqueducanada.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183415/http://www.banqueducanada.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183415/http://www.aecl.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183415/http://www.aecl.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183415/http://www.ac-scm.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183415/http://www.ac-scm.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183414/http://www.biotechinfo.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183414/http://www.biotechinfo.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183414/http://www.biostrategy.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071114183416/http://www.biostrategy.gc.ca/english/view.asp?x=521 | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183414/http://www.biostrategy.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183416/http://www.biostrategy.gc.ca/english/view.asp?x=521 | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183414/http://www.bioreglementation.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071114183417/http://www.bioreglementation.gc.ca/francais/bioreglinks.asp?x=1 | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183414/http://www.bioreglementation.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183417/http://www.bioreglementation.gc.ca/francais/bioreglinks.asp?x=1 | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183414/http://www.biogouv.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071114183416/http://www.biogouv.gc.ca/francais/view.asp?x=732 | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183414/http://www.biogouv.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183416/http://www.biogouv.gc.ca/francais/view.asp?x=732 | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183414/http://www.bifp-psio.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183414/http://www.bifp-psio.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183414/http://www.beaware.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183414/http://www.beaware.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183414/http://www.beactive.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071115000308/http://www.healthycanadians.gc.ca/pa-ap/index_e.html | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183414/http://www.beactive.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071115000308/http://www.healthycanadians.gc.ca/pa-ap/index_e.html | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183414/http://www.bcp-pco.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183414/http://www.bcp-pco.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183414/http://www.bch-ceprb.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183414/http://www.bch-ceprb.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183414/http://www.bc-cb.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071114183436/http://www.competitionbureau.gc.ca/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183414/http://www.bc-cb.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183436/http://www.competitionbureau.gc.ca/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183414/http://www.bankofcanada.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183414/http://www.bankofcanada.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183414/http://www.bac.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183414/http://www.bac.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183414/http://www.bac-cao.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183414/http://www.bac-cao.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183414/http://www.audit-verification.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071116000403/http://www.verification-audit.gc.ca/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183414/http://www.audit-verification.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071116000403/http://www.verification-audit.gc.ca/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183414/http://www.atlasofcanada.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071116001437/http://atlas.nrcan.gc.ca/site/index.html | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183414/http://www.atlasofcanada.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071116001437/http://atlas.nrcan.gc.ca/site/index.html | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183414/http://www.atlas.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071116001437/http://atlas.nrcan.gc.ca/site/index.html | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183414/http://www.atlas.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071116001437/http://atlas.nrcan.gc.ca/site/index.html | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183414/http://www.atlas-du-canada.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071116001437/http://atlas.nrcan.gc.ca/site/index.html | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183414/http://www.atlas-du-canada.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071116001437/http://atlas.nrcan.gc.ca/site/index.html | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183414/http://www.aspc.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071115054724/http://www.phac-aspc.gc.ca/new_f.html | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183414/http://www.aspc.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071115054724/http://www.phac-aspc.gc.ca/new_f.html | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183414/http://www.argentina.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071116022159/http://geo.international.gc.ca/latin-america/argentina/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183414/http://www.argentina.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071116022159/http://geo.international.gc.ca/latin-america/argentina/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183414/http://www.aquaticspeciesatrisk.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071114183915/http://www.dfo-mpo.gc.ca/species-especes/home_e.asp | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183414/http://www.aquaticspeciesatrisk.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183915/http://www.dfo-mpo.gc.ca/species-especes/home_e.asp | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183414/http://www.appointments-nominations.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183414/http://www.appointments-nominations.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183414/http://www.apgci.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071116000554/http://www.tc.gc.ca/majorissues/apgci/menu.htm | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183414/http://www.apgci.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071116000554/http://www.tc.gc.ca/majorissues/APGCI/menu.htm | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183414/http://www.apeca.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183414/http://www.apeca.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183414/http://www.agr.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183414/http://www.agr.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183414/http://www.afriquedusud.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071114183759/http://www.dfait-maeci.gc.ca/southafrica/menu-fr.asp | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183414/http://www.afriquedusud.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183759/http://www.dfait-maeci.gc.ca/southafrica/menu-fr.asp | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183414/http://www.acoa-apeca.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183414/http://www.acoa-apeca.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20071114183413/http://www.amateur-sport.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20071115051742/http://www.pch.gc.ca/sportcanada/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20071114183413/http://www.amateur-sport.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20071115051742/http://www.pch.gc.ca/sportcanada/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20070403140505/http://www.acee-ceaa.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20070403140505/http://www.acee-ceaa.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20070220184035/http://www.aviation.technomuses.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220184035/http://www.aviation.technomuses.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20070220181042/http://www.byrdamendmentdispute.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20070220181058/http://www.dfait-maeci.gc.ca/tna-nac/disp/byrd-main-en.asp | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181042/http://www.byrdamendmentdispute.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181058/http://www.dfait-maeci.gc.ca/tna-nac/disp/byrd-main-en.asp | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20070220181042/http://www.boisdoeuvre.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20070220181057/http://www.dfait-maeci.gc.ca/eicb/softwood/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181042/http://www.boisdoeuvre.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181057/http://www.dfait-maeci.gc.ca/eicb/softwood/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20070220181042/http://www.algeria.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20070220181102/http://www.dfait-maeci.gc.ca/world/embassies/algeria/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181042/http://www.algeria.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181102/http://www.dfait-maeci.gc.ca/world/embassies/algeria/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20070220181042/http://www.accordscommerciaux.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20070220181059/http://www.dfait-maeci.gc.ca/tna-nac/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181042/http://www.accordscommerciaux.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181059/http://www.dfait-maeci.gc.ca/tna-nac/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20070220181042/http://www.aboudhabi.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20070220181058/http://www.dfait-maeci.gc.ca/abudhabi/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181042/http://www.aboudhabi.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181058/http://www.dfait-maeci.gc.ca/abudhabi/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20070220181041/http://www.bucharest.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20070220181536/http://geo.international.gc.ca/canada-europa/romania/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181041/http://www.bucharest.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181536/http://geo.international.gc.ca/canada-europa/romania/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20070220181041/http://www.berne.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20070220181527/http://geo.international.gc.ca/canada-europa/switzerland/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181041/http://www.berne.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181527/http://geo.international.gc.ca/canada-europa/switzerland/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20070220181040/http://www.athens.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20070220181525/http://geo.international.gc.ca/canada-europa/greece/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181040/http://www.athens.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181525/http://geo.international.gc.ca/canada-europa/greece/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20070220181040/http://www.asie-pacifique.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20070220181049/http://geo.international.gc.ca/asia/main/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181040/http://www.asie-pacifique.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181049/http://geo.international.gc.ca/asia/main/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20070220181040/http://www.abidjan.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20070220181055/http://www.dfait-maeci.gc.ca/abidjan/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181040/http://www.abidjan.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181055/http://www.dfait-maeci.gc.ca/abidjan/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20070220181039/http://www.bangladesh.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20070220181134/http://www.dfait-maeci.gc.ca/bangladesh/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181039/http://www.bangladesh.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181134/http://www.dfait-maeci.gc.ca/bangladesh/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20070220181039/http://www.alena.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20070220181121/http://www.dfait-maeci.gc.ca/trade/nafta-alena/menu-fr.asp | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181039/http://www.alena.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181121/http://www.dfait-maeci.gc.ca/trade/nafta-alena/menu-fr.asp | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20070220181038/http://www.bamako.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20070220181053/http://www.dfait-maeci.gc.ca/world/embassies/mali/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181038/http://www.bamako.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181053/http://www.dfait-maeci.gc.ca/world/embassies/mali/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20070220181037/http://www.bangalore.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20070220181115/http://geo.international.gc.ca/asia/new-delhi/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181037/http://www.bangalore.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181115/http://geo.international.gc.ca/asia/new-delhi/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20070220181037/http://www.atlanta.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20070220181120/http://geo.international.gc.ca/can-am/atlanta/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181037/http://www.atlanta.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181120/http://geo.international.gc.ca/can-am/atlanta/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20070220181036/http://www.anchorage.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20070220181119/http://geo.international.gc.ca/can-am/anchorage/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181036/http://www.anchorage.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181119/http://geo.international.gc.ca/can-am/anchorage/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20070220181035/http://www.australia.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20070220181117/http://geo.international.gc.ca/asia/australia/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181035/http://www.australia.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181117/http://geo.international.gc.ca/asia/australia/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20070220181035/http://www.apec.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20070220181036/http://www.international.gc.ca/trade/canada-apec/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181035/http://www.apec.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181036/http://www.international.gc.ca/trade/canada-apec/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20070220181035/http://www.ameriquescanada.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20070220181056/http://geo.international.gc.ca/latin-america/latinamerica/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181035/http://www.ameriquescanada.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181056/http://geo.international.gc.ca/latin-america/latinamerica/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20070220181035/http://www.algiers.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20070220181102/http://www.dfait-maeci.gc.ca/world/embassies/algeria/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181035/http://www.algiers.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181102/http://www.dfait-maeci.gc.ca/world/embassies/algeria/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20070220181034/http://www.buffalo.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20070220181055/http://geo.international.gc.ca/can-am/buffalo/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181034/http://www.buffalo.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181055/http://geo.international.gc.ca/can-am/buffalo/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20070220181033/http://www.beijing.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20070220181054/http://geo.international.gc.ca/asia/china/bj-splash.htm | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181033/http://www.beijing.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181054/http://geo.international.gc.ca/asia/china/bj-splash.htm | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20070220181033/http://www.asia-pacific.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20070220181049/http://geo.international.gc.ca/asia/main/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181033/http://www.asia-pacific.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181049/http://geo.international.gc.ca/asia/main/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20070220181032/http://www.aec-fac.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20070220181032/http://www.aec-fac.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061215090144/http://www.armee.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20061215090145/http://www.armee.forces.gc.ca/lf/index.asp | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061215090144/http://www.armee.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20061215090145/http://www.armee.forces.gc.ca/lf/index.asp | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061212141140/http://ccinfoweb.cchst.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061212141140/http://ccinfoweb.cchst.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061211181324/http://www.banqueducanada.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061211181324/http://www.banqueducanada.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061210224919/http://www.aines.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061210224919/http://www.aines.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061210152013/http://www.google.nl/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061210152013/http://www.google.nl/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061210150120/http://www.ammis.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061210150120/http://www.ammis.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061210044932/http://www.beaware.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061210044932/http://www.beaware.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061210044920/http://www.boeufexportationcanada.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20061210044920/http://ats.agr.gc.ca/beef | 404 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061210044920/http://www.boeufexportationcanada.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20061210044920/http://ats.agr.gc.ca/beef | 404 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061209233018/http://www.asfc-cbsa.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061209233018/http://www.asfc-cbsa.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061209144134/http://www.ae-ei.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061209144134/http://www.ae-ei.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061209131239/http://www.apeca.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061209131239/http://www.apeca.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061209131239/http://www.acoa.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061209131239/http://www.acoa.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061209113557/http://www.bch-ceprb.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061209113557/http://www.bch-ceprb.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061209013438/http://www.accesvoyage.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061209013438/http://www.accesvoyage.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061209010741/http://www.brevets.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061209010741/http://www.brevets.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061205000834/http://www.cchst.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061205000834/http://www.cchst.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061202180005/http://www.wdol.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061202180005/http://www.wdol.gov/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061202175946/http://www.fbo.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061202175946/http://www.fbo.gov/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061202175945/http://www.gpoaccess.gov/fr/index.html | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061202175945/http://www.gpoaccess.gov/fr/index.html | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061202175941/http://www.esrs.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061202175941/http://www.esrs.gov/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061202175941/http://www.buyaccessible.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061202175941/http://www.buyaccessible.gov/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061129163951/http://www.accountable.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20061129163950/http://www.faa-lfi.gc.ca/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061129163951/http://www.accountable.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20061129163950/http://www.faa-lfi.gc.ca/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061128183217/http://www.2006recensement.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061128183217/http://www.2006recensement.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061127223613/http://www.accespublic.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061127223613/http://www.accespublic.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061120152135/http://search-recherche.collectionscanada.ca/fed/search.jsp?language=eng | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061120152135/http://search-recherche.collectionscanada.ca/fed/search.jsp?language=eng | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061111061214/http://www.ebay.pl/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061111061214/http://www.ebay.pl/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061111061214/http://www.ebay.ph/ | http://www.collectionscanada.gc.ca/webarchives/20061111061214/http://www.ebay.ph/home | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061111061214/http://www.ebay.ph/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20061111061214/http://www.ebay.ph/home | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061111061214/http://www.ebay.nl/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061111061214/http://www.ebay.nl/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061111061214/http://www.ebay.it/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061111061214/http://www.ebay.it/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061111061214/http://www.ebay.in/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061111061214/http://www.ebay.in/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061111061214/http://www.ebay.ie/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061111061214/http://www.ebay.ie/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061111061214/http://www.ebay.es/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061111061214/http://www.ebay.es/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061111061214/http://www.ebay.de/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061111061214/http://www.ebay.de/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061111061214/http://www.ebay.ch/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061111061214/http://www.ebay.ch/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061111061214/http://www.ebay.be/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061111061214/http://www.ebay.be/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061111061214/http://www.ebay.at/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061111061214/http://www.ebay.at/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061109040630/http://www.nsf.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061109040630/http://www.nsf.gov/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061109003951/http://www.api-ipy.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061109003951/http://www.api-ipy.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061104174601/http://www.osha.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061104174601/http://www.osha.gov/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061104031549/http://www.bippp.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061104031549/http://www.bippp.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061103220914/http://www.bifp-psio.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061103220914/http://www.bifp-psio.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061103021855/http://www.fs.fed.us/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061103021855/http://www.fs.fed.us/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061102231954/http://www.nws.noaa.gov/om/marine/home.htm | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061102231954/http://www.nws.noaa.gov/om/marine/home.htm | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061102183600/http://www.bca.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061102183600/http://www.bca.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061102125108/http://www.aecl.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061102125108/http://www.aecl.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061102103933/http://earthquake.usgs.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061102103933/http://earthquake.usgs.gov/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061102103844/http://www.avenirh2pac.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061102103844/http://www.avenirh2pac.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061102103843/http://www.avenirh2-pilesacombustibles.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061102103843/http://www.avenirh2-pilesacombustibles.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061102103836/http://www.autosmart.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061102103836/http://www.autosmart.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061102010539/http://www.ccohs.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061102010539/http://www.ccohs.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061031024827/http://www.acsta-catsa.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061031024827/http://www.acsta-catsa.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061030103943/http://www.acfc-fcac.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061030103943/http://www.acfc-fcac.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061030051336/http://www.ac-scm.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061030051336/http://www.ac-scm.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061029165433/http://www.cbc.ca/archives/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061029165433/http://www.cbc.ca/archives/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061029151928/http://ici.radio-canada.ca/ | http://www.collectionscanada.gc.ca/webarchives/20061029151648/http://www.radio-canada.ca/mobile/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061029151928/http://ici.radio-canada.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20061029151648/http://www.radio-canada.ca/mobile/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061029151612/http://www.cbc.radio-canada.ca/newsreleases/20061019.shtml | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061029151612/http://www.cbc.radio-canada.ca/newsreleases/20061019.shtml | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061029151551/http://schools.cbc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061029151551/http://schools.cbc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061029151551/http://cbc.radio-canada.ca/home.asp | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061029151551/http://cbc.radio-canada.ca/home.asp | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061029151550/http://www.cbc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061029151550/http://www.cbc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061029123244/http://www.agriculture.technomuses.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061029123244/http://www.agriculture.technomuses.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061029123231/http://www.aviation.technomuses.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061029123231/http://www.aviation.technomuses.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061029033623/http://www.act.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061029033623/http://www.act.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061027192442/http://future.state.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061027192442/http://future.state.gov/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061027192435/http://www.state.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061027192435/http://www.state.gov/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061026195645/http://www.appointments-nominations.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061026195645/http://www.appointments-nominations.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061026053019/http://www.nlm.nih.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061026053019/http://www.nlm.nih.gov/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061026044856/http://www.fda.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061026044856/http://www.fda.gov/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061026044856/http://www.epa.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061026044856/http://www.epa.gov/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061026030609/http://www.usda.gov/ | http://www.collectionscanada.gc.ca/webarchives/20061026030609/http://www.usda.gov/wps/portal/usdahome | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061026030609/http://www.usda.gov/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20061026030609/http://www.usda.gov/wps/portal/usdahome | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061026030606/http://www.whitehouse.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061026030606/http://www.whitehouse.gov/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061026030606/http://www.regulations.gov/ | http://www.collectionscanada.gc.ca/webarchives/20061026030606/http://www.regulations.gov/fdmspublic/component/main | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061026030606/http://www.regulations.gov/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20061026030606/http://www.regulations.gov/fdmspublic/component/main | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061026025942/http://stemcells.nih.gov/index.asp | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061026025942/http://stemcells.nih.gov/index.asp | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061026025047/http://www.ahrq.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061026025047/http://www.ahrq.gov/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061026024333/http://www.genome.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061026024333/http://www.genome.gov/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061026005215/http://www.bankofcanada.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061026005215/http://www.bankofcanada.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061025215842/http://www.bdc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20061025215842/http://www.bdc.ca/default.htm | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061025215842/http://www.bdc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20061025215842/http://www.bdc.ca/default.htm | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061025165029/http://www.bsi.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20061025165031/http://irc.nrc-cnrc.gc.ca/pubs/bsi/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061025165029/http://www.bsi.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20061025165031/http://irc.nrc-cnrc.gc.ca/pubs/bsi/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061025164141/http://www.biogouv.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20061025164142/http://www.biogouv.gc.ca/splash.asp | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061025164141/http://www.biogouv.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20061025164142/http://www.biogouv.gc.ca/splash.asp | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20061025163928/http://www.bio-iob.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20061025163928/http://www.bio-iob.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060304055730/http://www.nist.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060304055730/http://www.nist.gov/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060303090120/http://www.rules.house.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060303090120/http://www.rules.house.gov/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060206174529/http://www.bureaudelatraduction-translationbureau.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060206174529/http://www.bureaudelatraduction-translationbureau.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060204080928/http://www.arc-cra.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060204080928/http://www.cra-arc.gc.ca/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060204080928/http://www.arc-cra.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20060204080928/http://www.cra-arc.gc.ca/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060204010155/http://www.aoml.noaa.gov/hrd/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060204010155/http://www.aoml.noaa.gov/hrd/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060204010149/http://www.nssl.noaa.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060204010149/http://www.nssl.noaa.gov/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060203194057/http://nationalatlas.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060203194057/http://nationalatlas.gov/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060203131331/http://www.atlasofcanada.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060203131320/http://atlas.gc.ca/site/index.html | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060203131331/http://www.atlasofcanada.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20060203131320/http://atlas.gc.ca/site/index.html | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060203131319/http://www.atlas-du-canada.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060203131320/http://atlas.gc.ca/site/index.html | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060203131319/http://www.atlas-du-canada.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20060203131320/http://atlas.gc.ca/site/index.html | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060203003853/http://www.bureaudcn.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060203003853/http://www.bureaudcn.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060202192559/http://www.bpiepc-ocipep.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060202192559/http://www.bpiepc-ocipep.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060131235938/http://www.fedstats.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060131235938/http://www.fedstats.gov/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060131235937/http://www.census.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060131235937/http://www.census.gov/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060130033909/http://www.who.int/en/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060130033909/http://www.who.int/en/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060129133621/http://www.acee-ceaa.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060129133621/http://www.acee-ceaa.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060128043233/http://www.batimentsdurables-sustainablebuildings.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060128043233/http://www.batimentsdurables-sustainablebuildings.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060128020605/http://www.biostrategy.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060128020618/http://www.biostrategy.gc.ca/english/view.asp?x=521 | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060128020605/http://www.biostrategy.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20060128020618/http://www.biostrategy.gc.ca/english/view.asp?x=521 | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060128020555/http://www.biofondations.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060128020615/http://www.biofondations.gc.ca/francais/view.asp?x=556 | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060128020555/http://www.biofondations.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20060128020615/http://www.biofondations.gc.ca/francais/view.asp?x=556 | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060128020553/http://www.bioportail.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060128020553/http://www.bioportail.gc.ca/splash.asp | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060128020553/http://www.bioportail.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20060128020553/http://www.bioportail.gc.ca/splash.asp | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060128020553/http://www.bionetwork.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060128020553/http://www.bionetwork.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060128020553/http://www.bio2006.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060128020554/http://www.bio2006.gc.ca/splash.asp | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060128020553/http://www.bio2006.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20060128020554/http://www.bio2006.gc.ca/splash.asp | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060128020541/http://www.bioreseau.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060128020541/http://www.bioreseau.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060128020538/http://www.bioreglementation.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060128020539/http://www.bioreglementation.gc.ca/francais/bioreglinks.asp?x=1 | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060128020538/http://www.bioreglementation.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20060128020539/http://www.bioreglementation.gc.ca/francais/bioreglinks.asp?x=1 | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060127185447/http://www.boaa.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060127185447/http://www.boaa.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060127185447/http://www.at-links.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060127185447/http://www.at-links.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060127175316/http://www.bctr-ocrt.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060127175316/http://www.bctr-ocrt.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060127171730/http://www.energy.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060127171730/http://www.energy.gov/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060127012140/http://www.gao.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060127012140/http://www.gao.gov/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060126195203/http://www.bcp-pco.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060126195203/http://www.bcp-pco.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060126154032/http://www.aquaticspeciesatrisk.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060126154941/http://www.dfo-mpo.gc.ca/species-especes/home_e.asp | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060126154032/http://www.aquaticspeciesatrisk.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20060126154941/http://www.dfo-mpo.gc.ca/species-especes/home_e.asp | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060126124425/http://www.airforce.forces.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060126124425/http://www.airforce.forces.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060119172539/http://www.budget.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060119172539/http://www.budget.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060119171212/http://www.bac-cao.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060119171212/http://www.bac-cao.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060119171211/http://www.bac.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060119171211/http://www.bac.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060118012452/http://www.hhs.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060118012452/http://www.hhs.gov/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060118012439/http://www.nih.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060118012439/http://www.nih.gov/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060117182613/http://www.nhc.noaa.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060117182613/http://www.nhc.noaa.gov/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060117180818/http://ice-glaces.ec.gc.ca/app/wsvpagedsp.cfm?id=1&lang=fre | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060117180818/http://ice-glaces.ec.gc.ca/app/wsvpagedsp.cfm?id=1&lang=fre | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060117013231/http://broadband.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060117013231/http://broadband.gc.ca/index.htm | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060117013231/http://broadband.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20060117013231/http://broadband.gc.ca/index.htm | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060116154031/http://www.aspc.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060116163817/http://www.phac-aspc.gc.ca/new_f.html | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060116154031/http://www.aspc.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20060116163817/http://www.phac-aspc.gc.ca/new_f.html | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060116154018/http://www.aids-sida.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060116163144/http://www.phac-aspc.gc.ca/aids-sida/hiv_aids/splash.html | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060116154018/http://www.aids-sida.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20060116163144/http://www.phac-aspc.gc.ca/aids-sida/hiv_aids/splash.html | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060116153746/http://www.amateur-sport.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060116153906/http://www.pch.gc.ca/sportcanada/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060116153746/http://www.amateur-sport.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20060116153906/http://www.pch.gc.ca/sportcanada/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060114133218/http://www.ainc-inac.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060114133218/http://www.ainc-inac.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060114025832/http://www.acdi-cida.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060114025832/http://www.acdi-cida.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20060114025832/http://www.acdi-cida.gc.ca/index.htm | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060114005203/http://www.plainlanguage.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060114005203/http://www.plainlanguage.gov/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060113211022/http://www.ssa.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060113211022/http://www.ssa.gov/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060113185124/http://www.voyage.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060113185124/http://www.voyage.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060113125716/http://www.bc-cb.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060113125713/http://www.competitionbureau.gc.ca/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060113125716/http://www.bc-cb.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20060113125713/http://www.competitionbureau.gc.ca/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060113125714/http://www.biotechinfo.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060113125714/http://www.biotechinfo.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060113125711/http://www.agr.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060113125711/http://www.agr.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060113125659/http://www.businessgateway-portaildesaffaires.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20060113125713/http://canadabusiness.gc.ca/gol/cbec/site.nsf | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060113125659/http://www.businessgateway-portaildesaffaires.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20060113125713/http://canadabusiness.gc.ca/gol/cbec/site.nsf | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20060113125659/http://www.bsf-osb.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20060113125659/http://www.bsf-osb.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051229013626/http://www.nssl.noaa.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051229013626/http://www.nssl.noaa.gov/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051229013601/http://www.nhc.noaa.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051229013601/http://www.nhc.noaa.gov/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051229013529/http://www.aoml.noaa.gov/hrd/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051229013529/http://www.aoml.noaa.gov/hrd/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051229012735/http://www.energy.gov/ | http://www.collectionscanada.gc.ca/webarchives/20051229012736/http://www.energy.gov/engine/content.do | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051229012735/http://www.energy.gov/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20051229012736/http://www.energy.gov/engine/content.do | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051229004011/http://www.hhs.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051229004011/http://www.hhs.gov/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051229003958/http://www.nih.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051229003958/http://www.nih.gov/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051228191601/http://www.biofondations.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20051228191614/http://www.biofondations.gc.ca/francais/view.asp?x=556 | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051228191601/http://www.biofondations.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20051228191614/http://www.biofondations.gc.ca/francais/view.asp?x=556 | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051228191552/http://www.biostrategy.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20051228191553/http://www.biostrategy.gc.ca/english/view.asp?x=521 | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051228191552/http://www.biostrategy.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20051228191553/http://www.biostrategy.gc.ca/english/view.asp?x=521 | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051228191552/http://www.bioreglementation.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20051228191605/http://www.bioreglementation.gc.ca/francais/bioreglinks.asp?x=1 | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051228191552/http://www.bioreglementation.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20051228191605/http://www.bioreglementation.gc.ca/francais/bioreglinks.asp?x=1 | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051228191552/http://www.bioportail.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20051228191741/http://www.bioportail.gc.ca/splash.asp | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051228191552/http://www.bioportail.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20051228191741/http://www.bioportail.gc.ca/splash.asp | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051228174058/http://nationalatlas.gov/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051228174058/http://nationalatlas.gov/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051228170429/http://www.bio-iob.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051228170429/http://www.bio-iob.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051228153400/http://www.bcp-pco.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051228153400/http://www.bcp-pco.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051228153117/http://www.bch-ceprb.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051228153117/http://www.bch-ceprb.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051228142835/http://www.ainc-inac.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051228142835/http://www.ainc-inac.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051228142558/http://www.agr.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051228142558/http://www.agr.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051228141502/http://www.aec-fac.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051228141502/http://www.aec-fac.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051228135933/http://www.at-links.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051228135933/http://www.at-links.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051228131544/http://www.bctr-ocrt.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051228131544/http://www.bctr-ocrt.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051228131114/http://www.atlas-du-canada.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20051228131114/http://atlas.gc.ca/site/index.html | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051228131114/http://www.atlas-du-canada.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20051228131114/http://atlas.gc.ca/site/index.html | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051228131113/http://www.atlas.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20051228131114/http://atlas.gc.ca/site/index.html | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051228131113/http://www.atlas.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20051228131114/http://atlas.gc.ca/site/index.html | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051228130852/http://www.aspc.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20051228130859/http://www.phac-aspc.gc.ca/new_f.html | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051228130852/http://www.aspc.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20051228130859/http://www.phac-aspc.gc.ca/new_f.html | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051228130709/http://www.asfc-cbsa.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051228130709/http://www.asfc-cbsa.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051228130506/http://www.armee.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20051228130507/http://www.armee.forces.gc.ca/lf/index.asp | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051228130506/http://www.armee.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20051228130507/http://www.armee.forces.gc.ca/lf/index.asp | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051228130312/http://www.arc-cra.gc.ca/ | http://www.collectionscanada.gc.ca/webarchives/20051228130300/http://www.cra-arc.gc.ca/ | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051228130312/http://www.arc-cra.gc.ca/ | http://webarchive.bac-lac.gc.ca:8080/wayback/20051228130300/http://www.cra-arc.gc.ca/ | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051228125948/http://www.boaa.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051228125948/http://www.boaa.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051228125247/http://www.api-ipy.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051228125247/http://www.api-ipy.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051224020907/http://www.autochtonesaucanada.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051224020907/http://www.autochtonesaucanada.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051222193829/http://www.bifp-psio.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051222193829/http://www.bifp-psio.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051222192321/http://www.aines.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051222192321/http://www.aines.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051222170200/http://www.acsta-catsa.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051222170200/http://www.acsta-catsa.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051222164726/http://www.accesvoyage.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051222164726/http://www.accesvoyage.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051222164534/http://www.apeca.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051222164534/http://www.apeca.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051222164534/http://www.acoa.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051222164534/http://www.acoa.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051222164534/http://www.acoa-apeca.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051222164534/http://www.acoa-apeca.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051222163957/http://www.acfc-fcac.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051222163957/http://www.acfc-fcac.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051222163601/http://www.acee-ceaa.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051222163601/http://www.acee-ceaa.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051222162519/http://www.accespublic.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051222162519/http://www.accespublic.gc.ca/ | - | 200 | 0 | Yes | Yes | |
http://www.collectionscanada.gc.ca/webarchives/20051222162138/http://www.ac-scm.gc.ca/ | - | 200 | http://webarchive.bac-lac.gc.ca:8080/wayback/20051222162138/http://www.ac-scm.gc.ca/ | - | 200 | 0 | Yes | Yes |
Conclusions
When Library and Archives Canada migrated their archive in May 2018, 49 of the 351 mementos we were tracking resurfaced in the new archive with a change in Memento-Datetime, URI-R, or the final HTTP status code. In three cases, the HTTP status codes of mementos in the new archive change from the status codes in the original archive. Also, updating/upgrading a web archival replay tool (e.g., OpenWayback and PyWb) may affect how migrated mementos are indexed and replayed. In general, with any memento migration, we recommend that when possible requests of mementos to the original archives to be redirected to their corresponding mementos in the new archive (e.g., the case of The End of Term Archive explained above).
In the upcoming posts we will provide some details about changes in the archives:
- The NLI collection in European Archive (europarchive.org) and the Internet Memory (internetmemory.org)
- Public Record Office of Northern Ireland (PRONI) (webarchive.proni.gov.uk)
- WebCite (webcitation.org)
--Mohamed Aturban
See also:
ReplyDeleteMohamed Aturban, Michael L. Nelson, Michele C. Weigle, Where Did the Web Archive Go?, TPDL 2021. (arXiv:2108.05939)